#request-form-modal p {
    margin: 0;
}

.blur {
    filter: blur(5px);
    pointer-events: none;
}

.request-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.request-form-modal__background {
    display: none !important;
}

@media only screen and (max-width: 1024px) {
    .request-form-modal__background {
        display: block !important;
        position: fixed;
        bottom: -200px;
        left: 11px;
        width: 100%;
        z-index: -1;
    }
}

.request-form-modal.active {
    opacity: 1;
    visibility: visible;
}

.request-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.request-form-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
    width: 100%;
    max-width: 550px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    /* overflow: hidden; */
}


@media only screen and (max-width: 1024px) {
    .request-form-modal-content {
        max-width: 100% !important;
        height: 100%;
        border-radius: 0;
    }
}

.request-form-container {
    width: 100%;
    padding: 0 48px 32px 48px;
    font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 1024px) {
    .request-form-container {
        height: 100%;
        padding: 78px 20px;
        position: relative;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }
}

.request-form__header {
    display: flex;
    align-items: center;
    height: 64px;
    padding: 4px 16px;
    margin: 0 -48px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 1024px) {
    .request-form__header {
        display: none;
    }
}

.request-form .form-group {
    margin-bottom: 8px;
}

.request-form .form-group-field {
    margin-bottom: 8px;
}

.request-form__mobile-header {
    display: none;
    background-color: #F6F2E8;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #C2B095;
    z-index: 10;
}

@media only screen and (max-width: 1024px) {
    .request-form__mobile-header {
        display: flex;
    }
}

.request-form__title {
    text-align: center;
    font-size: 32px;
    line-height: 134%;
    margin-bottom: 24px;
    font-family: 'Montagu Slab', 'PT Serif', serif;
    color: #B1A088;
    margin-top: 24px;
}

@media only screen and (max-width: 1024px) {
    .request-form__title {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        font-size: 24px;
    }
}

.request-form__title p {
    font-weight: 500;
}

@media only screen and (max-width: 1024px) {
    .request-form {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }
}

.request-form .input-wrapper {
    border: 1px solid #C2C2C2 !important;
    border-radius: 8px !important;
}

.request-form input:not(.iti__search-input) {
    width: 100%;
    padding: 13px 16px !important;
    border-radius: 8px !important;
    border: 0 !important;
    font-size: 16px !important;
    color: #8A7D6A !important;
    height: 48px;
}

.request-form input[type="tel"] {
    padding-left: 90px !important;
}

.request-form input[type="tel"][dir="rtl"] {
    padding-left: 16px !important;
    padding-right: 90px !important;
}

.request-form input::placeholder {
    font-size: 16px;
    color: #A4A4A4 !important;
}

.request-form .submit-button {
    margin-top: 16px;
    background-color: #514A3F;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    height: 56px;
    width: 100%;
    font-weight: 600;
}

@media only screen and (max-width: 1024px) {
    .request-form .submit-button {
        max-width: 310px;
        margin: auto auto 0 auto;
    }
}

.request-form .submit-button:hover {
    opacity: 0.9;
}

.iti__country-container {
    font-size: 16px !important;
}

.cta .elementor-button {
    cursor: pointer;
}

.form-group-privacy {
    text-align: center;
    font-size: 12px;
    line-height: 160%;
    color: #B1A088;
    margin-top: 16px;
}

.form-group-privacy a {
    color: #B1A088;
    text-decoration: underline !important;
}

.form-message {
    text-align: center;
}

.error-message {
    color: #F34359 !important;
    font-size: 12px;
    line-height: 160%;
}

#request-form .iti__flag {
    border-radius: 0;
    box-shadow: none;
    background-image: url('https://cdn.jsdelivr.net/npm/intl-tel-input@25.3.1/build/img/flags.webp') !important;
}

.form-group-field.error .input-wrapper {
    border-color: #F34359 !important;
}

.request-stepper {
    display: flex;
    flex-direction: column;
    font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 1024px) {
    .request-stepper {
        flex-grow: 1;
    }
}

.request-stepper .request-stepper__header {
    display: flex;
    align-items: center;
    height: 64px;
    padding: 4px 16px;
    margin: 0 -48px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 1024px) {
    .request-stepper .request-stepper__header {
        order: 0;
        margin: 0;
        padding: 0 8px 0 0;
        height: 20px;
        margin-bottom: 20px;
    }
}

