body {
    overflow-x: hidden;
}

.login,
.register,
.forget-password,
.reset-password,
.logOut {
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 70px 0;
}

.login .login-container,
.register .register-container,
.logOut .logOut-container,
.forget-password .forget-password-container,
.reset-password .reset-password-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login .login-header,
.register .register-header,
.reset-password .forget-password-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login .login-header p,
.register .register-header p,
.forget-password .forget-password-header p,
.reset-password .reset-password-header p {
    font-size: 22px;
    font-weight: 600;
}

.login .login-header a,
.register .register-header a,
.forget-password .forget-password-header a {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary1);
    text-decoration: none;
}

.login .login-form,
.register .register-form,
.logOut .logOut-form,
.forget-password .forget-form,
.reset-password .reset-form {
    padding: 50px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login .login-form-header a,
.register .register-form .register-form-header a,
.forget-password .login-form-header a {
    font-size: 22px;
    font-weight: 500;
    color: #8d8f95;
    position: relative;
    text-decoration: none;
}

.login .login-form-header,
.register .register-form-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 20px;
}

.forget-password .forget-password-header,
.reset-password .reset-password-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-direction: column;
}

.forget-password .forget-password-header p:first-child,
.reset-password .reset-password-header p {
    color: var(--primary1);
}

.forget-password .forget-password-header p:last-child {
    color: var(--gray);
    font-size: 16px;
    text-align: center;
}

.login .login-form-header a:hover,
.register .register-form-header a:hover,
.forget-password .forget-password-header a:hover {
    color: var(--primary1);
}

.login .login-form-header a::after,
.register .register-form-header a::after,
.forget-password .forget-password-header a::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--primary1);
    position: absolute;
    bottom: -15px;
    right: 50%;

    transition: width 0.5s ease;
}

.login .login-form-header a::before,
.register .register-form-header a::before,
.forget-password .forget-password-header a::before {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--primary1);
    position: absolute;
    bottom: -15px;
    left: 50%;

    transition: width 0.5s ease;
}

.login .login-form-header a:hover::after,
.register .register-form-header a:hover::after,
.forget-password .forget-password-header a:hover::after {
    width: 50%;
}

.login .login-form-header a:hover::before,
.register .register-form-header a:hover::before,
.forget-password .forget-password-header a:hover::before {
    width: 50%;
}

.login-form,
.register-form,
.forget-form,
.reset-form {
    padding: 40px 20px 0;
}

.login .login-form form,
.register .register-form form,
.forget-password .forget-form form,
.reset-password .reset-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login .login-form form input,
.register .register-form form input,
.forget-password .forget-form form input,
.reset-password .reset-form form input {
    width: 100%;
    height: 70px;
    padding: 24px 40px 24px 20px;
    border-radius: 10px;
    border: 1px solid #dbf0e9;
    outline-color: #8d8f9565;
}

.login .login-form form .input,
.register .register-form form .input,
.forget-password .forget-form form .input,
.reset-password .reset-form form .input {
    position: relative;
}

.login .login-form form .input img,
.register .register-form form .input img,
.forget-password .forget-form form .input img,
.reset-password .reset-form form .input img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.login .login-form form a,
.register .register-form a,
.forget-password .forget-form form a {
    text-decoration: none;
    font-size: 18px;
    color: black;
}

.login .login-form form button,
.register .register-form form button,
.forget-password .forget-form form button,
a.custom__hov,
form button {
    font-size: 22px;
    font-weight: 500;
    color: white;
    width: 100%;
    height: 70px;
    align-content: center;
    text-align: center;
    background-color: var(--primary1);
    border-radius: 10px;
    border: none;
    transition: 1s;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    z-index: 2;
}

.login .login-form form button::before,
.register .register-form form button::before,
.forget-password .forget-form form button::before,
form button::before,
.ctm-btn::before,
a.custom__hov::before {
    content: "";
    position: absolute;
    background-color: white;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 0%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 1s ease;
}

.login .login-form form button p,
.register .register-form form button p,
form button p,
form button p {
    margin: 0;
    transition: 1s;
}

.login .login-form form button:hover p,
.register .register-form button:hover p,
.forget-password .forget-form form button:hover p,
.reset-form form button:hover p {
    color: var(--primary1);
    position: relative;
}

.login .login-form form button:hover,
.register .register-form form button:hover,
.forget-password .forget-form form button:hover,
form button:hover {
    border: 1px solid var(--primary1);
    color: var(--primary1) !important;
}

.login .login-form form button:hover::before,
.register .register-form button:hover::before,
.forget-password .forget-form form button:hover::before,
form button:hover::before,
.login .login-form .login-links .col:hover::after,
.login .login-form .login-links .col:hover::before,
.register .register-form .register-links .col:hover::before,
.add-property:hover::before,
.ctm-btn:hover::before,
a.custom__hov:hover::before {
    height: 800%;
}

.login .login-form form button p,
.register .register-form form button p,
.forget-password .forget-form form button p {
    z-index: 9;
}

.forget-password .forget-form form .send-code {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.forget-password .forget-form form .send-code a {
    color: var(--primary1);
    font-size: 14px;
    font-weight: 500;
}

.login .login-form .login-links,
.register .register-form .register-links {
    text-align: center;
}

.login .login-form .login-links .row,
.register .register-form .register-links .row {
    gap: 15px;
    margin: 20px 0px 0;
    align-items: center;
    justify-content: space-between;
}

.login .login-form .login-links .col,
.register .register-form .register-links .col {
    height: 70px;
    border-radius: 10px;
    border: 1px solid #52b69582;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.login .login-form .login-links .col::before,
.register .register-form .register-links .col::before,
.add-property::before {
    content: "";
    position: absolute;
    background-color: var(--primary1);
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 0%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 1s ease;
}

.login .login-form .login-links .col:hover .col a,
.login .login-form .login-links .col:hover p,
.register .register-form .register-links .col:hover .col a,
.register .register-form .register-links .col:hover p,
.add-property:hover {
    position: relative;
    color: white;
}

.add-property,
.ctm-btn {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.login .login-form .login-links .col a,
.register .register-form .register-links .col a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 1s;
    font-weight: 500;
}

.login .login-form .login-links .col img,
.register .register-form .register-links .col img {
    width: 24px;
    height: 24px;
    margin-left: 4px;
    transition: 0.3s;
}

.login .login-form .login-links .col p,
.register .register-form .register-links .col p {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary1);
    margin: 0;
    transition: 1s;
}

#verification-email {
    color: black;
}

.forget-form form .input-check-code {
    display: flex;
    gap: 10px;
    direction: ltr;
    justify-content: space-around;
    padding: 0 20px;
}

.forget-form form .input-check-code input {
    width: 75px;
    height: 75px;
    font-size: 24px;
    text-align: center;
    border-radius: 50%;
    padding: 0;
    background-color: #edf7f482;
}

.login .login-form-header .active-form::after,
.register .register-form-header .active-form::after,
.forget-password .forget-password-header .active-form::after,
.login .login-form-header .active-form::before,
.register .register-form-header .active-form::before,
.forget-password .forget-password-header .active-form:hover::before {
    width: 50%;
}

.login .login-form .login-form-header .active-form,
.register .register-form .register-form-header .active-form {
    color: var(--primary1);
}

.property-profile {
    margin: 100px 0;
}

.property-profile aside {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.property-profile aside .profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: right;
    border-bottom: 1px solid #d1d1d195;
    padding: 10px;
}

.property-profile aside .profile-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.property-profile aside .profile-header h3 {
    color: var(--primary1);
    font-size: 24px;
}

