@font-face
{
    font-family: 'PTRoubleSans';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/PTRoubleSans.woff') format('woff'),
    url('../fonts/PTRoubleSans.ttf') format('truetype');
}

*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

img
{
    border: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active
{
    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset]
{
    -webkit-border-radius: 0;
            border-radius: 0;

    -webkit-appearance: none;
            appearance: none;
}

:focus
{
    outline: none;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*---------------
    Main styles
---------------*/
:root
{
    --font_family: 'Open Sans';
    --scroll_width: 17px;
}


.clear
{
    clear: both;
}


.left
{
    float: left;
}


.right
{
    float: right;
}


html
{
    height: 100%;

    background: #FFF;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}


body
{
    color: #303030;
    font: 16px/1.4 var(--font_family);

    height: 100%;

    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    text-decoration-skip: objects;
    text-rendering: optimizeLegibility;
    -webkit-touch-callout: none;
}

body.lock,
body.lock2
{
    overflow: hidden;
}

.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 100%;
}


.main
{
    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}


.compensate-for-scrollbar,
body.lock,
body.lock2{
    margin-right: var(--scroll_width) !important;
}

.lozad
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.flex
{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.rub
{
    font-family: 'PTRoubleSans';
    font-weight: normal !important;
    font-style: normal;
}

.modal_cont
{
    position: relative;
}

.mini_modal
{
    position: absolute;
    z-index: 99;

    visibility: hidden;

    pointer-events: none;

    opacity: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
}

.mini_modal.active
{
    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

.close_menu
{
    position: fixed;
    z-index: 101;
    top: 0;
    left: 270px;

    display: none;

    width: 50px;
    height: 50px;
    padding: 13px;

    cursor: pointer;

    border: none;
    background: none;
}

.close_menu.hide{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.close_menu span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: #fff;
}

.close_menu span:nth-child(1)
{
    top: 1px;

    transform: rotate(45deg);
}

.close_menu span:nth-child(2)
{
    top: -1px;

    transform: rotate(-45deg);
}

.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}


::-webkit-input-placeholder
{
    color: rgba(0, 0 ,0, .5);
}

:-moz-placeholder
{
    color: rgba(0, 0 ,0, .5);
}

:-ms-input-placeholder
{
    color: rgba(0, 0 ,0, .5);
}


.form .line_flex
{
    justify-content: space-between;
}

.form .line_flex .line_form
{
    width: calc(50% - 15px);
}

.form .line_form
{
    margin-bottom: 40px;
}

.section_form .form .line_form
{
    margin-bottom: 60px;
}

.form .field{
    position: relative;
}

.form .field_edit{
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 32px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    cursor: pointer;
    background: none;
    border: none;
}

.form .field_edit svg{
    display: block;
    width: 16px;
    height: 16px;
    fill: #898989;
    transition: .2s linear;
}

.form .field_edit:hover svg{
    fill: #000;
}

.form .field_edit.active svg{
    fill: #EB5757;
}

.form .password_eye{
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 32px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    cursor: pointer;
    background: none;
    border: none;
}

.form .password_eye svg{
    display: block;
    width: 16px;
    height: 16px;
    fill: #898989;
    transition: .2s linear;
}

.form .password_eye:hover svg{
    fill: #000;
}

.form .password_eye.active svg{
    fill: #EB5757;
}

.form .input
{
    color: #000;
    font: 18px var(--font_family);

    display: block;

    width: 100%;
    height: 40px;
    padding-bottom: 16px;

    transition: .2s linear;

    border: none;
    border-bottom: 1px solid rgba(94, 122, 148, .8);
    background: none;
}

.section_form .form .input{
    border-bottom-color: rgba(0, 128, 185, .9);
}

.form .input.pad_r{
    padding-right: 40px;
}

.form .input.datepicker-here{
    padding-left: 40px;

    background: url(../images/ic_date.svg) 0 2px no-repeat;
}

.form textarea
{
    color: #000;
    font: 18px/22px var(--font_family);

    display: block;

    width: 100%;
    height: 166px;
    padding: 28px 30px;

    resize: none;
    transition: .2s linear;

    border: 1px solid rgba(0, 128, 185, .9);
    background: none;
}

.form .rating
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.form .rating .text
{
    font-size: 18px;
    line-height: 22px;

    margin-right: 20px;
}

.form .error,
.form .error + .nice-select .current
{
    color: red;

    border-color: red;
}


.form .input:disabled,
.form textarea:disabled,
.checkbox .label_check input[type=checkbox]:disabled + .check_text,
.radio .label_check input[type=radio]:disabled + .check_text
{
    color: #333;

    cursor: default;
    pointer-events: none;
}


.form .error_text
{
    color: red;
    font-size: 12px;
    line-height: normal;

    margin-top: 6px;
}


.form .submit_btn
{
    color: #fff;
    font: 600 18px var(--font_family);

    position: relative;

    display: block;

    width: 100%;
    height: 60px;
    padding: 0 15px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    background: #5E7A94;
}

.form .submit_btn:hover
{
    background: #EB5757;
}


.checkbox + .checkbox{
    margin-top: 8px;
}

.checkbox .label_check input[type=checkbox]
{
    display: none;
}

.checkbox .label_check
{
    color: #252525;
    font-size: 16px;
    line-height: 22px;

    display: table-cell;

    vertical-align: top;
}

.checkbox .label_check input[type=checkbox] + .check_text
{
    position: relative;

    display: block;

    padding-left: 40px;

    cursor: pointer;
    transition: .2s linear;
    text-align: left;
}

.checkbox .label_check input[type=checkbox] + .check_text:before
{
    position: absolute;
    top: 1px;
    left: 0;

    width: 20px;
    height: 20px;

    content: '';
    transition: .2s linear;

    border: 1px solid #7D8292;
    border-radius: 3px;
}

.checkbox .label_check input[type=checkbox]:checked + .check_text:before
{
    background: #313E61;
    border-color: #313E61;
}

.checkbox .label_check input[type=checkbox] + .check_text:after
{
    position: absolute;
    top: 1px;
    left: 0;

    display: block;

    width: 20px;
    height: 20px;

    content: '';
    transition: .2s linear;

    opacity: 0;
    background: url(../images/ic_check.svg) 60% 50% no-repeat;
}

.checkbox .label_check input[type=checkbox]:checked + .check_text:after
{
    opacity: 1;
}


.block_radio .radio + .radio{
    margin-top: 30px;
}

.flex_radio{
    margin-left: -60px;
}

.flex_radio .radio{
    margin: 30px 0 0 60px;
}

.radio .label_check input[type=radio]
{
    display: none;
}

.radio .label_check
{
    color: #000;
    font-size: 16px;
    line-height: 22px;

    display: table-cell;

    vertical-align: top;
}

.radio .label_check input[type=radio] + .check_text
{
    position: relative;

    display: block;

    padding-left: 45px;

    cursor: pointer;
    transition: .2s linear;
    text-align: left;
}

.radio .label_check input[type=radio] + .check_text:before
{
    position: absolute;
    top: 1px;
    left: 0;

    width: 19px;
    height: 19px;

    content: '';
    transition: .2s linear;

    border: 1px solid #000;
    background: #fff;
}

.radio .label_check input[type=radio]:checked + .check_text:before
{
    background: #EB5757;
    box-shadow: inset 0 0 0 1px #fff;
}

.radio .label_check input[type=radio] + .check_text:after
{
    position: absolute;
    top: 5px;
    left: 4px;

    display: block;

    width: 11px;
    height: 11px;

    content: '';
    transition: .2s linear;

    opacity: 0;
    background: url(../images/ic_arrow_check.svg) 50%/contain no-repeat;
}

.radio .label_check input[type=radio]:checked + .check_text:after
{
    opacity: 1;
}


.form .agree
{
    color: #000;
    font-weight: 500;
}

.form .agree b
{
    font-weight: 600;
}

.form .agree a
{
    color: #000;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid #000;
}

.form .agree a:hover
{
    border-bottom-color: transparent;
}


.tab_content
{
    position: relative;

    visibility: hidden;
    overflow: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.tab_content.active
{
    visibility: visible;
    overflow: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: all;

    opacity: 1;
}


.page_content > :first-child
{
    margin-top: 0 !important;
}

.content_flex
{
    justify-content: space-between;
    position: relative;
}

.content_flex .content
{
    width: calc(100% - 342px);
    max-width: 996px;
}
.content_flex aside
{
    width: 312px;
}


.text_block{
    color: #7D8292;
}

.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block h1,
.text_block > .title
{
    color: #303030;
    font-size: 36px;
    font-weight: 700;

    margin-bottom: 30px;
}

.text_block h2
{
    color: #303030;
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 30px;
}

.text_block * + h2
{
    margin-top: 40px;
}

.text_block h3
{
    color: #303030;
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 30px;
}

.text_block * + h3
{
    margin-top: 40px;
}

.text_block p,
.text_block ul,
.text_block ol
{
    margin-bottom: 22px;
}

.text_block img
{
    display: block;

    max-width: 100%;
    margin-bottom: 40px;
}

.text_block ul
{
    overflow: hidden;
}

.text_block ul li
{
    position: relative;

    display: block;

    padding-left: 32px;

    list-style-type: none;
}

.text_block ul li + li
{
    margin-top: 20px;
}

.text_block ul li b
{
    font-weight: 500;
}

.text_block ul li:before
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 8px;
    height: 8px;

    content: "";

    margin-top: -4px;
    border-radius: 50%;

    background: #FFA318;
}

.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;

    list-style-type: none;
}

.text_block ol li:before
{
    color: #FFA318;
    font-weight: 600;

    display: inline;

    content: counter(li)".";
    counter-increment: li;
}

.text_block a
{
    color: #313E61;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px solid;
}

.text_block a:hover
{
    border-bottom-color: transparent;
}


.supports_error
{
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;

    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #FFF;
}

.supports_error.show
{
    display: flex;
}


.main_title
{
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;

    color: #252525;
}


.breadcrumbs
{
    font-size: 14px;
    line-height: 1.4;

    color: #7D8292;

    padding: 10px 0 30px;
}

.breadcrumbs a
{
    color: #7D8292;

    transition: .2s linear;
    text-decoration: none;
}

.breadcrumbs a:hover
{
    color: #313E61;
}

.breadcrumbs .sep
{
    width: 18px;
    height: 18px;
    margin: 0 10px;
    background: url(../images/sep.svg) 50% no-repeat;

    display: inline-block;
    vertical-align: top;
    position: relative;
    top: 1px;
}


.page_title
{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;

    color: #252525;
}

.page_head{
    margin-top: -10px;
    padding-bottom: 20px;
}
/*---------------
   Header
---------------*/
header{
    padding: 30px 0 20px;
}

header .top{
    align-content: center;
    align-items: center;
}

header .logo a,
header .logo img{
    display: block;
    max-width: 100%;
}

header .search{
    width: 700px;
    max-width: calc(100% - 600px);
    margin-right: auto;
    margin-left: 95px;
}

header .search .input{
    display: block;
    width: 100%;
    height: 60px;
    background: #F8F8F8 url(../images/ic_search.svg) 20px 50% no-repeat;
    border-radius: 7px;

    font: 600 16px var(--font_family);
    color: #252525;
    padding: 0 16px 0 64px;
    border: none;
}

header .search .input::-webkit-input-placeholder
{
    color: #B2B8C9;
}

header .search .input:-moz-placeholder
{
    color: #B2B8C9;
}

header .search .input:-ms-input-placeholder
{
    color: #B2B8C9;
}

header .modal_lang .mini_modal_link{
    padding-left: 36px;
    position: relative;
    display: block;

    font: 600 16px var(--font_family);
    color: #313E61;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
    transition: .2s linear;
}

header .modal_lang .mini_modal_link:hover{
    color: #FFA318;
}

header .modal_lang .mini_modal_link .img{
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

header .modal_lang .mini_modal_link .img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

header .modal_lang .mini_modal{
    top: calc(100% + 10px);
    left: -10px;
    min-width: calc(100% + 20px);
    padding: 10px;
}

header .modal_lang .item{
    padding-left: 36px;
    white-space: nowrap;

    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    font-weight: 600;
    font-size: 16px;
    color: #313E61;
    height: 24px;
    text-decoration: none;
    transition: .2s linear;
}

header .modal_lang .item:hover{
    color: #FFA318;
}

header .modal_lang .item + .item{
    margin-top: 10px;
}

header .modal_lang .item .img{
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

header .modal_lang .item .img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

header .favorite_link{
    width: 24px;
    height: 24px;
    display: block;

    margin-left: 36px;
}

header .favorite_link svg{
    display: block;
    width: 100%;
    height: 100%;
    stroke: #313E61;
    transition: .2s linear;
}

header .favorite_link:hover svg{
    stroke: #FFA318;
}

header .login_link{
    width: 24px;
    height: 24px;
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: 27px;
}

header .login_link svg{
    display: block;
    width: 100%;
    height: 100%;
    stroke: #313E61;
    transition: .2s linear;
}

header .login_link:hover svg{
    stroke: #FFA318;
}

header .cart_link{
    background: #FFA318;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;


    font-weight: 600;
    font-size: 16px;
    line-height: 19px;

    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    text-align: center;
    margin-left: 27px;
    transition: .2s linear;
}

header .cart_link:hover{
    background: #313E61;
}

header .cart_link svg{
    display: block;
    width: 24px;
    height: 24px;

    fill: #fff;
    transition: .2s linear;
}

header .cart_link .count{
    position: absolute;
    right: 0;
    top: -5px;
    width: 19px;
    height: 19px;
    background: #313E61;
    border-radius: 50%;
    transition: .2s linear;
}

header .cart_link:hover .count{
    background: #FFA318;
}

header .bot{
    align-content: center;
    align-items: center;
    margin-top: 20px;
}

header .cats{
    width: 188px;
}

header .open_cats{
    background: #313E61;
    border-radius: 7px;
    border: none;

    font: 700 16px var(--font_family);
    height: 50px;

    color: #FFFFFF;
    display: block;
    text-align: center;
    transition: .2s linear;

    cursor: pointer;
    width: 100%;
    cursor: pointer;
}

header .open_cats:hover{
    background: #FFA318;
}

header .open_cats span{
    padding-left: 29px;
    position: relative;
}

header .open_cats span:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background: url(../images/burger.svg) 50% no-repeat;
}

.main_catalog{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    padding: 14px 0 40px;
    background: #fff;

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s linear;
}

.main_catalog.show{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.main_catalog .close_cats{
    position: fixed;
    top: 22px;
    left: 50%;
    margin-left: 628px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 40px;
    height: 40px;
    z-index: 100;
    border:  none;
    cursor: pointer;
}

.main_catalog .close_cats svg{
    display: block;
    width: 100%;
    height: 100%;
    fill: #313E61;
    transition: .2s linear;
}

.main_catalog .close_cats:hover svg{
    fill: #FFA318;
}

.main_catalog .items{
    margin-left: -30px;
}

.main_catalog .item{
    width: calc(100%/5 - 30px);
    margin: 30px 0 0 30px;
}

.main_catalog .img_cats{
    height: 55px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;

    margin-bottom: 20px;
}

.main_catalog .img_cats img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.main_catalog .name{
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;

    color: #303030;
    text-transform: uppercase;
    margin-bottom: 23px;
}

.main_catalog .name a{
    color: #303030;
    text-decoration: none;
    transition: .2s linear;
}

.main_catalog .name a:hover{
    color: #FFA318;
}

.main_catalog .list{
    font-size: 14px;
    line-height: 1.4;

    color: #303030;
}

.main_catalog .list div + div{
    margin-top: 15px;
}

.main_catalog .list a{
    color: #303030;
    text-decoration: none;
    transition: .2s linear;
    border-bottom: 1px solid transparent;
}

.main_catalog .list a:hover{
    border-bottom-color: inherit;
}


header .menu{
    margin-left: 36px;
}

header .menu .item + .item{
    margin-left: 50px;
}

header .menu .item a{
    display: block;

    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;

    color: #313E61;
    text-decoration: none;
    transition: .2s linear;
}

header .menu .item a:hover{
    color: #FFA318;
}


.mob_header
{
    padding: 15px 0;
    display: none;
}

.mob_header .cont
{
    align-items: center;
    align-content: center;
}

.mob_header .logo
{
    margin-right: auto;
}

.mob_header .logo a,
.mob_header .logo img
{
    display: block;
    max-width: 100%;
}

.mob_header .modal_lang .mini_modal_link{
    padding-left: 36px;
    position: relative;
    display: block;

    font: 600 16px var(--font_family);
    color: #313E61;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
    transition: .2s linear;
}

.mob_header .modal_lang .mini_modal_link:hover{
    color: #FFA318;
}

.mob_header .modal_lang .mini_modal_link .img{
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.mob_header .modal_lang .mini_modal_link .img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mob_header .modal_lang .mini_modal{
    top: calc(100% + 10px);
    left: -10px;
    min-width: calc(100% + 20px);
    padding: 10px;
}

.mob_header .modal_lang .item{
    padding-left: 36px;
    white-space: nowrap;

    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    font-weight: 600;
    font-size: 16px;
    color: #313E61;
    height: 24px;
    text-decoration: none;
    transition: .2s linear;
}

.mob_header .modal_lang .item:hover{
    color: #FFA318;
}

.mob_header .modal_lang .item + .item{
    margin-top: 10px;
}

.mob_header .modal_lang .item .img{
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.mob_header .modal_lang .item .img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mob_header .favorite_link{
    width: 24px;
    height: 24px;
    display: block;

    margin-left: 36px;
}

.mob_header .favorite_link svg{
    display: block;
    width: 100%;
    height: 100%;
    stroke: #313E61;
    transition: .2s linear;
}

.mob_header .favorite_link:hover svg{
    stroke: #FFA318;
}

.mob_header .login_link{
    width: 24px;
    height: 24px;
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: 27px;
}

.mob_header .login_link svg{
    display: block;
    width: 100%;
    height: 100%;
    stroke: #313E61;
    transition: .2s linear;
}

.mob_header .login_link:hover svg{
    stroke: #FFA318;
}

.mob_header .cart_link{
    background: #FFA318;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;


    font-weight: 600;
    font-size: 16px;
    line-height: 19px;

    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    text-align: center;
    margin-left: 27px;
    transition: .2s linear;
}

.mob_header .cart_link:hover{
    background: #313E61;
}

.mob_header .cart_link svg{
    display: block;
    width: 24px;
    height: 24px;

    fill: #fff;
    transition: .2s linear;
}

.mob_header .cart_link .count{
    position: absolute;
    right: 0;
    top: -5px;
    width: 19px;
    height: 19px;
    background: #313E61;
    border-radius: 50%;
    transition: .2s linear;
}

.mob_header .cart_link:hover .count{
    background: #FFA318;
}

.mob_menu_link
{
    position: relative;
    z-index: 1000;
    z-index: 99;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    width: 40px;
    height: 40px;
    margin: 0 -7px 0 20px;
    padding: 0px 7px;

    cursor: pointer;

    border: none;
    background: none;
}

.mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #313E61;
    border-radius: 9px;
}

.mob_menu_link span + span
{
    margin-top: 4px;
}

/*---------------
    Slider controls
---------------*/
.swiper-container{
    display: none;
}

.swiper-container.swiper-initialized{
    display: block;
}

.slider-button-prev,
.slider-button-next {
    position: absolute;
    top: 50%;
    margin-top: -27px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.15);
    z-index: 10;
    cursor: pointer;
    transition: .2s linear;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.slider-button-prev:hover,
.slider-button-next:hover{
    background: rgba(18, 18, 18, 0.5);
}

.slider-button-prev.swiper-button-disabled,
.slider-button-next.swiper-button-disabled{
    pointer-events: none;

    opacity: 0;
}

.slider-button-prev{
    left: 20px;
}

.slider-button-next{
    right: 20px;
    transform: rotate(180deg);
}

.slider-button-prev svg,
.slider-button-next svg{
    width: 18px;
    height: 14px;
    display: block;

    fill: #fff;
    transition: .2s linear;
}

.swiper-button-lock {
    display: none;
}


.slider-pagination{
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 10px;

    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 9;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.slider-pagination.swiper-pagination-lock{
    display: none;
}

.main_slider .slider-pagination{
    display: none;
}

.slider-pagination .slider-dot{
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 5px;
    background: rgba(0, 0, 0, .2);
    transition: .2s linear;

    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    margin: 0 5px;
    border-radius: 50%;
}

.slider-pagination-clickable .slider-dot{
    cursor: pointer;
}

.slider-pagination .slider-dot.slider-dot_active{
    background: rgba(0, 0, 0, .8);
}
/*---------------
   Main section
---------------*/
.main_slider .slide .bg
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 7px;
}

.main_slider .slide
{
    height: 330px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main_slider .info{
    position: relative;
    padding: 0 110px;
    width: 100%;
}

.main_slider .title
{
    font-weight: 700;
    font-size: 48px;
    line-height: 1.4;

    color: #313E61;
    /*color: #FFFFFF;*/
}

.main_slider .desc
{
    font-size: 14px;
    line-height: 1.4;
    margin-top: 4px;

    color: #313E61;
}


.main_cats{
    margin-top: 30px;
}

.main_cats .item{
    display: block;

    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;

    color: #313E61;
    text-align: center;
    padding: 20px 20px 0;
    background: #F1F1F1;
    border-radius: 7px;
    text-decoration: none;
    transition: .2s linear;
}

.main_cats .item:hover{
    color: #FFA318;
}

.main_cats .item .name{
    display: block;
    margin-bottom: 17px;
}

.main_cats .item .thumb{
    padding-bottom: 61.7%;
    display: block;
    position: relative;
}

.main_cats .item .thumb .img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}

.main_cats .item .thumb img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: darken;
}


.products{
    margin-top: 50px;
}

.content .products{
    margin-top: 0;
}

.products .slider{
    margin-top: 20px;
}

.products .grid{
    margin: -10px 0 0 -20px;

    --products_count: 4;
}

.products .product{
    padding: 24px 14px 14px;
    border: 1px solid transparent;

    transition: border .2s linear;
    border-radius: 7px;
    position: relative;
}

.products .product:hover{
    border-color: #CCD2E3;
}

.products .grid .product{
    width: calc(100%/4 - 20px);
    margin: 30px 0 0 20px;
}

.products .product .favorite_link{
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
    width: 24px;
    height: 24px;
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    opacity: 0;
    transition: .2s linear;
}

.products .product:hover .favorite_link,
.products .product .favorite_link.active{
    opacity: 1;
}

.products .product .favorite_link svg{
    display: block;
    width: 100%;
    height: 100%;
    stroke: #313E61;
    transition: .2s linear;
}

.products .product .favorite_link:hover svg,
.products .product .favorite_link.active svg{
    stroke: #FFA318;
}

.products .product .wrapp_thumb{
    padding-bottom: 85%;
    position: relative;
    display: block;

    margin-bottom: 22px;
}

.products .product .quick_view{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: #F1F1F1;
    border-radius: 7px;

    font: 600 16px var(--font_family);
    color: #7D8292;
    border: none;
    cursor: pointer;
    opacity: 0;
}

.products .product:hover .quick_view{
    opacity: 1;
}

.products .product .thumb{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.products .product .thumb img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.products .product .name{
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;

    color: #303030;
    margin-bottom: 7px;
}

.products .grid .product .name{
    flex-grow: 1 0 auto;
}

.products .product .name a{
    color: #303030;
    text-decoration: none;
    transition: .2s linear;
}

.products .product .name a:hover{
    color: #FFA318;
}

.products .product .rating{
    align-content: center;
    align-items: center;
    color: #7D8292;

    margin-bottom: 11px;
}

.products .product .stars{
    align-content: center;
    align-items: center;
}

.products .product .stars .star{
    width: 26px;
    height: 24px;
    background: url(../images/star_on.svg) 50% no-repeat;
}

.products .product .stars .star.off{
    background-image: url(../images/star_off.svg);
}

.products .product .stars .star + .star{
    margin-left: 2px;
}

.products .product .rating .number{
    margin-left: 4px;
}

.products .product .price{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.38;

    color: #252525;
    margin-bottom: 15px;
}

.products .product .price span{
    font-size: 18px;
}

.products .product .inCart{
    font: 700 16px var(--font_family);
    color: #FFFFFF;

    background: #313E61;
    border-radius: 7px;
    border: none;
    transition: .2s linear;
    display: block;
    width: 100%;
    height: 50px;
    cursor: pointer;
    transition: .2s linear;
}

.products .product .inCart:hover{
    background: #FFA318;
}

.products .product .inCart span{
    position: relative;
    padding-left: 37px;
    display: inline-block;
}

.products .product .inCart span:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 22px;
    background: url(../images/ic_cart.svg) 50% no-repeat;
    margin-top: -11px;
}


.more_link{
    margin-top: 50px;
    text-align: center;
}

.more_link a{
    border: 1px solid #313E61;
    text-decoration: none;

    font-weight: 600;
    font-size: 18px;
    line-height: 58px;

    color: #313E61;
    transition: .2s linear;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    min-width: 300px;
    padding: 0 30px;
}

.more_link a:hover{
    color: #fff;
    background: #313E61;
}


.banners{
    margin-top: 20px;
}

.banners .grid{
    justify-content: space-between;
}

.banners .grid .item{
    width: calc(50% - 15px);

    margin-top: 30px;
}

.banners .item{
    position: relative;
    display: block;
    border-radius: 7px;
    overflow: hidden;
}

.banners .item .bg{
    padding-bottom: 45.81%;
    position: relative;
    display: block;
    transition: .2s linear;
}

.banners .item:hover .bg{
    transform: scale(1.1);
}

.banners .item .bg img{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banners .item .img{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
    pointer-events: none;
    z-index: 1;
    transition: .2s linear;
}

.banners .item:hover .img{
    transform: scale(1.1);
}

.banners .item .img img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.banners .item .box{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 0 7.63%;
}

.banners .item .name{
    font-weight: 700;
    font-size: 48px;
    line-height: 1;

    color: #FFFFFF;
    display: block;
    width: 100%;
}

.banners .item .desc{
    display: block;

    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;

    color: #FFFFFF;
    width: 100%;
}


.main_about{
    background: #FCFCFC;
    padding: 50px 0;

    margin-top: 50px;
}

.main_about .cont{
    justify-content: space-between;
}

.main_about .block{
    padding-top: 29px;

    width: calc(50% - 10px);
}

.main_about .block_img{
    width: calc(50% - 20px);
}

.main_about .img{
    display: block;
    padding-bottom: 46.16%;
    position: relative;
}

.main_about .img img{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.advantages{
    margin-top: -20px;
    justify-content: space-between;
}

.advantages .item{
    width: calc(50% - 15px);
    margin-top: 50px;

    justify-content: space-between;
}

.advantages .item .icon{
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.advantages .item .icon img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.advantages .item .name{
    width: calc(100% - 66px);

    font-size: 16px;
    line-height: 1.2;

    color: #303030;
}


.brands{
    margin-top: 50px;
}

.brands .grid{
    margin: 11px 0 0 -32px;

    justify-content: space-around;
}

.brands .grid .item{
    max-width: calc(50% - 32px);
    margin: 25px 0 0 32px;
}

.brands .item{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    height: 57px;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: .2s linear;
}

.brands .item:hover{
    opacity: 1;
    filter: grayscale(0);
}

.brands .item img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}


.seo_section{
    margin-top: 65px;
}

.seo_text > :last-child{
    margin-bottom: 0 !important;
}

.seo_text h1{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;

    color: #252525;
    margin-bottom: 18px;
}

.seo_text p{
    font-size: 14px;
    line-height: 1.4;

    color: #7D8292;
    margin-bottom: 19px;
}


.product_info .cont
{
    justify-content: space-between;
}

.product_info .images
{
    justify-content: space-between;
    width: calc(42.463% - 15px);
}

.product_info .swiper-container.thumbs
{
    overflow: hidden;
}

.product_info .thumbs
{
    height: 394px;
    width: 120px;

    margin: 0;
}

.product_info .thumbs .item
{
    padding-bottom: 100%;
    position: relative;
}

.product_info .thumbs .img
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    padding: 20px 15px;

    cursor: pointer;
    transition: .2s linear;

    border: 1px solid #F1F1F1;
    border-radius: 7px;
    background: none;
}

.product_info .thumbs .img img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.product_info .thumbs .img:hover{
    border-color: #FFA318;
}

.product_info .thumbs .swiper-slide-thumb-active .img
{
    border-color: #313E61;
}


.product_info .slider_img
{
    width: calc(100% - 130px);
}

.product_info .slider_img .thumb
{
    position: relative;

    height: 433px;
    background: #fff;
}

.product_info .slider_img .img
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .slider_img .img img
{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.product_info .data
{
    width: calc(57.537% - 15px);
    max-width: 729px;
}

.product_info .name_product{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.38;

    color: #303030;
}

.product_info .rating{
    align-content: center;
    align-items: center;
    color: #7D8292;
    font-size: 24px;

    margin-top: 25px;
}

.product_info .stars{
    align-content: center;
    align-items: center;
}

.product_info .stars .star{
    width: 30px;
    height: 28px;
    background: url(../images/star_on.svg) 50%/contain no-repeat;
}

.product_info .stars .star.off{
    background-image: url(../images/star_off.svg);
}

.product_info .stars .star + .star{
    margin-left: 2px;
}

.product_info .rating .number{
    margin-left: 10px;
}

.product_info .availability{
    font-weight: 700;
    color: #00AD8E;
    text-transform: uppercase;
    margin-top: 33px;
}

.product_info .delivery{
    color: #000000;
}

.product_info .delivery b{
    font-weight: 600;
    margin-left: 12px;
}

.product_info .box{
    align-content: center;
    align-items: center;

    margin-top: 26px;
}

.product_info .box .price{
    margin-right: 37px;
}

.product_info .price{
    font-weight: 700;
    font-size: 48px;
    line-height: 1.37;

    color: #252525;
}

.product_info .price span{
    font-size: 24px;
}

.amount
{
    width: 217px;
}

.amount_input
{
    width: 77px;
    height: 60px;
    border:  none;
    font: 700 18px var(--font_family);
    color: #303030;
    display: block;
    text-align: center;
    margin: 0 10px;
    background: #F1F1F1;
    border-radius: 7px;
}

.amount button
{
    height: 60px;
    width: 60px;
    font: 700 18px var(--font_family);
    color: #303030;
    display: block;
    background: transparent;
    cursor: pointer;
    transition: .2s linear;

    border: 1px solid #F1F1F1;
    border-radius: 7px;
}

.amount button:hover
{
    color: #fff;
    background: #313E61;
    border-color: #313E61;
}

.product_info .box_btn{
    margin-left: -30px;
}

.product_info .box_btn .inCart{
    margin: 30px 0 0 30px;
}

.product_info .box_btn .favorite_link{
    margin: 30px 0 0 30px;
}

.product_info .inCart{
    font: 700 16px var(--font_family);
    color: #FFFFFF;

    background: #313E61;
    border-radius: 7px;
    border: none;
    transition: .2s linear;
    display: block;
    min-width: 250px;
    height: 60px;
    cursor: pointer;
    transition: .2s linear;
}

.product_info .inCart:hover{
    background: #FFA318;
}

.product_info .inCart span{
    position: relative;
    padding-left: 48px;
    display: inline-block;
}

.product_info .inCart span:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 24px;
    background: url(../images/ic_cart.svg) 50%/contain no-repeat;
    margin-top: -12px;
}

.product_info .favorite_link{
    font: 700 16px var(--font_family);
    color: #313E61;

    background: transparent;
    border-radius: 7px;
    border: 1px solid #313E61;
    transition: .2s linear;
    display: block;
    min-width: 250px;
    height: 60px;
    cursor: pointer;
    transition: .2s linear;
    padding: 0 30px;
}

.product_info .favorite_link:hover{
    color: #fff;
    background: #313E61;
}

.product_info .favorite_link.active{
    color: #fff;
    background: #FFA318;
    border-color: #FFA318;
}

.product_info .favorite_link span{
    padding-left: 39px;
    position: relative;
    display: inline-block;
}

.product_info .favorite_link svg{
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    stroke: currentColor;
}

.product_info .favorite_link b{
    font-weight: 400;
}


.information{
    margin-top: 70px;
}

.tabs_text
{
    flex-wrap: nowrap;
    overflow-y: auto;

    margin-bottom: 20px;
}

.tabs_text button
{
    font: 600 24px var(--font_family);
    color: #303030;
    height: 47px;
    padding-bottom: 9px;

    cursor: pointer;
    transition: .2s linear;
    text-align: center;

    background: none;

    display: block;
    white-space: nowrap;
    border: none;

    border-bottom: 5px solid transparent;
}

.tabs_text button:hover,
.tabs_text button.active
{
    border-bottom-color: #FFA318;
}

.tabs_text button + button{
    margin-left: 70px;
}


.pagination
{
    margin-top: 30px;

    justify-content: center;
}

.pagination > :first-child
{
    margin-left: 0;
}

.pagination .step{
    color: #303030;
    font-size: 16px;
    line-height: 34px;

    display: block;

    width: 36px;
    height: 36px;
    margin-left: 10px;

    text-align: center;
    border: 1px solid transparent;
}

.pagination a
{
    color: #303030;
    font-size: 16px;
    line-height: 34px;

    display: block;

    width: 36px;
    height: 36px;
    margin-left: 10px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    border: 1px solid #CCD2E3;
}

.pagination a:hover
{
    color: #fff;

    border-color: #313E61;
    background: #313E61;
}

.pagination a.active
{
    color: #fff;
    border-color: #FFA318;
    background: #FFA318;
}

.pagination a.prev,
.pagination a.next
{
    display: flex;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination a.next
{
    transform: rotate(-180deg);
}

.pagination a.prev:hover,
.pagination a.next:hover
{
    background: #313E61;
    border-color: #313E61;
}

.pagination a.prev svg,
.pagination a.next svg
{
    display: block;

    width: 8px;
    height: 14px;

    transition: .2s linear;

    fill: #313E61;
}

.pagination a.prev:hover svg,
.pagination a.next:hover svg
{
    fill: #fff;
}

.banner_small{
    position: relative;
    padding: 25px 50px;

    background: #313E61;
    border-radius: 7px;
    min-height: 120px;
    margin-left: 20px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    overflow: hidden;
}

.content .banner_small{
    margin-left: 20px;
}

.banner_small .img{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
    object-position: 100% 50%;
}

.banner_small .box{
    position: relative;
}

.banner_small .title{
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;

    color: #FFFFFF;
}

.banner_small .desc{
    font-size: 24px;
    line-height: 1.2;


    color: #FFFFFF;
}


.sorting{
    align-content: center;
    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
}

.content .sorting{
    padding-left: 20px;
}

.sorting .number{
    font-size: 16px;
    line-height: 22px;

    color: #7D8292;
}

.sorting .name{
    font-size: 16px;
    line-height: 22px;

    color: #7D8292;
    margin-right: 10px;
}

.sort{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.sort .select_wrap{
    width: 200px;
}

.select_wrap
{
    position: relative;
}

.select_wrap select
{
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: 0;
}

.select_wrap .nice-select
{
    position: relative;

    display: block;
}

.select_wrap .nice-select.open
{
    z-index: 14;
}

.select_wrap .nice-select .current
{
    font-size: 16px;
    line-height: 50px;
    color: #252525;

    position: relative;
    z-index: 13;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    overflow: hidden;

    padding: 0 34px 0 19px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #F8F8F8;
    border-radius: 7px;
}

.select_wrap .nice-select.open{
    border-radius: 7px 7px 0 0;
}

.select_wrap .nice-select .current:after
{
    position: absolute;
    top: 50%;
    right: 17px;

    width: 10px;
    height: 6px;
    margin-top: -3px;

    content: '';

    background: url(../images/arrow_select.svg) 50%/contain no-repeat;
}

.select_wrap .nice-select.open .current:after
{
    transform: rotate(180deg);
}

.select_wrap .nice-select .list
{
    position: absolute;
    z-index: 12;
    top: 100%;
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
    border: none;
    background: #F8F8F8;
    box-shadow: 0px 1px 15px rgb(0 0 0 / 5%);
}

.select_wrap .nice-select.open .list
{
    visibility: visible;

    pointer-events: all;

    opacity: 1;
}

.select_wrap .nice-select .list .scrollbar
{
    overflow-y: auto;

    max-height: 320px;
}

.select_wrap .nice-select .list .list_item
{
    color: #252525;
    font-size: 16px;
    line-height: 22px;

    position: relative;

    display: flex;

    cursor: pointer;
    transition: .2s linear;
    padding: 0 19px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    white-space: nowrap;
    min-height: 34px;
}

.select_wrap .nice-select .list .list_item:empty
{
    display: none;
}

.select_wrap .nice-select .list .list_item:hover
{
    background: #313E61;
    color: #fff;
}

.select_wrap .nice-select .list .list_item.selected
{
    background: #313E61;
    color: #fff;
}


.section_subscribe{
    padding: 29px 0 39px;
    background: #F5F5F5;

    margin-top: 70px;
}

.section_subscribe .cont{
    justify-content: space-between;
}

.section_subscribe .box{
    width: calc(52% - 15px);
}

.section_subscribe .title{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;

    color: #7D8292;
}

.section_subscribe .desc{
    font-size: 16px;
    line-height: 1.4;
    margin-top: 10px;

    color: #7D8292;
}

.section_subscribe .subscribe{
    width: calc(48% - 15px);
    max-width: 574px;
}

.subscribe > .flex{
    justify-content: space-between;
}

.subscribe .field{
    width: calc(100% - 202px);
}

.subscribe .input{
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #F1F1F1;
    border-radius: 7px;

    font: 16px var(--font_family);
    color: #252525;
    display: block;
    transition: .2s linear;
    padding: 0 16px;
}

.subscribe .input::-webkit-input-placeholder
{
    color: #7D8292;
}

.subscribe .input:-moz-placeholder
{
    color: #7D8292;
}

.subscribe .input:-ms-input-placeholder
{
    color: #7D8292;
}

.subscribe .input.error{
    border-color: red;
}

.subscribe .submit_btn{
    width: 188px;
    height: 50px;
    background: #FFA318;
    border-radius: 7px;
    border: none;
    display: block;
    cursor: pointer;
    font: 700 16px var(--font_family);
    color: #fff;
    transition: .2s linear;
}

.subscribe .submit_btn:hover{
    background: #313E61;
}

.subscribe .agree{
    font-size: 14px;
    line-height: 1.4;
    margin-top: 11px;

    color: #7D8292;
}
/*---------------
   Sidebar
---------------*/
.open_fiter{
    display: none;

    font: 700 16px var(--font_family);
    color: #FFFFFF;
    background: #313E61;
    border-radius: 7px;
    border: none;
    transition: .2s linear;

    padding: 0 50px;
    height: 50px;
    cursor: pointer;
    transition: .2s linear;
}

.close_fiter
{
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;

    display: none;

    width: 44px;
    height: 44px;
    padding: 10px;

    cursor: pointer;

    border: none;
    background: #fff;
}

.close_fiter span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: #000;
}

.close_fiter span:nth-child(1)
{
    top: 1px;

    transform: rotate(45deg);
}

.close_fiter span:nth-child(2)
{
    top: -1px;

    transform: rotate(-45deg);
}


.filter .title{
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #7E7E7E;
}

.filter * + .title{
    margin-top: 30px;
}

.filter .data{
    margin-top: 15px;
}


.price_range{
    max-width: 250px;
}

.price_range .flex{
    justify-content: space-between;
}

.price_range .box_range{
    width: calc(50% - 5px);
    position: relative;
}

.price_range .sep{
    position: absolute;
    left: 0;
    top: 0;
    line-height: 42px;
    width: 40px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;

    color: #7D8292;
    pointer-events: none;
}

.price_range .input_range{
    background: #F8F8F8;
    border-radius: 7px;
    padding: 0 10px 0 40px;
    display: block;
    width: 100%;
    height: 42px;
    font: 16px var(--font_family);
    color: #252525;
    border: none;
}

.discount a{
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    margin-top: 40px;
    padding-bottom: 132%;
    display: block;
    text-decoration: none;
}

.discount .img{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount .box{
    position: absolute;
    left: 0;
    top: 0;
    padding: 31px;
    width: 100%;
    display: block;
}

.discount .name{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;

    color: #313E61;
    display: block;
}

.discount .desc{
    font-size: 18px;
    line-height: 1.4;

    color: #303030;
    display: block;
}

.discount .more{
    position: absolute;
    padding: 0 32px 40px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: block;
}

.discount .more span{
    display: inline-block;
    vertical-align: top;
    min-width: 186px;
    padding: 0 15px;
    font-weight: 600;
    font-size: 16px;
    line-height: 50px;
    color: #313E61;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 7px;
    transition: .2s linear;
}

.discount:hover .more span{
    background: #fff;
}
/*---------------
   Footer
---------------*/
footer
{
    padding: 44px 0 42px;
}

footer .info{
    justify-content: space-between;
}
footer .box_menu{
    /*margin-right: 20px;*/
}
footer .title{
    font-weight: bold;
    font-size: 20px;
    line-height: 1.3;

    color: #585858;

    margin-bottom: 37px;
}

footer .title a{
    color: #585858;
    text-decoration: none;
    transition: .2s linear;
}

footer .title a:hover{
    color: #FFA318;
}

footer .menu{
    font-size: 16px;
    line-height: 1.4;

    color: #585858;
}

footer .menu .item + .item{
    margin-top: 25px;
}

footer .menu .item a{
    color: #585858;
    text-decoration: none;
    transition: .2s linear;
}

footer .menu .item a:hover{
    color: #FFA318;
}

footer .phone{
    font-size: 16px;
    line-height: 1.4;

    color: #585858;
    margin-top: 25px;
}

footer .phone a{
    color: #585858;
    text-decoration: none;
}

footer .mail{
    font-size: 16px;
    line-height: 1.4;

    color: #585858;
    margin-top: 25px;
}

footer .mail a{
    color: #585858;
    text-decoration: none;
}

footer .bot{
    margin-top: 49px;
}

footer .copy{
    font-size: 16px;
    line-height: 1.4;
    text-align: center;

    color: #7D8292;
}

footer .payments{
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-left: -20px;
}

footer .payments .payment{
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin: 15px 0  0 20px;
}

footer .payments .payment img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}
/*---------------
   PopUp
---------------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 722px;
    max-width: 100%;
    padding: 56px;

    background: #FFF;
    position: relative;
}


.info_cookies
{
    position: fixed;
    z-index: 90;
    bottom: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 20px 0;

    background: #F5F5F5;
}

.info_cookies.show{
    display: block;
}

.info_cookies .cont
{
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: nowrap;
}

.info_cookies .info
{
    font-size: 14px;
    line-height: 1.4;
    color: #7D8292;
}

.info_cookies .info b{
    display: inline-block;
}

.info_cookies .info a
{
    color: #313E61;

    text-decoration: none;

    border-bottom: 1px solid;
    transition: .2s linear;
}

.info_cookies .info a:hover{
    border-bottom-color: transparent;
}

.info_cookies .close_cookies
{
    font: 700 14px var(--font_family);
    color: #FFFFFF;
    background: #313E61;
    border-radius: 7px;
    border: none;
    transition: .2s linear;
    display: block;
    padding: 0 15px;
    height: 40px;
    cursor: pointer;
    transition: .2s linear;

    flex-shrink: 0;

    margin-left: 50px;
}

.info_cookies .close_cookies:hover{
    background: #FFA318;
}


@media (max-width: 1399px)
{
    .banners .item .name{
        font-size: 42px;
    }


    .main_catalog .close_cats{
        left: auto;
        right: 0;
        top: 0;
        margin-left: 0;
        padding: 10px;
        width: 50px;
        height: 50px;
    }
}


.pagination {
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
        display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    display: flex;
}
.pagination > :first-child {
    margin-left: 0;
}
.pagination > li {
    display: inline;
}
.pagination > :first-child {
    margin-left: 0;
}
.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    width: auto;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}





.quick_modal {
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
}
.quick_modal .modal_title {
    text-align: left;
}
.modal .modal_title {
    color: #053256;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}
.product_view {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.view {
    position: relative;
    width: 40%;
}
.slider_view {
    position: relative;
    padding: 5px;
    border: 1px solid #e3e8ed;
}
.slider_view .abs_info {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 0;
    text-align: right;
    pointer-events: none;
}
.slider_view .thumb {
    position: relative;
    display: block;
    min-height: 250px;
    padding-bottom: 70%;
}
.slider_view .thumb .img {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.slider_view .thumb img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.view_info {
    position: relative;
    width: calc(60% - 30px);
    max-width: 650px;
}
.view_info .favorite {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
}
.view_info .brand {
    padding-right: 40px;
}
.view_info .price {
    color: #053256;
    font-size: 26px;
    font-weight: 700;
    margin-top: 30px;
}
.view_info .price .old_price {
    color: #053256;
    font-size: 20px;
    font-weight: normal;
    margin-left: 10px;
    text-decoration: line-through;
}
.view_info .line_number {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.view_info .inCart {
    margin-top: 30px;
}
.view_info .amount .label {
    font-size: 14px;
    margin-bottom: 5px;
}
.view_info .amount .val {
    display: flex;
    width: 140px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.view_info .amount .val a.minus {
    line-height: 32px;
}
.view_info .amount .val a {
    color: #727a8a;
    font-size: 18px;
    font-weight: 700;
    line-height: 33px;
    display: block;
    width: 35px;
    height: 35px;
    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    border: 1px solid #727a8a;
}
.view_info .amount .val .input {
    color: #053256;
    font: 16px 'Geometria';
    width: calc(100% - 80px);
    height: 35px;
    padding: 0;
    text-align: center;
    border: none;
    background: #e3e8ed;
}
.quick_modal .inCart_btn{
    font: 700 16px var(--font_family);
    color: #FFFFFF;
    background: #313E61;
    border-radius: 7px;
    border: none;
    transition: .2s linear;
    display: block;
    width: 150px;
    height: 50px;
    cursor: pointer;
    transition: .2s linear;
}
.quick_modal .inCart_btn span {
    position: relative;
    padding-left: 37px;
    display: inline-block;
}
.quick_modal .inCart_btn span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 22px;
    background: url(../images/ic_cart.svg) 50% no-repeat;
    margin-top: -11px;
}
.content_flex .category {
    width: calc(100% - 270px);
    max-width: 900px;
    margin-bottom: 30px;
}
.content_flex .category .grid {
    display: flex;
    margin: -15px 0 0 -25px;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.content_flex .category a {
    color: #727a8a;
    font-size: 14px;
    margin: 15px 0 0 25px;
    transition: .2s linear;
    text-decoration: none;
}
.content_flex .category a span {
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 4px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    background: #10345c;
}
.info-pdf {
    padding: 20px 0;
    display: flex;
}
.info-pdf a{
    display: flex;
    color: #7D8292;
    align-items: center;
    text-decoration: none;
}
.info-pdf img{
    width: 60px;
}

.child-catalog.cont {
	flex-wrap: wrap;
}
.child-catalog.cont a{
	margin-bottom: 12px;
}