.request-form__back-button {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #616161;
    cursor: pointer;
}

.rtl .request-form__back-button svg {
    transform: rotate(-180deg);
}

@media only screen and (max-width: 1024px) {
    .request-form__back-button svg {
        display: none;
    }
}

.request-stepper .request-stepper__title {
    color: #E3DBCE;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
    text-align: left;
    transition: color 0.3s ease;
}

@media only screen and (max-width: 1024px) {
    .request-stepper .request-stepper__title {
        order: 2;
        max-width: 450px;
        width: 100%;
        margin: 0 auto 48px auto;
    }
}

.request-stepper .request-stepper__title.active {
    color: #B1A088;
}

.request-stepper .request-stepper__title h2 {
    font-size: 20px;
}

.request-stepper .request-stepper__title p {
    font-size: 15px;
}

.request-stepper .request-stepper__steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #B1A088;
    margin-bottom: 24px;
}

@media only screen and (max-width: 1024px) {
    .request-stepper .request-stepper__steps {
        order: 1;
        flex-grow: 1;
    }
}

.request-stepper .request-stepper__step {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 800;
}

@media only screen and (max-width: 1024px) {
    .request-stepper .request-stepper__step {
        flex-direction: column-reverse;
    }
}

.request-stepper .request-stepper__step-progress {
    background-color: #ECE7DE;
    border-radius: 30px;
    height: 8px;
    width: 100%;
    position: relative;
}

.request-stepper .request-stepper__step-progress-bar {
    background-color: #C2B095;
    border-radius: 30px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.3s ease;
}

.request-stepper .request-stepper__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media only screen and (max-width: 1024px) {
    .request-stepper .request-stepper__content {
        order: 3;
        flex-grow: 1;
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }
}

.request-stepper .request-stepper__content .request-stepper__question {
    font-size: 20px;
    line-height: 160%;
    color: #616161;
    font-weight: 400;
    margin-bottom: 16px;
}

.request-stepper .request-stepper__content .request-stepper__answers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media only screen and (max-width: 1024px) {
    .request-stepper .request-stepper__content .request-stepper__answers {
        grid-template-columns: repeat(1, 1fr);
    }
}

.request-stepper .request-stepper__content .request-stepper__answer {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #A4A4A4;
    padding: 16px;
    font-size: 16px;
    line-height: 120%;
    text-align: left;
    height: 56px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #A4A4A4;
    width: 100%;
    grid-column: span 2;
}

@media only screen and (max-width: 1024px) {
    .request-stepper .request-stepper__content .request-stepper__answer {
        height: 48px;
    }
}

.request-stepper .request-stepper__content .request-stepper__answer.half {
    grid-column: span 1;
}

@media only screen and (max-width: 1024px) {
    .request-stepper .request-stepper__content .request-stepper__answer.half {
        grid-column: span 2;
    }
}

.request-stepper .request-stepper__content .request-stepper__answer p {
    line-height: 1;
}

.request-stepper .request-stepper__content .request-stepper__answer .request-stepper__answer-circle {
    display: flex;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #A4A4A4;
    transition: all 0.3s ease;
}

.request-stepper .request-stepper__content .request-stepper__answer .request-stepper__answer-circle-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.request-stepper .request-stepper__content .request-stepper__answer.selected .request-stepper__answer-circle-inner {
    opacity: 1;
    visibility: visible;
}

.request-stepper .request-stepper__content .request-stepper__answer.selected {
    border-color: #C2B095;
    color: #C2B095;
    font-weight: 600;
}

.request-stepper .request-stepper__content .request-stepper__answer.selected .request-stepper__answer-circle {
    border-color: #C2B095;
    background-color: #C2B095;
}

.request-stepper .request-stepper__content .request-stepper__answer:hover {
    border-color: #C2B095;
    background-color: #F6F2E8;
    color: #C2B095;
}

.request-stepper .request-stepper__content .request-stepper__answer:hover .request-stepper__answer-circle {
    border-color: #C2B095;
}

.request-calendar {
    font-family: "Open Sans", sans-serif;
    color: #393939;
}

@media only screen and (max-width: 1024px) {
    .request-calendar {
        margin: auto 0;
    }
}