.property-profile aside .profile-header p {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.property-profile aside .profile-header .profile-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-profile aside .profile-links ul {
    list-style: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
}

.property-profile aside .profile-links ul li a {
    text-decoration: none;
    color: var(--gray);
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
}

.property-profile aside .profile-links ul li a:hover {
    color: var(--primary1);
}

.property-profile aside .profile-links .add-property {
    display: block;
    width: 100%;
    height: 64px;
    border: 2px solid var(--primary1);
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    align-content: center;
    font-size: 18px;
    color: var(--primary1);
    transition: 1s;
    margin-top: 20px;
}

.property-profile aside .profile-links .add-property:hover {
    color: white;
}

.property-profile .property-list .nav {
    border-radius: 12px;
    border: 1px solid #dbf0e9;
    padding: 10px;
    width: fit-content;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.property-profile .property-list .nav button {
    width: 180px;
    height: 64px;
    background-color: white;
    color: var(--gray);
    text-align: center;
    align-content: center;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
}

.property-profile .property-list .nav .active {
    background-color: #dbf0e98d;
    color: var(--primary1);
}

.property-list .list-nav .nav-card {
    border: 1px solid #dbf0e9;
    border-radius: 8px;
    padding: 20px;
    color: var(--gray);
    margin-bottom: 20px;
}

.property-list .list-nav .nav-card .col-lg-6,
.property-list .list-nav .nav-card .col-lg-8 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-list .list-nav .nav-card .card-header {
    display: flex;
    justify-content: space-between;
}

.property-list .list-nav .nav-card .img-container img {
    height: 300px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.property-list .list-nav .nav-card .card-header .location {
    display: flex;
}

.property-list .list-nav .nav-card .card-header .location img {
    width: 24px;
    height: 22px;
}

.property-list .list-nav .nav-card .card-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-list .list-nav .nav-card .period {
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-list .list-nav .nav-card .period i {
    color: var(--primary1);
}

.property-list .list-nav .nav-card .period p {
    margin-bottom: 5px;
}

.property-list .list-nav .nav-card .dates-details,
.property-list .list-nav .nav-card .times-details {
    display: flex;
    justify-content: space-between;
}

.property-list .list-nav .nav-card .dates-details h5,
.property-list .list-nav .nav-card .times-details h5 {
    color: var(--primary1);
}

.property-list .list-nav .nav-card .dates-details p,
.property-list .list-nav .nav-card .times-details p {
    color: var(--gray);
}

.profile-link-active {
    color: var(--primary1) !important;
    position: relative;
    padding-right: 15px;
}

.profile-link-active::before {
    content: "";
    width: 10px;
    height: 2px;
    background-color: var(--primary1);
    position: absolute;
    right: 0;
    top: 60%;
    transform: translateY(-60%);
}

.prfile-editing-form {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.prfile-editing-header {
    margin-bottom: 30px;
}

.prfile-editing-header p,
.prfile-editing-body form p {
    font-size: 24px;
    color: var(--primary1);
    margin-bottom: 10px;
    width: 100%;
}

.prfile-editing-header h3 {
    color: var(--gray);
    font-size: 18px;
}

.prfile-editing-body form .input {
    position: relative;
}

.prfile-editing-body form input {
    width: 100%;
    height: 70px;
    padding: 24px 40px 24px 20px;
    border-radius: 10px;
    border: 1px solid #dbf0e9;
    outline-color: #8d8f9565;
}

.prfile-editing-body form .input img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.prfile-editing-body form .input i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    font-size: 20px;
    color: var(--gray);
}

form .action-buttons {
    display: flex;
    gap: 15px;
}

form .action-buttons button {
    color: white;
    background-color: var(--primary1);
    width: 200px;
    height: 64px;
    border-radius: 8px;
    border: transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

form .action-buttons a {
    color: var(--primary1);
    background-color: white;
    border: 1px solid #dbf0e9;
    width: 200px;
    height: 64px;
    border-radius: 8px;
    text-align: center;
    align-content: center;
    text-decoration: none;
}

.logOut-form {
    align-items: center;
    justify-content: center;
}

.logOut .logOut-container .logOut-cover {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-color: #edf7f4;
    align-content: center;
    text-align: center;
}

.logOut-form h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary1);
}

.logOut-form p {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
}

.property-attributes,
.sub-property-attributes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.sub-property-attributes h4 {
    font-size: 18px;
}

.advertise-date {
    display: flex;
    align-items: center;
}

.advertise-date img {
    width: 24px;
    height: 24px;
}

.advertise-date p {
    margin: 0;
}

hr {
    border: 1px solid var(--primary1) !important;
}

.booking-case {
    display: flex;
    justify-content: space-between;
}

.booking-case p:last-child {
    color: var(--primary1);
}

.offers-cards-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.offers-cards-header p {
    font-size: 22px;
    color: var(--primary1);
}

.offers-cards-header button {
    border: 1.5px solid var(--primary1);
    border-radius: 8px;
    color: var(--primary1);
    background-color: white;
    width: 220px;
    height: 64px;
    font-size: 18px;
}

.offers-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offers-card-header p {
    font-size: 18px;
    margin: 0;
    color: var(--primary1);
}

.offers-card-actions {
    display: flex;
    gap: 8px;
}

.offers-card-header a {
    text-decoration: none;

    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #edf7f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-card-header a img {
    text-decoration: none;
    width: 24px;
    height: 24px;
}

.offer-date {
    color: var(--gray);
    font-size: 18px;
}

.offer-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-description h3 {
    font-size: 18px;
    font-weight: 400;
    color: black;
}

.offer-description p {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray);
    margin-top: 10px;
}

.offer-description .offer-discount,
.offer-description .offer-property-type,
.offer-description .offer-date {
    text-align: center;
}

.offer-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-status p {
    color: black;
    font-size: 18px;
}

.offer-status label {
    color: var(--primary1);
    font-size: 18px;
    margin-left: 8px;
}

.offer-status .form-check-input {
    background-color: #dbf0e9 !important;
    height: 25px;
    width: 45px !important;
}

.offer-status .form-check-input:checked {
    background-color: var(--primary1) !important;
    border-color: #52b694 !important;
}

.offer-status .form-check-input:focus {
    border-color: #dbf0e9 !important;
    box-shadow: 0 0 0 0.25rem #b7e1d3 !important;
}

.property-list .list-nav .nav-card.offers-card {
    padding: 20px;
}

#addOffer .offcanvas-body .offer-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#addOffer .offcanvas-body .offer-input input,
#addOffer .offcanvas-body .offer-input #discount-type {
    height: 64px;
    border-radius: 12px;
    border: 1.5px solid #dbf0e9;
    padding: 5px;
    width: 100%;
}

#addOffer .offcanvas-body .offer-input .choose-discount-type {
    position: relative;
}

#addOffer .offcanvas-body .offer-input #discount-type {
    width: 100%;
    appearance: none;
}

#addOffer .offcanvas-body .offer-input i {
    position: absolute;
    left: 20px;
    transform: translateY(-50%);
    top: 50%;
    color: var(--gray);
    font-size: 16px;
    font-weight: bold;
}

#addOffer .offcanvas-body .offer-input .discount-value {
    position: relative;
}

#addOffer .offcanvas-body .offer-input .discount-value span {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.discount-value {
    display: flex;
}

#addOffer .offcanvas-body .offer-input .amount {
    display: none;
}

#addOffer .offcanvas-body .offer-input .input-date {
    position: relative;
}

#addOffer .offcanvas-body .offer-input .input-date img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Remove the date icon in Chrome, Safari, Edge, and Opera */
#addOffer .offcanvas-body .offer-input input[type="date"] {
    appearance: none;
    /* Standard property */
    -webkit-appearance: none;
    /* Chrome, Safari, Edge, Opera */
    -moz-appearance: textfield;
    /* Firefox */
    text-align: end;
}

/* Remove the date icon for Chrome, Safari, Edge, and Opera specifically */
#addOffer
    .offcanvas-body
    .offer-input
    input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

/* Remove the date icon in Internet Explorer */
#addOffer .offcanvas-body .offer-input input[type="date"]::-ms-clear {
    display: none;
}

.add-offers-actions button,
.add-offers-actions a {
    width: 100%;
    height: 64px;
    text-align: center;
    align-content: center;
    text-decoration: none;
    border-radius: 8px;
    display: block;
    font-size: 18px;
}

.add-offers-actions button {
    background-color: var(--primary1);
    color: white;
    font-weight: 500;
}

.add-offers-actions a {
    color: var(--primary1);
    border: 1.5px solid var(--primary1);
}

.offcanvas {
    --bs-offcanvas-width: 450px !important;
}

