/* General reset */
body {
    font: 15px/26px 'Lato', sans-serif;
    height: 100%;
    min-width: 300px;
    font-weight: bold;
    color : #000;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: bold;
    text-align: center;
}
h1 {
    font-size: 36px;
    line-height: 1.3;
    padding: 34px 0 19px;
}
h2 {
    font-size: 27px;
    line-height: 1.3;
    margin-bottom: 33px;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}
table {
    border-collapse: collapse;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
hr {
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
    outline:0;
    /*background-color: #ffffff;*/
    /*height: 62px;*/
    line-height: 46px;
    border: 1px solid #cccccc;
    width: 100%;
    padding: 0 31px 0 29px;
    color: #666;
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 10px;
    /*margin: 0 19px 30px;*/
    margin-bottom: 30px;
    font-family: 'Lato', sans-serif;
    background-color: whitesmoke;
}
input::placeholder {
    color: #666;
    font-size: 14px;
    font-style: italic;
}
.input-wrapper input, .input-wrapper select, .input-short input, .input-short select {
    margin-bottom: 12px;
}
::-webkit-input-placeholder {
    font-family: 'Lato', sans-serif;
    color: #000000;
}
::-moz-placeholder {
    font-family: 'Lato', sans-serif;
    color: #000000;
}
:-ms-input-placeholder {
    font-family: 'Lato', sans-serif;
    color: #000000;
}
:-moz-placeholder {
    font-family: 'Lato', sans-serif;
    color: #000000;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*background: #ffffff url("../images/arrow_select.png") no-repeat 100% 50%;*/
    background: whitesmoke url("../images/arrow_select.png") no-repeat 100% 50%;
}
p {
    margin-bottom: 0;
}
textarea {
    resize: none;
    overflow: hidden;
    outline: 0;
}
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.error {
    border: 1px solid red !important;
}
.main {
    opacity: 1;
    min-height: 100vh;
    padding-top: 67px;
    /*background: url("../images/bg.png") no-repeat center bottom;*/
    background: var(--background) no-repeat center / cover;
    overflow-x: hidden;
}
body:not([class*="frame"]) .main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .container {
    background-color: white;
    border-radius: 20px;
    padding: 10px  40px 0 40px;
    /*position: fixed;
    left: 25%;
    right: 25%;
    top: 150px;
    max-height: 750px;
    overflow-y: scroll;
    bottom: 155px;*/
}
.descr {
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    padding: 10px 0 10px 0;
}
.progress_txt {
    display: flex;
    justify-content: space-between;
    margin: 9px 0 2px;
}
.progress_txt span {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
    color: #818181;
    letter-spacing: 0.03em;
}
.progress {
    width: 100%;
    height: 4px;
    background: #dcdcdc;
    position: relative;
}
.progress_bar {
    margin-bottom: 50px;
}
.progress_active {
    width: 0;
    height: 4px;
    background: #db2532;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
}
.progress_active.step-0 {
    width: 0;
}
.progress_active.step-1 {
    width: 25%;
}
.row_form {
    flex-wrap: wrap;
    width: 100%;
    margin: 50px 0;
}
.row_form, .form_buttons {
    display: flex;
    justify-content: center;
    gap: 50px 8px;
}
.row_form.short-layout {
    gap: 0 8px;
}
.red_btn, .black_btn {
    min-width: 140px;
    display: inline-block;
    vertical-align: top;
    /*height: 52px;
    line-height: 52px;*/
    text-align: center;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    transition: .6s;
    overflow: hidden;
    position: relative;
    font-size: 14px;
    /*font-weight: 900;
    text-transform: uppercase;*/
    letter-spacing: 0.06em;
    color: #ffffff;
    border-radius: 6px;
}
.red_btn span, .black_btn span {
    display: block;
    /*height: 52px;*/
    line-height: 46px;
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s;
}
.red_btn span {
    background: #db2532;
}
.red_btn.disabled span {
    background: #969696;
}
.red_btn.disabled:before {
    display: none;
}
.red_btn:before, .black_btn:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    /*height: 100%;*/
    line-height: 46px;
    content: attr(data-hover);
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    transition: transform .3s;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
}
.red_btn.disabled {
    pointer-events: none;
    cursor: default;
}
.red_btn:before {
    background: #b5222c;
}
.black_btn:before {
    background: #000000;
}
.red_btn:hover:before, .black_btn:hover:before, .red_btn.disabled:hover span {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
}
.red_btn:hover span, .black_btn:hover span {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
}
.black_btn {
    margin-right: 38px;
    background: #110D0E;
}
input[type="checkbox"], input[type="radio"] {
    position: absolute;
    left: -9999999px;
}
.radio, .checkbox {
    display: flex;
    background: #ffffff;
    text-align: center;
    border: 1px solid #cccccc;
    cursor: pointer;
    /*flex-basis: 43%;*/
    height: 80px;
    /*margin: 0 8px 50px;*/
    justify-content: center;
    align-items: center;
    font-weight: 900;
    position: relative;
    /*padding: 0 26px;*/
    width: calc(50% - 4px);
}
.checkbox {
    font-size: 14px;
    /*color: #dc2632;*/
    line-height: 20px;
    font-weight: bold;
    border-radius: 10px;
    border: 0 solid whitesmoke;
    background-color: whitesmoke;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}