.request-calendar .error-message {
    text-align: center;
    margin-top: 16px;
}

.request-calendar__info-container {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__info-container {
        margin-bottom: 0;
    }
}

.request-calendar__info-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ECE7DE;
    border-radius: 8px;
    padding: 6px 10px;
    width: 50%;
    font-weight: 500;
    font-size: 14px;
}

.request-calendar__info-block.request-calendar__info-block--day {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.request-calendar__header {
    display: flex;
    align-items: center;
    height: 64px;
    padding: 4px 16px;
    margin: 0 -48px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__header {
        display: none;
    }
}

.request-calendar__title {
    color: #8A7D6A;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 700;
    text-wrap: pretty;
    margin-top: 8px;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__title {
        margin: 0 auto 48px auto;
        max-width: 450px;
        width: 100%;
        font-weight: 500;
    }
}

.request-calendar__content {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__content {
        flex-direction: column;
    }
}

.request-calendar__calendar-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 384px;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__calendar-container {
        margin: 0 auto;
        max-width: 450px;
        order: 0;
    }
}

.request-calendar__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__navigation {
        margin-top: 24px;
    }
}

.request-calendar__nav-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ECE7DE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #393939;
    padding: 0;
}

.request-calendar__navigation h3 {
    font-size: 18px;
    color: #393939;
    font-weight: 600;
}

.request-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.request-calendar__weekday {
    text-align: center;
    font-size: 14px;
    color: #393939;
    font-weight: 600;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__weekday {
        height: 45px;
    }
}

.request-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__days {
        gap: 4px;
    }
}

.request-calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #393939;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.request-calendar__day:not(.disabled):not(.empty) .request-calendar__day-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F9F7F4;
    border: 1px solid #F9F7F4;
}

.request-calendar__day.selected .request-calendar__day-number {
    background-color: #C2B095 !important;
    border: 1.5px solid #B1A088 !important;
    font-weight: 700;
}

.request-calendar__day.disabled {
    color: #C2B095;
    cursor: not-allowed;
}

.request-calendar__separator {
    width: 1px;
    background-color: #C2B095;
    margin: 0 16px;
}

.request-calendar__time-slots {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 220px;
    scroll-margin-top: 82px;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__time-slots {
        max-width: 450px;
        margin: 0 auto;
        order: 2;
    }
}

.request-calendar__time-slots h4 {
    font-size: 16px;
    color: #393939;
    font-weight: 600;
    margin: 0;
}

.request-calendar__time-slots-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 368px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    height: 100%;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__time-slots-grid {
        max-height: 100%;
    }
}

.request-calendar__time-slots-empty {
    font-size: 14px;
    text-align: center;
    text-wrap: balance;
    margin: auto 0;
    padding-bottom: 32px;
}

.request-calendar__time-slots-grid::-webkit-scrollbar {
    width: 4px;
}

.request-calendar__time-slots-grid::-webkit-scrollbar-track {
    background: #F5F2ED;
    border-radius: 4px;
}

.request-calendar__time-slots-grid::-webkit-scrollbar-thumb {
    background: #C2B095;
    border-radius: 4px;
}

.request-calendar__time-slot-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    max-width: 220px;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__time-slot-wrapper {
        max-width: 450px;
        margin: 0 auto;
        background-color: #fff;
    }
}

.request-calendar__time-slot {
    padding: 12px 16px;
    border: 1px solid #C2B095;
    border-radius: 8px;
    background: none;
    color: #393939;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-grow: 1;
    text-align: center;
    height: 48px;
    white-space: nowrap;
}

.request-calendar__time-slot:not(.disabled):hover {
    border-color: #C2B095;
    color: #C2B095;
}

.request-calendar__time-slot.selected {
    background-color: #F2EBDC;
    border-color: #C2B095;
    color: #393939 !important;
}

.request-calendar__time-slot.disabled {
    color: #C2B095;
    cursor: not-allowed;
    opacity: 0.5;
}

.request-calendar__book-button {
    padding: 12px;
    border: 1px solid #C2B095;
    border-radius: 8px;
    background: #C2B095;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    white-space: nowrap;
    color: #393939;
    overflow: hidden;
    width: 90%;
}

