.main_content.calc_container {
    background-color: #F9F9F9;
    margin-top: 0;
    padding: 50px 0;
}

.calc_container h1 {
    text-align: center;
    color: #343a40;
    margin: 0;
    /*font-family: Roboto;*/
    font-size: 40px;
    font-weight: 700;
}

.calc__pop-form {
    font-size: 16px;
}

.calc__col_title {
    font-size: 22px;
}

.calc__description {
    font-size: 22px;
}


.calc__title {
    font-size: 40px;
}

@media (max-width: 767px) {
    .calc__title {
        font-size: 30px;
    }
}

.calc__checkbox-ring {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid;
    border-radius: 50%;
    color: #1D1B2038;
    margin-right: 10px;
    cursor: pointer;
}


.calc__checkbox-ring:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #1D1B2038;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input:checked + .calc__checkbox-ring {
    color: #136DB4;
}

input:checked + .calc__checkbox-ring:before {
    background-color: #136DB4;
}

.calc__btn {
    font-family: Roboto, Arial, sans-serif;
    background: #1D71AB;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-weight: 400;
    /*white-space: nowrap;*/
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    outline: none;
}

.calc__btn:active {
    border: none;
    outline: none;
}

.calc__btn_submit {
    padding: 10px 20px;
}

.calc__counter {
    width: 95px;
    height: 27px;
    font-size: 20px;
    display: inline-flex;
    margin-left: 10px;
    align-items: center;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.calc__counter_btn {
    width: 25px;
    cursor: pointer;
}

.calc__counter_input {
    color: inherit;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    width: 40px;
    text-align: center;
    border: none;
    background: none;
    pointer-events: none;
}

.calc__info {
    background-image: url(img/info.svg);
    width: 14px;
    height: 14px;
    display: inline-block;
    top: -5px;
    position: relative;
}


.calc_pop.popover {
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (min-device-width: 1200px) {
    .calc_pop.popover {
        left: 20px;
        max-width: 500px;
    }
}

.calc__selector {
    background-color: #0092D680;
}

.calc__result_wrapper {
    border: #1D71AB solid 1px;
    padding: 10px 30px;
    border-radius: 10px;
}

/* popup-form */

.calc__pop-form fieldset.radio .radio-button {
    display: inline-block;
    margin: 0 20px 0 0;
}
.calc__pop-form fieldset .radio-button label {
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    padding: 0;
    margin: 0 0 0 0;
}
.calc__pop-form fieldset .radio-button.error input + label {
    border-color: red;
}
.calc__pop-form fieldset .radio-button input {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 1px;
    height: 1px;
    color: transparent;
    background: transparent;
}
.calc__pop-form fieldset .radio-button input + label {
    position:relative;
    padding-left:24px;
    text-align: left;
    width: 100%;
}
.calc__pop-form fieldset .radio-button input + label:before {
    position:absolute;
    top:0;
    left:0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    content: "";
    border-radius: 50%;
    background: #38596c;
    box-shadow: inset 0px 0px 0px 1px #CCC, inset 0px 0px 0px 9px #fff;
    transition:all .2s;
}
.calc__pop-form fieldset .radio-button input:checked + label:before {
    box-shadow: inset 0px 0px 0px 1px #CCC, inset 0px 0px 0px 4px #fff;
}

.calc__pop-form fieldset.checkbox .radio-button {
    margin-bottom: 10px;
    display: block;
    position: relative;
}
.calc__pop-form fieldset.checkbox .radio-button label {
    font-size: 0.9em;
}

label.policy_label_for_form.error{color:red !important;}
input:checked + label.policy_label_for_form.error{color:inherit !important;}

.inputtextarea.error, .inputtext.error, .inputselect.error {
    border-color: red!important;
    color: #000;
}

.modal-wrapper .calc__pop-form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-height: 100%;
    overflow: auto;
}

/**************************************/



/************************/

form[name="feedback_form_modal"] fieldset{
    padding: 0;
    border: 0;
}

.calc__pop-form {
    font-size: 0.9em;
    width:100%;
    max-width: 470px;
    position: relative;
    background: #fff;
    box-shadow: 0 20px 5px rgba(0,0,0,0.1);
    color:#858282;
}
.calc__pop-form .close-icon {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 11px; right: 10px;
    height: 22px;
    width: 23px;
    background-image: url(img/close.png);
}
.calc__pop-form .title {
    padding: 9px 25px 10px;
    color: #1d76bb;
    text-transform:uppercase;
    font-size: 1.2em;
    font-weight: bold;
}
.calc__pop-form .fields {
    padding: 25px 35px;
}
.calc__pop-form .fields:after {
    content: "";
    display: block;
    clear: both;
}
.calc__pop-form .field {
    margin: 0 0 20px 0;
}
.calc__pop-form .field:after {
    content: "";
    display: block;
    clear: both;
}
.calc__pop-form label {
    display: inline-block;
    /*width: 20%;*/
    padding: 6px 15px 0 0;
    text-align: right;
    float: left;
    box-sizing: border-box;
}
.calc__pop-form label.full-label {
    width: 100%;
    padding: 0 0 10px 0;
    text-align: left;
    color: #0e76bc;
    font-weight: bold;
}
.calc__pop-form .input {
    /*width: 100%;
    float: left;*/
}
.calc__pop-form select,
.calc__pop-form input[type="text"],
.calc__pop-form input[type="email"],
.calc__pop-form textarea {
    border:solid 1px #000;
    width: 100%;
    padding: 7px 5px; /* Для Firefox */ /* Для Safari и Chrome */
    background:#edeff0;
}
.calc__pop-form textarea {
    margin-top:20px;}
.calc__pop-form input[type="text"],
.calc__pop-form input[type="email"] {
    height: auto;
}
.calc__pop-form .checkbox-item label {
    float: none;
    width: auto!important;
}
.calc__pop-form .checkbox-item input {
    margin-right: 5px;
}
.calc__pop-form .checkbox-item .error + label {
    color: red;
}
.calc__pop-form .captcha-block img.captcha_img {
    float: left;
    cursor: pointer;
}
.calc__pop-form .captcha-block img.reload {
    display: none;
}
.calc__pop-form .captcha-block label {
    width: 31%;
    padding-top: 2px;
    line-height:20px;
}
.calc__pop-form .captcha-block .captcha {
    float: right;
    width: 98px;
    padding-top: 9px;
    padding-bottom: 9px;
    height:35px;
}
.calc__pop-form .captcha-block:after {
    content: "";
    display: block;
    clear: both;
}
.calc__pop-form textarea {
    resize: none;
    height: 150px;
}
.calc__pop-form input[type="submit"] {
    float: right;
    background: linear-gradient(to bottom, #3f8ad5 0%, #1577bf 100%);
    border: none;
    cursor: pointer;
    width: 220px;
    padding: 12px 10px;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    margin-top: 10px;
}
.calc__pop-form input[type="submit"]:hover {
}
.calc__pop-form .form-ajax-loader {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.5);
}
.calc__pop-form .success {
    padding: 50px;
    text-align: center;
    color: green;
    font-size: 1.3em;
}
.calc__pop-form .error-form {
    padding: 50px;
    text-align: center;
    color: red;
    font-size: 1.3em;
}
/*-------- LOADER ---------*/

.sk-fading-circle {
    position: absolute;
    display: block;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
}
.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
}
.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; }
}