.short-layout .checkbox {
    flex-basis: 31%;
    margin-left: 6px;
    margin-right: 6px;
}
.checkbox .checkbox-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.checkbox .icon {
    display: flex;
    justify-content: center;
    position: absolute;
    background-color: #FBFBFB;
    border-radius: 50%;
    top: -30%;
    width: 44px;
    height: 44px;
    box-shadow: 0 3px 2px rgba(0, 0, 0, .1);
}
.checkbox .icon img {
    max-width: 55%;
    max-height: 55%;
    margin: auto;
}
.checkbox .label-text {
    vertical-align: text-top;
    height: 40px;
    margin-top: 20px;
}
/*.step2 .checkbox:not(:last-child) {
    justify-content: flex-start;
    padding: 0 15px 0 120px;
    text-align: left;
}*/
/*.step2 .checkbox:before {
    content: '';
    position: absolute;
    top: 50%;
}*/
.icon1:before {
    width: 55px;
    height: 31px;
    background: url("../images/css_sprite.png") no-repeat 0 0;
    left: 32px;
    margin-top: -15px;
}
.icon1:hover:before, .icon1.checked:before {
    background: url("../images/css_sprite.png") no-repeat 0 -31px;
}
.icon2:before {
    width: 53px;
    height: 42px;
    background: url("../images/css_sprite.png") no-repeat 0 -62px;
    left: 36px;
    margin-top: -21px;
}
.icon2:hover:before, .icon2.checked:before  {
    background: url("../images/css_sprite.png") no-repeat 0 -104px;
}
.icon3:before {
    width: 48px;
    height: 43px;
    background: url("../images/css_sprite.png") no-repeat 0 -146px;
    left: 37px;
    margin-top: -21px;
}
.icon3:hover:before, .icon3.checked:before {
    background: url("../images/css_sprite.png") no-repeat 0 -189px;
}
.icon4:before {
    width: 48px;
    height: 48px;
    background: url("../images/css_sprite.png") no-repeat 0 -418px;
    left: 37px;
    margin-top: -24px;
}
.icon4:hover:before, .icon4.checked:before {
    background: url("../images/css_sprite.png") no-repeat 0 -466px;
}
.icon5:before {
    width: 57px;
    height: 47px;
    background: url("../images/css_sprite.png") no-repeat 0 -371px;
    left: 31px;
    margin-top: -23px;
}
.icon5:hover:before, .icon5.checked:before {
    background: url("../images/css_sprite.png") no-repeat 0 -324px;
}
.icon6:before {
    width: 46px;
    height: 46px;
    background: url("../images/css_sprite.png") no-repeat 0 -232px;
    left: 38px;
    margin-top: -23px;
}
.icon6:hover:before, .icon6.checked:before {
    background: url("../images/css_sprite.png") no-repeat 0 -278px;
}
.radio.checked, .radio:hover, .checkbox.checked, .checkbox:hover {
    border: 1px solid #db2532;
    outline: 1px solid #db2532;
    color: #db2532;
}
.row_form label {
     /*width: 100%;*/
 }
.row_form label.input-wrapper {
    /*margin: 0 7px;*/
    width: 100%;
 }
.row_form label.input-short {
    /*width: 48%;*/
    width: calc(50% - 4px);
    /*margin: 0 6px;*/
 }