.offcanvas .offcanvas-header h5 {
    color: var(--gray);
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.offcanvas .offcanvas-header button {
    color: var(--gray);
    border-radius: 50%;
    border: 1px solid var(--gray);
    margin: 0;
}

:focus-visible {
    outline-color: #52b694;
}

.offcanvas .value-input span {
    color: var(--primary1);
}

.rent-property .rent {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rent-property .rent p {
    color: black;
}

.rent-property .rent span,
.rent-property .rent a {
    margin-right: 5px;
    color: var(--gray);
}

.rent-property .rent a {
    color: var(--primary1);
}

.rent-property .rent.property-rent-code p {
    color: var(--primary1);
    background-color: #edf7f4;
    width: fit-content;
    margin: 0;
    padding: 6px 10px;
    border-radius: 5px;
}

.sub-counter-header {
    width: 140px;
    height: 140px;
    display: flex;
    right: 2px;
    z-index: 1;
    animation: infinite;
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

    align-items: center;
    justify-content: center;
    color: var(--color-white);
    align-content: center;
    flex-wrap: wrap;
    gap: 3px;
    border-radius: 50%;
    position: absolute;
    top: 72px;
    background-color: var(--color-Primary1);
}

.sub-counter-header::after {
    content: "";
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid #e6f2ff;
}

.title-center {
    text-align: center;
    margin-bottom: 40px;
}

.title-center h2 {
    font-size: 27px;
    font-family: "semiBold";
}

.sub-features-index {
    border: 1px solid var(--color-border);
    padding: 35px 20px;
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    min-height: 280px;
}

.sub-features-index::after,
.img-features-index::after {
    content: "";
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
    opacity: 0;
    top: 0;
    background-color: var(--color-Primary5);
    right: 0;
}

.img-features-index::after {
    background-color: var(--color-white);
}

.sub-features-index:hover::after {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-duration: 0.8s;
    opacity: 1;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.sub-features-index:hover .img-features-index::after {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-duration: 0.8s;
    opacity: 1;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.img-features-index {
    width: 75px;
    overflow: hidden;
    height: 75px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edf7f4;
}

.img-features-index img {
    width: 50%;
    height: 50%;
}

.sub-features-index h2 {
    color: var(--color-Primary1);
    font-family: "semiBold";
    margin: 10px 0;
    font-size: 20px;
}

.links-tabs-product {
    margin: 50px 0 50px;
}

.links-tabs-product ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.links-tabs-product ul a {
    display: flex;
    align-items: center;
    color: var(--color-gray);
    height: 65px;
    transition: all 0.3s linear;
    justify-content: center;
    border-radius: 10px !important;
    gap: 10px;
    border: 1px solid var(--color-border);
}

.links-tabs-product ul a img {
    transition: all 0.3s linear;

    max-width: 34px;
    filter: brightness(0) invert(-1);
    height: 34px;
}

.links-tabs-product ul a.active {
    background-color: var(--color-Primary1) !important;
    color: var(--color-white);
}

.links-tabs-product ul a.active img {
    filter: brightness(0) invert(1);
}

.links-tabs-product ul a h3 {
    font-family: "font_medium";
}

.product {
    padding: 15px;
    border-radius: 15px;
    -webkit-animation-name: swing;
    animation-name: swing;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transition: all 0.3s linear;
    border: 1px solid var(--color-border);
    display: block;
}

.product:hover {
    box-shadow: 0 0 25px var(--color-Primary5);
}

.product:hover .to-chat {
    background-color: var(--primary1);
    color: #fff;
}

.to-chat:hover {
    background-color: var(--primary1);
    color: #fff;
    cursor: pointer;
}

.img-product {
    position: relative;
    height: 300px;
}

.img-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.text-product {
    margin-top: 20px;
}

.price-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-product h2 {
    color: var(--color-Primary1);
    font-size: 18px;

    font-family: "font_medium";
}

.rate-product {
    color: var(--color-gray);
}

.rate-product i {
    color: #ffc416;
}

.text-product > p {
    color: var(--color-gray);
    margin: 10px 0;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.address-product {
    font-size: 18px;
    color: var(--color-gray);
}

.address-product img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.num-details-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

.sub-num-details-product {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--color-gray);
}

.ctm-btn2 {
    height: 55px;
    display: inline-block;
    padding: 13px 25px;
    text-align: center;
    color: var(--color-Primary1);
    border-radius: 10px;
    transition: all 0.3s linear;

    background-color: var(--color-Primary5);
}

.ctm-btn2 i {
    line-height: 0;
    vertical-align: middle;
    margin: 0 3px;
}

.btn-product {
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}

.statistics-index {
    background-image: url(../images/bg-s.png);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.statistics-index::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-Primary1);
    opacity: 0.9;
    top: 0;
    left: 0;
    z-index: -1;
}

.t-w h2 {
    color: var(--color-white);
}

.text-counter-number {
    background-color: #e6f2ff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    font-size: 24px;
    font-family: "semiBold";
    margin: auto;
    color: var(--color-Primary1);
    align-items: center;
    justify-content: center;
}

.text-counter-number i {
    font-size: 20px;
}

.sub-statistics-index {
    text-align: center;
}

.sub-statistics-index h2 {
    color: var(--color-white);
    margin: 10px 0;
}

.sub-statistics-index p {
    width: 70%;
    margin: auto;
    color: var(--color-white);
}

.sub-statistics-index object {
    transform: scaleX(-1) translateY(-50%);
    position: absolute;
    user-select: none;
    width: 111%;
    top: 27%;
}

.checked {
    color: #ffc416 !important;
}

.rate span {
    color: var(--color-gray);
}

.sub-customer-index {
    z-index: 1;
    padding: 35px;
    transition: all 0.3s linear;
    position: relative;
    text-align: center;
    min-height: 330px;
}

.sub-customer-index::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 75%;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 10px;
    transition: all 0.3s linear;

    z-index: -1;
    border: 1px solid var(--color-border);
}

.sub-customer-index:hover::after {
    height: 100%;
    background-color: var(--color-Primary5);
}

.img-customer-index {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    border: 5px solid #fff;
    box-shadow: 0 2px 5px #0000004f;
}

.sub-customer-index h2 {
    font-size: 20px;
    margin: 10px 0;
    color: var(--color-Primary1);
}

.sub-customer-index p {
    margin: 10px 0;
}

.owl-nav button {
    width: 50px;
    position: relative !important;
    height: 30px;
    margin: 0 4px !important;
    transition: all 0.3s linear !important;
}

/* .owl-nav button::before {
  content: "";
  width: 10px;
  display: block;
  height: 10px;
  border-top: 2px solid #d1d3d4;
  border-right: 2px solid #d1d3d4;
  right: 2px;
  transition: all 0.3s linear;
  top: 50%;
  position: absolute;
  transform: translateY(-50%) rotate(45deg);
}

.owl-nav button::after {
  content: "";
  height: 2px;
  background-color: #d1d3d4;
  position: absolute;
  right: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s linear;
} */

.owl-nav button span {
    color: transparent !important;
}

button.owl-next {
    transform: scaleX(-1);
}

.main-blog-index {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    grid-auto-rows: minmax(100px, auto);
}

.sub-blog-index {
    transition: all 0.3s linear;
}

.sub-blog-index:hover {
    background-color: var(--color-Primary5);
}

.sub-blog-index:hover a {
    color: var(--color-white);
    background-color: var(--color-Primary1);
}

.sub-blog-index:nth-of-type(1) {
    grid-column: 1 / 3;
    grid-row: 1/3;
}

.sub-blog-index:nth-of-type(2) {
    grid-column: 3 / 5;
    display: flex;
    align-items: center;
    gap: 10px;
    grid-row: 1/2;
}

.sub-blog-index:nth-of-type(3) {
    grid-column: 3 / 5;
    display: flex;
    align-items: center;
    gap: 10px;
    grid-row: 2/3;
}

.sub-blog-index {
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--color-border);
}

.sub-blog-index:nth-of-type(1) .img-blog-index {
    width: 100%;
    height: 300px;
}

.sub-blog-index:nth-of-type(2) .img-blog-index,
.sub-blog-index:nth-of-type(3) .img-blog-index {
    width: 50%;
    height: 240px;
}

.sub-blog-index:nth-of-type(2) .text-blog-index,
.sub-blog-index:nth-of-type(3) .text-blog-index {
    width: calc(50% - 10px);
}

.sub-blog-index .img-blog-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.text-blog-index {
    padding: 25px 0;
}

.date-blog {
    display: flex;
    align-items: center;
    gap: 5px;
}

.date-blog img {
    width: 32px;
}

.date-blog h3 {
    font-size: 18px;
    color: var(--color-gray);
}

.text-blog-index h2 {
    margin: 10px 0;
    color: var(--color-Primary1);
    font-size: 20px;
    font-family: "font_medium";
}

.text-blog-index p {
    font-size: 19px;
    line-height: 35px;
    margin: 10px 0;
}

.sub-blog-index:nth-of-type(2) .text-blog-index p,
.sub-blog-index:nth-of-type(3) .text-blog-index p {
    font-size: 16px;
    height: 50px;
    overflow: hidden;
    line-height: 25px;
}

.ctm-btn3 {
    border: 1px solid var(--color-border);
    height: 55px;
    display: inline-block;
    border-radius: 10px;
    font-size: 17px;
    font-family: "font_medium";
    padding: 13px 30px;
    background-color: transparent;
}

.ctm-btn3 i {
    font-size: 28px;
    vertical-align: middle;
}

section.add__property {
    margin-top: 50px;
    margin-bottom: 100px;
}

.property__links__container {
    padding: 20px;
}

.add__property__link a {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    cursor: pointer;
}

.add__property__link a:hover h3 {
    color: var(--primary1);
}

.add__property__link a:hover p {
    color: var(--primary1);
}

.add__property__link a:hover .link__number {
    background-color: var(--primary1);
    color: #fff;
}

.add__property__link a.active h3 {
    color: var(--primary1);
}

.add__property__link a.active p {
    color: var(--primary1);
}

.add__property__link a.active .link__number {
    background-color: var(--primary1);
    color: #fff;
}

.add__property__link .link__number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray);
    transition: 0.3s;
}

.add__property__link h3 {
    color: var(--gray);
    font-size: 20px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.add__property__link p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
    transition: 0.3s;
    font-weight: 100;
}

.property__desc {
    padding: 20px;
}

.property__desc h2 {
    font-size: 24px;
    color: var(--primary1);
    font-weight: 400;
}

