
/*@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/HelveticaNeueCyr-Medium.eot');
    src: local('../fonts/HelveticaNeueCyr-Medium'),
    url('../fonts/HelveticaNeueCyr-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueCyr-Medium.woff') format('woff'),
    url('../fonts/HelveticaNeueCyr-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/

:root{
    --main-wrapper-max-width: 1360px;
    --main-wrapper-sm-max-width: 960px;
    --main-wrapper-padding: 90px;
    --main-wrapper-lg-padding: 30px;
    --main-main-font-size: 14px;
    --main-line-heigth: 1.54;
    --main-input-heigth: 40px;
    --main-button-heigth: 46px;
    --main-header-height: 100px;
    --main-header-margin: 52px;
}
html {
    width: 100%;
}
body{
    min-width: 320px;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: var(--main-main-font-size);
    line-height: var(--main-line-heigth);
    overflow-x: hidden;
    font-weight: 400;
    color: #1E1432;
}

.wrapper {
    max-width: var(--main-wrapper-max-width);
    margin: 0 auto;
    position: relative;
    padding: 0 var(--main-wrapper-padding);
    box-sizing: border-box;
}
.wrapper.lg{
    padding: 0 var(--main-wrapper-lg-padding);
}
.wrapper.sm{
    max-width: var(--main-wrapper-sm-max-width);
}
.workflow{
    flex: 1 0 auto;
    padding-top: calc(var(--main-header-height) + var(--main-header-margin)) ;
}
.page_top .workflow{
    padding-top: var(--main-header-height);
}

.toggle{
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: translateY(50px);
    transition: all 0.25s ease-in-out 0s;
}
.toggle.active{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    max-height: 99999px;
}
h1,
h2,
h3,
h4{
}

h1{
}

h2{
}

h3{
}

h4{
}

.page_header{
    font-weight: 400;
    font-size: 42px;
    line-height: 1.1666;
    margin: 0 0 41px 0;
}
.page_header h1{
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.page_text p{
    margin: 0 0 18px 0;
}
.page_text p:last-child{
    margin-bottom: 0;
}
.page_text h1,
.page_text h2,
.page_text h3,
.page_text h4{
    margin: 0 0 15px 0;
}
.page_text ul,
.page_text ol{
    margin: 0 0 15px 0;
}
.page_text ul li{
    list-style: inside;
    padding: 0 0 0 15px;
    margin: 0 0 10px 0;
}
.page_text ul li:last-child{
    margin-bottom: 0;
}
.page_text ol{
    margin-left: 29px;
}

.page_text table{
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 20px 0;
    vertical-align: top;
}
.page_text table th{
    font-weight: 400;
    font-size: 13px;
    line-height: 1.1538;
    color: #969696;
    text-align: left;
    padding: 0 20px 20px;
}
.w-mc{
    display: inline-block;
    width: max-content;
}

.page_text table td{
    padding: 15px 20px;
    border: none;
    vertical-align: top;
    text-align: left;
}

a{
    color: #FF0032;
    transition: all 0.35s ease-out 0s;
    text-decoration: none;
}
a:hover{
    color: #FF0064;
}

.mobile{
    display: none !important;
}
.desktop{
    display: block;
}
/************** FORMS *****************/

input:not([type='checkbox']):not([type='radio']),
textarea,
select{
    font-family: 'Roboto', sans-serif;
    padding: 5px 20px 5px;
    height: var(--main-input-heigth);
    box-sizing: border-box;
    color: #1E1432;
    font-size: 16px;
    outline: none;
    border: 1px solid #C8C8C8;
    display: flex;
    transition: all 0.25s ease-out 0s;
}
input:not([type='checkbox']):not([type='radio']):hover,
textarea:hover,
select:hover,
input:not([type='checkbox']):not([type='radio']):focus,
textarea:focus,
select:focus{
    border: 1px solid #3A3298;
}
textarea {
    min-height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
}

select{
}

.button,
button,
input[type="button"],
input[type="submit"] {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    height: var(--main-button-heigth);
    align-items: center;
    transition: all 0.25s ease-out 0s;
    box-sizing: border-box;
    border: none;
    background-color: #F7CD3F;
    padding: 5px 40px 5px;
    cursor: pointer;
    background-position: center;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #3A3298;
}

.button:active,
button:active,
input[type="button"]:active,
input[type="submit"]:active {
    text-decoration: none;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover{
    text-decoration: none;
    color: #1E1432;
}

.button.secondary,
button.secondary,
input[type="button"].secondary,
input[type="submit"].secondary{
    background: #3A3298;
    color: #fff;
}

.button.secondary:hover,
button.secondary:hover,
input[type="button"].secondary:hover,
input[type="submit"].secondary:hover{
    background: #5047bc;
}

.button:disabled,
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
.button.disabled,
button.disabled,
input[type="button"].disabled,
input[type="submit"].disabled,
.button:disabled:hover,
button:disabled:hover,
input[type="button"]:disabled:hover,
input[type="submit"]:disabled:hover{
    mix-blend-mode: normal;
    color: #3A3298;
    opacity: 0.5;
}

.button .ico,
button .ico,
input[type="button"] .ico,
input[type="submit"] .ico{
    display: block;
    margin: 0 13px 0 0;
}
.button:hover .ico path,
button:hover .ico path,
input[type="button"]:hover .ico path,
input[type="submit"]:hover .ico path{
    fill: #1E1432;
}
.button::before,
button.load::before,
input[type="button"]::before,
input[type="submit"]::before{
    content: '.';
    font-size: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsb2FkZXItMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQogd2lkdGg9IjQwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAwIDUwIDUwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MCA1MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTQzLjkzNSwyNS4xNDVjMC0xMC4zMTgtOC4zNjQtMTguNjgzLTE4LjY4My0xOC42ODNjLTEwLjMxOCwwLTE4LjY4Myw4LjM2NS0xOC42ODMsMTguNjgzaDQuMDY4YzAtOC4wNzEsNi41NDMtMTQuNjE1LDE0LjYxNS0xNC42MTVjOC4wNzIsMCwxNC42MTUsNi41NDMsMTQuNjE1LDE0LjYxNUg0My45MzV6Ij4NCjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZVR5cGU9InhtbCINCiAgYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIg0KICB0eXBlPSJyb3RhdGUiDQogIGZyb209IjAgMjUgMjUiDQogIHRvPSIzNjAgMjUgMjUiDQogIGR1cj0iMC42cyINCiAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz4NCjwvcGF0aD4NCjwvc3ZnPg0K);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #F7CD3F;
    background-size: 30px;
    color: transparent !important;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.25s ease-in-out 0s;
    opacity: 0;
}

.button.load::before,
button.load::before,
input[type="button"].load::before,
input[type="submit"].load::before {
    opacity: 1;
}

.checkbox{
    position: relative;
}
.checkbox label{
    padding: 0 0 0 40px;
    z-index: 10;
    position: relative;
}
.checkbox input[type="checkbox"]{
    display: none;
}
.checkbox .check{
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in-out 0s;
}
.checkbox .check path{
    stroke: transparent;
}
form .checkbox label{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1429;
    color: #1E1432;
}
form .checkbox:hover .check {
    border-color: #3A3298;
}
form .checkbox:hover input[type="checkbox"]:checked+.check {
    background: #fff;
}
form .checkbox:hover input[type="checkbox"]:checked+.check path{
    stroke: #3A3298;
}
.checkbox input[type="checkbox"]:checked+.check path{
    stroke: #FFFFFF;
}
.checkbox input[type="checkbox"]:checked+.check {
    border-color: #3A3298;
    background: #3A3298;
}
.check_radios input[type="radio"] {
    display: none;
}
.check_radio_note{
    font-size: 12px;
    margin: 5px 0 0 0;
    display: block;
    line-height: normal;
}
.radio {
    position: relative;
    margin: 0 0 10px 0;
}
.radio:last-child{
    margin-bottom: 0;
}
.radio .check{
    width: 20px;
    height: 20px;
    border: 1px solid #DCDCDC;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: absolute;
    left: 10px;
    top: 9px;
    z-index: 20;
    border-radius: 50%;
    transition: all 0.25s ease-in-out 0s;
}
.radio .check svg{

}
.radio .check path {
    stroke: #DCDCDC;
}

.radio:hover .check {
    border-color: #009E0F;
}
.radio:hover .check path {
    stroke: #009E0F;
}
.check_radios input[type="radio"]:checked+.check {
    background: #009E0F;
    border-color: #009E0F;
}
.check_radios input[type="radio"]:checked+.check path{
    stroke: #fff;
}
.check_radios label{
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    border-radius: 20px;
    position: relative;
    z-index: 10;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1429;
    color: #1E1432;
    padding: 11px 0 11px 40px;
    margin-bottom: 0px;
}
.check_button{
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    border-radius: 20px;
    display: inline-flex;
    height: 40px;
    align-items: center;
    padding: 5px 28px 5px 25px;
    color: #1E1432;
}
.check_button .ico{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 0;
    border-radius: 50%;
    border: 1px solid #DCDCDC;
    transition: all 0.25s ease-in-out 0s;
}
.check_button:hover{
    border-color: #3A3298;
    color: #1E1432;
}
.check_button:hover .ico{
    border-color: #3A3298;
}
.check_button:hover path{
    stroke: #3A3298;
}
.check_button:active{
    border-color: #3A3298;
    background: #3A3298;
    color: #FFFFFF;
}
.check_button:active .ico{
    border-color: #FFFFFF;
    background-color: #FFFFFF;
}
.check_button:active path{
    stroke: #3A3298;
}
.form_controls{
    margin: 30px 0 0 0;
}
.form_row{
    display: flex;
    margin: 0 -10px 28px;
}
.form_row:last-child{
    margin-bottom: 0;
}
.form_row .form_item{
    width: calc(50% - 20px);
    margin: 0 10px;
}
.form_item.toggle:not(.active){
    margin: 0;
}
.form_row .form_item input:not([type='checkbox']):not([type='radio']),
.form_row .form_item textarea,
.form_row .form_item select {
    width: 100%;
}
.form_row.full .form_item{
    width: calc(100% - 20px);
}