/*.step2 .checkbox:last-child {
    flex-basis: 100%;
    height: 52px;
}*/
/*.step4 .row_form label:last-child input{
    width: 686px;
}*/
/*.step4 .red_btn, .step4 .black_btn {
    min-width: 240px;
}*/
.form_buttons {
    margin-bottom: 39px;
}
.privacy_txt {
    /*position: fixed;*/
    position: relative;
    background: rgba(0,0,0,0.7);
    text-align: center;
    padding: 25px 0 20px;
    /*bottom: 0;
    left: 25%;
    right: 25%;*/
}
.privacy_txt p {
    color: #ffffff;
    margin-bottom: 5px;
}
.privacy_txt:before, .privacy_txt:after {
    content: '';
    background: rgba(0,0,0,0.7);
    width: 300%;
    height: 100%;
    position: absolute;
    top: 0;
}
.privacy_txt:before {
    left: 100%;
}
.privacy_txt:after {
    right: 100%;
}
.red_lnk {
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: underline;
    color: #db2532;
}
.red_lnk:hover {
    text-decoration: none;
}
.success svg{
    width: 100px;
    height: 100px;
    background-color: transparent;
}
.success .wi-circle-dash {
    fill: none;
    stroke: #000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-dasharray: 10 300;
    animation: circledash 1.5s cubic-bezier(.5,0,.5,1) forwards .05s;
    -webkit-animation: circledash 1.5s cubic-bezier(.5,0,.5,1) forwards .05s;
    -moz-animation: circledash 1.5s cubic-bezier(.5,0,.5,1) forwards .05s;
    -o-animation: circledash 1.5s cubic-bezier(.5,0,.5,1) forwards .05s;
    opacity: 0;
}
.success .wi-check {
    stroke-dasharray: 60 100;
    animation: check 1.2s cubic-bezier(.5,0,.6,1) forwards .15s;
    -webkit-animation: check 1.2s cubic-bezier(.5,0,.6,1) forwards .15s;
    -moz-animation: check 1.2s cubic-bezier(.5,0,.6,1) forwards .15s;
    -o-animation: check 1.2s cubic-bezier(.5,0,.6,1) forwards .15s;
    fill: none;
    stroke: #000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}
.success .wi-check-dash {
    fill: none;
    stroke: #000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-dasharray: 10 100;
    animation: check-dash 1.2s cubic-bezier(.5,0,.6,1) forwards;
    -webkit-animation: check-dash 1.2s cubic-bezier(.5,0,.6,1) forwards;
    -moz-animation: check-dash 1.2s cubic-bezier(.5,0,.6,1) forwards;
    -o-animation: check-dash 1.2s cubic-bezier(.5,0,.6,1) forwards;
}
.success .wi-circle {
    fill: none;
    stroke: #000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-dasharray: 300 300;
    animation: circle 1.5s cubic-bezier(.5,0,.5,1) forwards .15s;
    -webkit-animation: circle 1.5s cubic-bezier(.5,0,.5,1) forwards .15s;
    -moz-animation: circle 1.5s cubic-bezier(.5,0,.5,1) forwards .15s;
    -o-animation: circle 1.5s cubic-bezier(.5,0,.5,1) forwards .15s;
    opacity: 0;
}
@-webkit-keyframes check {
     from {stroke-dashoffset: 60;
         opacity: 1;}
     to {stroke-dashoffset: 00;
         opacity: 1;}
 }
@-moz-keyframes check {
    from {stroke-dashoffset: 60;
        opacity: 1;}
    to {stroke-dashoffset: 00;
        opacity: 1;}
}
@keyframes check {
    from {stroke-dashoffset: 60;
        opacity: 1;}
    to {stroke-dashoffset: 00;
        opacity: 1;}
}
@-webkit-keyframes check-dash {
    from {stroke-dashoffset: 120;}
    to {stroke-dashoffset: 45;}
}
@-moz-keyframes check-dash {
    from {stroke-dashoffset: 120;}
    to {stroke-dashoffset: 45;}
}
@keyframes check-dash {
    from {stroke-dashoffset: 120;}
    to {stroke-dashoffset: 45;}
}
@-webkit-keyframes circle {
    from {stroke-dashoffset:300;
        opacity: 1;}
    to {stroke-dashoffset:0;
        opacity: 1;}
}
@-moz-keyframes circle {
    from {stroke-dashoffset:300;
        opacity: 1;}
    to {stroke-dashoffset:0;
        opacity: 1;}
}
@keyframes circle {
    from {stroke-dashoffset:300;
        opacity: 1;}
    to {stroke-dashoffset:0;
        opacity: 1;}
}
@-webkit-keyframes circledash {
    from {stroke-dashoffset:320;
        opacity: 1;}
    to {stroke-dashoffset: 20;
        opacity: 1;}
}
@-moz-keyframes circledash {
    from {stroke-dashoffset:320;
        opacity: 1;}
    to {stroke-dashoffset: 20;
        opacity: 1;}
}
@keyframes circledash {
    from {stroke-dashoffset:320;
        opacity: 1;}
    to {stroke-dashoffset: 20;
        opacity: 1;}
}
.success {
    display: none;
    text-align: center;
}
.success div {
    font-size: 27px;
    line-height: 1.3;
    color: #000;
    margin: 25px 0;
}
.success p {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 8px;
}
.success img {
    width: 100px;
}
.form fieldset {
    display: none;
}
.form .show, .success.show {
    display: block;
}
.success.show {
    margin-top: 50px;
    margin-bottom: 25px;
}
.lp-soc {
    display: flex;
    align-items: center;
}
.lp-soc .fb {
    width: 9px;
    height: 19px;
    background: url("../images/sprite_lp_new.png") no-repeat 0 -77px;
}
.lp-soc .fb:hover {
    background: url("../images/sprite_lp_new.png") no-repeat 0 -115px;
}
.lp-soc .insta {
    width: 19px;
    height: 19px;
    background: url("../images/sprite_lp_new.png") no-repeat 0 -58px;
    margin-left: 30px;
}
.lp-soc .insta:hover {
    background: url("../images/sprite_lp_new.png") no-repeat 0 -96px;
}
.lp-soc .twitter {
    width: 18px;
    height: 14px;
    background: url("../images/sprite_lp_new.png") no-repeat 0 0;
    margin-left: 27px;
}
.lp-soc .twitter:hover {
    background: url("../images/sprite_lp_new.png") no-repeat 0 -14px;
}
.lp-soc .youtube {
    width: 24px;
    height: 23px;
    background: url("../images/sprite_lp_new.png") no-repeat 0 -134px;
    margin-left: 24px;
}
.lp-soc .youtube:hover {
    background: url("../images/sprite_lp_new.png") no-repeat 0 -157px;
}

@media (min-width: 1903px) {
    .main {
        background-size: cover;
    }
}
@media (max-width: 1190px) {
    /*.container {
        width: 916px;
    }*/
    .main .container {
        padding: 4px 20px;
        /*position: static;
        margin: 20px 0;*/
    }
}
@media (max-width: 935px) {
    /*.container {
        width: 740px;
    }*/
    .radio, .checkbox {
        /*flex-basis: 233px;*/
        min-width: 42%;
    }
    .short-layout .radio, .short-layout .checkbox {
        /*flex-basis: 233px;*/
        min-width: 42%;
    }
    .row_form {
        /*margin: 0 -10px 30px -10px;*/
        margin-bottom: 30px;
    }
    .row_form label.input-short  {
        /*margin: 0 7px;*/
        width: 100%;
    }
    input, select/*, .radio, .checkbox*/ {
        /*margin: 0 6px 30px;*/
    }
    .form_buttons {
        margin-bottom: 77px;
    }
    .checkbox .icon {
        top: -36%;
    }
}
@media (max-width: 755px) {
    .container {
        width: 450px;
    }
    .descr {
        display: none;
    }
    .checkbox {
        font-size: 15px;
    }
    /*.radio, .checkbox {
        flex-basis: 210px;
    }*/
    .radio, .checkbox {
        padding: 0 15px;
    }
    input, select {
        height: 52px;
        line-height: 52px;
    }
    .black_btn {
        margin-right: 15px;
    }
    .form_buttons {
        margin-bottom: 27px;
    }
}
@media (max-width: 480px) {
    .container {
        width: 360px;
    }
    .form_buttons, .header .container {
        flex-wrap: wrap;
    }
    h1 {
        font-size: 30px;
    }
    .descr {
        font-size: 15px;
        line-height: 25px;
    }
    h2 {
        font-size: 23px;
    }
    .radio, .checkbox {
        height: 65px;
        font-size: 12px;
    }
    /*.step2 .checkbox:last-child {
        flex-basis: 210px;
    }*/
    .black_btn {
        margin-right: 2px;
        margin-bottom: 20px;
    }
    .header .container {
        justify-content: center;
    }
    .main {
        padding-top: 105px;
    }
    .lp-soc {
        margin-bottom: 15px;
    }
}
