.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.2);
}

.navbar {
    max-width: 1920px;
    margin: auto;
    padding: 30px 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.navbar-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 70px;
    background: transparent;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

.navbar-icons:hover {
    background: #353535;
}

.navbar-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 70px;
    border: 1px solid #353535;
    border-radius: 10px;
}

.navbar-button-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 60px;
    background: #353535;
    border-radius: 5px;
    transition: 0.3s linear;
}

.navbar-button-inner:hover {
    width: 100%;
    height: 100%;
}

/* Filter */
.banner-filter-form-top {
    max-width: 1700px;
    display: flex;
    gap: 15px;
}

.banner-filter-form-top:last-child {
    padding-top: 25px;
}

.banner-filter-form-top input {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    border: 1px solid #fff;
    height: 84px;
    color: #fff;
    width: 100%;
    border-radius: 50px;
    background: black;
}

.banner-filter-form-top-container {
    width: 100%;
    position: relative;
    margin-bottom: 25px;
}

.banner-filter-form-top .search-input {
    padding: 0 20px 0 80px;
}

.banner-filter-form-top .search-input:focus {
    background-color: #5c5c5c;
}

.banner-filter-form-top .search-icon {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.banner-filters hr {
    height: 1px;
    color: #b0b0b0;
    border-bottom: 0;
}

.banner-filter-form-bottom {
    max-width: 1700px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 65px;
}

.banner-filter-input-container {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    border: 1px solid #fff;
    height: 84px;
    color: #fff;
    border-radius: 50px;
    background: black;
    width: 100%;
}

.banner-listing-type {
    max-width: 227px;
    width: 100%;
}

.banner-listing-type-button {
    padding: 10px 20px;
}

.banner-listing-type-button > div {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    gap: 10px;
    white-space: nowrap;
}

.banner-listing-type-button:hover > div {
    background: #353535;
}

.banner-tal {
    max-width: 639px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
}

.banner-tal-dropdown {
    width: 100%;
    max-width: 185px;
}

.banner-tal-dropdown > button {
    height: 100%;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    color: #fff;
    transition: 0.3s ease-in-out;
    border-radius: 50px;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner-tal-dropdown > button:hover {
    background: #5c5c5c;
}

.banner-price-range {
    max-width: 560px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
}

.banner-search-button {
    background: #fff;
    max-width: 213px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 55px;
    color: #000;
    transition: 0.3s ease-in-out;
    border: 0;
    gap: 10px;
}

.banner-search-button:hover {
    background: #5c5c5c;
}

.banner-search-button span {
    transition: 0.3s ease-in-out;
    transform: translateX(0);
}

.banner-search-button:hover span {
    transform: translateX(-8px);
    color: #fff;
}

.banner-search-button img {
    transition: 0.3s ease-in-out;
    transform: translateX(0);
}

.banner-search-button:hover img {
    transform: translateX(8px);
    filter: invert(100%);
}

.banner-filter-hr {
    width: 1px;
    height: 41px;
    background: #000000;
}

.range-container {
    width: 100%;
    position: relative;
}

.value-display {
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 10px;
}

.value-display::after {
    content: attr(data-currency);
}

.value-display[data-currency="AED"]::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/assets/img/front-office-img/header/aed.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.range-container > input {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 100%;
    -webkit-appearance: none;
    height: 0;
}

.range-container > input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 17px;
    width: 38px;
    background: #fff;
    border-radius: 70px;
    cursor: pointer;
    box-shadow: inset 0px 0px 0px 1px #000;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb a {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
}

.breadcrumb a.dark {
    color: #818181;
}

/* Modal Exit Button */
.modal-exit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid #353535;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.modal-exit-button-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #353535;
    border-radius: 5px;
    transition: 0.3s linear;
}

.modal-exit-button-inner:hover {
    width: 100%;
    height: 100%;
}

/* Modal Search */
.search-modal-desktop {
    display: flex;
    flex-direction: column;
}

.search-modal-desktop-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 40px 0 40px;
}

.search-modal-desktop-top > img {
    filter: invert(100%);
}

.search-modal-desktop-bottom {
    position: relative;
    margin: auto;
    padding: 40px;
    width: 100%;
}