.book-button-enter-active,
.book-button-leave-active {
    transition: all 0.3s ease;
    width: 90%;
}

.book-button-enter-from,
.book-button-leave-to {
    width: 0;
    padding-left: 0;
    padding-right: 0;
}

.request-calendar__book-button:hover {
    background: #B1A088;
    border-color: #B1A088;
}

.request-calendar__selected-datetime {
    margin-top: 16px;
    padding: 16px;
    background-color: #F9F7F4;
    border-radius: 8px;
    color: #393939;
    font-size: 14px;
    text-align: center;
}

.request-calendar__nav-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.request-calendar__nav-button.disabled path {
    stroke: #C2B095;
}

.request-calendar__content-footer,
.request-calendar__footer {
    gap: 8px;
    margin-top: 24px;
    padding: 8px 16px;
    border: 1px solid #E3DBCE;
    border-radius: 8px;
    color: #B1A088;
}

.request-calendar__content-footer {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__content-footer {
        display: flex;
        margin-top: 0;
    }
}

.request-calendar__footer {
    display: flex;
}

@media only screen and (max-width: 1024px) {
    .request-calendar__footer {
        display: none;
        margin-top: 0;
        order: 1;
    }
}

.request-calendar__footer svg,
.request-calendar__content-footer svg {
    flex-shrink: 0;
}

.request-confirmation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    color: #393939;
}

.request-confirmation .request-form__avatar {
    margin-bottom: 8px;
}

@media only screen and (max-width: 1024px) {
    .request-confirmation {
        margin: auto 0;
    }
}

.request-confirmation__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    color: #8A7D6A;
    font-family: 'Montagu Slab', 'PT Serif', serif;
    margin-top: 24px;
}

.request-confirmation__header span {
    font-weight: 600;
}

.request-confirmation__description {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 20px;
    font-weight: 600;
    color: #8A7D6A;
}

.request-confirmation__description h3 {
    font-size: 20px;
    font-weight: 400;
}

@media only screen and (max-width: 1024px) {
    .request-confirmation__description h3 {
        font-size: 16px;
        margin-top: 12px;
    }
}

.request-confirmation__description span {
    font-weight: 700;
}

.request-confirmation__description p {
    font-size: 18px;
    font-weight: 400;
    color: #393939;
}

@media only screen and (max-width: 1024px) {
    .request-confirmation__description p {
        font-size: 16px;
    }
}

.request-confirmation__details {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 32px;
}

@media only screen and (max-width: 1024px) {
    .request-confirmation__details {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
        align-items: flex-start;
        margin-bottom: 32px;
    }
}

.request-confirmation__detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.request-confirmation__button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    height: 56px;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    background-color: #514A3F;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
}

.request-confirmation__button:hover {
    opacity: 0.9;
}

.request-meeting {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Open Sans", sans-serif;
    color: #393939;
    min-height: 465px;
}

.request-meeting__loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.request-meeting__header {
    position: absolute;
    top: 24px;
    left: 16px;
}

@media only screen and (max-width: 1024px) {
    .request-meeting__header {
        display: none;
    }
}

.request-form__avatar {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border: 3.5px #C2B095 solid;
    border-radius: 50%;
    overflow: hidden;
    background: #f6f2e8;
    margin-top: -60px;
}

@media only screen and (max-width: 1024px) {
    .request-form__avatar {
        width: 80px;
        height: 80px;
        margin-top: 0;
        margin-bottom: 12px;
    }
}

.request-meeting__title {
    color: #8A7D6A;
    margin-bottom: 4px;
    text-align: center;
}

.request-meeting__title h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    font-family: 'Montagu Slab', 'PT Serif', serif;
    line-height: 1;
}

@media only screen and (max-width: 1024px) {
    .request-meeting__title h2 {
        font-size: 24px;
    }
}

.request-meeting__title h2 span {
    font-weight: 600;
}

.request-meeting__title p {
    font-size: 20px;
    font-weight: 500;
}

@media only screen and (max-width: 1024px) {
    .request-meeting__title p {
        font-size: 16px;
    }
}

.request-meeting__description {
    font-size: 18px;
    font-weight: 400;
    color: #393939;
    margin-bottom: 16px;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .request-meeting__description {
        font-size: 16px;
    }
}

