.open-callback-modal__btn {
    position: fixed;
    z-index: 1000;
    transition: position 0.3s ease;
    bottom: 5%;
    left: 20%;
    width: 8.958333333333333vw;
    height: 8.958333333333333vw;
    font-family: SF Compact Display;
    font-size: 20px;
    font-weight: 700;
    line-height: 23.87px;
    letter-spacing: 0.02em;
    text-align: center;
    color: rgba(14, 70, 25, 1);
    background: rgba(105, 219, 124, 1);
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
}

.callback-modal {
    position: fixed;
    inset-block-start: 0;
    inset-block-end: 0;
    width: calc(100% - 6px - 2em);
    max-width: 490px;
    user-select: text;
    visibility: hidden;
    overflow: auto;
    display: block;
    box-shadow: 0 0 100vmax #00000038;
    opacity: 0;
    transition: all .3s;
    padding: 32px 45px;
}

.callback-modal[open] {
    opacity: 1;
    visibility: visible;
}

.callback-modal::backdrop {
    background: #000;
    opacity: 32%;
}

.callback-modal-content {
}

.callback-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    cursor: pointer;
}

.callback-modal-section__title {
    margin-bottom: 16px;
    font-family: Lato;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(37, 37, 37, 1);
}

.callback-modal-section__desc {
    margin-bottom: 64px;
    font-family: Lato;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(117, 117, 117, 1);
}

.input-container {
    position: relative;
}

.input-container input,
.input-container select {
    padding: 10px;
    width: 95%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(37, 37, 37, 15%);
    font-family: Lato;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(37, 37, 37, 1);
}

.input-container input::placeholder,
.input-container select option {
    font-family: Lato;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(37, 37, 37, 1);
}

.input-container input:focus::placeholder,
.input-container select:focus::placeholder {
    color: transparent;
}

.input-container input:focus,
.input-container select:focus {
    outline: none;
    border-bottom: 1px solid rgba(37, 37, 37, 1);
}

.input-container select {
    background: transparent;
}

.input-container select option {
    font-family: Lato;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(37, 37, 37, 1);
}

.dropdown {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

.dropdown-toggle {
    width: 95%;
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
    color: rgba(37, 37, 37, 1);
    font-family: Lato;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(37, 37, 37, 15%);
}

.dropdown-toggle img {
    width: 16px;
    height: 16px;
    display: flex;
    align-self: center;
    float: inline-end;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 105%;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: rgba(37, 37, 37, 1);
    font-family: Lato;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(37, 37, 37, 15%);
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.optional {
    color: rgba(117, 117, 117, 1.0);
    font-size: 12px;
}

.callback-modal-footer {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.checkbox-container {
    margin-left: 28px;
    max-width: none;
    width: max-content;
}

.consultation-form__footer .checkbox-container {
    width: 100%;
    max-width: var(--checkbox-text-width, 220px);
}

.consultation-form__footer .custom-checkbox {
    white-space: normal;
}

.consultation-form__footer .custom-checkbox__text {
    white-space: normal;
    overflow-wrap: anywhere;
}

.consultation-form__footer .custom-checkbox a {
    white-space: normal;
}

.custom-checkbox {
    color: #252525;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.custom-checkbox a {
    color: #3BCF64;
    cursor: pointer;
    white-space: nowrap;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    margin-left: -24px;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
}

.custom-checkbox input:not(:checked) + .checkmark {
    background: url('../images/Property 1=Variant2.svg') no-repeat center;
    background-size: contain;
}

.custom-checkbox input:checked + .checkmark {
    background: url('../images/checkbox.svg') no-repeat center;
    background-size: contain;
}

.callback-modal-footer button {
    padding: 16px 24px;
    text-align: center;
    text-wrap: nowrap;
}

@media (max-width: 1440px) {
    .open-callback-modal__btn {
        width: 150px;
        height: 150px;
        font-size: 16px;
        bottom: 4%;
        left: 18%;
    }
}

@media (max-width: 1024px) {
    .open-callback-modal__btn {
        width: 130px;
        height: 130px;
        font-size: 14px;
        bottom: 3%;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .open-callback-modal__btn {
        display: flex;
        width: 100px;
        height: 100px;
        font-size: 12px;
        bottom: 3%;
        left: 75%;
        line-height: 13.87px;;
    }

    .callback-modal {
        padding: 24px;
    }

    .callback-modal-section__title {
        font-size: 28px;
    }

    .callback-modal-section__desc {
        margin-bottom: 32px;
        font-size: 16px;
    }

    .dropdown-toggle,
    .dropdown-item {
        font-size: 16px;
    }

    .callback-modal-footer {
        flex-direction: column;
        align-items: start;
        gap: 32px;
    }

    .input-container input,
    .input-container select {
        font-size: 16px;
    }

    .input-container input::placeholder,
    .input-container select option {
        font-size: 16px;
    }

    .callback-modal-footer button {
        padding: 16px 87px;
        align-self: center;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .open-callback-modal__btn {
        width: 80px;
        height: 80px;
        font-size: 10px;
        bottom: 2%;
    }
}