.form_item{
    margin: 0 0 18px 0;
    position: relative;
}
.form_item.last,
.form_item:last-of-type{
    margin-bottom: 0;
}
form label{
    cursor: pointer;
    display: block;
    font-size: 13px;
    line-height: 1.1538;
    color: #969696;
    margin: 0 0 7px 0;
}
form label.inline {
    display: inline-block;
}

span.error,
form.ajax_form .error{
    font-size: 12px;
    color: #FF0032;
    padding: 0 0 0 20px;
    margin: 3px 0 0 0;
}
.form_item_errors{
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 13px;
    color: #FF0032;
}

.important_field.important_field{
    opacity: 0;
    height: 0;
    width: 0;
    margin: 0;
    padding: 0;
    visibility: hidden;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    opacity: 1;
    color: #969696;
}
::-moz-placeholder { /* Firefox 19+ */
    opacity: 1;
    color: #969696;
}
:-ms-input-placeholder { /* IE 10+ */
    opacity: 1;
    color: #969696;
}
:-moz-placeholder { /* Firefox 18- */
    opacity: 1;
    color: #969696;
}

.no_data, .no_items{
    font-size: 36px;
}


/************** WINDOWS *****************/
.window input:not([type='checkbox']):not([type='radio']),
.window textarea{
    max-width: 100%;
    width: 100%;
}
.window_content{
    text-align: left;
    display: block;
    position: relative;
    z-index: 10;
}
.window_header{
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1875;
    margin: 0 0 32px 0;
}
.window_controls{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -10px;
}
.window_control{
    margin: 0 10px;
    width: calc(50% - 20px);
}
.window_controls .button{
    justify-content: center;
}
.window_heaader_note{
}
.window_data{
}
.window.no_header .window_data{
    margin: 0;
}
.window_buttons{
}
.window_buttons{
    display: flex;
    margin: 0 -10px;
}
.window_buttons .button{
    margin: 0 10px;
}

.remodal.screen_window{
    padding: 0;
    max-width: 90%;
    border-radius: 10px;
}

/************** breadcrumbs *****************/
.breadcrumbs {
    display: flex;
    font-size: 13px;
    line-height: 1.1538;
    color: #969696;
    margin: 0 0 44px 0;
}
.breadcrumbs li{
}
.breadcrumbs a{
    color: #969696;
}
.breadcrumbs a:hover{
    color: #000;
}
.breadcrumbs li + li::before {
    content: '•';
    margin: 0 4px 0 7px;
}

/************** PLUGINS *****************/

.tippy-box {
    background: #F5F5F5;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #1E1432;
    border-radius: 0;
}
.tippy-content{
    padding: 9px 13px 13px 10px;
    max-width: 230px;
}
.tippy_content{
    display: none;
}
.tippy-box .tippy_content{
    display: flex;
}
.tippy_content .ico{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 0 0;
}


#jGrowl,
.jGrowl-notification.af-message-success{
    display: none !important;
}
.noty_theme__mint.noty_type__success {
    background-color: #a6ce39;
    border-bottom: 1px solid #a6ce39;
}
.noty_theme__mint.noty_bar .noty_body {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 300;
}
.slideout-menu {
    width: 280px;
    z-index: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    display: none;
    background: #f9f9f9;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    /*will-change: transform;*/
    background-color: #FFF;
    min-height: 100vh;
    overflow: hidden;

    /*Прижимание футера*/
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

#panel::before {
    content: '.';
    font-size: 0;
    /*height: 0;*/
    display: block;
    background-color: rgba(0,0,0,0.35);
    transition: background-color 0.5s ease-in-out;
}

.panel-open::before {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 99;
}
.slideout-open .slideout-menu {
    display: block;
}

.slideout-menu{
    display: none;
}
#slide_menu .header_logo{
    padding: 0 15px;
}
#slide_menu .slide_menu_items{
    margin: 20px 0 0 0;
}
#slide_menu .slide_menu_items a{
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-weight: 300;
}
#slide_menu .slide_menu_items a:hover{
    background: #e0e0e0;
}

.response_menu_button{
    display: none;
}

/* hamburger */
.hamburger {
    float: left;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}
.hamburger-box {
    width: 32px;
    height: 22px;
    display: block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #3A3298;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -9px;
}
.hamburger-inner::after {
    bottom: -9px;
}

.hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* REMODAL */
html.remodal-is-locked{
    overflow: auto;
}
.remodal{
    position: relative;
    max-width: 780px;
    padding: 40px 100px;
/*    overflow: hidden;*/
}
.remodal.sm{
    max-width: 600px;
}
.remodal.lg{
    max-width: 1100px;
}
.remodal.lg.product_window{
    padding: 47px 80px 63px 80px;
}
.remodal .block_shadow_back{
    border-radius: 0;
}
.remodal-close{
    position: absolute;
    right: -50px;
    left: auto;
    top: 0px;
    width: 50px;
    height: 50px;
    background: #3A3298;
    transition: all 0.25s ease-in-out 0s;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remodal-close:before{
    display: none;
}
.remodal-close:hover svg{
    transform: rotate(180deg);
}

.sl-overlay{
    background: #000;
}
.sl-wrapper .sl-navigation button{
    color: #fff;
}
.sl-wrapper .sl-close,
.sl-wrapper .sl-counter{
    color: #fff;
}
.sl-wrapper .sl-image .sl-caption{
    background: rgba(0,0,0,.65);
}

.sl-wrapper .sl-navigation button:hover,
.sl-wrapper .sl-close:hover{
    background: none;
}

.select2-container{
    max-width: 100%;
}
.select2-container--default .select2-selection--single{
    background: #FFFFFF;
    border: 1px solid #C8C8C8;
    border-radius: 0;
    height: 40px;
    font-size: 14px;
    line-height: 1.1428;
    color: #1E1432;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    color: #1E1432;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 12px;
    height: 6px;
    margin: -3px 0 0 0;
    transition: all 0.25s ease-in-out 0s;
}
.select2-container--open .select2-selection--single .select2-selection__arrow{
    transform: rotate(180deg);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    background: url("../svg/dropdown_lg.svg") no-repeat center;
    width: 12px;
    height: 6px;
    border: none;
    margin: 0;
    left: 0;
    top: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    color: #1E1432;
    padding-left: 20px;
    padding-right: 40px;
}
.select2-container--default.select2-container--open .select2-selection--single{
    border-bottom-color: transparent;
}


.select2-container--default .select2-results>.select2-results__options {
    padding: 10px;
}
.select2-results__option {
    padding: 7px 10px;
    transition: all 0.25s ease-in-out 0s;
}
.select2-container--default .select2-results__option--selected {
    background-color: #F5F5F5;
    color: #1E1432;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #F5F5F5;
    color: #1E1432;
}
.select2-dropdown {
    border: 1px solid #C8C8C8;
    border-radius: 0;
}
.option_note{
    font-size: 13px;
    line-height: 1.1538;
    display: inline-flex;
    margin: 0 0 0 13px;
    color: #969696;
    text-transform: lowercase;
}

/************** HEADER *****************/
.header{
    position: fixed;
    flex: 0 0 auto;
    width: 100%;
    z-index: 50;
    background: #fff;
}
.header a {
    color: #1E1432;
}
.header a:hover {
    color: #000;
}
body.fixed_header {
    --main-header-height: 70px;
}
.header_items{
    height: var(--main-header-height);
    display: flex;
    transition: all 0.15s ease-out 0s;
    align-items: center;
}

.header_logo{
    background: #3A3298;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.header_logo .ico{
    display: flex;
    align-items: center;
    height: 100%;
}
.header.fixed {
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.header.fixed .header_logo svg{
    height: 70%;
    width: auto;
}
.header_contacts{
    display: flex;
    align-items: flex-start;
    padding: 0 0 0 2.307%;
    margin: 0 auto 0 -23px;
}
.header.fixed  .header_contact_title{
    margin: 0 0 5px 0;
}
.header.fixed .region_phones,
.header.fixed .header_contact_value {
    font-size: 14px;
}
.header_contact{
    margin: 0 23px;
}
.header_contact_region{
    min-width: 192px;
}
.header_contact_title{
    color: #969696;
    margin: 0 0 12px 0;
    height: 15px;
}
.region_select_title{
    display: flex;
    align-items: center;
    color: #969696;
    margin: 0 0 12px 0;
    padding: 0 17px 0 0;
    position: relative;
}
.region_phones{
    display: none;
}
.region_phones.active{
    display: block;
}
.region_select_title::after,
.region_select_list_item.active::after{
    content: '.';
    font-size: 0;
    background: url('../svg/dropdown.svg') no-repeat center;
    width: 8px;
    height: 5px;
    position: absolute;
    right: -18px;
    top: 5px;
    transition: all 0.25s ease-in-out 0s;
}
.region_select_title::after{
    right: -1px;
}
.region_select_list_item.active::after{
    right: 17px;
    top: 12px;
}
.region_select_list:hover .region_select_list_item.active::after{
    transform: rotate(180deg);
}
.region_select_title .ico{
    margin: 0 19px 0 0;
}
.region_phones,
.header_contact_value{
    font-size: 16px;
    line-height: 1.1875;
}
.region_phones{
    margin: 0 0 0 30px;
}
.region_phone{
    margin: 0 0 1px 0;
}
.region_phone:last-child{
    margin-bottom: 0;
}
.region_select{
    position: relative;
}
.region_select_list:not(.inactive):hover,
.region_select_title:hover+.region_select_list{
    opacity: 1;
    visibility: visible;
    height: auto;
}
.region_select_list{
    position: absolute;
    border: 1px solid #3A3298;
    padding: 35px 4px 10px 4px;
    background: #fff;
    min-width: 200px;
    top: -12px;
    left: 15px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.25s ease-in-out 0s;
}
.region_select_list_item{
    /*margin: 14px 0 0 0;*/
    width: 100%;
}
.region_select_list_item a{

    padding: 7px 25px 7px 10px;
    display: block;
    width: 100%;
}
.region_select_list_item a:hover{
    background: #F5F5F5;
}
.region_select_list_item.active+.region_select_list_item,
.region_select_list_item:first-child{
    margin-top: 0;
}
.region_select_list_item.active{
    width: calc(100% - 8px);
    position: absolute;
    top: 4px;
    left: 4px;
    margin: 0;
}
.region_select_list_item.active a{
    color: #969696;
}
/************** HEADER MAIN MENU *****************/
.menu_main{
    display: flex;
    padding: 0 0 0 8.23%;
    margin: 0 -27px;
}
.menu_link{
    display: flex;
    align-items: center;
}
.menu_main .menu_item{
    margin: 0 27px;
}

.menu_link .ico{
    margin: 0 11px 0 0;
}

.header_auth{
    margin: 0 0 0 6.5385%;
}
.header_auth a{
    display: flex;
}
.header_auth a .ico{
    margin: 0 14px 0 0;
}
.mini_cart{
    margin-left: auto;
    margin-right: 3%;
}
.mini_cart .ico{
    position: relative;
}
.mini_cart .ico::after{
    content: '.';
    font-size: 0;
    background: #FF0032;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -7px;
    top: -5px;
    opacity: 0;
    border-radius: 50%;
    transition: all 0.25s ease-in-out 0s;
}
.mini_cart .ico.active::after{
   opacity: 1;
}
/************** SLIDER *****************/
.main_slider{
    margin: 0 0 60px 0;
}
.slider_slides{
    position: relative;
}
.slide{
    height: 600px;
    display: flex;
    align-items: center;
    color: #1E1432;
    position: absolute;
    top: 0;
    left: 0;
}
.slide:first-child{
    position: relative;
    z-index: 30;
}
.slide_pic{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}
.slide_video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 20;
    visibility: hidden;
    height: 0;
    transition: opacity 0.25s ease-in-out 0s;
}
.slide_video.active{
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.video_player{
    height: 100%;
    object-fit: cover;
}
.slide.white{
    color: #FFFFFF;
}
.slide_data{
    margin: 0 0 0 35.3846%;
    z-index: 10;
}
.slider_header{
    font-weight: 400;
    font-size: 55px;
    line-height: 1.17;
    margin: 0 0 28px 0;
}
.slide_description{
    font-weight: 400;
    font-size: 21px;
    line-height: 1.1905;
}

.slide_controls{
    margin: 38px 0 0 0 ;
}
.play_control{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #FF0032;
    display: flex;
    align-items: center;
}
.play{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin: 0 20px 0 0;
    transition: all 0.25s ease-in-out 0s;
}
.play .ico{
    margin: 0 0 0 3px;
    display: block;
}
.play_control:hover{
    color: #3A3298;
}
.play_control:hover .play{
    background: #3A3298;
}
.play_control:hover .play path{
    fill: #fff;
}
.owl-theme .owl-dots{
    margin-top: 0 !important;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.owl-theme .owl-dots .owl-dot span {
    width: 180px;
    height: 2px;
    background: #F5F5F5;
    margin: 0 5px;
    display: block;
    border-radius: 0;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #F7CD3F;
}
/************** PRODUCTS *****************/
.product_card{
    position: relative;
}
.product_card_content{
    z-index: 10;
    position: relative;
}
.product_card_bage,
.product_category_bage{
    position: absolute;
    top: -10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    padding: 2px 10px;
    background: #FF0032;
    z-index: 10;
}

.product_card_link{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: 10;
}

.product_card_lg{
    width: 100%;
    height: 330px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.product_card_lg .product_card_bage{
    left: 8.4745%;
}
.product_card_lg .product_card_content{
    margin: 0 0 0 8.4745%;
}
.product_card_lg .product_card_header{
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1875;
    margin: 0 0 17px 0;
}
.product_card_lg .product_card_header a{
    color: #fff;
}
.product_card_lg .product_card_header a:hover{
    color: #fff;
}
.product_card_lg .product_card_pic{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
}
.product_card_lg .product_card_description{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1666;
    margin: 0 0 25px 0;
}

.add_to_cart input[name="quantity"]{
    display: none;
}
.product_card_controls{
    display: flex;
    align-items: center;

}
.product_card_lg .product_card_controls{
    margin: 0 -20px;
}
.product_card_lg .product_card_control{
    margin: 0 20px;
}
.product_card_lg  .product_card_control.recommend_link{
    color: #FF0032;
}
.product_card_lg .product_card_control.recommend_link:hover{
    color: #fff;
}

.confirm_order_controls_data{
    top: 0;
}
.catalog{
    display: flex;
    margin: 0 0 150px 0;
}
.page_checkout .catalog{
    margin-bottom: 0;
}
.catalog_sidebar{
    width: 33.8983%;
}
.catalog_sidebar_content{
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 0 0 40px 0;
}
.catalog_products{
    width: 66.1017%;
}
.catalog_products{
    display: flex;
    flex-wrap: wrap;
    margin: -35px -10px;
}

.catalog_products .product_card{
    width: calc(25% - 20px);
    margin: 35px 10px;
}
.product_card_pic{
    display: block;
    margin: 0 0 17px 0;
    min-height: 180px;
}
.window .product_card_bundle_item .product_card_pic{
    min-height: 109px;
}
.window .product_bundle_items {
    margin: 0 -10px;
}
.window .product_card_bundle_item {
    width: calc(25% - 20px);
    margin: 0 10px;
}
.window .product_card_bundle_item .product_card_header br{
    display: none;
}

.window .product_card_bundle_item .product_card_header {
    font-size: 13px;
}
.window .product_bundle_info .button{
    padding-left: 20px;
    padding-right: 20px;
}
.product_card_header{
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1429;
    margin: 0 0 22px 0;
}
.product_card_header a{
    color: #1E1432;
}
.product_card_header a:hover{
    color: #000;
}
.catalog_products .product_card_header{
    height: 65px;
    overflow: hidden;
}
.catalog_products .product_card_header a{
    color: #1E1432;
}
.catalog_products .product_card_header a:hover{
    color: #000;
}
.product_card .price{
    margin-bottom: 16px;
}
.product_card_md{
    background: #F7F8FA;
    height: 410px;
    padding: 30px 30px 0 30px;
}
.product_card_md .product_card_pic{
    position: absolute;
    bottom: 0;
    width: 84%;
    margin: 0;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: 0;
    height: 217px;
    left: 50%;
    transform: translateX(-50%);
}
.product_card_md .product_card_controls .add_to_cart,
.product_card_md .product_card_controls .button{
    width: auto;
}
.product_card_md .product_card_controls{
    margin: 0 -20px;
}
.product_card_md .product_card_control{
    margin: 0 20px;
}
.product_card_md .product_card_header{
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1875;
    margin: 0 0 15px 0;
}
.product_card_description{
    font-size: 18px;
    line-height: 1.1666;
    margin: 0 0 16px 0;
}
.price{
    display: flex;
    align-items: baseline;
    margin: 0 -10px;
}
.price_item{
    margin: 0 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
}
.price_item>div{
    display: inline-block;
}
.price_item.old_price{
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: line-through;
    color: #969696;
}

.product_card_controls .add_to_cart{
    width: 100%;
}
.product_card_controls .button{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
}

.catalog_sidebar_header{
    font-weight: 400;
    font-size: 42px;
    line-height: 1.1666;
    margin: 0 0 21px 0;
    display: flex;
    align-items: center;
}
.catalog_sidebar_header .ico{
    margin: 0 0 0 30px;
}
.catalog_sidebar_header .ico rect,
.catalog_sidebar_header .ico polyline,
.catalog_sidebar_header .ico path{
stroke: #3A3298;
}
.catalog_description{
    font-weight: 400;
    font-size: 21px;
    line-height: 1.1905;
    margin: 0 0 29px 0;
}
.catalog_categories{
    font-size: 16px;
    line-height: 1.1875;
}
.catalog_category{
    margin: 0 0 14px 0;
}
.catalog_category:last-child{
    margin-bottom: 0;
}
.catalog_category a{
    padding: 5px 30px 5px 10px;
    display: inline-block;
    color: #1E1432;
}
.catalog_category.active a{
    background: #F7CD3F;
}
.catalog_category a:hover{
    background: #DCDCDC;
}
.main_product{
    margin: 0 0 60px 0;
}
.main_product .product_card{
    margin: 0 0 50px 0;
}
.features{
    display: flex;
    flex-wrap: wrap;
    margin: -25px -10px;
}
.features_col{
    padding: 0 10px;
}
.features_col:nth-child(1){
    width: 35.1%;
}
.features_col:nth-child(2){
    width: 40%;
}
.features_col:nth-child(3){
    width: 24.9%;
}
.feature{
    display: flex;
    margin: 25px 0;
}
.feature_ico{
    margin: 0 30px 0 0;
}
.feature_header{
    font-weight: 400;
    font-size: 21px;
    line-height: 1.1905;
    margin: 2px 0 0 0;
}
.feature_description{
    margin: 11px 0 0 0;
}

.order_checkout_page_controls{
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #fff;
    padding: 10px 0;
    transition: all 0.15s ease-out 0s;
    height: auto !important;
    z-index: 10;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.order_checkout_page_controls_items{
    margin: 0 -10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order_checkout_page_control{
    margin: 0 10px;
}
.page_checkout .order_checkout_page_controls{
    display: none;
}
.promo_code_info_value{
    font-weight: bold;
}
.order_checkout_page_control.button{
    white-space: nowrap;
}
.order_confirmed_note{
    margin: 10px 0 0 0;
}
/************** BUNDLE *****************/
.product_card_bundle{
    margin: 0 0 70px 0;
}
.product_category_bage,
.product_card_bundle .product_card_bage{
    position: relative;
    display: inline-flex;
    top: 0;
    margin: 0 0 11px 0;
}
.product_bundle_header{
    font-weight: 400;
    font-size: 42px;
    line-height: 1.1666;
    margin: 0 0 11px 0;
}
.product_bundle_header a{
    color: #1E1432;
}
.product_bundle_header a:hover{
    color: #000;
}
.product_bundle_note{
    font-size: 21px;
    line-height: 1.19;
}
.product_bundle_note span{
    font-weight: 700;
    color: #F7CD3F;
}
.product_bundle_data{
    margin: 34px 0 0 0;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    display: flex;
    padding: 20px 0 37px;
}
.product_bundle_info{
   /* width: 27.1186%;*/
    width: 30%;
    padding: 0 28px 0 28px;
}
.product_bundle_items{
    width: 70%;
    /*width: 72.8814%;*/
    display: flex;
    margin: 0 -20px;
}
.product_card_bundle_item{
    width: calc(25% - 40px);
    margin: 0 20px;
}
.product_bundle_choice_header{
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 33px 0;
}
.product_bundle_choice_item{
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transform: translate(50px, 0px);
    transition: all 0.25s ease-in-out 0s;
}
.product_bundle_choice_item.inactive,
.product_bundle_choice_item.active{
    margin: 0 0 21px 0;
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
    height: auto;
}
.product_bundle_choice_item:last-child{
    margin-bottom: 0;
}
.product_bundle_choice_item_ico{
    margin: 0 26px 0 0;
    display: block;
}
.product_bundle_choice_items{
    margin: 0 0 30px 0;
}
.product_bundle_controls input[type="text"]:not(.add_to_cart_code_input){
    display: none;
}
.product_bundle_controls .form_row{
    flex-wrap: wrap;
}
.product_bundle_controls .form_row.add_to_cart_code_form .form_item {
    width: 100%;
    margin: 0 0 10px 0;
}
.product_bundle_controls .button{
    width: 100%;
    justify-content: center;
}
.product_bundle_controls .recommend_link {
    margin: 27px 0 0 0;
    display: inline-flex;
}

.quantity_controls{
    display: flex;
    align-items: center;
}
.quantity_control{
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quantity_control.disabled path {
    fill: #DCDCDC !important;
}
.quantity_control.disabled:hover{
    border-color: #DCDCDC;
}
.quantity_control:hover{
    border-color: #3A3298;
}
.quantity_control:hover path {
    fill: #3A3298;
}
.quantity_controls input{
    width: 70px;
    justify-content: center;
    padding: 5px !important;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1666;
}
.product_card_controls .quantity_controls{
    width: 100%;
}

.product_card_controls .quantity_controls{
    width: 100%;
    margin: 0 0 20px 0;
}
.product_card_controls .quantity_control,
.product_card_controls .quantity_control:hover{
    border-color: transparent;
}

.product_card_bundle_item .product_card_header{
    min-height: 32px;
}
.product_card_bundle_item .product_card_controls{
    display: block;
}
.product_card_bundle_check{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0 auto;
}
.product_card_bundle_check path{
    stroke: #DCDCDC;
}
.product_card_bundle_check.active{
    background: #3A3298;
    border-color: #3A3298;
}
.product_card_bundle_check:hover{
    border-color: #3A3298;
}
.product_card_bundle_check.active:hover path,
.product_card_bundle_check.active path{
    stroke: #fff;
}
.product_card_bundle_check:hover path{
    stroke: #3A3298;
}
/************** CATOGORY *****************/
.category_header{
    font-style: normal;
    font-weight: 400;
    font-size: 42px;
    line-height: 1.1666;
    margin: 0 0 41px 0;
}
.core_category{
    margin: 0 0 40px 0 ;
}
.core_category_products{
    margin: -10px -10px;
    display: flex;
    flex-wrap: wrap;
}
.core_category_products .product_card{
    width: calc(33.3333% - 20px);
    margin: 10px 10px;
}

/************** RECOMENDATION *****************/
.recommendation_banner{
    background: #FFFFFF;
    border: 1px solid #F7CD3F;
    display: flex;
    justify-content: center;
    margin: 40px 0 50px;
    padding: 71px 20px 82px;
}
.recommendation_banner_header{
    font-weight: 400;
    font-size: 42px;
    line-height: 1.16666;
}
.recommendation_banner_text{
    font-weight: 400;
    font-size: 21px;
    line-height: 1.1905;
    margin: 0 0 14px 0;
}
.recommendation_banner_col{
    margin: 0 4.2%;
}
/************** PRODUCT *****************/
.product_wrapper{
    /*max-width: 980px;
    padding: 0 80px 0 80px;*/
}
.product_main_data {
    display: flex;
    margin: 0 -30px 50px;
}
.product_pics{
    margin: 0 20px;
    width: calc(54.5454% - 40px);
}
.product_pics .owl-theme .owl-dots .owl-dot span{
    width: 60px;
}
.product_gallery_item{
    display: flex;
    min-height: 420px;
    align-items: center;
    justify-content: center;
}
.product_info{
    margin: 0 20px;
    width: calc(45.4546% - 40px);
}
.product_sku{
    font-size: 12px;
    line-height: 1.1666;
    color: #969696;
    margin: 0 0 27px 0;
}
.product_header{
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1875;
    margin: 0 0 17px 0;
}
.product_preview{
    font-size: 18px;
    line-height: 1.1666;
    margin: 0 0 33px 0;
}
.product_header br{
    display: none;
}
.product_main_features{
    display: flex;
    flex-wrap: wrap;
    margin: -5px -10px;
}
.product_main_feature{
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.1538;
    margin: 5px 10px;
    width: calc(50% - 20px);
}
.product_main_feature .ico{
    margin: 3px 13px 0 0;
}
.product_main_feature path{
    stroke: #009E0F;
}

.product_main_attributes{
    margin: 35px 0 37px 0;
}
.product_main_attributes_list{
    margin: -8px -16px -8px -16px;
    display: table;
}

.product_main_attribute{
    font-weight: 400;
    font-size: 13px;
    line-height: 1.1539;
    display: table-row;

}
.product_main_attribute_name{
    color: #969696;
    display: table-cell;
    padding: 8px 16px;
}
.product_main_attribute_value{
    display: table-cell;
    padding: 8px 16px;
}
.add_to_cart.with_quantity_controls input[name="quantity"] {
    display: inline-flex;
    width: 50px;
}
.product_price{
    display: flex;

    margin-bottom: 20px;
}
.product_price .price_item {
    font-size: 36px;
    font-weight: 500;
}
.product_price .price_currency{
    margin: 0 0 0 10px;
}
.product_price .price_item.old_price {
    font-size: 26px;
    font-weight: 400;
}
.product_price .price_item.old_price .price_value{
    text-decoration: line-through;
}

.price_countdown{
    display: none;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 25px 0;
}
.price_countdown_title{
    margin: 0 4px 0 0 ;
}
.price_countdown_timer{
    background: #3a3298;
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 4px;
    color: #fff;
}
.product_controls input[name="quantity"]{
    border-color: transparent !important;
}

.add_to_cart_code .form_item.checkbox {

}
.add_to_cart_code .form_item.checkbox label{
    margin: 0;
}
.product_controls .add_to_cart_body{
    display: flex;
}
.add_to_cart_code{
    padding: 20px;
    margin: 0 0 20px 0;
    background: #F5F5F5;
}
.add_to_cart_code .add_to_cart_code_types .form_item{
    margin: 0 0 15px 0;
}
.add_to_cart_code .add_to_cart_code_types .form_item:last-child{
    margin-bottom: 0;
}
.confirm_order_controls .add_to_cart_code{
    padding: 0;
    background: transparent;
}
.add_to_cart_code_form .form_item input:not([type='checkbox']):not([type='radio']){
    height: var(--main-button-heigth);
}
.add_to_cart_code_data{
    display: flex;
    align-items: center;
}

.form_row.add_to_cart_code_form{
    margin: 0;
    width: 100%;
}
.form_row.add_to_cart_code_form.active{
    margin-top: 20px;
}
.form_row.add_to_cart_code_form .form_item{
    width: 100%;
    margin-left: 0;
    margin-right: 15px;
}
.add_to_cart_code_data.active{
    margin-top: 15px;
}
.sticksy-dummy-node .add_to_cart_code_data.active{
    visibility: hidden;
    display: none;
}
.add_to_cart_code_value{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 15px 0 0;
}
.product_controls .quantity_controls{
    margin: 0 30px 0 0;
}
.product_controls .quantity_control {
    width: 40px;
    height: 40px;
    border-color: transparent !important;
}
.product_controls  .quantity_controls input{
    width: 50px;
}
.product_controls .button{
    padding-left: 27px;
    padding-right: 27px;
}
.product_content{
    margin: 0 0 43px 0;
}
.product_content_header{
    margin: 0 0 27px 0;
}
.product_sub_header{
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1875;
}
.product_content_items{
    display: flex;
    margin: 0 -25px;
}
.product_content_item{
    margin: 0 25px;
}
.product_content_item_description{
    width: calc(60% - 50px);
}
.product_content_item_ingredients{
    width: calc(40% - 50px);
}
.product_content_item_header{
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    margin: 0 0 13px 0;
}
.product_content_item_value{

}
.product_attributes{
    margin: 0 0 57px 0;
}
.product_attributes_list{
    display: flex;
    margin: 0 -40px;
}
.product_attributes_row{
    padding: 0 40px;
}

.product_attribute{
    display: flex;
    margin: 0 -22px 14px -22px;
}
.product_attribute_name{
    margin: 0 22px;
    min-width: 160px;
    width: 160px;
}
.product_attribute_value{
    margin: 0 22px;
    min-width: 50px;
}
.product_attribute:last-child{
    margin-bottom: 0;
}
.product_attribute_name{
    color: #969696;
}
.product_attributes_header{
    margin: 0 0 29px 0;
}
.product_reviews_head{
    display: flex;
    align-items: center;
    margin: 0 0 35px 0;
}
.product_reviews_data_score{
    display: flex;
    align-items: center;
}
.product_reviews_data{
    margin: 0 0 0 22px;
}
.product_reviews_data_score{
    font-weight: 700;
    font-size: 20px;
    line-height: 1.15;
}
.product_reviews_data_score .ico{
    margin: 0 9px 0 0;
}
.product_reviews_content{
    display: flex;
    margin: 0 -25px;
}
.product_reviews_col{
    margin: 0 25px;
}
.product_reviews_items{
    width: calc(60% - 50px);
}
.product_reviews_add{
    width: calc(40% - 50px);
}
.product_reviews_add.full{
    width: calc(100% - 50px);
}
.review_form input,
.review_form textarea,
.review_form input{
    width: 100%;
}
.score_choice{
    display: flex;
    margin: 0 -7px;
}
.score_choice_item{
    margin: 0 7px;
}
.score_choice_item:nth-child(1) path{
    transition-delay: 0ms;
}
.score_choice_item:nth-child(2) path{
    transition-delay: 50ms;
}
.score_choice_item:nth-child(3) path{
    transition-delay: 100ms;
}
.score_choice_item:nth-child(4) path{
    transition-delay: 150ms;
}
.score_choice_item:nth-child(5) path{
    transition-delay: 200ms;
}
.score_choice_item path{
    fill: #DCDCDC;
}
.score_choice_value.active path{
    fill: #FF0032;
}
.score_choice_control{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 28px 0 ;
}
.score_choice_control_label{
    font-weight: 400;
    font-size: 13px;
    line-height: 1.1538;
    color: #969696;
    margin: 0 44px 0 0;
}
.review_form .form_controls{
    text-align: right;
}
/************** MAIN *****************/
/************** ORDER *****************/
.added_order_product{
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
    border-bottom: 1px solid #DCDCDC;
}
.added_order_product_row{
    display: flex;
    align-items: center;
    margin: 0 -15px;
}
.added_order_product_pic{
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    width: 70px;
    min-width: 70px;
    margin: 0 15px 0 35px;
}
.added_order_product_data{
    margin: 0 15px;
}
.added_order_product_header{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1666;
}
.added_order_product_header a{
    color: #1E1432;
}
.added_order_product_header a:hover{
    color: #000;
}
.added_order_product_description{
    margin: 13px 0 0 0;
}
/************** REVIEWS *****************/

.reviews_screen{
    background: #3A3298;
    color: #fff;
    padding: 81px 0 20px 0;
}
.reviews_wrapper{
    display: flex;
}
.reviews_info{
    width: 33.8983%;
    padding: 0 40px 0 0;
}
.reviews_header{
    font-weight: 400;
    font-size: 42px;
    line-height: 1.1666;
    margin: 0 0 11px 0;
}
.reviews_description{
    font-weight: 300;
    font-size: 21px;
    line-height: 1.1428;
    margin: 0 0 40px 0 ;
}
.reviews_data{
    display: flex;
    align-items: center;
    margin: 0 -15px;
}
.reviews_data_item{
    margin: 0 15px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.15;
}
.reviews_data_score{
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}
.reviews_data_score .ico{
    margin: 0 9px 0 0;
}
.reviews_data_score .ico svg{
    width: 20px;
    height: auto;
}
.reviews{
    width: calc(66.1017% - 00px);
}
.review_author{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1666;
    margin: 0 0 16px 0;
}
.review_data{
    margin: 0 0 14px 0 ;
}
.review_main_data{
    display: flex;
    align-items: baseline;
    margin: 0 0 5px 0;
}
.review_score{
    display: flex;
    align-items: center;
    margin: 0 -5px;
}
.rating_icon{
    margin: 0 5px;
}
.rating_icon path{
    fill: #DCDCDC;
}
.rating_icon.active path{
    fill: #FF0032;
}
.review_score svg{
    width: 10px;
    height: auto;
}
.review_date{
    font-weight: 400;
    font-size: 12px;
    line-height: 1.1666;
    mix-blend-mode: normal;
    opacity: 0.5;
    margin: 0 0 0 20px;
}
.review_product{
    font-size: 13px;
    line-height: 1.1538;
    mix-blend-mode: normal;
    opacity: 0.5;
}
.review_content{
    font-size: 14px;
    line-height: 1.1428;
}
.reviews_list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -50px;
}
.review{
    margin: 0 0 40px 0;
    width: 50%;
    padding: 0 50px;
}
.review:last-child{
    margin-bottom: 0;
}
.reviews_controls{
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}

.review.product_review{
    width: 100%;
}
.product_review .review_head{
    display: flex;
    align-items: center;
    margin: 0 0 16px 0;
}
.product_review .review_author{
    margin: 0;
}
.product_review .review_date{
    margin-left: 24px;
}
.product_review .review_main_data{
    margin: 0 0 0 0;
}
.product_review .review_data{
    margin: 0 0 17px 0;
}
.product_reviews_controls{
    margin: 51px 0 0 0;
}
/************** POSTS *****************/
.offers_items{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 33.3333%);
    grid-template-rows: max-content;
    grid-template-rows: 200px;
    position: relative;
    /*grid-gap: 9px;*/
    margin: 0 -10px;
}
.offers_items::after{
    content: '.';
    font-size: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}
.offers_items::before{
    content: '.';
    font-size: 0;
    height: 100%;
    width: 1px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}
.offer_card{
    border-right: 1px solid #DCDCDC;
    padding: 0 10px;
    position: relative;
}
.offer_card.lg{
    grid-row: span 2;
}
.offer_card.lg .offer_card_content{
    padding-top: 231px;
}
.offer_card_header{
    font-weight: 500;
    font-size: 21px;
    line-height: 1.19;
    margin: 0 0 21px 0;
}
.offer_card_header a{
    color: #1E1432;
}
.offer_card_header a:hover{
    color: #000;
}
.offer_card_description{
    margin: 0 0 51px 0 ;
}
.offer_card_footer{
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    padding: 0 10px;
}
.offer_card_time{
    font-size: 13px;
    line-height: 1.1538;
    color: #969696;
}
.offer_card_image{
    position: absolute;
    width: calc(100% - 20px);
    top: 0;
    left: 10px;
}
.offer_card_promo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 21px;
    line-height: 1.19;
    color: #fff;
}
.offer_card_promo_header{
    margin: 0 0 7px 0 ;
}
.offer_card_promo_coupon{
    color: #FF0032;
}
.offer_card_content{
    padding: 31px 0 20px 0;
    border-bottom: 1px solid #DCDCDC;
    height: 100%;
}

.post.referral_system_offer{
    max-width: 100%;
    margin: 0 0 100px 0;
}
.referral_system{
    margin: 77px 0 0 0;
}
.referral_system_step{
    display: flex;
    align-items: flex-start;
    margin: 0 0 100px 0;
}
.referral_system_step:last-child{
    margin-bottom: 0;
}
.referral_system_step_n{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    background: #3A3298;
    border-radius: 26.5px;
    padding: 11px 24px;
    margin: 0 46px 0 0 ;
    min-width: 114px;
}
.referral_system_step_content{
    padding: 0 0 0 40px;
    width: 100%;
}
.referral_system_step_block{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.referral_system_step_block.right{
    flex-direction: row-reverse;
    margin: 0 0 0 -100px;
    justify-content: flex-end;
}
.referral_system_step_block.right .referral_system_step_block_pic{
    margin: 0 9.35% 0 0;
}
.referral_system_step_block_content{
    margin: 120px 0 0 0;
}
.referral_system_step_block_header{
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    position: relative;
    margin: 0 0 17px 0;
    z-index: 10;
}
.referral_system_step_block_header::before{
    content: '.';
    font-size: 0;
    position: absolute;
    left: -40px;
    top: -12px;
    background: #F7CD3F;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.referral_system_step_block_text{
    font-size: 16px;
    line-height: 24px;
    z-index: 10;
}
.referral_system_step_block_controls{
    margin: 22px 0 0 0 ;
}

.referral_system_more_header{
    font-weight: 400;
    font-size: 42px;
    line-height: 49px;
    color: #3A3298;
    margin: 0 0 26px 0;
    position: relative;
    display: inline-block;
}
.referral_system_more_header .ico{
    position: absolute;
    right: -123px;
    bottom: -117px;
}
.referral_system_more_text{
    font-size: 16px;
    line-height: 20px;
}
.referral_system_step_{
    margin-bottom: 135px;
}

.referral_system_step_block_coupons .referral_system_step_block_content {
    position: relative;
}
.referral_system_step_block_coupons .referral_system_step_block_content>.ico{
    position: absolute;
    left: -85px;
    bottom: -70px;
}
.referral_system_step_block_text p{
    margin: 0 0 30px 0;
}
.referral_system_step_block_text p:last-child{
    margin-bottom: 0;
}
.referral_warning{
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
    font-weight: 500;
}
.referral_warning .ico{
    margin: 0 8px 0 0;
}
.referral_system_step_block_share .referral_system_step_block_content {
    position: relative;
    z-index: 10;
}
.referral_system_step_block_share .referral_system_step_block_content>.ico{
    position: absolute;
    right: -65px;
    top: -7px;
}

.referral_system_step_block.full .referral_system_step_block_content{
    display: flex;
    width: 100%;
}
.referral_system_step_3 .referral_system_step_block_header strong{
    color: #3A3298;
}
.referral_system_step_3  .referral_system_step_block_text {
    margin-left: 12.3%;
}
.referral_system_step_3 .referral_system_step_block_text span{
    color: #3A3298;
}

.referral_discounts{
    display: flex;
    margin: 70px -5px 0 -105px;
}
.referral_discount {
    margin: 0 5px;
}
.referral_discount_text{
    font-size: 16px;
    line-height: 20px;
    margin: -16px 0 0 30px;
}
.referral_discount_ico{
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
}
/************** POST *****************/
.post{
    max-width: 780px;
    margin: 0 auto;
}
.post_image{
    margin: 0 0 28px 0;
}
.offer_time{
    font-size: 13px;
    line-height: 1.1538;
    color: #969696;
    margin: 0 0 45px 0;
}
.offer_intro{
    display: flex;
    margin: 0 0 55px 0;
}
.offer_description{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 6.25%;
}
.offer_top_controls{
    margin: 0 6.25%;
}
.offer_intro {
    display: flex;
    margin: 0 -7.6923% 55px -7.6923%;
}
.offer_controls{
    margin: 57px 0 0 0;
}
.offer_note{
    margin: 39px 0 0 0;
    font-size: 12px;
    line-height: 1.1666;
    color: #969696;
}
/************** FEEDBACK *****************/
.page_feedback .page_header{
    margin-bottom: 18px;
}
.feedback_header{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 27px 0;
}
.feedback_sub_header{
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1666;
    margin: 0 0 17px 0;
}
.feedback_info {
    margin: 0 0 30px 0;
}
.feedback_info:last-child{
    margin-bottom: 0;
}
.feedback_content{
    margin: 0 0 49px 0;
}
.feedback_form{
    max-width: 580px;
}
.feedback_form input,
.feedback_form textarea{
    width: 100%;
}
/************** AUTH *****************/
.auth_forms{
    max-width: 380px;
    margin: 59px auto 100px;
}
.auth_form_head{
    line-height: 1.1666;
    margin: 0 0 33px 0;
}
.auth_form_header{
    font-weight: 400;
    font-size: 42px;
    margin: 0 0 24px 0;
}
.auth_form_description{
    font-size: 18px;
}
.auth_form input:not([type='checkbox']):not([type='radio']){
    width: 100%;
    height: 60px;
    font-size: 26px;
}
.auth_form .button,
.auth_form button,
.registration_form .button,
.registration_form button{
    width: 100%;
    height: 50px;
}

.auth_form_note{
    font-size: 13px;
    line-height: 1.1538;
    margin: 28px 0 0 0;
    color: #969696;
}

.auth_code_info_to{

}
.code_resend_info{
    margin: 17px 0 0 0;
}
.code_resend_time{
    color: #FF0032;
}
.code_form input:not([type='checkbox']):not([type='radio']){
    text-align: center;
}

/************** PROFILE *****************/
.profile_menu{
    display: flex;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1666;
    margin: 0 0 46px 0;
    border-bottom: 1px solid #F5F5F5;
}
.profile_menu li{
    padding: 0 0 21px 0;
    position: relative;
}
.profile_menu li::after{
    content: '.';
    font-size: 0;
    width: 0;
    height: 2px;
    background: #1E1432;
    margin: 0 0 0 50%;
    position: absolute;
    left: 0;
    bottom: 2px;
    opacity: 0;
    transition: all 0.25s ease-in-out 0s;
}
.profile_menu li:hover::after,
.profile_menu li.active::after{
    width: 100%;
    opacity: 1;
    bottom: -1px;
    transform: translateX(-50%);
}
.profile_menu li.active::after{
    background: #3A3298;
}
.profile_menu a{
    color: #1E1432;
    padding: 0 21px ;
}
.profile_menu .active a{
    color: #3A3298;
}
.profile_menu a:hover{
    color: #000;
}
.profile_menu li.active a:hover {
    color: #3A3298;
}
.menu_item.logout{
    margin-left: auto;
}
.menu_item.logout:hover a,
.menu_item.logout a{
    color: #FF0032;
}
.profile_menu li.logout::after{
    background: #FF0032;
}
.form_block_header{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 42px 0;
}
.form_block{
    margin: 0 0 72px 0;
}
.form_block:last-child{
    margin-bottom: 0;
}
.profile_form {
    max-width: 780px;
}
.profile_form .select2-container{
    width: 100% !important;
}
.profile_form input:not([type='checkbox']):not([type='radio']),
.profile_form textarea {
    width: 100%;
}

.profile_form .form_row .form_item{
    max-width: 380px;
}

/************** ORDERS *****************/
.page_text table.orders_list{
    margin: 0;
}
.orders_list_item_product{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 -10px 24px;
}
.orders_list_item_product:last-child{
    margin-bottom: 0;
}
.orders_list_item_product_name{
    margin: 0 10px;
    font-weight: 500;
}
.orders_list_item_product_quantity{
    margin: 0 10px;
}
.orders_list_item_product_bundle{
    margin: 15px 0 0 0;
}
.orders_list_item_product_bundle_item{
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: #969696;
    margin: 0 0 5px 0;
}
.orders_list_item_product_bundle_item:last-child{
    margin-bottom: 0;
}
.orders_list_item_product_bundle_item_name{
    margin: 0 0 0 5px;
}
.pay_status{
    display: flex;
    align-items: center;
}
.pay_status .ico{
    margin: 0 9px 0 0;
}
.pay_status.not_paid svg{
    width: 10px;
    height: auto;
}
.pay_status.not_paid path{
    fill: #FF0032;
}
.pay_status.paid path{
    stroke: #009E0F;
}
.ta-c{
    text-align: center !important;
}

.pagination{
    margin: 77px -5px 0 -5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pagination .first svg{
    transform: rotate(180deg);
}
.pagination .prev svg{
    transform: rotate(180deg);
}
.pagination a{
    color: #1E1432;
}
.pagination a,
.pagination_item.current{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination a:hover{
    background: #3A3298;
    color: #fff;
}
.pagination a:hover path{
    stroke: #fff;
}
.pagination_item{
    display: inline-flex;
    margin: 0 5px;
}
.pagination_item.current{
    background: #3A3298;
    color: #fff;
}
/************** CHECKOUT *****************/

.checkout_note{
    background: #F5F5F5;
    padding: 18px 20px 27px 20px;
    margin: 0 0 46px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout_note_header{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
}

.checkout_note_description{
    margin-top: 11px;
}
.checkout_note_data{
    margin: 0 20px;
}
.checkout_note_info{
    margin: 10px 20px 0;
    display: flex;
    align-items: center;
}
.checkout_note_info_data{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 0 40px;
}
.checkout_note_controls {
    display: flex;
    margin: 20px -10px 0;
}
.checkout_note_control{
    margin: 0 10px;
}
.checkout_steps_head{
    margin: 0 0 46px 0;
}
.checkout_steps_nav{
    display: flex;
    border-bottom: 2px solid #F5F5F5;
    margin: 0 -10px;
}
.checkout_step_confirm .checkout_step_controls{
    display: none;
}
.checkout_step_nav{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    color: #1E1432;
    display: flex;
    align-items: center;
    padding: 0 17px 24px 17px;
    margin: 0 10px;
    position: relative;
}
.checkout_step_nav::after{
    content: '.';
    font-size: 0;
    background: #1E1432;
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: -2px;
    transition: all 0.25s ease-in-out 0s;
    opacity: 0;
}
.checkout_step_nav.disabled{
    color: #C8C8C8;
}
.checkout_step_nav:not(.disabled):hover{
    color: #000;
}
.checkout_step_nav.active::after,
.checkout_step_nav:not(.disabled):hover::after{
    width: 100%;
    opacity: 1;
    transform: translateX(-50%);
}
.checkout_step_nav_n{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #1E1432;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 0 0;
}
.checkout_step_nav.disabled .checkout_step_nav_n {
    border-color: #C8C8C8;
}
.checkout_step_nav_n_index{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1666;
    transition: all 0.25s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
}
.checkout_step_nav .checkout_step_nav_n .ico{
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
    transition: all 0.25s ease-in-out 0s;
}
.checkout_step_nav.valid .checkout_step_nav_n .ico{
    opacity: 1;
    visibility: visible;
    height: auto;
    width: auto;
}
.checkout_step_nav:not(.valid) .checkout_step_nav_n_index{
    opacity: 1;
    visibility: visible;
    height: auto;
    width: auto;
}
.checkout_step_nav_n .ico path{
    stroke: #009E0F;
}

.checkout_step{
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.25s ease-in-out 0s;
}
.checkout_step.active{
    opacity: 1;
    visibility: visible;
    height: auto;
}


.order_product{
    display: flex;
    border: 1px solid #DCDCDC;
    padding: 20px;
    margin: 0 0 10px 0;
}
.order_product:last-child{
    margin-bottom: 0;
}
.order_product_pic{
    width: 100px;
    height: 100px;
    display: block;
    background-color: #DCDCDC;
}

.order_product_sku{
    font-size: 13px;
    line-height: 1.1539;
    color: #969696;
    margin: 0 0 10px 0;
}

.order_product_name{
    font-size: 18px;
    line-height: 1.1666;
    color: #1E1432;
}
.order_product_name:hover{
    color: #000;
}
.order_product_info{
    width: 44.8549%;
    padding: 8px 30px 0;
}
.order_product_bundle_items{
    color: #969696;
    margin: 13px 0 0 0 ;
}
.order_product_controls{
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
}
.order_product_controls .remove_from_cart{
    margin: 0 30px 0 140px;
    border: 1px solid #DCDCDC;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order_product_controls .remove_from_cart:hover{
    border-color: #3A3298;
}
.order_product_controls .remove_from_cart:hover path{
    fill: #3A3298;
}
.order_product_controls input:not([type='checkbox']):not([type='radio']),
.order_info_product_quantity  input:not([type='checkbox']):not([type='radio']) {
    border-color: transparent;
    font-size: 18px;
    line-height: 1.1666;
}

.checkout_step_controls{
    margin: 60px -30px 0 -30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout_step_controls.first{
    justify-content: flex-end;
}
.checkout_step_control{
    margin: 0 30px;
}

.checkout_step_control.with_ico .ico{
    margin: 0 20px 0 0;
}
.checkout_step_control.with_ico.next .ico{
    margin: 0 0 0 20px;
}
.checkout_step_control.with_ico.prev .ico{
    transform: rotate(180deg);
}

.checkout_contacts{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -35px;
}
.checkout_contacts_form_items{
    width: 64.4068%;
    padding: 0 35px;
}
.checkout_step_full .checkout_contacts_form_items{
    width: 100%;
}
.checkout_form_data{
    margin: 40px 0 0 0;
}
.checkout_contacts_form_items .form_row:last-child{
    margin-bottom: 0;
}
.checkout_contacts_auth{
    width: 35.5932%;
    padding: 0 35px;
}
.checkout_contacts_auth_header{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 11px 0 ;
}
.checkout_contacts .form_row .form_item {
    width: calc(50% - 20px);
    margin: 0 10px;
}
.checkout_contacts .form_row {
    display: flex;
    margin: 0 -10px 18px;
}

.checkout_address{
    display: flex;
    margin: 0 -10px;
}
.checkout_address_block{
    margin: 0 10px;
}
.checkout_step_header{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 32px 0;
}
.checkout_address_block_region{
    width: 29.509%;
}

.checkout_address_block_place{
    width: 70.491%;
}
.checkout_address_block_region .select2-container{
    width: 100% !important;
}
.checkout_address_block_region input{
    width: 100% !important;
}
.checkout_address_block .form_row {
    display: flex;
    margin: 0 -10px 18px;
}
.checkout_address_block .form_row:last-child{
    margin-bottom: 0;
}
.checkout_address_block .form_row .form_item {
    width: calc(50% - 20px);
    margin: 0 10px;
}
.checkout_address_block .form_row.full .form_item{
    width: calc(100% - 20px);
}
.checkout_address_block textarea{
    min-height: 80px;
}
.form_item_delivery_city{
    display: none;
}
.form_item_delivery_city.active {
    display: block;
}
.discount_blocks{
    display: flex;
    margin: 0 -10px;
}

.discount_block{
    border: 1px solid #C8C8C8;
    padding: 28px 30px 30px 30px;
    width: 33.3333%;
    margin: 0 10px;
}
.discount_block_header{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 24px 0;
}
.discount_block_content{
    margin: 0 0 20px 0 ;
}

.confirm_order_data{
    display: flex;
}
.confirm_order_info{
    width: 63%;
}


.confirm_order_info_header{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 24px 0 ;
}
.order_info_product{
    display: flex;
    border-bottom: 1px solid #DCDCDC;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    transition: all 0.20s ease-in-out 0s;
}
.order_info_product:last-child{
    margin-bottom: 0;
}
.order_info_product_pic{
    width: 100px;
    height: 100px;
    min-width: 100px;
    margin: 0 30px 0 0;
}
.order_info_product_data{
    width: 100%;
}
.order_info_product_content{
    display: flex;
    font-size: 18px;
    line-height: 1.1666;
    align-items: center;
    min-height: 100px;
    padding: 0 60px 0 0;
    position: relative;
}
.order_info_product_sku{
    font-size: 13px;
    line-height: 1.1538;
    color: #969696;
    margin: 0 0 10px 0 ;
}
.order_info_product_name{
    width: 47.797%;
    color: #1E1432;
}
.order_info_product_name a{
    color: #1E1432;
}
.order_info_product_name a:hover{
    color: #000;
}
.order_info_product_quantity{
    width: 25.256%;
    margin: 0 auto 0 0;
}
.order_info_product_quantity  input:not([type='checkbox']):not([type='radio']) {
    border-color: transparent;
    font-size: 18px;
    line-height: 1.1666;
    max-width: 50px;
}
.order_info_product_price_items{
    transition: all 0.20s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
}
.order_info_product.active .order_info_product_price_items{
    opacity: 1;
    visibility: visible;
    max-height: 99999px;
    margin: 10px 0 -10px 0;
    padding: 0 0px 0 0;
}
.order_info_product_price_item{
    display: flex;
    color: #969696;
    border-top: 1px solid #DCDCDC;
    padding: 16px 0 20px;

}
.order_info_product_price_item_name{
    width: 67.797%;
    display: flex;
    justify-content: space-between;
}
.order_info_product_price_item_quantity{
    width: 15.256%;
}
.order_info_product_price_item_discount{
    padding: 0 37px 0 15px;
}
.order_info_product_price_item_discount_value{
    font-weight: 500;
    font-size: 12px;
    line-height: 1.1666;
    text-align: center;
    color: #FFFFFF;
    padding: 3px 7px;
    background: #FF0032;
}
.order_info_product_price{
    margin: 0 0 0 20px;
}
.product_price_old{
    text-decoration: line-through;
    color: #969696;
    margin: 0 5px 0 0;
    font-weight: 300;
}
.order_info_product_price_button{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 70px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DCDCDC;
    margin: 0 0 0 45px;
}
.order_info_product_price_button:hover{
    border-color: #3A3298;
}
.order_info_product_price_button:hover path{
    stroke: #3A3298;
}
.order_info_product.active .order_info_product_price_button svg{
    transform: rotate(180deg);
}

.order_info_datas{
    display: flex;
}
.order_info_data_header{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1666;
    margin: 0 0 29px 0 ;
}
.order_info_products{
    margin: 0 0 10px 0;
}
.order_info_data{
    padding: 28px 0 36px 0;
}
.order_info_delivery{
    width: 61.5384%;
    border-right: 1px solid #DCDCDC;
    padding-right: 10.2564%;
}
.order_info_contacts{
    width: 38.4616%;
    padding-left: 6.4103%;
}

.order_info_data_content_item{
    margin: 0 0 13px 0;
}
.order_info_data_content_item_address{
    font-size: 16px;
    line-height: 1.1875;
}
.order_info_data_content_item:last-child{
    margin-bottom: 0;
}
.order_info_delivery_data{
    display: flex;
}
.order_info_delivery_data_header{
    font-weight: 700;
    margin: 0 10% 0 0;
}
.order_info_delivery_data_value:first-letter {
    text-transform: uppercase;
}
.confirm_order_controls .order_info_delivery_data{
    padding: 0 0 23px;
    margin: 0 0 23px 0;
    justify-content: space-between;
    border-bottom: 1px solid #DCDCDC;
}
.confirm_order_controls .order_info_delivery_data_header {
    font-weight: 500;
}
.order_info_data_contacts_name{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1666;
    margin: 0 0 13px 0;
}
.order_info_data_contact_item{
    margin: 0 0 13px 0;
}
.order_info_data_contact_item:last-child{
    margin-bottom: 0;
}
.order_info_data_contact_phone_second{
    font-size: 12px;
    line-height: 1.1666;
    color: #969696;
    margin-top: -7px;
}
.confirm_order_info_controls{
    margin: 20px -30px 0;
}

.confirm_order_controls{
    width: 37%;
    padding: 0 0 0 20px;
}
.confirm_order_controls_items{
    background: #F5F5F5;
    padding: 28px 30px 33px 30px;
}
.confirm_order_controls_total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    line-height: 1.1666;
    padding: 0 0 23px 0;
    margin: 0 0 23px 0;
    border-bottom: 1px solid #DCDCDC;
}
.confirm_order_controls_auth{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 25px 0;
    border-bottom: 1px solid #DCDCDC;
    margin: 0 0 20px 0;
}
.confirm_order_controls_auth_header{
    margin: 0 20px 0 0;
    font-size: 18px;
    line-height: 1.1666;
}
.confirm_order_buttons{
    margin: 30px 0 0 0;
    text-align: center;
}
.confirm_order_buttons .link{
    display: inline-block;
    margin: 0 0 14px 0;
}
.confirm_order_buttons button{
    width: 100%;
}
.confirm_note{
    margin: 30px 0 0 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.1666;
    text-align: center;
    color: #969696;
}

.order_note{
    background: #3a3298;
    color: #fff;
    padding: 23px 70px 25px 30px;
    display: flex;
    margin: 10px 0 0 0;
}
.order_note_ico{
    background: #FFFFFF;
    border: 1px solid #1E1432;
    min-width: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 20px 0 0;
    font-size: 18px;
    line-height: 1;
    color: #1E1432;
}
.order_note_header{
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1666;
    margin: 2px 0 12px 0;
}
.order_note_text{

}


.crosssels{
    margin: 80px 0 0 0 ;
    display: none;
}
.crosssels.active{
    display: block;
}
.crosssells_header{
    font-weight: 400;
    font-size: 42px;
    line-height: 1.1666;
    margin: 0 0 40px 0;
}
.crosssells_items{
    display: flex;
    margin: 0 -10px;
}
.crosssells_items .product_card{
    width: 16.6666%;
    margin: 0 10px;
}

.crosssells_items .product_card_header {
    height: 65px;
    overflow: hidden;
}

.order_confirmed{
    text-align: center;
    margin: 120px 0 60px 0;
}
.order_confirmed_header{
    font-weight: 400;
    margin: 0;
}
.order_confirmed_pay_message{
    margin: 20px 0 0 0;
}
.order_confirmed_controls{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px -20px 0 -20px;
}
.order_confirmed_control{
    margin: 0 20px;
}

.checkout_simple {
    max-width: 992px;
    margin: 0 auto;
}
.checkout_simple .confirm_order_data{
    display: block;
}

.checkout_simple .confirm_order_info {
    width: 100%;
}
.checkout_simple .confirm_order_controls{
    width: 100%;
    padding: 0;
}
.checkout_simple .confirm_order_controls_items {
    padding: 38px 30px 33px 30px;
    max-width: 720px;
    margin: 0 auto;
}
.checkout_simple .confirm_order_controls_items_wrapper{
    background: #F5F5F5;
}
.checkout_main_data{
    background: #F5F5F5;
    padding: 38px 30px 33px 30px;
    margin: 0 0 50px 0;

}
.checkout_main_data_content{
    max-width: 720px;
    margin: 0 auto;
}
.checkout_main_data_items{
    display: flex;
    margin: 0 -10px;
}
.checkout_main_data_items .form_item{
    width: 50%;
    margin: 0 10px;
}
.checkout_main_data_items .form_item input{
    width: 100%;
}
.checkout_main_data_note{
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
}


.checkout_simple #checkout_payMethod{
    display: flex;
    margin: 0 -10px;
}
.checkout_simple #checkout_payMethod .radio{
    margin: 0 10px;
    width: 100%;
}
/************** REFERRAL *****************/
.referral_form {
    margin: 30px 0 0 0;
}
.referral_send_type_controls{
    display: flex;
    flex-wrap: wrap;
    margin: -7px -10px;
    justify-content: center;
    align-items: center;
}
.referral_send_type_control {
    margin: 7px 10px;
}

.referral_send_type_control.with_ico{
    display: inline-flex;
    align-items: center;
}
.referral_send_type_control .ico {
    margin: 0 5px 0 0;
}
.referral_send_type_control .ico svg {
    width: 18px;
    height: auto;
}
.referral_send_type_control .ico path{
    fill: #FF0032;
}

.share_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px -7px 0;
}
.share_control{
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 7px;
}
.share_control_copy {
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.referral_send_type_control.share_control_copy .ico{
    margin: 0;
}
.share_control_copy .ico path {
    fill: #3A3298;
}
.share_control_copy svg{
    width: 20px;
    height: auto;
    margin: 0 0 0 -1px;
}
    /************** FLOAT BANNER *****************/
.float_banner{
    position: fixed;
    width: 280px;
    left: -200px;
    bottom: 20px;
    z-index: 10;
    padding: 14px 20px 20px 20px;
    transition: all 0.20s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
}
.float_banner.active{
    left: 20px;
    opacity: 1;
    visibility: visible;
    height: auto;
}
.float_banner_close{
    position: absolute;
    right: -30px;
    left: auto;
    top: 0px;
    width: 30px;
    height: 30px;
    background: #3A3298;
    transition: all 0.25s ease-in-out 0s;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}
.float_banner_close:hover svg{
    transform: rotate(180deg);
}
.float_banner_close svg{
    width: 12px;
    height: auto;
}
.float_banner_link{
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
}
.float_banner:hover{
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.float_banner_link:hover{
    color: #fff;
}
.float_banner_pic{
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    left: 0;
    top: 0;
}
.float_banner_pic::before{
    content: '.';
    font-size: 0;
    background: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.float_banner_content{
    position: relative;
    z-index: 10;
}
.float_banner_header{
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1786;
    max-width: 170px;
}
.float_banner_description{
    margin: 17px 0 0 0;
}
/************** DELIVERY *****************/
.delivery_cities_item{
    margin: 0 0 8px 0;
    font-size: 18px;
}
.delivery_cities_item:last-child{
    margin-bottom: 0;
}
/************** PERSONAL_DATA *****************/
.page_personal_data .page_text ul li{
    list-style: none;
    padding: 0;
}
.page_personal_data .page_text ul ul{
    margin-top: 10px;
}
/************** PROMO *****************/
.promo_share_window .share_controls{
    justify-content: flex-start;
}
.promo_orders_header{
    margin: 0 0 24px 0;
}
/************** FOOTER *****************/
.footer{
    flex: 0 0 auto;
    margin: 100px 0 0 0;
    padding: 57px 0 37px 0;
    background: #3A3298;
    color: #fff;
}
.footer_items{
    display: flex;
}
.footer a{
    color: #fff;
}
.footer a:hover{
    color: #FF0064;
}
.page_main .footer{
    margin-top: 0;
}
.footer_info{
    margin: 0 5.7627% 0 0;
}
.footer_contacts{
    display: flex;
    margin: 0 -40px;
}
.footer_contact{
    margin: 0 40px;
}
.footer_contact_title{
    font-weight: 500;
    margin: 0 0 23px 0;
}
.footer_region_phone{
    margin: 0 0 15px 0;
}
.footer_region_phone:last-child{
    margin-bottom: 0;
}
.footer_controls{
    font-weight: 500;
    margin: 0 0 0 13.4746%;
}
.menu_footer{
    margin: 23px 0 0 0;
}
.menu_footer .menu_item{
    margin: 0 0 5px 0 ;
}
.menu_footer .menu_item:last-child{
    margin-bottom: 0;
}

.pay_logos{
    display: flex;
    margin: 30px -5px 0;
}
.pay_logo {
    margin: 0 3px;
}
.pay_logo img{
    height: 35px;
    width: auto;
}
.footer_req{
    margin: 40px 0 0 0;
    font-size: 13px;
    color: #f5f5f5;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
    /*.main_calc{
        background-image: url(../img/calc_back@2x.png);
        background-size: 1920px 1015px;
    }*/
}




/*.remodal-overlay{
    display: none !important;
}
.remodal-wrapper{
    z-index: 10 !important;
}*/
