.doc-appointment {
    max-width: 600px;
    font-family: "Roboto";
    background: #FAF6F5;
    box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    border-radius: 24px;
}
.doc-appointment .button {
    /*display: block;*/
    margin: 0 auto;
}
.popup__close {
    display: none;
}
.subtitle {
	font-size: 24px;
    line-height: 32px;
    color: var(--light-pink);
    margin-bottom: 45px;
    text-align: center;
}
.form-item__label {
    font-size: 16px;
    line-height: 24px;
    font-family: "Roboto-Light";
    color: #CFC2BF;
    padding-left: 25px;
    position: static;
}
.form-item._not-empty .form-item__label {
    height: initial;
    font-size: 16px;
    line-height: 24px;
    font-family: "Roboto-Light";;
}
.form-item__label._center {
    text-align: center;
    padding: 0;
}
.label-warning {
    font-size: 12px;
    line-height: 16px;
}
.form-item input[type=email],
.form-item input[type=password],
.form-item input[type=tel],
.form-item input[type=text] {
    background: #FFFFFF;
    border: 1px solid #CFC2BF;
    border-radius: 24px;
    font-size: 20px;
    line-height: 24px;
    font-family: "Roboto-Light";
    padding-top: 0;
}
.find-clinic {
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
    color: var(--light-pink);
    margin-bottom: 22px;
    position: relative;
    cursor: pointer;
}
.find-clinic::before {
    content: "";
    width: 12px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: -20px;
    background-image: url(images/arrpw-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.row {
    justify-content: space-between;
    margin: 0;
}
.row .form-item {
    width: 40%;
}
.soglasie a {
    color: #EA89A2 !important;
}
.soglasie input[type=checkbox] + label {
    padding-left: 25px;
}
.soglasie input[type=checkbox] + label:before {
    background-image: none;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #EA89A2;
    top: 4px;

}
.soglasie input[type=checkbox]:checked + label:before {
    background-color: #EA89A2;
}

@media (max-width: 800px) {
    .doc-appointment {
        padding: 30px 10px;
    }
    .subtitle {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .doc-appointment form {
        max-width: 260px;
    }
}