#termsContent {
    max-height: 300px; 
    padding-right: 10px; 
    overflow-y: auto;
    -ms-overflow-style: none;  
    scrollbar-width: none;
}
#termsContent::-webkit-scrollbar {
    display: none;
}
#termsCheckboxContainer {
    visibility: hidden;
    opacity: 0; 
    transition: opacity 0.5s ease, visibility 0.5s ease; 
}
.iti {
    width: 100%;
    display: flex;
    align-items: center;
}
.iti__flag-container {
    margin-right: 10px;
}
.upload_btn img {
    max-width: 100%; /* Ensure that the icon or preview images don't overflow */
}

#logo_preview, #banner_preview {
    width: 170px; /* Logo specific width */
    height: 96px; /* Logo specific height */
    object-fit: cover;
}

#banner_preview {
    width: 830px; /* Banner specific width */
    height: 200px; /* Banner specific height */
}
.upload_document {
    display: flex;
    align-items: center;
}
.docoment_text {
    margin-right: 10px; 
}
.file-preview {
    font-size: 14px;
    color: #333;
}
.file-preview p {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.autocomplete-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    z-index: 1000;
    background: #fff;
    width: 100%;
    display: none;
    /* Hide by default */
}

.autocomplete-dropdown li {
    padding: 8px 12px;
    cursor: pointer;
}

.autocomplete-dropdown li:hover {
    background-color: #f0f0f0;
}
.button {
    position: relative;
    padding: 8px 16px;
    background: #009579;
    border: none;
    outline: 0;
    border-radius: 50px;
    cursor: pointer
}
.button:active {
    background: #007a63
}
.button__text {
    font: bold 20px Quicksand, san-serif;
    color: #fff;
    transition: all .2s
}
.button--loading .button__text {
    visibility: hidden;
    opacity: 0
}
.button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn)
    }Accept Terms

    to {
        transform: rotate(1turn)
    }
}
.address-dropdown {
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: calc(100% - 20px);
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f1f1f1;
}
.error-message {
    color: red;
    font-size: 12px;
}
.pac-container,
.pac-container .pac-item {
    z-index: 99999 !important
}
input.error {
    border-color: red;
}
.add-more-btn{
    color: #0074d9 !important;
    width: 100%;
    border: none;
    border-radius: 16px;
    border: 1px solid #0074d9 !important;
}
@media(min-width: 1440px) {
    .content {
        min-height: calc(100vh - 100px);
    }
}