.search-modal-desktop-bottom p {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-align: center;
}

.search-modal-desktop-input {
    position: relative;
    width: 100%;
    max-width: 780px;
}

.search-modal-desktop-input input {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    border: 1px solid #d1d1d1;
    height: 84px;

    color: #000;
    width: 100%;
    border-radius: 50px;
    background: #e7e7e7;
    padding: 0 20px 0 80px;
}

.search-modal-desktop-input img {
    filter: invert(100%);
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.search-modal-content .back-button {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #54565a;
    background: transparent;
    border: 0;
    cursor: pointer;
}



/* Language and Currency Dropdown */
.language-currency-dropdown {
    max-height: 629px;
    overflow: auto;
    padding: 30px;
}

.language-currency-dropdown::-webkit-scrollbar {
    display: none;
}

.language-currency-dropdown p {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 400;
    padding-bottom: 20px;
}

.language-currency-dropdown-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.language-currency-dropdown-container span, .language-currency-dropdown-container label {
    width: 100%;
    max-width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    border-radius: 50px;
    border: 1px solid #FFFF;
    text-transform: uppercase;
}

.language-currency-dropdown button {
    width: 100%;
    height: 57px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    border: 1px solid #b0b0b0;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.language-currency-dropdown button:hover {
    background: #b0b0b0;
}

/* Telephone Modal */
.modal-content-telephone-container {
    padding: 40px;
    overflow: scroll;
}

.modal-content-telephone-container::-webkit-scrollbar {
    display: none;
}

.modal-content-telephone {
    width: 100%;
    max-width: 1090px;
    display: flex;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.modal-content-telephone-left {
    background: #070707;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-content-telephone-left h2 {
    text-align: center;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #fff;
}

.modal-content-telephone-left input {
    width: 100%;
    padding: 0 20px;
    border-radius: 7px;
    background: #1a1a1a;
    border: 1px solid #d5d5d5;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #fff;
    margin: 15px 0 20px;
}

.modal-content-telephone-left label {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #54565a;
    text-align: center;
}

.modal-content-telephone-left label a {
    text-decoration: underline;
}

.modal-content-telephone-left-container button {
    width: 100%;
    height: 65px;
    border-radius: 10px;
    background: #fff;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #000000;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid #d5d5d5;
    margin: 20px 0 15px;
}

.modal-content-telephone-left-container button:hover {
    background: #1a1a1a;
    color: #fff;
}

.modal-content-telephone-left p {
    text-align: center;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #54565a;
    padding: 10px 0 40px;
}

.modal-content-telephone-label-center {
    display: block;
    padding-bottom: 40px;
}

.modal-content-telephone-right {
    position: relative;
    background: url("/assets/img/front-office-img/header/Rectangle7012.png") no-repeat center;
    background-size: cover;
    width: 50%;
    min-height: 680px;
}

.modal-content-telephone .modal-exit-button {
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-content-telephone-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* flex-wrap: wrap; */
}

.modal-content-telephone-icons a {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px;
}

.modal-content-telephone-icons a:hover div {
    background: #fff;
}

.modal-content-telephone-icons div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
}

.modal-content-telephone-icons img {
    transition: 0.3s ease-in-out;
}

.modal-content-telephone-icons a:hover img {
    filter: invert(100%);
}

/* Menu Modal */
.modal-content-menu {
    display: flex;
    flex-direction: column;
}

.search-modal-desktop-bottom > div {
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.search-modal-desktop-bottom a {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: #54565a;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.search-modal-desktop-bottom a:hover {
    text-decoration: underline;
}

.modal-content-menu-brand {
    position: absolute;
    top: 10px;
    right: -20px;
}

.search-modal-content.active {
    display: flex;
    flex-direction: column;
}

.search-modal-trigger {
    display: none;
}

.search-modal-trigger.active {
    display: flex;
}

.search-modal-content {
    gap: 0 !important;
    display: none;
}
.search-modal-content h3 {
    font-family: "AvenirNextLTPro-Bold", sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #000;
    font-style: italic;
    padding-bottom: 60px;
    text-transform: uppercase;
}

.search-modal-content h3 span {
    font-family: "AvenirNextLTPro-Light", sans-serif;
    font-style: normal;
}

.search-modal-content a {
    font-size: 20px;
    padding-bottom: 25px;
}

.search-modal-content a:last-child {
    padding-bottom: 0;
}

.profile-modal {
    max-width: 1000px;
    width: 100%;
    /* max-height: 900px; */
    height: 100vh;
    padding: 0;
    background: #070707;
    overflow: auto;
    scrollbar-width: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-modal .modal-exit-button {
    position: absolute;
    top: 20px;
    right: 20px;
}

.modal-profile-back-button__container {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 10px;
    width: fit-content;
    position: absolute;
    left: 35px;
    top: 370px;
}

.modal-profile-back-button__container span {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    color: #616161;
}

/* For Login and Register */
.step-wrapper {
    position: relative;
}

.step-wrapper > [data-step] {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    position: absolute;
    width: 100%;    
    top: 0;
    padding: 0 0 40px;
}
.step-wrapper > [data-step].active {
    opacity: 1;
    pointer-events: all;
    position: relative;
}

.hidden {
  display: none;
}

.password-hint__container li.succeed {
  display: none;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.modal-content-profile__banner {
    height: 344px;
}

.modal-content-profile__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.profile-modal .modal-pattern {
    position: absolute;
    bottom: -0;
    left: -60px;
    width: 316px;
    height: 533px;
    transform: rotateX(-180deg);
    opacity: 0.1;
    mix-blend-mode: Difference;
}

.profile-modal .modal-pattern img {
    width: 100%;
    height: 100%;
}

.profile-form__container {
    padding: 0 266px;
}

.profile-form__header {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.profile-form-header__text {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    opacity: 0.5;
    margin-bottom: 20px;
}

.social-button__containers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-button__containers button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 60px;
    border-radius: 7px;
    border-width: 1px;
    padding-top: 5.5px;
    padding-right: 13px;
    padding-bottom: 6px;
    background: #1a1a1a;
    padding-left: 9px;
    border: 1px solid #ffffff66;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.social-button__containers button:hover {
    background: #cfcfcf;
}

.social-button__containers button span {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
    opacity: 0.7;
    color: #ffffff;
}

.social-button__containers button:hover span {
    color: #424242;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 22px 0;
    opacity: 0.3;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.separator span {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
    padding: 0 10px;
    color: #888;
    font-weight: 500;
    font-size: 14px;
}

.profile-modal form label {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #54565a;
}

.profile-modal .have-account {
    display: block;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #54565a;
    text-align: center;
    padding: 20px 0 0;
}

.profile-modal .have-account span {
    cursor: pointer;
    color: #FFF;
    text-decoration: underline;
}

.profile-modal .forgot-password {
    margin: 0 0 auto;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 275;
    font-size: 12px;
    line-height: 140%;
    color: #ffffffe5;
    text-align: right;
    padding: 0 0 20px;
}

.profile-modal form input:not([type="checkbox"]) {
    width: 100%;
    padding: 0 20px;
    border-radius: 7px;
    background: #1a1a1a;
    border: 1px solid #d5d5d5;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #fff;
    margin: 17px 0 17px;
}

.profile-modal form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 65px;
    border-radius: 10px;
    background: #fff;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #000000;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid #d5d5d5;
    margin: 0 0 13px;
}

.profile-modal form button:hover {
    background: #1a1a1a;
    color: #fff;
}

.password-hint__container {
    margin: 10px 1rem 30px;
}

.password-hint__container li {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 275;
    font-size: 12px;
    line-height: 140%;
    color: #ffffffe5;
    list-style: disc;
}

.phone-wrapper {
    display: flex;
    gap: 8px;
    position: relative;
}

.custom-select {
    position: relative;
    width: 130px;
    cursor: pointer;
}

.selected-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    border-radius: 7px;
    background: #1a1a1a;
    border: 1px solid #d5d5d5;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    color: #d5d5d5;
    margin: 17px 0 0;
}

.selected-option img {
    width: 24px;
    height: 16px;
    margin-right: 8px;
}

.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1c1c1c;
    border: 1px solid #666;
    border-radius: 6px;
    z-index: 10;
    max-height: 150px;
    overflow-y: auto;
}

.country-dropdown-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.country-dropdown-option:hover {
    background-color: #2c2c2c;
}

.phone-input {
    flex: 1;
    background-color: #1c1c1c;
    border: 1px solid #666;
    border-radius: 6px;
    padding: 10px;
    color: #ccc;
    font-size: 14px;
    outline: none;
}

.chevron {
    font-size: 12px;
    margin-left: auto;
}

.otp-container {
    width: 90%;
    margin: auto;
}

.otp-info {
    margin-bottom: 20px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.18px;
    opacity: 0.5;
    color: #ffffff;
}

.otp-inputs input {
    width: 56px;
    height: 56px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #444;
    background-color: #121212;
    color: white;
    border-radius: 6px;
    outline: none;
}

.otp-inputs input:focus {
    border-color: #888;
}

/* Updated OTP */
.otp {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    margin: 0 0 30px;
}

.box {
    width: 55px;
    height: 55px;
    border: 1.5px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    font-family: monospace;
    transition: transform 0.1s;
}

.otp input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.otp .active {
    outline: 2px solid #fff;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.error .box {
    animation: shake 0.3s;
    border-color: #ff4b4b;
}

.gmail-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid #555;
    border-radius: 8px;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.gmail-button:hover {
    background-color: #111;
}

.gmail-button svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.resend-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    vertical-align: middle;
    color: #fff;
    text-align: center;
}

.resend-text span {
    font-family: "AvenirNextLTPro-Regular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    vertical-align: middle;
    color: #888;
}

.resend-text button {
    font-family: "AvenirNextLTPro-Regular", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    vertical-align: middle;
    color: #888 !important;
    height: auto !important;
    background: none !important;
    border: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.resend-text #resend {
    display: none;
    cursor: pointer;
}

.loading-spinner {
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-block;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-right: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.descktop-nav {
    display: block;

    position: relative;
    right: 0;
    left: 0;
    margin: auto;
}
.desktop-nav-list {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.desktop-nav-list li {
    display: flex;
    align-items: center;
}
.desktop-nav-list a {
    font-family: "Avenir Next", Arial, sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition:
        color 0.2s,
        background 0.2s;
    padding: 20px 10px;
    border-radius: 10px;
    border-bottom: 1px solid transparent;
    opacity: 1;
}
.desktop-nav-list a:hover {
    background: #ffffff33;
    border-bottom-width: 1px;
    padding: 20px 10px;
    border-radius: 10px;
    opacity: 1;
}
.desktop-nav-list a.active {
    border-bottom: 3px solid #ffffffb2;
    border-radius: 0;
}
.desktop-nav-list .chev-icon {
    width: 20px;
    height: 20px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}


.has-chevron {
    position: relative;
}


.dropdown-model a {
    font-family: "Avenir Next", Arial, sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    border-radius: 0;
    padding: 0;
}


.dropdown-model a:hover {
border-radius: 0;
}

.dropdown-model a:first-child {
    border-bottom: 1px solid #b0b0b0;
    padding: 0 0 20px 0;
}

.dropdown-model a:last-child {
    padding: 10px 0 0 0;
}




.dropdown-model {
    background: #f6f6f6;
    padding: 28px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 500px;
    position: absolute;
    top: 65px;
    left: -155px;
}


.dropdown-model-one, .dropdown-model-two {
display: none;
}

/* AED Icon */
.aed-currency-icon {
    width: 20px;
    object-fit: cover;
}

.aed-currency-icon-gray {
    filter: brightness(0) saturate(100%) invert(40%) sepia(1%) saturate(190%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* All Filter Mobile */
.all-filter-mobile {
    z-index: 4;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

/* Loading Spinner For Register Button */
.loader-register {
    display: none;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #000;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (max-width: 1760px) {
    .banner-filter-form-top input {
        font-size: 18px;
    }

    .banner-filter-input-container {
        font-size: 18px;
    }

    .banner-tal-dropdown > button {
        font-size: 18px;
    }

    .banner-listing-type-button {
        padding: 5px 10px;
    }

    .banner-tal {
        padding: 5px 10px;
    }

    .banner-price-range {
        padding: 5px 10px;
    }

    .range-container > input {
        bottom: -5px;
    }
}
@media (max-width: 1200px) {
    .descktop-nav {
        display: none !important;
    }
}
@media (max-width: 1280px) {
    .banner-filter-form-top input {
        height: 74px;
    }

    .banner-filter-input-container {
        height: 74px;
    }

    .banner-filter-form-bottom {
        margin-bottom: 0;
    }

    .banner-filters hr {
        display: none;
    }

    .banner-filter-form-bottom {
        flex-wrap: wrap;
    }

    .banner-listing-type {
        order: 2;
        max-width: calc(50% - 20px);
    }

    .banner-tal {
        order: 1;
        max-width: 100%;
    }

    .banner-price-range {
        order: 3;
        max-width: calc(50% - 20px);
    }

    .banner-tal-dropdown {
        max-width: 100%;
    }

    .search-modal-desktop-input input {
        height: 74px;
        font-size: 18px;
    }

    .language-currency-dropdown {
        width: 600px;
        padding: 40px;
    }

    .modal-content-telephone-left h2 {
        font-size: 26px;
    }

    .modal-content-telephone-left p {
        font-size: 22px;
    }

    .modal-content-menu a {
        font-size: 30px;
    }

    .language-currency-dropdown p {
        font-size: 18px;
    }

    .language-currency-dropdown-container span {
        height: 74px;
        font-size: 18px;
    }

    .language-currency-dropdown button {
        height: 74px;
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .modal-content-telephone {
        max-width: 600px;
    }

    .modal-content-telephone-left {
        width: 100%;
    }

    .modal-content-telephone-right {
        display: none;
    }

    .modal-exit-button {
        width: 60px;
        height: 60px;
    }

    .modal-exit-button-inner {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 20px 10px 20px;
    }

    .navbar-logo {
        width: 51px;
    }

    .navbar-logo img {
        width: 100%;
    }

    .navbar-icons {
        width: 40px;
        height: 40px;
    }

    .navbar-icons img {
        width: 24px;
        height: 24px;
        object-fit: cover;
    }

    .navbar-button {
        width: 55px;
        height: 50px;
    }

    .navbar-button-inner {
        width: 45px;
        height: 40px;
    }

    .navbar-button-inner img {
        width: 34px;
    }

    .banner-filters hr {
        display: block;
        margin-top: 30px;
    }

    .modal-content-telephone-left h2 {
        font-size: 24px;
    }

    .modal-content-telephone-left p {
        font-size: 20px;
    }

    .modal-content-telephone-left label {
        font-size: 16px;
    }

    .modal-content-telephone-container {
        padding: 0;
    }

    .modal-content-menu a {
        font-size: 20px;
    }

    .modal-exit-button {
        width: 50px;
        height: 50px;
    }

    .modal-exit-button-inner {
        width: 40px;
        height: 40px;
    }

    .language-currency-dropdown {
        top: 50px;
        width: 400px;
        padding: 30px;
    }

    .language-currency-dropdown p {
        font-size: 16px;
    }

    .search-modal-desktop-top {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 20px 0 20px;
    }

    .search-modal-desktop-top > img {
        order: 1;
    }

    .search-modal-desktop-input {
        order: 3;
        max-width: 100%;
    }

    .search-modal-desktop-top .modal-exit-button {
        order: 2;
    }

    .search-modal-desktop-input input {
        height: 64px;
        font-size: 16px;
    }

    .search-modal-desktop-bottom {
        padding: 20px;
    }

    .modal-content-telephone {
        width: 100%;
    }

    .modal-content-telephone {
        max-width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .language-currency-dropdown-container span {
        height: 44px;
        font-size: 16px;
        padding: 0 37px;
          width: 47%;
    }

    .language-currency-dropdown button {
        height: 53px;
        font-size: 16px;
    }


.modal-content-telephone-left {
    padding: 40px 20px;
}





.search-modal-content h3{
    font-size: 24px;
    padding-bottom: 30px;
}








}

@media (max-width: 910px) {
    .language-currency-dropdown {
        width: 300px;
        padding: 20px;
        right: -40px;
    }
    .profile-form__container {
        padding: 0 20px;
    }










}