.property__desc p {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

.property__desc form {
    margin-top: 30px;
}

.property__desc form label {
    font-size: 18px;
    color: var(--primary2);
    text-align: right;
    margin-bottom: 10px;
    font-weight: 400;
    margin-top: 30px;
}

.property__desc form .input {
    position: relative;
    border: 1px solid #dbf0e9;
    border-radius: 10px;
    height: 60px;
    overflow: hidden;
}

.property__desc form .input .icon {
    position: absolute;
    left: 10px;
    top: 20px;
    color: var(--gray);
}

.property__desc form .input select {
    width: 100%;
    height: 100%;
    border: none;
    padding-right: 10px;
    color: var(--gray) !important;
    font-size: 14px;
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
}

.property__desc form .input input {
    width: 100%;
    height: 100%;
    border: none;
    padding-right: 10px;
    color: var(--gray);
    font-size: 14px;
}

.property__desc form .input input::placeholder {
    color: var(--gray);
}

.desc__input {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.desc__input textarea {
    height: 160px;
    border-radius: 10px;
    border: 1px solid #dbf0e9;
    padding: 10px;
    text-align: right;
    color: var(--gray);
    font-size: 14px;
    background-color: transparent !important;
}

.google__map {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
}

.google__map iframe {
    width: 100%;
    height: 100%;
}

.upload__img__container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.add__photo {
    width: 170px;
    height: 150px;
    position: relative;
}

.add__photo label {
    width: 100%;
    height: 100%;
}

.add__photo label img {
    width: 100%;
    height: 100%;
}

.add__photo input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

p.img__desc {
    font-size: 20px;
    color: var(--primary2);
    margin-top: 30px;
    margin-bottom: 50px;
}

.feat__input__container {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 40px;
    row-gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 20px;
}

.feat__input {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat__input label {
    margin: 0 !important;
    font-size: 20px !important;
    color: var(--gray) !important;
    font-weight: 400;
}

.more__features h4 {
    color: var(--primary1);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
}

input[type="time"] {
    text-align: right;
}

.time-placeholder,
.file-placeholder {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 999;
    background-color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.time-input-container input:not(:placeholder-shown) + .time-placeholder {
    opacity: 0;
    visibility: hidden;
}

.add__property form input[type="file"] {
    opacity: 0;
    cursor: pointer;
}

.confirm__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.confirm__header h3 {
    color: var(--primary1);
    font-size: 24px;
    font-weight: 400;
}

.edit__btn {
    display: flex;
    cursor: pointer;
    background-color: #edf7f4;
    padding: 10px;
    gap: 5px;
    transition: 0.4s;
    border-radius: 5px;
}

.edit__btn p {
    margin: 0;
    color: var(--primary1);
    font-size: 14px;
    transition: 0.4s;
}

.edit__btn:hover {
    background-color: var(--primary2);
}

.confirm__card ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

.confirm__card ul li span {
    color: var(--primary2);
    font-size: 18px;
}

.confirm__card {
    border-bottom: 1px solid var(--primary1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.upload__permitions__rental {
    border: 1px dashed var(--primary1);
    border-radius: 10px;
    height: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.upload__permitions__rental label {
    cursor: pointer;
    width: 120px;
    height: 110px;
}

.upload__permitions__rental label img {
    width: 100%;
    height: 100%;
}

.upload__permitions__rental p {
    color: var(--primary2);
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
}

.uploaded__file__name {
    display: flex;
    align-items: center;
    border: 1px solid var(--primary1);
    border-radius: 10px;
    margin-top: 30px;
    padding: 20px;
    gap: 20px;
    display: none;
}

.uploaded__file__name.show {
    display: flex;
}

.progress__container {
    flex: 1;
}

.uploaded__file__name img {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.progress__file {
    position: relative;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background-color: #8d8f9587;
    margin: 10px 0;
}

.progress__file::before {
    content: "";
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: var(--primary1);
    border-radius: 10px;
    position: absolute;
}

.file__name {
    font-size: 16px;
    color: var(--primary2);
}

.file__size {
    color: var(--gray);
    font-size: 14px;
}

section.add__advertise {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.add__advertise__card {
    box-shadow: 0 0 10px var(--box-shadow-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 650px;
}

.add__advertise__card img {
    width: 400px;
    height: 300px;
}

.add__advertise__card h2 {
    color: var(--primary1);
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0;
}

.add__advertise__card p {
    font-size: 18px;
}

.add__advertise__card a {
    margin-left: auto;
    margin-right: auto;
}

section.about__us {
    display: flex;
    margin-top: 100px;
    margin-bottom: 50px;
    gap: 30px;
}

.about__us__img {
    position: relative;
    flex: 1;
    width: 50%;
}

.about__us__img .img {
    width: 50%;
    height: 480px;
    position: absolute;
    top: 0;
    right: 0;
}

.about__us__img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about__us__img .img:nth-child(2) {
    position: absolute;
    width: 48%;
    height: 400px;
    top: -50px;
    left: 0px;
    right: auto;
}

.about__us__img .img:nth-child(3) {
    position: absolute;
    width: 48%;
    height: 190px;
    top: 370px;
    left: 0px;
    right: auto;
}

.img__des {
    width: 50%;
    height: 130px;
    position: absolute;
    top: 500px;
    right: 0;
    background-color: var(--primary1);
    color: #fff;
    border-radius: 10px;
    font-size: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 30px;
}

.about__us__text {
    flex: 1;
}

.about__us__text h2 {
    font-size: 36px;
    color: var(--primary2);
    margin: 30px 0;
}

.about__us__text p {
    font-size: 22px;
    line-height: 2.5;
    margin-bottom: 30px;
    color: var(--gray);
}

.about__us__text p span {
    color: var(--primary2);
}

.about__us__text p span:nth-child(2) {
    color: var(--primary1);
}

section.our__vision {
    margin-top: 100px;
    margin-bottom: 100px;
}

.our__vision .img {
    width: 80px;
    height: 80px;
}

.our__vision .img img {
    width: 100%;
    height: 100%;
}

.our__vision h2 {
    font-size: 36px;
    color: var(--primary2);
    margin: 30px 0;
}

.our__vision p {
    color: var(--gray);
    font-size: 20px;
    line-height: 2;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.section__img {
    position: relative;
    width: 100%;
    height: 400px;
    margin-right: auto;
}

.our__message .section__img {
    margin-right: 0;
}

.section__img::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -20px;
    top: -20px;
    border-radius: 10px;
    background-color: #dbf0e9;
    z-index: -1;
}

.section__img img {
    width: 100%;
    height: 100%;
}

section.our__services {
    margin-top: 100px;
    margin-bottom: 100px;
}

section.our__services h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: 600;
}

.all__services {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
}

.card__servises {
    display: block;
    width: calc(50% - 20px);
    cursor: pointer;
    height: 300px;
    transition: 0.4s;
    border: 1px solid #dbf0e9;
    border-radius: 10px;
    padding: 30px;
}

.card__servises .img {
    background-color: #dbf0e9;
    border-radius: 5px;
    transition: 0.4s;
    width: 80px;
    height: 80px;
    padding: 20px;
    margin-bottom: 30px;
}

.card__servises .img img {
    width: 100%;
    height: 100%;
}

.card__servises h3 {
    color: var(--primary1);
    font-size: 18px;
    margin-bottom: 30px;
}

.card__servises p {
    color: var(--gray);
    font-size: 18px;
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.services__img {
    height: 620px;
}

.services__img img {
    width: 100%;
    height: 100%;
}

.card__servises:hover {
    background-color: #dbf0e9;
}

.card__servises:hover .img {
    background-color: #fff;
}

section.contact__info {
    margin-top: 100px;
    margin-bottom: 100px;
}

section.contact__info .owl-carousel {
    direction: ltr;
}

section.contact__info .main-container {
    width: 80%;
}

.contact__us__img {
    width: 100%;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
}

.contact__us__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact__us__info__container {
    position: relative;
}

.contact__us__info {
    padding: 30px;
}

.contact__us__info h2 {
    color: var(--primary1);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact__us__info p {
    color: var(--gray);
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
}

.contact__us__info a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact__us__info a .img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #dbf0e9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
}

.contact__us__info a:hover .img img {
    animation: rubberBand infinite 1s;
}

.contact__us__info a:hover h3 span {
    color: var(--primary1);
}

.contact__us__info a .img img {
    width: 100%;
    height: 100%;
}

.contact__us__info h3 {
    font-weight: 400;
    font-size: 18px;
    color: var(--primary1);
    flex: 1;
}

.contact__us__info h3 span {
    color: var(--gray);
}

.contact__us__info {
    position: absolute;
    left: -30%;
    z-index: 999;
    background-color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.contact__info .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.contact__info .owl-dots .owl-dot.active span {
    background-color: var(--primary1);
}

.contact__info .owl-dots button span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #dbf0e9;
    border-radius: 50%;
}

section.contact__form {
    margin-top: 100px;
    margin-bottom: 100px;
}

.form__contact__us {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form__contact__us h2 {
    text-align: center;
    color: var(--primary2);
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 25px;
}

.form__contact__us input {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #edf7f4;
    background-color: #edf7f4;
    transition: 0.4s;
    height: 60px;
    padding: 10px;
    margin-bottom: 30px;
}

.form__contact__us input:focus {
    background-color: transparent;
}

.form__contact__us textarea {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #edf7f4;
    background-color: #edf7f4;
    transition: 0.4s;
    height: 300px;
    padding: 10px;
    margin-bottom: 20px;
}

.form__contact__us textarea:focus {
    background-color: transparent;
}

.form__contact__us button {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

section.blogs {
    margin-top: 100px;
    margin-bottom: 100px;
}

.blog__search {
    padding: 20px;
    border: 1px solid #dbf0e9;
    border-radius: 10px;
}

.blog__search .search {
    width: 100%;
    border-radius: 5px;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog__search .search input {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #dbf0e975;
    border-radius: 10px;
    border: 2px solid #dbf0e9;
    padding: 10px;
    color: var(--gray);
}

.blog__search .search input:focus {
    background-color: transparent;
}

.blog__search .search .img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
}

.blog__search h3 {
    font-size: 20px;
    color: var(--primary2);
    margin-bottom: 30px;
}

.search__result {
    display: flex;
    background-color: #dbf0e975;
    border: 2px solid #dbf0e9;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s;
    gap: 20px;
    margin-bottom: 30px;
}

.search__result:hover {
    background-color: var(--primary2);
}

.search__result .img_res {
    width: 100px;
    height: 100px;
}

.search__result .img_res img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.result__text {
    flex: 1;
}

.date__blog {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.date__blog p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.result__text .desc {
    color: var(--gray);
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.blogs__container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

.blog {
    width: calc(100% / 2 - 20px);
    padding: 20px;
    border: 1px solid #dbf0e9;
    border-radius: 10px;
    transition: 0.4s;
}

.blog:hover {
    background-color: var(--color-Primary5);
}

.blog img.blog_img {
    width: 100%;
    border-radius: 10px;
    height: 260px;
    object-fit: cover;
    margin-bottom: 20px;
}

.blog h3 {
    color: var(--primary1);
    font-size: 20px;
    margin-bottom: 20px;
}

.blog p {
    font-size: 18px;
    color: var(--gray);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.blog .frm__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 150px;
    height: 50px;
}

.blog .icon {
    z-index: 9999;
    transition: 0.4s;
}

.blog .frm__btn:hover .icon {
    color: var(--primary2);
}

.blog .frm__btn:hover p {
    color: var(--primary2) !important;
}

.blogs__dateails .blog {
    width: 100%;
}

.sub__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.sub__header .icon {
    color: var(--primary1);
}

.sub__header a {
    color: var(--gray);
    font-size: 20px;
}

.sub__header span {
    color: var(--gray);
}

.sub__header p {
    color: var(--primary1);
    font-size: 20px;
}

.retreat__search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.retreat__search .input {
    position: relative;
    border-radius: 10px;
    width: 600px;
    height: 80px;
}

.retreat__search .input img.location {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
}

.retreat__search .input .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--primary1);
    color: #fff;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 20px;
    top: 50%;
    cursor: pointer;
}

.retreat__search .input input {
    width: 100%;
    height: 100%;
    padding-right: 60px;
    border: 2px solid var(--color-Primary5);
    background-color: var(--color-Primary5);
    color: var(--gray);
    border-radius: 10px;
    transition: 0.4s;
}

.retreat__search .input input:focus {
    background-color: transparent;
}

.search__filter {
    display: flex;
    align-items: center;
    width: 200px;
    height: 80px;
    gap: 10px;
    background-color: var(--color-Primary5);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s;
    justify-content: center;
}

.search__filter p {
    color: var(--primary1);
    font-size: 20px;
}

.search__filter:hover {
    background-color: var(--primary2);
}

.retreats__count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.retreats__count p {
    font-size: 20px;
}

.filter__select {
    position: relative;
    border: 1px solid var(--primary1);
    border-radius: 10px;
    cursor: pointer;
    width: 170px;
    height: 60px;
}

.filter__select .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray) !important;
}

.filter__select p {
    font-size: 20px;
}

.filter__select select {
    width: 100%;
    height: 100%;
    text-align: center;
    border: none;
    color: var(--gray) !important;
    cursor: pointer;
}

.retreats__cards__container .list {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.retreat__card {
    display: block;
    width: calc(100% / 3 - 20px);
    padding: 20px;
    border: 1px solid var(--color-Primary5);
    border-radius: 10px;
    transition: 0.4s;
}

.retreat__card:hover {
    box-shadow: 0 0 30px var(--color-Primary5);
}

.retreat__card:hover .retreat__contact {
    background-color: var(--primary1);
}

.retreat__card:hover .retreat__contact p {
    color: #fff;
}

.retreat__contact:hover p {
    color: var(--primary1);
}

.ctm-btn:hover.retreat__contact p {
    color: var(--primary1);
}

.ctm-btn:hover.retreat__contact img {
    filter: brightness(1) !important;
}

.retreat__card:hover .retreat__contact img {
    filter: brightness(11);
}

.retreat__card .owl-carousel {
    direction: ltr;
}

.retreat__card .item {
    border-radius: 10px;
    overflow: hidden;
}

.retreat__card .item img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.retreat__card .owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.retreat__card .owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff8f;
}

.retreat__card .owl-carousel .owl-dots .owl-dot.active span {
    background-color: #fff;
}

.retreat__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.retreat__title h2 {
    color: var(--primary1);
    font-size: 20px;
    font-weight: 500;
}

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

.rate__rereat .icon {
    color: #ffc416;
}

.retreat_desc {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.retreat__location {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.retreat__location img {
    width: 25px;
    height: 25px;
}

.details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary1);
    padding-bottom: 20px;
}

.detail {
    display: flex;
    gap: 10px;
}

.details img {
    width: 25px;
    height: 25px;
}

.retreat__contact {
    display: flex;
    background-color: var(--color-Primary5);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s;
    justify-content: center;
    gap: 10px;
    padding: 15px;
}

.retreat__contact img {
    width: 25px;
    height: 25px;
}

.make__pagination {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.make__pagination .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eeeeee;
    border: 2px solid #c8c8c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c8c8c8;
    transition: 0.4s;
    cursor: pointer;
}

.make__pagination .icon:hover {
    background-color: transparent;
    border-color: var(--primary1);
}

.make__pagination .icon.active {
    background-color: transparent;
    border-color: var(--primary1);
}

.make__pagination .nums {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.make__pagination .nums .num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-Primary5);
    color: var(--primary1);
    font-weight: 600;
    font-size: 20px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.make__pagination .nums .num:hover {
    background-color: var(--primary1);
    color: #fff;
    box-shadow: 0 0 15px var(--primary1);
}

.make__pagination .nums .num.active {
    background-color: var(--primary1);
    color: #fff;
    box-shadow: 0 0 15px var(--primary1);
}

.offcanvas-header {
    margin-top: 30px;
}

.btn-close {
    border: 1px solid var(--gray);
    border-radius: 50%;
    color: var(--gray);
    margin-right: 20px !important;
}

.offcanvas-header h3 {
    text-align: center;
    width: 100%;
    color: var(--gray);
    font-size: 20px;
}

.retreat__space {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 30px;
}

.retreat__space__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.retreat__space__title p {
    color: var(--primary2);
    font-size: 22px;
    font-weight: 500;
}

.retreat__space input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--color-Primary5);
    height: 60px;
    padding: 20px;
    color: var(--gray);
    font-size: 18px;
}

.retreat__kind {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 30px;
}

.retreat__kind__inputs {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

.retreat__kind__inputs .input {
    position: relative;
}

.retreat__kind__inputs .input input {
    position: absolute;
    opacity: 0;
}

.retreat__kind__inputs label {
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--color-Primary5);
    padding: 20px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.retreat__kind__inputs label,
.retreat__kind__inputs label img {
    transition: 0.4s;
}

.retreat__kind__inputs label img {
    width: 40px;
    height: 40px;
}

.retreat__kind__inputs input[type="checkbox"]:checked + label {
    background-color: var(--primary1);
}

.retreat__kind__inputs input[type="checkbox"]:checked + label img {
    filter: brightness(11);
}

.retreat__kind__inputs input[type="checkbox"]:checked + label p {
    color: #fff;
}

.offcanvas.offcanvas-start.show {
    width: 600px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: auto;
    right: 0;
}

.noUi-horizontal .noUi-handle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--primary1);
}

.noUi-horizontal {
    height: 14px;
}

.noUi-connect {
    background-color: var(--primary1);
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto;
    overflow-x: hidden;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: auto;
    right: -14px;
}

.range__vlue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.range__vlue__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.price__slider {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e2e2;
}

.rooms .inputs__container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rooms {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e2e2;
}

.rooms .inputs__container label {
    width: 45px;
    height: 55px;
    border-radius: 5px;
    border: 1px solid var(--color-Primary5);
    color: var(--gray);
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.rooms .inputs__container .input {
    position: relative;
}

.rooms .inputs__container .input input {
    position: absolute;
    opacity: 0;
}

.rooms .inputs__container .input:nth-child(1) label {
    width: 95px;
    height: 55px;
}

.rooms .inputs__container input[type="radio"]:checked + label {
    background-color: var(--primary1);
    color: #fff;
}

.rooms h2 {
    color: var(--primary2);
    font-size: 18px;
    font-weight: 400;
}

.views {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e2e2;
}

.views .inputs__container {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
}

.views .inputs__container label {
    border-radius: 5px;
    border: 1px solid var(--color-Primary5);
    color: var(--gray);
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: auto;
    padding: 10px 15px;
}

.views .inputs__container .input {
    position: relative;
}

.views .inputs__container .input input {
    position: absolute;
    opacity: 0;
}

.views .inputs__container input[type="checkbox"]:checked + label {
    background-color: var(--primary1);
    color: #fff;
}

.frm__btns {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding-bottom: 30px;
}

.frm__btns button {
    width: 50%;
    font-size: 18px;
    font-weight: 500;
}

.frm__btns a {
    width: 50%;
    font-size: 18px;
    font-weight: 500;
}

button.custom__hov {
    background-color: #fff;
    border-color: var(--primary1);
    color: var(--primary1);
}

a.custom__hov {
    background-color: #fff;
    border-color: var(--primary1);
    color: var(--primary1);
}

button.custom__hov::before {
    background-color: var(--primary1);
}

a.custom__hov::before {
    background-color: var(--primary1);
}

button.custom__hov:hover {
    color: #fff !important;
}

a.custom__hov:hover {
    color: #fff !important;
}

form.left-modal-form {
    padding-left: 20px;
    padding-right: 20px;
}

.retreat__imgs__haeder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.retreat__imgs__haeder h3 {
    color: var(--primary1);
    font-size: 24px;
    font-weight: 500;
}

.retreat__imgs__haeder__links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.retreat__imgs__haeder__links .retreat__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    transition: 0.4s;
    cursor: pointer;
}

.retreat__imgs__haeder__links .retreat__link .icon {
    background-color: var(--color-Primary5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retreat__imgs__haeder__links .retreat__link .icon svg {
    color: var(--primary1);
    width: 30px;
    height: 20px;
}

.retreat__imgs__haeder__links .retreat__link p {
    font-weight: 500;
    transition: 0.4s;
}

.retreat__imgs__haeder__links .retreat__link:hover {
    background-color: var(--primary2);
    transform: translateY(-10px);
}

.retreat__imgs__haeder__links .retreat__link:hover .icon {
    background-color: var(--primary1);
}

.retreat__imgs__haeder__links .retreat__link:hover .icon svg {
    color: #fff;
}

.favourate_icon {
    background-color: var(--primary1) !important;
}

.favourate_icon svg {
    color: #fff !important;
}

.retreat__imgs__haeder__links .retreat__link:hover p {
    color: #fff;
}

section.retreat__imgs {
    margin-top: 20px;
    margin-bottom: 50px;
}

.grid__img__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 270px);
    gap: 10px;
    direction: ltr;
    position: relative;
}

.grid__img__container .show-more {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 10px;
    background-color: var(--color-Primary5);
    color: var(--primary1);
    cursor: pointer;
    transition: 0.4s;
    border-radius: 5px;
}

.grid__img__container .show-more:hover {
    background-color: var(--primary1);
    color: #fff;
}

.grid__img__container .img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.grid__img__container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid__img__container .img:nth-child(1) img {
    border-radius: 0 10px 10px 0;
}

.grid__img__container .img:nth-child(4) img {
    border-radius: 10px 0px 0px 10px;
}

.grid__img__container .img:nth-child(2) img {
    border-radius: 10px 0px 0px 10px;
}

.grid__img__container .img:nth-child(1) {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
}

.retreat__details__section {
    margin-bottom: 50px;
}

.retreat__details__section h3 {
    color: var(--primary2);
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 24px;
}

.retreat__details__section .text {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}

.retreat__details__section img {
    width: 25px;
    height: 25px;
}

.retreat__details__section p {
    font-size: 20px;
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
}

.retreat__details__section p.desc {
    margin-bottom: 50px;
    width: 90%;
}

.retreat__details__section .icons {
    display: flex;
    margin-bottom: 20px;
    gap: 30px;
}

.retreat__details__section .icons .icon {
    display: flex;
    gap: 10px;
}

.retreat__details__section .features__container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.retreat__details__section .feature {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.retreat__details__section ul li {
    margin-bottom: 20px;
    list-style-type: disc;
}

.retreat__details__section ul {
    list-style-type: disc;
    margin-bottom: 50px;
}

.retreat__details__section .card {
    padding: 20px;
    text-align: center;
    border-color: var(--color-Primary5);
    transition: 0.4s;
    margin-bottom: 50px;
}

.retreat__details__section .card .nam__letter {
    background-color: var(--color-Primary5);
    color: var(--primary1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    margin-bottom: 40px;
}

.retreat__details__section .card h2 {
    color: var(--primary1);
    font-size: 24px;
    margin-bottom: 10px;
    transition: 0.4s;
}

.retreat__details__section .card .person_rate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.retreat__details__section .card .person_rate .text {
    color: var(--primary2);
}

.retreat__details__section .card .person_rate .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.retreat__details__section .card .person_rate .icons .icon {
    color: #e2e2e2;
    font-size: 12px;
}

.retreat__details__section .card .person_rate .icons .icon.active {
    color: #ffc416;
}

.retreat__details__section .card a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-Primary5);
    cursor: pointer;
    transition: 0.4s;
    padding: 10px;
    border-radius: 10px;
}

.retreat__details__section .card a:hover {
    background-color: var(--primary2);
}

.retreat__details__section .card a:hover img {
    animation: rubberBand infinite 1s;
}

.retreat__details__section .card a p {
    color: var(--primary1);
    font-size: 18px;
}

.retreat__details__section .card button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-Primary5);
    cursor: pointer;
    transition: 0.4s;
    padding: 10px;
    border-radius: 10px;
}

.retreat__details__section .card button:hover {
    background-color: var(--primary2);
}

.retreat__details__section .card button:hover img {
    animation: rubberBand infinite 1s;
}

.retreat__details__section .card button p {
    color: var(--primary1);
    font-size: 18px;
}

.arrive__card {
    padding: 20px;
    border-color: var(--color-Primary5);
    transition: 0.4s;
}

.arrive__card label {
    color: var(--primary2);
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.arrive__card .input {
    position: relative;
    width: 100%;
    height: 60px;
    border: 1px solid var(--color-Primary5);
    border-radius: 10px;
    overflow: hidden;
}

.arrive__card .input input {
    width: 100%;
    height: 100%;
    border: none;
    padding-right: 10px;
    text-align: right;
    color: var(--gray);
}

.date-placeholder {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 999;
    background-color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.arrive__card .input .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.arrive__card .frm__btn {
    width: 100%;
    margin-bottom: 20px;
}

.arrive__date,
.arrive__time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.arrive__date p {
    color: var(--primary2);
}

.internal__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--primary1);
    font-size: 23px;
}

.modal-user-agreement {
    text-decoration: underline !important;
    color: var(--primary1);
    font-size: 20px;
    background: none;
    border: none;
}

.opinion {
    width: 50%;
    display: flex;
    margin-top: 30px;
    gap: 30px;
    align-items: start;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.opinion:not(:last-child) {
    border-bottom: 1px solid #dbf0e9;
}

.opinion .img {
    width: 50px;
    height: 50px;
    background-color: var(--color-Primary5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.opinion__text {
    flex: 1;
    width: 100%;
}

.opinion__text p {
    width: 100%;
    word-wrap: break-word;
}

.opinion .img img {
    width: 30px;
    height: 30px;
}

.opinion .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.opinion .rating .icons {
    display: flex;
    align-items: center;
    gap: 3px;
}

.opinion .rating .icons .icon {
    color: #e2e2e2;
    font-size: 10px;
}

.opinion .rating .icons .icon.active {
    color: #ffc416;
}

.opinion h2 {
    color: var(--primary1);
    margin-bottom: 20px;
    font-size: 24px;
    margin-top: 10px;
}

.opinion .text-date-des {
    margin-bottom: 20px;
    color: var(--gray);
}

section.add__comment {
    margin-top: 30px;
    margin-bottom: 50px;
}

section.add__comment form {
    width: 50%;
}

.comment__btn {
    border: 2px solid var(--primary1);
    color: var(--primary1);
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: 0.4s;
    cursor: pointer;
    border-radius: 5px;
}

.comment__btn:hover {
    background-color: var(--primary1);
    color: #fff;
}

.add__comment textarea {
    background-color: var(--color-Primary5);
    border: 2px solid var(--color-Primary5);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    transition: 0.4s;
}

.add__comment label {
    color: var(--primary2);
    font-size: 18px;
}

.add-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.add-rating .input {
    cursor: pointer;
    position: relative;
    width: 35px;
    height: 35px;
}

.add-rating .input label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #c8c8c8;
    cursor: pointer;
}

.add-rating .input label.active {
    color: #ffc416;
}

.add-rating .input input {
    position: absolute;
    opacity: 0;
}

.booking_summary {
    border-top: 1px solid #c8c8c8;
    padding-top: 30px;
    margin-top: 20px;
}

.booking_summary h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary2);
}

.booking_summary .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.booking_summary .item p {
    font-size: 18px;
    font-family: 400px;
}

.booking_summary .item p span {
    color: red;
}

.money {
    text-align: center;
    color: var(--primary1);
    font-weight: 600;
}

.paymeny_way h6 {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary2);
    margin-top: 20px;
}

.paymeny_way {
    margin-top: 50px;
    padding: 20px;
}

.paymeny_way .way {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    position: relative;
}

.paymeny_way .way:not(:last-child) {
    border-bottom: 1px solid #c8c8c8;
}

.paymeny_way .way label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.paymeny_way .way label .text {
    display: flex;
    flex-direction: column;
}

.paymeny_way .way img {
    width: 90px;
    height: 40px;
}

.paymeny_way .way label h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray);
}

.paymeny_way .way label p {
    font-size: 14px;
    font-weight: 400;
}

.paymeny_way .frm__btn {
    width: 100%;
}

.problem__type {
    position: relative;
    border: 1px solid #dbf0e9;
    width: 100%;
    height: 60px;
    border-radius: 10px;
}

.problem__type .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.problem__type select {
    border: none;
    width: 100%;
    height: 100%;
    padding-right: 10px;
    color: var(--gray) !important;
    font-size: 16px;
    font-weight: 400;
}

.problem__type select option {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
}

.main__problem {
    margin: 20px 0;
}

.main__problem textarea {
    display: block;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    padding: 20px;
    background-color: transparent;
    border: 1px solid #dbf0e9;
}

.moadal__btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.moadal__btns .frm__btn {
    width: 50%;
}

section.notifications {
    margin-top: 50px;
    margin-bottom: 50px;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #dbf0e9;
    border-radius: 10px;
    padding: 20px;
    transition: 0.4s;
    margin-bottom: 20px;
}

.notification:hover {
    background-color: var(--color-Primary5);
}

.notification .img {
    width: 65px;
    height: 65px;
    background-color: var(--primary1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification .img img {
    width: 35px;
    height: 30px;
}

.notification .text {
    flex: 1;
}

.notification .text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.notification .text .date {
    font-size: 18px;
    color: var(--primary2);
}

.delete_note {
    width: 40px;
    height: 40px;
    color: var(--gray);
    color: var(--gray);
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.delete_note:hover {
    background-color: var(--primary1);
    color: #fff;
    animation: rubberBand infinite 1s;
}

.notifications__menu {
    position: absolute;
    top: 190px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    left: 66px;
    border-radius: 10px;
    width: 270px;
    transition: 0.4s;
    z-index: -1;
    opacity: 0;
}

.notifications__menu.show {
    opacity: 1;
    z-index: 99999;
}

.notifications__menu a {
    color: var(--gray);
    transition: 0.4s;
    position: relative;
    width: fit-content;
}

.notifications__menu a.log {
    color: var(--primary1);
}

.notifications__menu a.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: red;
}

/* .notifications__menu a.log span {
    margin-left: 10px;
} */

.notifications__menu a:hover {
    color: var(--primary1);
}

.user__img__profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-Primary5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user__img__profile img {
    width: 32px !important;
    height: 32px !important;
}

.rating__card {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 50px;
    transition: 0.4s;
}

.rating__card:hover .user__img__profile {
    background-color: #fff;
}

.rating__card:hover .rating__hrader {
    border-color: #fff;
}

.rating__hrader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-Primary5);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.rating__hrader p {
    color: var(--primary2) !important;
    font-size: 20px;
    font-weight: 300;
}

.rating__hrader h2 {
    color: var(--primary1);
}

.rating__card__content {
    display: flex;
    gap: 20px;
    width: 100%;
}

.rating__card__content .text {
    flex: 1;
    width: 100%;
}

.rating__card .stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars .icons i.active {
    color: #ffc416 !important;
}

.stars .icons i {
    color: var(--gray);
    font-size: 13px;
}

.rating__card .name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
    padding-left: 10px;
}

.rating__card .name h2 {
    color: var(--primary1);
    font-size: 24px;
}

.rating__card .name h2.prop_name {
    color: var(--primary2);
    font-size: 18px;
}

.rating__card .name p {
    font-size: 15px;
    font-weight: 300;
}

.rating__card .desc {
    color: var(--gray);
    line-height: 1.7;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    word-wrap: break-word;
}

p.retreat_name {
    font-size: 20px;
    margin-top: 20px;
}

p.retreat_name span {
    color: var(--primary2);
}

.paymen-user-way-add {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

.paymen-user-way-add p:nth-child(1) {
    color: var(--primary2);
}

.paymen-user-way-add .frm__btn {
    width: 120px;
    margin: 0;
}

.money-add-item {
    margin-bottom: 20px;
}

.money-add-item label {
    color: var(--primary2);
    font-size: 20px;
}

.money-add-item .input {
    position: relative;
    border: 1px solid var(--color-Primary5);
    border-radius: 10px;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.money-add-item .input input {
    border: none;
    width: 100%;
    height: 100%;
    padding-right: 10px;
    color: var(--gray);
}

.money-add-item .input select {
    border: none;
    width: 100%;
    height: 100%;
    padding-right: 10px;
    color: var(--gray) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
}

.money-add-item .input select option {
    color: var(--gray) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
}

.money-add-item .input .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.money-add-item .input span {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary2);
    font-size: 20px;
    font-weight: 600;
}

.btns__money {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btns__money .frm__btn {
    width: 50%;
}

/* edit in css ahmed */

.property-profile .property-list .nav button:hover {
    background-color: var(--color-Primary5);
    color: var(--primary1);
}

.property-list .list-nav .nav-card:hover {
    box-shadow: 0 0 35px var(--color-Primary5);
}

.property-list .list-nav .nav-card:hover .offers-card-header a {
    background-color: #fff;
}

.offers-card-header a:hover {
    animation: rubberBand infinite 1s;
}

.property-profile aside .profile-links ul li a {
    color: var(--color-gray);
    font-size: 20px;
    font-weight: 300;
    display: block;
    margin: 5px 0;
}

.property-profile aside .profile-links .add-property:hover {
    background-color: var(--primary1);
    color: #fff;
}

.form-check.form-switch input {
    cursor: pointer;
}

.offers-cards-header button:hover {
    background-color: var(--primary1);
    color: #fff;
}

.btn-product:hover a {
    background-color: var(--primary2);
    color: #fff;
}

.product.no-animation {
    animation: none;
    margin-bottom: 20px;
}

.advertiseCarousel {
    direction: ltr;
}

.advertiseCarousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.advertiseCarousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: block !important;
    border-radius: 50%;
    background-color: #d9d9d9;
    position: relative;
    top: -25px;
}

.advertiseCarousel .owl-dots .owl-dot.active {
    background-color: #fff;
}

.advertise-links {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99;
}

.advertise-links .icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: var(--color-Primary5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advertise-links .icon img {
    width: 25px;
    height: 25px;
}

.advertise-links .icon:hover img {
    animation: rubberBand infinite 1s;
}

.card-header p {
    color: var(--primary1);
    font-size: 20px;
    font-weight: 500;
}

.card-header p:nth-child(2) {
    color: var(--gray);
    font-size: 18px;
    font-weight: 400;
}

.nav-card h5 {
    font-weight: 400;
    font-size: 18px;
}

.log-out-btn {
    font-size: 18px;
    font-weight: 500;
}

.w_250px {
    width: 250px;
    font-size: 18px;
    font-weight: 400;
}

.normal__font {
    font-size: 18px;
    font-weight: 400;
}

.log-out-btn-exit {
    background-color: #fff !important;
    color: var(--primary1) !important;
    border: 1px solid var(--primary1) !important;
}

button.btn-register-hover:hover::before {
    height: 950% !important;
}

.nav-pills .nav-link:hover {
    background-color: var(--primary1);
}

.nav-pills .nav-link:hover h3 {
    color: #fff;
}

.nav-pills .nav-link:hover img {
    filter: brightness(11);
}

.no-border {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

form.add-offers-frm {
    padding-right: 20px;
}

.img__carousell {
    direction: ltr;
}

/* .data__range {
  font-weight: 500 !important;
  color: var(--primary2) !important;
} */
.data__range {
    font-weight: 500 !important;
    color: var(--primary2) !important;
    width: 100px;
    border: none;
    outline: none;
    background-color: #fff;
}

#slider-customer .owl-nav {
    margin-top: 40px;
}

#slider-customer .owl-prev,
#slider-customer .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 5px #8d8f9530;
    transition: 0.4s;
    margin: 0 10px;
}

#slider-customer .owl-next span {
    transform: rotate(180deg);
    display: block;
}

#slider-customer .owl-prev span,
#slider-customer .owl-next span {
    color: var(--primary1) !important;
    font-size: 35px !important;
    transition: 0.4s;
}

#slider-customer .owl-prev:hover,
#slider-customer .owl-next:hover {
    background-color: var(--primary1);
}

