/* CallBack Form Begin */
body.modal-global-open {
    height: 100vh;
    overflow-y: hidden;
}

.appointment-button-service-wrapper {
    margin: 50px 0 0;
}

.appointment-button {
    display: flex;
    align-items: center;
}

.call_back_form__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.3em;
}

.call_back_form__text {
    text-align: center;
    margin: 15px 0;
}

.call_back_form__button,
.appointment-button button {
    font-size: 1.2em;
    padding: 0 25px;
    color: #fff;
    line-height: 37px;
    text-align: center;
    display: inline-block;
    position: relative;
    height: 38px;
    background-color: #66b132;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.call_back_form__button {
    margin: 15px auto 0;
    display: block;
}

.call_back_form__button:disabled {
    opacity: 0.5;
    cursor: default;
}

.call_back_form__button,
.appointment-button button:hover {
    background-color: #66b132;
}

.call_back_form__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000088;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.call_back_form__form {
    background-color: #ffffff;
    width: 300px;
    display: block;
    -webkit-box-shadow: 4px 4px 13px 7px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 4px 4px 13px 7px rgba(0, 0, 0, 0.34);
    box-shadow: 4px 4px 13px 7px rgba(0, 0, 0, 0.34);
    opacity: 0;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}

.call_back_form__form_visible-block {
    opacity: 1;
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;
}

.call_back_form__form .no-robot {
    display: flex;
    width: fit-content;
    align-items: center;
    margin: 0 auto;
    cursor: pointer;
    white-space: nowrap;
}

.call_back_form__form .no-robot span {
    margin-left: 5px;
    line-height: 16px;
}

.call_back_form__form_input {
    width: 100%;
    margin-bottom: 15px;
    padding: 7px;
    box-sizing: border-box;
    border-radius: 5px;
    outline: 0;
    border: 1px solid #c9c9c9;
}

.module_window_close {
    position: absolute;
    right: 6px;
    top: 5px;
    padding: 7px 5px 10px;
    cursor: pointer;
    line-height: 1px;
    border: 1px solid;
    border-radius: 20px;
    color: #979797;
}

.module_window_close:hover {
    color: #333;
}

.form-ok-massage-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000aa;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.form-ok-massage {
    color: #fff;
    text-align: center;
}

.form-ok-massage-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ffffffc7;
    font-size: 1em;
    padding: 5px;
    cursor: pointer;
    line-height: 1px;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.right-number {
    position: absolute;
    left: 0;
    color: #fff;
    margin-top: 40px;
    text-align: center;
}

/* CallBack Form End */