.request-meeting__description p {
    font-size: 18px;
    font-weight: 400;
    max-width: 490px;
}

.request-meeting__content {
    display: flex;
    gap: 12px;
}

@media only screen and (max-width: 1024px) {
    .request-meeting__content {
        flex-direction: column;
        gap: 16px;
        padding-bottom: 32px;
    }
}

.request-meeting__content .request-meeting__left-block,
.request-meeting__content .request-meeting__right-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 233px;
    width: 50%;
    background: #F2EBDC;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    padding: 24px 16px 16px 16px;
}

@media only screen and (max-width: 1024px) {

    .request-meeting__content .request-meeting__left-block,
    .request-meeting__content .request-meeting__right-block {
        width: 100%;
        border-radius: 24px;
        padding: 16px;
        min-height: auto;
        gap: 10px;
    }
}

.request-meeting__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #393939;
    text-transform: uppercase;
}

@media only screen and (min-width: 1024px) {
    .request-meeting__divider {
        display: none;
    }
}

.request-meeting__divider-line {
    width: 100%;
    height: 1px;
    background-color: #C2B095;
}

.request-meeting__content .request-meeting__left-block .request-meeting__block-content,
.request-meeting__content .request-meeting__right-block .request-meeting__block-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media only screen and (max-width: 1024px) {

    .request-meeting__content .request-meeting__left-block .request-meeting__block-content,
    .request-meeting__content .request-meeting__right-block .request-meeting__block-content {
        flex-direction: row;
        text-align: left;
    }
}

.request-meeting__content .request-meeting__left-block svg,
.request-meeting__content .request-meeting__right-block svg {
    margin-bottom: 6px;
}

@media only screen and (max-width: 1024px) {

    .request-meeting__content .request-meeting__left-block svg,
    .request-meeting__content .request-meeting__right-block svg {
        margin-bottom: 0;
    }
}

.request-meeting__content .request-meeting__left-block .request-meeting__block-text,
.request-meeting__content .request-meeting__right-block .request-meeting__block-text {
    font-size: 16px;
    font-weight: 500;
    text-wrap: pretty;
}

.request-meeting__content .request-meeting__left-block .request-meeting__block-divider,
.request-meeting__content .request-meeting__right-block .request-meeting__block-divider {
    width: 100%;
    height: 1px;
    background-color: #E3DBCE;
}

@media only screen and (min-width: 1024px) {

    .request-meeting__content .request-meeting__left-block .request-meeting__block-divider,
    .request-meeting__content .request-meeting__right-block .request-meeting__block-divider {
        display: none;
    }
}

.request-meeting__content .request-meeting__left-block .request-meeting__block-button,
.request-meeting__content .request-meeting__right-block .request-meeting__block-button {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 0;
    font-size: 16px;
    padding: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: auto;
}

@media only screen and (max-width: 1024px) {

    .request-meeting__content .request-meeting__left-block .request-meeting__block-button,
    .request-meeting__content .request-meeting__right-block .request-meeting__block-button {
        margin-top: 6px;
    }
}

.request-meeting__content .request-meeting__left-block .request-meeting__block-button--chat {
    background: #25D366;
    color: white;
}

.request-meeting__content .request-meeting__right-block .request-meeting__block-button--book {
    background: transparent;
    color: #393939;
    border: 1px solid #393939;
}

.request-meeting__content .request-meeting__left-block .request-meeting__block-button--chat:hover,
.request-meeting__content .request-meeting__right-block .request-meeting__block-button--book:hover {
    opacity: 0.8;
}

.request-confirmation__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    padding: 0;
    width: 32px;
    height: 32px;
    z-index: 11;
}

@media only screen and (max-width: 1024px) {
    .request-confirmation__close {
        top: 12px;
        position: fixed;
        right: 12px;
    }
}

.request-confirmation__close:hover {
    background: #49494917 !important;
}

add-to-calendar-button {
    margin: 0 auto;
}

add-to-calendar-button#atcb::part(atcb-button),
#atcb-btn-atcb-modal-host::part(atcb-button) {
    background-color: #514A3F;
    color: #fff;
    font-size: 16px;
    height: 34px;
}

add-to-calendar-button#atcb::part(atcb-initialized) {
    background-color: #514A3F;
    color: #fff;
    font-size: 16px;
    height: 34px;
}