#slider-customer .owl-prev:hover span,
#slider-customer .owl-next:hover span {
    color: #fff !important;
}

.chat__content {
    display: flex;
    gap: 20px;
}

.message__content {
    flex: 7;
    border: 1px solid var(--primary6);
    border-radius: 10px;
    padding: 20px;
}

.people {
    flex: 5;
    border: 1px solid var(--primary6);
    border-radius: 10px;
    padding: 20px;
}

.people__chats {
    height: 480px;
    overflow-y: scroll;
    scrollbar-width: none !important;
    transition: 0.4s;
}

.people_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.people_header h4 {
    color: var(--primary2);
    font-weight: 500;
    font-size: 24px;
}

.unreaded {
    color: var(--primary1) !important;
}

.message__people {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 10px;
    align-items: center;
}

.message__people:not(:last-child) {
    border-bottom: 1px solid var(--primary6);
}

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

.user__info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user__info .img {
    position: relative;
}

.user__info .img::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 10px;
    background-color: #66f141;
}

.user__info .text h2 {
    font-size: 20px;
    color: var(--primary2);
    font-weight: 500;
    margin-bottom: 10px;
}

.user__info .text p {
    font-size: 14px;
    max-width: 200px;
    overflow: hidden;
}

.time_date {
    color: var(--primary1);
    text-align: center;
}

.time_date span {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--primary1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: auto;
    margin-right: auto;
}

.message__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--primary6);
}

.message__header .img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
}

.message__header .img::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    right: 2px;
    bottom: 7px;
    background-color: #66f141;
}

section.chat {
    margin-top: 50px;
    margin-bottom: 100px;
}

.message__header .img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.all__messages {
    padding-top: 20px;
    height: 400px;
    overflow-y: auto;
    position: relative;
}

.all__messages {
    scrollbar-width: none !important;
}

.sended__message {
    background-color: #f5f5f5;
    border-radius: 30px 30px 0 30px;
    padding: 10px 20px;
    margin-bottom: 20px;
    width: fit-content;
}

.sended__message p {
    max-width: 240px;
    font-size: 20px;
    color: var(--primary1);
    font-weight: 400;
    word-wrap: break-word;
}

.recieved__message {
    display: flex;
    margin-left: auto;
    gap: 10px;
    justify-content: end;
    flex-direction: row-reverse;
}

.recieved__message img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.recieved__message p {
    max-width: 240px;
    background-color: var(--color-Primary5);
    border-radius: 30px 30px 30px 0px;
    padding: 10px 20px;
    font-size: 20px;
    color: var(--primary2);
    font-weight: 400;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.send__message__input {
    display: flex;
    gap: 20px;
    align-items: center;
}

.send__message__input .input {
    flex: 1;
    border: 1px solid var(--primary6);
    position: relative;
    height: 60px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.send__message__input .input form {
    width: 100%;
    height: 100%;
}

.send__message__input .input input {
    width: 100%;
    height: 100%;
    border: none;
    padding-right: 20px;
    font-size: 17px;
    color: var(--gray);
}

.send__message__input .input img {
    position: absolute;
    z-index: 9999;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px;
}

.record__message {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: 50%;
    background-color: var(--primary1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    border-radius: 50%;
    position: relative;
}

.record__message.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px var(--primary1);
    top: 0;
    left: 0;
    border-radius: 50%;
    animation: recording 1s infinite linear;
}

@keyframes recording {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.recorded {
    background-color: var(--color-Primary5);
    border-radius: 30px 30px 30px 0px;
    padding: 10px 20px;
    font-size: 20px;
    color: var(--primary2);
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.msg__wave {
    width: 240px;
}

.recorded .icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--primary1);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
}

.recorded__sende__msg {
    display: flex;
    gap: 10px;
}

.recorded__sende__msg .icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--primary1);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
}

.recorded__sende__msg .send__wave__msg {
    width: 240px;
    transform: rotate(180deg);
}

.voice__Message .waveform {
    width: 240px;
    transform: rotate(180deg);
}

.message__send {
    width: fit-content;
}

.voice__Message {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 30px 30px 0 30px;
    padding: 10px 20px;
    margin-bottom: 20px;
    width: fit-content;
    overflow: hidden;
}

.play-btn {
    background-color: #fff;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary1);
}

.border-none {
    border: none;
}

.form-switch .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    width: 2em;
    margin-left: -2.5em;
    background-image: var(--bs-form-switch-bg);
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
    background-color: var(--color-Primary5) !important;
}

.ctm-btn:hover.to-chat {
    color: var(--color-Primary1);
}

.ctm-btn2.ctm-btn {
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
}

.retreat__contact.ctm-btn p {
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
}

.paymeny_way .way input[type="radio"] {
    opacity: 0;
    position: relative;
}

.paymeny_way .way input[type="radio"]:checked + label::before {
    background-color: var(--primary1);
    border-color: var(--primary1);
}

.paymeny_way .way input[type="radio"]:checked + span + label::before {
    background-color: var(--primary1);
    border-color: var(--primary1);
}

.paymeny_way .way label::before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    border: 1px solid var(--gray);
    border-radius: 50%;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.paymeny_way .way label::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    right: 3px;
    background-color: #fff;
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.pagination li a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-Primary5);
    color: var(--primary1);
    font-weight: 600;
    font-size: 20px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pagination li a:hover {
    background-color: var(--primary1);
    color: #fff;
    box-shadow: 0 0 15px var(--primary1);
}

.pagination li.active a {
    background-color: var(--primary1);
    color: #fff;
    box-shadow: 0 0 15px var(--primary1);
}

.product.custom__product {
    width: calc(100% / 3 - 15px);
}

.paymen-user-way-add-name {
    padding: 0px 20px;
    padding-bottom: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.paymen-user-way-add-name p {
    color: #000;
}

.payment-name-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--primary2);
    padding-bottom: 10px;
}

.payment-name-info .frm__btn {
    width: 120px;
}

.img-delete {
    position: absolute;
    right: 10px;
    top: 34px;
    width: 30px;
    height: 30px;
    background-color: var(--color-Primary5);
    color: var(--color-Primary1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: 0.4s;
    z-index: 9999;
}

.img-delete:hover {
    background-color: var(--primary1);
    color: #fff;
    transform: rotate(360deg);
}

.input__file__hidden {
    pointer-events: none;
}

.mka-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mka-tabs button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.cutom-mka-tabs {
    width: 700px;
    padding: 20px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 30px #d3d3d3;
    margin-bottom: 50px;
}

.cutom-mka-tabs .input {
    border: 1px solid var(--primary1) !important;
}

.custom-nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 30px 0;
    width: 100%;
    gap: 30px;
}

.custom-nav-tabs button {
    border: none;
    cursor: pointer;
    color: var(--gray);
    padding: 20px 0px;
    background-color: transparent;
    width: 100px;
    border-bottom: 2px solid transparent;
}

.custom-nav-tabs button.active {
    color: var(--primary1);
    border-bottom: 2px solid var(--color-Primary1);
}

.cutom-mka-tabs .btns__money button {
    width: 100%;
}

.input-check-item {
    position: relative;
}

.input-check-item label {
    color: var(--gray);
    position: relative;
    cursor: pointer;
    margin-right: 30px;
}

.input-check-item input {
    opacity: 1;
    position: relative;
    margin-right: 10px;
    position: absolute;
    right: 0;
    top: 5px;
}

.feature_slider {
    direction: ltr;
}

.owl-carousel.feature_slider .owl-item img {
    width: 50% !important;
}

/*
.owl-carousel.feature_slider .item {
    min-height: 260px;
} */

.owl-carousel.feature_slider .owl-item {
    display: flex;
    align-items: stretch; /* Ensures items take full height */
}

.owl-carousel.feature_slider .owl-item > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.modal__content {
    padding: 20px;
}

#arrive_data-error {
    position: absolute;
    top: 20px;
    right: 110px;
}

.arrive__card .input input.error {
    display: block !important;
}

#paymeny-error {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#rate-error {
    min-width: 150px;
}

.ctm-editing {
    display: flex;
    gap: 5px;
}

.message__people.acitve {
    background-color: #52b6944a;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #52b6944a;
}

.loading {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1); /* Light border */
    border-top: 5px solid var(--primary1); /* Blue border */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

#phone-error, #password-error, #email-error, #name-error, #password_confirmation-error {
    position: absolute;
    bottom: 0;
}

.last_message
{
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
}


.send__message__input .input input {

    padding-left: 50px;
}


#phone-error, #password-error, #email-error, #name-error, #password_confirmation-error {
    position: absolute;
    bottom: -20px;
}


.form__contact__us #phone-error, .form__contact__us #password-error, .form__contact__us #email-error, .form__contact__us #name-error, .form__contact__us #password_confirmation-error {
    position: absolute;
    bottom: 5px;
}


.property-profile   .price-product{
    flex-direction: column;
}


.property-list .list-nav .nav-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
