/* For old browsers */
@supports (not(--css: variables))
{
    .supports_error
    {
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    .supports_error
    {
        display: flex !important;
    }
}



/*-----------
    Fonts
-----------*/
@font-face
{
    font-family: 'Impact';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/Impact.woff') format('woff'),
    url('../fonts/Impact.ttf') format('truetype');
}



/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #fff;
    --sidebar_width: 276px;
    --scroll_width: 17px;
    --text_color: #434343;
    --font_size: 16px;
    --font_size_title: 22px;
    --font_family: 'Montserrat', 'Arial', sans-serif;
    --font_family2: 'Impact', 'Arial', sans-serif;
}


::selection
{
    color: #fff;

    background: #0055bc;
}

::-moz-selection
{
    color: #fff;

    background: #0055bc;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



html
{
    height: 100%;

    background: var(--bg);
}

html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: #ccc;
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #0055bc;
}

html.custom_scroll
{
    scrollbar-color: #0055bc #ccc;
    scrollbar-width: thin;
}


body
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    height: 100%;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
}

body.lock
{
    position: fixed;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
}


button
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    cursor: pointer;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-width: 360px;
    min-height: 100%;
}


.main
{
    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


.compensate-for-scrollbar
{
    margin-right: var(--scroll_width) !important;
}


.lozad
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.row
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.content_flex.row,
.content_flex > .cont.row
{
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.content_flex .content
{
    position: relative;

    width: calc(100% - var(--sidebar_width) - 13px);
}

.content_flex .content > :first-child
{
    margin-top: 0;
}

.content_flex .content > :last-child
{
    margin-bottom: 0;
}



.block
{
    margin-bottom: 60px;
}

.block.no_margin
{
    margin-bottom: 0 !important;
}

.block.bg
{
    padding: 60px 0;

    background: rgba(40,29,180,.1);
}



.owl-carousel,
.owl-carousel .slide:first-child
{
    display: block;
}

.owl-carousel .slide
{
    display: none;
}

.owl-carousel .owl-stage
{
    font-size: 0;

    white-space: nowrap;
}

.owl-carousel .owl-item
{
    font-size: var(--font_size);

    display: inline-block;

    vertical-align: top;
    white-space: normal;
}

.owl-carousel .slide .lozad
{
    transition: .2s linear;
}



.modal_cont
{
    position: relative;
}

.mini_modal_link
{
    font-family: var(--font_family);

    display: inline-block;

    cursor: pointer;
    vertical-align: top;
    text-decoration: none;

    border: none;
    background: none;
}

.mini_modal
{
    position: absolute;
    z-index: 100;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
}

.mini_modal.active
{
    top: 100%;

    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}



.tooltip
{
    position: relative;
    top: -1px;

    display: inline-block;

    margin-left: 6px;

    vertical-align: middle;
}

.tooltip .icon
{
    font-size: 14px;
    font-weight: 500;
    line-height: 27px;

    display: block;

    width: 27px;
    height: 27px;

    cursor: help;
    transition: .2s linear;
    text-align: center;

    border-radius: 50%;
    background: #d6d6d6;
}

.tooltip:hover .icon
{
    color: #fff;

    background: #0055bc;
}

.tooltip .text
{
    color: #6a6a6a;
    font-size: 13px;
    line-height: 19px;

    position: absolute;
    z-index: 99;
    top: 0;
    left: calc(100% + 29px);

    visibility: hidden;

    width: 255px;
    padding: 14px 20px;

    transition: .2s linear;

    opacity: 0;
    border-radius: 0 15px 15px 15px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.tooltip:hover .text
{
    left: calc(100% + 9px);

    visibility: visible;

    opacity: 1;
}



.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}



.supports_error
{
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show
{
    display: flex;
}



/*------------
    Header
------------*/
header
{
    position: relative;
    z-index: 99;
    top: 0;
    left: 0;

    width: 100%;
    padding: 16px 0 24px;
}


header > .close
{
    position: absolute;
    top: 0;
    left: 100%;

    display: none;

    width: 50px;
    height: 50px;

    cursor: pointer;

    border: none;
    background: none;
}

header.show > .close
{
    display: block;
}

header.show > .close:before,
header.show > .close:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 50%;
    height: 2px;
    margin: auto;

    content: '';
    transform: rotate(45deg);

    background: #fff;
}

header.show > .close:after
{
    transform: rotate(-45deg);
}



header .top
{
    padding: 0 0 12px;
}

header .top .cont.row
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}


header .info
{
    padding: 12px 0 15px;
}

header .info .cont.row
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .city
{
    z-index: 99;
}

header .city .current
{
    font-size: 13px;
    line-height: 16px;

    position: relative;

    display: flex;

    padding-right: 12px;

    text-align: left;
    white-space: nowrap;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

header .city .current .icon
{
    display: block;

    width: 19px;
    height: 16px;
    margin-right: 8px;

    fill: #bbb;
}

header .city .current:after
{
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 0;

    display: block;

    width: 8px;
    height: 4px;
    margin: auto;

    content: '';

    border-top: 4px solid #1920d6;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}


header .city .mini_modal
{
    width: 395px;
    padding: 21px 30px 34px;

    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

header .city .mini_modal.active
{
    top: calc(100% + 13px);
}


header .city #city_modal .title
{
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;

    margin-bottom: 15px;
}

header .city #city_modal .list
{
    column-gap: 30px;
    column-count: 2;
}

header .city #city_modal .list > *
{
    transform: translateZ(0);

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

header .city #city_modal .list > * + *
{
    margin-top: 7px;
}

header .city #city_modal .list button
{
    color: #0055bc;
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;

    display: inline-block;

    transition: color .2s linear;
    text-align: left;
    vertical-align: top;
}

header .city #city_modal .list button:hover,
header .city #city_modal .list button.active
{
    color: #a7133b;
}


header .city .you_city
{
    position: absolute;
    top: calc(100% + 13px);
    left: 0;

    padding: 16px 24px 30px;

    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

header .city .you_city .title
{
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;

    margin-bottom: 15px;

    white-space: nowrap;
}

header .city .you_city .btns
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}

header .city .you_city .btns button
{
    color: #fff;
    font-weight: 700;
    line-height: 48px;

    width: 78px;
    height: 48px;

    transition: .2s linear;
    text-align: center;

    border-radius: 5px;
    background: #a7133b;
}

header .city .you_city .btns button:hover
{
    background: #7b0928;
}

header .city .you_city .btns button.no
{
    color: #a7133b;
    line-height: 44px;

    border: 2px solid #a7133b;
    background: none;
}

header .city .you_city .btns button.no:hover
{
    color: #fff;

    background: #a7133b;
}

header .city .you_city .btns button + button
{
    margin-left: 8px;
}



header .menu .item + .item
{
    margin-left: 25px;
}

header .menu .item > a
{
    color: var(--text_color);
    font-size: 13px;
    line-height: 16px;

    display: block;

    transition: .2s linear;
    text-decoration: none;
}

header .menu .item:hover > a,
header .menu .item > a.active
{
    color: #a7133b;
}



header .logo > *
{
    color: var(--text_color);

    display: flex;

    min-height: 47px;

    text-decoration: none;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

header .logo img
{
    display: block;

    margin-right: 10px;
}

header .logo .name
{
    color: #000;
    font-size: 22px;
    font-weight: 900;
    line-height: 27px;

    text-transform: uppercase;
}

header .logo .name a,
header .logo .desc a {
	text-decoration: none;
    color: #000;
}

header .logo .desc
{
    color: #707070;
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;

    margin-top: 3px;

    text-transform: uppercase;
}

header .logo .count
{
    color: #0055bc;
    font-family: var(--font_family2);
    font-size: 44px;
    line-height: 53px;

    margin-left: 6px;
}



header .slogan
{
    line-height: 19px;

    position: relative;

    margin-right: auto;
    margin-left: 59px;
    padding: 0 58px;
}

header .slogan .icon
{
    position: absolute;
    top: 1px;
    bottom: 0;
    left: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

    content: '';

    border-radius: 50%;
    background: #a7133b;
}

header .slogan .icon.right
{
    right: 0;
    left: auto;

    transform: rotate(-180deg);
}

header .slogan .icon:before,
header .slogan .icon:after
{
    position: absolute;
    top: 0;
    right: -16px;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    border-radius: 50%;
    background: #a7133b;
}

header .slogan .icon:after
{
    right: -32px;
}



header .phone
{
    font-weight: 700;
    line-height: 19px;

    margin-left: auto;
}

header .phone a
{
    color: var(--text_color);

    white-space: nowrap;
    text-decoration: none;
}



header .callback_btn
{
    color: #a7133b;
    font-size: 13px;
    line-height: 16px;

    margin-left: 24px;

    text-decoration: underline;
}

header .callback_btn:hover
{
    text-decoration: none;
}



header .catalog
{
    width: 152px;
    margin-right: 16px;
}

header .catalog .btn
{
    color: #fff;
    font-weight: 700;
    line-height: 19px;

    display: flex;

    width: 100%;
    height: 48px;

    transition: background .2s linear;
    text-align: center;

    border-radius: 5px;
    background: #0055bc;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .catalog .btn .icon
{
    position: relative;
    left: 0;

    display: block;

    width: 18px;
    height: 2px;
    margin-right: 13px;

    transition: .2s linear;

    border-radius: 2px;
    background: #fff;
}

header .catalog .btn .icon:before,
header .catalog .btn .icon:after
{
    position: absolute;
    top: -6px;
    right: 0;
    left: 0;

    display: block;

    width: 12px;
    height: 100%;
    margin: auto;

    content: '';
    transition: .2s linear;

    border-radius: 2px;
    background: #fff;
}

header .catalog .btn .icon:after
{
    top: 6px;
}

header .catalog .btn:hover,
header .catalog .btn.active
{
    background: #004190;
}


header .catalog .btn.active .icon
{
    left: -3px;

    background: transparent;
}

header .catalog .btn.active .icon:before,
header .catalog .btn.active .icon:after
{
    top: 0;

    width: 24px;
}

header .catalog .btn.active .icon:before
{
    transform: rotate(-45deg);
}

header .catalog .btn.active .icon:after
{
    transform: rotate(45deg);
}


header .catalog .mini_modal
{
    width: 940px;
    max-width: calc(100vw - 40px);
    padding: 44px 39px 72px;

    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

header .catalog .mini_modal.active
{
    top: calc(100% + 10px);
}


header .catalog #catalog_modal .row
{
    margin-bottom: -39px;
    margin-left: -39px;
}

header .catalog #catalog_modal .row > *
{
    width: calc(30% - 39px);
    margin-bottom: 39px;
    margin-left: 39px;
}

#catalog_modal > .row .cat:nth-child(3) {
	width: calc(37% - 39px);
}

header .catalog #catalog_modal .main
{
    color: #0055bc;
    font-weight: 700;
    line-height: 19px;
}

header .catalog #catalog_modal * + .main
{
    margin-top: 15px;
}

header .catalog #catalog_modal .sub_cats + .main
{
    margin-top: 25px;
}

header .catalog #catalog_modal .main a
{
    color: #0055bc;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .catalog #catalog_modal .main a:hover,
header .catalog #catalog_modal .main a.active
{
    color: #a7133b;
}


header .catalog #catalog_modal .sub_cats
{
    margin-top: 15px;
}

header .catalog #catalog_modal .sub_cats > * + *
{
    margin-top: 7px;
}

header .catalog #catalog_modal .sub_cats a
{
    color: #0055bc;
    font-size: 15px;
    line-height: 19px;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .catalog #catalog_modal .sub_cats a:hover,
header .catalog #catalog_modal .sub_cats a.active
{
    color: #a7133b;
}


header .catalog #catalog_modal sup
{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;

    display: inline-block;

    margin-top: -7px;
    margin-left: 3px;
    padding: 0 8px;

    vertical-align: top;

    border-radius: 10px 10px 10px 0;
}

header .catalog #catalog_modal sup.sale
{
    background: #f94777;
}



header .search
{
    width: calc(100% - 368px);
    max-width: 100%;
}

header .search form
{
    position: relative;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

header .search ::-webkit-input-placeholder
{
    color: #b7b7b7;
}

header .search :-moz-placeholder
{
    color: #b7b7b7;
}

header .search :-ms-input-placeholder
{
    color: #b7b7b7;
}


header .search .cat
{
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 5px;

    width: 100px;
    height: 38px;
    margin: auto;
}

header .search .cat select
{
    display: none;
}

header .search .cat .nice-select
{
    position: relative;

    display: block;
}

header .search .cat .nice-select .current
{
    font-size: 14px;
    line-height: 38px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 38px;
    padding: 0 34px 0 20px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

    border-radius: 5px;
    background: #e1e3ef;
}

header .search .cat .nice-select .current:after
{
    position: absolute;
    top: 2px;
    right: 15px;
    bottom: 0;

    display: block;

    width: 8px;
    height: 4px;
    margin: auto;

    content: '';

    border-top: 4px solid #1920d6;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

header .search .cat .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 45px);
    left: -5px;

    visibility: hidden;
    overflow: hidden;

    width: 255px;
    padding: 18px 0;

    transition: .2s linear;

    opacity: 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

header .search .cat .nice-select.open .list
{
    top: calc(100% + 15px);

    visibility: visible;

    opacity: 1;
}

header .search .cat .nice-select .list .list_item
{
    color: #0055bc;
    font-size: 14px;
    line-height: 18px;

    padding: 7px 25px;

    cursor: pointer;
    transition: color .2s linear;
}

header .search .cat .nice-select .list .list_item:empty
{
    display: none;
}

header .search .cat .nice-select .list .list_item:hover,
header .search .cat .nice-select .list .list_item.selected
{
    color: #a7133b;
}


header .search .input
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: 14px;

    display: block;

    width: 100%;
    height: 48px;
    padding: 0 20px 0 120px;

    border: 2px solid #0055bc;
    border-radius: 5px 0 0 5px;
    background: none;
}

header .search .submit_btn
{
    position: relative;

    display: flex;

    width: 52px;
    height: 48px;

    cursor: pointer;

    border: none;
    border-radius: 0 5px 5px 0;
    background: #0055bc;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .search .submit_btn .icon
{
    display: block;

    width: 24px;
    height: 24px;

    fill: #fff;
}



header .login_link
{
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;

    margin-left: 40px;

    transition: color .2s linear;
    text-align: center;
    text-decoration: none;
}

header .login_link .icon
{
    display: block;

    width: 26.45px;
    height: 26.45px;
    margin: 0 auto 6px;

    fill: currentColor;
}

header .login_link:hover
{
    color: #a7133b;
}



header .cart_link
{
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;

    margin-left: 40px;

    transition: color .2s linear;
    text-align: center;
    text-decoration: none;
}

header .cart_link .icon
{
    display: block;

    width: 30.56px;
    height: 26.78px;
    margin: 0 auto 6px;

    stroke: var(--bg);
    stroke-width: 1;
    fill: currentColor;
}

header .cart_link:hover
{
    color: #a7133b;
}



.mob_header
{
    position: relative;
    z-index: 99;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 15px 0 20px;

    background: #fff;
}

.mob_header .cont
{
    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.mob_header .logo
{
    margin-right: auto;
}

.mob_header .logo > *
{
    color: var(--text_color);

    display: flex;

    min-height: 47px;

    text-decoration: none;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.mob_header .logo img
{
    display: block;

    margin-right: 10px;
}

.mob_header .logo .name
{
    color: #000;
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;

    text-transform: uppercase;
}

.mob_header .logo .desc
{
    color: #707070;
    font-size: 10px;
    font-weight: 700;
    line-height: 13px;

    margin-top: 3px;

    text-transform: uppercase;
}

.mob_header .logo .count
{
    color: #0055bc;
    font-family: var(--font_family2);
    font-size: 40px;
    line-height: 50px;

    margin-left: 6px;
}



.mob_header .contacts
{
    margin-right: auto;

    text-align: center;
}


.mob_header .phone
{
    font-weight: 700;
    line-height: 19px;
}

.mob_header .phone a
{
    color: var(--text_color);

    white-space: nowrap;
    text-decoration: none;
}


.mob_header .callback_btn
{
    color: #a7133b;
    font-size: 13px;
    line-height: 16px;

    margin-top: 3px;

    text-decoration: underline;
}

.mob_header .callback_btn:hover
{
    text-decoration: none;
}



.mob_header .login_link
{
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;

    transition: color .2s linear;
    text-align: center;
    text-decoration: none;
}

.mob_header .login_link .icon
{
    display: block;

    width: 24px;
    height: 24px;
    margin: 0 auto;

    fill: currentColor;
}

.mob_header .login_link:hover
{
    color: #a7133b;
}



.mob_header .cart_link
{
    color: var(--text_color);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;

    margin-left: 25px;

    transition: color .2s linear;
    text-align: center;
    text-decoration: none;
}

.mob_header .cart_link .icon
{
    display: block;

    width: 30.56px;
    height: 26.78px;
    margin: 0 auto;

    stroke: var(--bg);
    stroke-width: 1;
    fill: currentColor;
}

.mob_header .cart_link:hover
{
    color: #a7133b;
}



.mob_header .search
{
    width: 100%;
    margin-top: 15px;

    order: 3;
}

.mob_header .search form
{
    position: relative;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.mob_header .search ::-webkit-input-placeholder
{
    color: #b7b7b7;
}

.mob_header .search :-moz-placeholder
{
    color: #b7b7b7;
}

.mob_header .search :-ms-input-placeholder
{
    color: #b7b7b7;
}


.mob_header .search .cat
{
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 5px;

    width: 100px;
    height: 38px;
    margin: auto;
}

.mob_header .search .cat select
{
    display: none;
}

.mob_header .search .cat .nice-select
{
    position: relative;

    display: block;
}

.mob_header .search .cat .nice-select .current
{
    font-size: 14px;
    line-height: 38px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 38px;
    padding: 0 30px 0 15px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

    border-radius: 5px;
    background: #e1e3ef;
}

.mob_header .search .cat .nice-select .current:after
{
    position: absolute;
    top: 2px;
    right: 15px;
    bottom: 0;

    display: block;

    width: 8px;
    height: 4px;
    margin: auto;

    content: '';

    border-top: 4px solid #1920d6;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.mob_header .search .cat .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 45px);
    left: -5px;

    visibility: hidden;
    overflow: hidden;

    width: 255px;
    padding: 15px 0;

    transition: .2s linear;

    opacity: 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.mob_header .search .cat .nice-select.open .list
{
    top: calc(100% + 15px);

    visibility: visible;

    opacity: 1;
}

.mob_header .search .cat .nice-select .list .list_item
{
    color: #0055bc;
    font-size: 14px;
    line-height: 18px;

    padding: 5px 20px;

    cursor: pointer;
    transition: color .2s linear;
}

.mob_header .search .cat .nice-select .list .list_item:empty
{
    display: none;
}

.mob_header .search .cat .nice-select .list .list_item:hover,
.mob_header .search .cat .nice-select .list .list_item.selected
{
    color: #a7133b;
}


.mob_header .search .input
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: 14px;

    display: block;

    width: 100%;
    height: 48px;
    padding: 0 20px 0 120px;

    border: 2px solid #0055bc;
    border-radius: 5px 0 0 5px;
    background: none;
}

.mob_header .search .submit_btn
{
    position: relative;

    display: flex;

    width: 52px;
    height: 48px;

    cursor: pointer;

    border: none;
    border-radius: 0 5px 5px 0;
    background: #0055bc;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.mob_header .search .submit_btn .icon
{
    display: block;

    width: 24px;
    height: 24px;

    fill: #fff;
}



.mob_header .mob_menu_btn
{
    display: block;

    width: 50px;
    height: 45px;
    margin-right: -10px;
    margin-left: 18px;
    padding: 10px;

    cursor: pointer;

    border: none;
    background: none;
}

.mob_header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 100%;
    height: 3px;

    background: var(--text_color);
}

.mob_header .mob_menu_btn span:before,
.mob_header .mob_menu_btn span:after
{
    position: absolute;
    top: -8px;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: var(--text_color);
}

.mob_header .mob_menu_btn span:after
{
    top: 8px;
}



/*-------------
    Sidebar
-------------*/
aside
{
    position: relative;

    width: var(--sidebar_width);
    max-width: 100%;

    order: 3;
}

aside > * + *
{
    margin-top: 14px;
}



aside .mob_filter_btn
{
    color: #a7133b;
    font-weight: 700;
    line-height: 19px;

    display: none;

    width: 100%;
    height: 48px;

    transition: .2s linear;
    text-align: center;

    border: 2px solid #a7133b;
    border-radius: 5px;
}

aside .mob_filter_btn:hover
{
    color: #fff;

    background: #a7133b;
}


aside .filter
{
    margin-top: 0;
    padding: 25px;

    border-radius: 10px;
    background: #edf5ff;
}

aside .filter .item + .item
{
    margin-top: 31px;
}


aside .filter .cats > * + *
{
    margin-top: 16px;
}

aside .filter .cats a
{
    color: #0055bc;
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;

    display: block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

aside .filter .cats a sup
{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;

    display: inline-block;

    margin-top: -7px;
    margin-left: 3px;
    padding: 0 8px;

    vertical-align: top;

    border-radius: 10px 10px 10px 0;
}

aside .filter .cats a sup.sale
{
    background: #f94777;
}

aside .filter .cats a:hover
{
    color: #a7133b;
}


aside .filter .item .name
{
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;

    margin-bottom: 15px;
}


aside .filter .item .line
{
    margin-bottom: 0;
}

aside .filter .item .line + .line
{
    margin-top: 11px;
}


aside .filter .range .row
{
    overflow: hidden;

    margin-top: 23px;

    border: 1px solid #d1d1d1;
    border-radius: 5px;
    background: #f4f4f7;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

aside .filter .range .input
{
    font-size: 13px;

    width: calc(50% - 1px);
    height: 46px;
    padding: 0 15px;

    text-align: center;

    border: none;
    border-radius: 0;
}


aside .filter input[type=checkbox] + label
{
    color: var(--text_color);
    font-size: 15px;
    line-height: 19px;
}


aside .filter .submit
{
    padding: 0;
}

aside .filter .submit_btn
{
    display: flex;

    padding: 0 20px;

    background: #a7133b;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

aside .filter .submit_btn .icon
{
    position: relative;

    display: block;

    width: 8px;
    height: 8px;
    margin-left: 44px;

    content: '';

    border-radius: 50%;
    background: #fff;
}

aside .filter .submit_btn .icon:before,
aside .filter .submit_btn .icon:after
{
    position: absolute;
    top: 0;
    left: -16px;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    border-radius: 50%;
    background: #fff;
}

aside .filter .submit_btn .icon:after
{
    left: -32px;
}

aside .filter .submit_btn:hover
{
    background: #7b0928;
}


aside .filter .reset_btn
{
    color: #cb2451;
    font-size: 15px;
    line-height: 19px;

    display: block;

    width: 100%;
    margin-top: 20px;

    text-decoration: underline;
}

aside .filter .reset_btn:hover
{
    text-decoration: none;
}



aside .garanti
{
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 22px;

    padding-top: 32px;

    text-align: center;

    border-radius: 10px;
    background: #a7133b;
}

aside .garanti img
{
    display: block;

    max-width: 100%;
    margin: 15px auto 5px;
}



/*---------------
    Page head
---------------*/
.page_head
{
    margin-bottom: 16px;
    padding-top: 6px;
}

.page_head .cont > * + *
{
    margin-top: 15px;
}


.breadcrumbs
{
    font-size: 13px;
    line-height: 16px;
}

.breadcrumbs a
{
    color: #0055bc;

    transition: color .2s linear;
    text-decoration: none;
}

.breadcrumbs a:hover
{
    color: #a7133b;
}

.breadcrumbs .sep
{
    display: inline-block;

    margin: 0 4px;

    vertical-align: top;
}


.page_title
{
    color: #000;
    font-size: var(--font_size_title);
    font-weight: 900;
    line-height: 27px;

    display: block;
}



/*----------------
    Block head
----------------*/
.block_head
{
    display: flex;

    width: 100%;
    margin-bottom: 16px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.block_head.center
{
    text-align: center;

    justify-content: center;
}

.block_head .title
{
    color: #000;
    font-size: var(--font_size_title);
    font-weight: 900;
    line-height: 27px;
}

.block_head .desc
{
    color: #000;
    line-height: 24px;

    width: 100%;
    margin-top: 22px;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #fff;
    --form_focus_color: #f7c729;
    --form_error_color: #cb2451;
    --form_border_radius: 5px;
    --form_bg_color: #fff;
    --form_placeholder_color: var(--text_color);
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .cols
{
    margin-left: -18px;
}

.form .cols .col
{
    width: calc(50% - 18px);
    margin-left: 18px;
}


.form .line
{
    margin-bottom: 22px;
}


.form .field
{
    position: relative;
}


.form .input
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    display: block;

    width: 100%;
    height: 48px;
    padding: 0 20px;

    transition: border-color .2s linear;

    border: 2px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form textarea
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    display: block;

    width: 100%;
    height: 267px;
    padding: 12px 20px;

    resize: none;
    transition: border-color .2s linear;

    border: 2px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}


.form .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


.form .input:focus,
.form textarea:focus
{
    border-color: var(--form_focus_color);
}

.form .error
{
    border-color: var(--form_error_color);
}


.form input[type=checkbox]
{
    display: none;
}

.form input[type=checkbox] + label
{
    color: #0055bc;
    line-height: 23px;

    position: relative;

    display: table-cell;

    height: 23px;
    padding-left: 38px;

    cursor: pointer;
    vertical-align: middle;
}

.form input[type=checkbox] + label:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 23px;
    height: 23px;

    content: '';
    transition: .2s linear;

    border: 1px solid #d1d1d1;
    border-radius: var(--form_border_radius);
    background: #fff;
}

.form input[type=checkbox] + label:after
{
    position: absolute;
    top: 5px;
    left: 5px;

    display: block;

    width: 13px;
    height: 8px;

    content: '';
    transition: opacity .2s linear;
    transform: rotate(-45deg);

    opacity: 0;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}

.form input[type=checkbox]:checked + label:before
{
    border-color: #0055bc;
    background: #0055bc;
}

.form input[type=checkbox]:checked + label:after
{
    opacity: 1;
}


.form .submit
{
    display: flex;

    padding-top: 5px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .submit_btn
{
    color: #fff;
    font: 700 var(--font_size) var(--font_family);

    display: inline-block;

    width: 100%;
    height: 48px;
    padding: 0 30px;

    cursor: pointer;
    transition: background .2s linear;
    vertical-align: top;

    border: none;
    border-radius: var(--form_border_radius);
    background: #cb2451;
}

.form .submit_btn:hover
{
    background: #7b0928;
}


.form .recovery_btn
{
    margin-top: 21px;

    text-align: center;
}

.form .recovery_btn button
{
    color: #cb2451;
    line-height: 19px;

    text-decoration: underline;
}

.form .recovery_btn button:hover
{
    text-decoration: none;
}


.form .register_btn,
.form .login_btn
{
    margin-top: 28px;
}

.form .register_btn button,
.form .login_btn button
{
    color: #cb2451;
    font-weight: 700;

    display: block;

    width: 100%;
    height: 48px;

    transition: .2s linear;

    border: 1px solid #cb2451;
    border-radius: 5px;
}

.form .register_btn button:hover,
.form .login_btn button:hover
{
    color: #fff;

    background: #cb2451;
}



/*----------------
    Typography
----------------*/
.text_block
{
    color: #000;
    line-height: 24px;

    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;

    -webkit-touch-callout: text;
}


.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block h1
{
    font-size: 22px;
    font-weight: 900;
    line-height: 27px;
}


.text_block h2
{
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
}

.text_block h1 + h2
{
    margin-top: 0 !important;
}


.text_block h3
{
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;

    margin-bottom: 15px;
}

.text_block h1 + h3,
.text_block h2 + h3
{
    margin-top: 0 !important;
}


.text_block h4
{
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;

    margin-bottom: 15px;
}

.text_block h1 + h4,
.text_block h2 + h4,
.text_block h3 + h4
{
    margin-top: 0 !important;
}


.text_block * + h2,
.text_block * + h3,
.text_block * + h4
{
    margin-top: 38px;
}

.text_block .clear + h2,
.text_block .clear + h3,
.text_block .clear + h4
{
    margin-top: 14px;
}

.text_block h1 + *,
.text_block h2 + *,
.text_block h3 + *,
.text_block h4 + *
{
    margin-top: 0 !important;
}


.text_block > *
{
    margin-bottom: 24px;
}


.text_block img
{
    display: block;

    max-width: 100%;
}

.text_block img.left
{
    max-width: calc(50% - 40px);
    margin-top: 4px;
    margin-right: 40px;
}

.text_block img.right
{
    max-width: calc(50% - 40px);
    margin-top: 4px;
    margin-left: 40px;
}

.text_block img.loaded
{
    height: auto !important;
}


.text_block .message
{
    font-weight: 700;

    padding: 21px 38px;

    border-radius: 10px;
}

.text_block .message.green
{
    background: rgba(80,147,30,.2);
}

.text_block .message.yellow
{
    background: rgba(230,162,9,.2);
}

.text_block .message.red
{
    background: rgba(167,19,59,.2);
}


.text_block .phones
{
    font-weight: 700;
}

.text_block .phones span
{
    color: #0055bc;

    margin: 0 10px;
}

.text_block .phones a
{
    white-space: nowrap;
    text-decoration: none;
}


.text_block .delivery_methods
{
    margin: 38px 0;
}


.text_block li ul
{
    margin-top: 20px;
}

.text_block li ul li
{
    padding-left: 30px !important;
}

.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 30px;

    list-style-type: none;
}

.text_block ul li + li
{
    margin-top: 15px;
}

.text_block ul li:before
{
    position: absolute;
    top: 8px;
    left: 5px;

    display: block;

    width: 13px;
    height: 13px;

    content: '';

    border-radius: 50%;
    background: #0055bc;
}


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-top: 3px;
    padding-left: 43px;

    list-style-type: none;
}

.text_block ol li + li
{
    margin-top: 24px;
}

.text_block ol > li:before
{
    color: #fff;
    font-weight: 500;
    line-height: 30px;

    position: absolute;
    top: 0;
    left: 0;

    width: 33px;
    height: 30px;

    content: counters(li, '') '';
    counter-increment: li;
    text-align: center;

    border-radius: 20px 20px 20px 0;
    background: #0055bc;
}


.text_block a
{
    color: #0055bc;

    transition: color .2s linear;
}

.text_block a:hover
{
    color: #a7133b;

    text-decoration: none;
}



/*---------------
    Cats wall
---------------*/
.cats_wall .row
{
    margin-bottom: -24px;
    margin-left: -24px;
}

.cats_wall .row > *
{
    width: calc(27.69% - 24px);
    margin-bottom: 24px;
    margin-left: 24px;
}

.cats_wall .row > *.mini
{
    width: calc(16.93% - 24px);
}


.cats_wall .cat
{
    color: #0055bc;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 188px;

    transition: box-shadow .2s linear;
    text-decoration: none;

    border-radius: 10px;
    background: #ddd;
}


.cats_wall .cat .bg
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}


.cats_wall .cat .icon
{
    position: absolute;
    z-index: 3;
    top: 24px;
    right: 24px;

    display: block;

    margin: auto;
}

.cats_wall .cat .icon.center
{
    left: 19px;
}


.cats_wall .cat .name
{
    position: absolute;
    z-index: 3;
    bottom: 33px;

    width: 100%;
    min-height: 44px;
    padding: 0 19px;
}

.cats_wall .cat .name:before
{
    position: absolute;
    top: -15px;
    left: 19px;

    display: block;

    width: 40px;
    height: 3px;

    content: '';

    border-radius: 3px;
    background: currentColor;
}


.cats_wall .cat.light .name
{
    color: #fff;
}


.cats_wall .cat:hover
{
    box-shadow: 0 3px 9px rgba(0,0,0,.34);
}



/*--------------
    Products
--------------*/
.products .links
{
    display: flex;

    margin-bottom: 10px;
    margin-left: -16px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.products .links > *
{
    margin-bottom: 14px;
    margin-left: 16px;
}

.products .links a
{
    color: var(--text_color);
    font-size: 13px;
    line-height: 16px;

    display: inline-block;

    padding: 8px 15px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border-radius: 100px;
    background: #e1e3ef;
}

.products .links a:hover,
.products .links a.active
{
    color: #fff;

    background: #0055bc;
}


.products .row
{
    margin-bottom: -28px;
    margin-left: -11px;

    align-items: stretch;
    align-content: stretch;
    --products_count: 4;
}

.products .row > *
{
    width: calc(25% - 11px);
    margin-bottom: 28px;
    margin-left: 11px;
}


.content .products .row
{
    --products_count: 3;
}

.content .products .row > *
{
    width: calc(33.333% - 11px);
}


.products .product
{
    position: relative;

    padding: 22px 22px 26px 30px;

    transition: box-shadow .2s linear;

    border: 1px solid #d9d9d9;
    border-radius: 10px;
}


.products .product .stickers
{
    position: absolute;
    z-index: 5;
    top: 15px;
    right: -8px;
}

.products .product .sticker
{
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    display: block;

    width: 48px;

    text-align: center;
    text-transform: uppercase;

    border-radius: 10px 10px 10px 0;
}

.products .product .sticker + .sticker
{
    margin-top: 8px;
}

.products .product .sticker.discount
{
    background: #f94777;
}

.products .product .sticker.new
{
    background: #10b4ae;
}

.products .product .sticker.hit
{
    background: #e2600e;
}


.products .product .thumb
{
    position: relative;

    display: block;
    overflow: hidden;

    margin-bottom: 27px;
    padding-bottom: 65.18%;
}

.products .product .thumb .img
{
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;

    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-size: 14px;
    line-height: 18px;

    width: 165px;
    max-width: 100%;
}

.products .product .name a
{
    color: var(--text_color);

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.products .product .thumb:hover ~ .name a,
.products .product .name a:hover
{
    color: #c70035;
}


.products .product .price
{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    display: flex;

    margin-top: 9px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.products .product .price .new
{
    color: #c70035;
}

.products .product .price .old
{
    font-size: 14px;
    line-height: 18px;

    margin-bottom: 1px;
    margin-left: 10px;

    text-decoration: line-through;

    align-self: flex-end;
}

.products .product .price .economy
{
    font-size: 11px;
    font-weight: normal;
    line-height: 14px;

    width: 100%;
    margin-top: 1px;
}


.products .product .buy_btn
{
    color: #a7133b;
    font-weight: 700;
    line-height: 19px;

    display: flex;

    width: 100%;
    height: 48px;
    margin-top: 15px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 2px solid #a7133b;
    border-radius: 5px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.products .product .buy_btn .icon
{
    display: block;

    width: 21px;
    height: 18px;
    margin-right: 8px;

    fill: currentColor;
}

.products .product .buy_btn:hover
{
    color: #fff;

    background: #a7133b;
}


.products .product .status
{
    color: #10ba79;
    font-size: 14px;
    line-height: 18px;

    margin-top: 8px;

    text-align: center;
}


.products .product:hover
{
    box-shadow: 0 3px 9px rgba(0,0,0,.1);
}



/*----------------
    Advantages
----------------*/
.advantages .row
{
    margin-bottom: -24px;
    margin-left: -24px;
    padding-top: 34px;

    justify-content: space-between;
}

.advantages .row > *
{
    margin-bottom: 24px;
    margin-left: 24px;
}


.advantages .item
{
    font-size: 13px;
    line-height: 16px;

    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}

.advantages .item .icon
{
    display: flex;

    width: 56px;
    min-width: 56px;
    height: 50px;
    margin-right: 14px;

    border-radius: 20px 20px 20px 0;
    background: #0055bc;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.advantages .item .icon + *
{
    align-self: center;
}



/*-----------------
    About block
-----------------*/
.about_block .info
{
    width: calc(100% - 527px);
    margin-right: auto;

    align-self: center;
}

.about_block .info .text_block
{
    padding-top: 8px;
}

.about_block .info .details
{
    color: #0055bc;
    font-weight: 700;
    line-height: 19px;

    display: inline-block;

    margin-top: 25px;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.about_block .info .details:hover
{
    color: #a7133b;
}



.about_block .feedback
{
    color: #fff;

    width: 471px;
    max-width: 100%;
    margin-left: 20px;
    padding: 34px 40px 40px 48px;

    border-radius: 20px 20px 20px 0;
    background: #0055bc;
}

.about_block .feedback .title
{
    font-size: var(--font_size_title);
    font-weight: 900;
    line-height: 27px;
}

.about_block .feedback .desc
{
    font-size: var(--font_size_title);
    line-height: 27px;

    margin-top: 5px;
}

.about_block .feedback .form
{
    width: 368px;
    max-width: 100%;
    margin-top: 27px;
}

.about_block .feedback .form .line
{
    margin-bottom: 24px;
}

.about_block .feedback .form .submit
{
    padding: 0;
}

.about_block .feedback .form .submit_btn
{
    width: auto;
    padding: 15px 25px;
}


.about_block .feedback .phone
{
    font-weight: 700;
    line-height: 19px;

    margin-top: 27px;
}

.about_block .feedback .phone a
{
    color: #fff;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}



/*--------------
    Articles
--------------*/
.articles .row
{
    margin-bottom: -18px;
    margin-left: -18px;

    align-items: stretch;
    align-content: stretch;
}

.articles .row > *
{
    width: calc(33.333% - 18px);
    margin-bottom: 18px;
    margin-left: 18px;
}


.articles .article
{
    color: var(--text_color);
    font-size: 14px;
    line-height: 18px;

    display: flex;
    flex-direction: column;

    padding: 32px 30px;

    transition: box-shadow .2s linear;
    text-decoration: none;

    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #fff;
}


.articles .article .date
{
    font-weight: 700;

    margin-bottom: 14px;
}


.articles .article .name
{
    flex: 1 0 auto;
}


.articles .article .details
{
    color: #0055bc;
    font-size: var(--font_size);
    font-weight: 700;
    line-height: 19px;

    display: inline-block;

    margin-top: 31px;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.articles .article .details:hover
{
    color: #a7133b;
}


.articles .article:hover
{
    box-shadow: 0 3px 9px rgba(0,0,0,.1);
}



/*--------------------
    Category links
--------------------*/
.category_links
{
    display: flex;

    margin-bottom: 5px;
    margin-left: -10px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.category_links > *
{
    margin-bottom: 14px;
    margin-left: 10px;
}

.category_links a
{
    color: var(--text_color);
    font-size: 15px;
    line-height: 19px;

    display: inline-block;

    padding: 6px 18px 7px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border-radius: 100px;
    background: #e1e3ef;
}

.category_links a:hover,
.category_links a.active
{
    color: #fff;

    background: #0055bc;
}



/*-------------------
    Products head
-------------------*/
.products_head
{
    font-size: 13px;
    line-height: 16px;

    display: flex;

    margin-bottom: 30px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.products_head .sort
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.products_head .sort .nice-select
{
    position: relative;

    display: block;

    margin-left: 9px;
}

.products_head .sort .nice-select .current
{
    color: #0055bc;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;

    position: relative;

    display: block;
    overflow: hidden;

    padding: 0 14px 0 0;

    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.products_head .sort .nice-select .current:after
{
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 0;

    display: block;

    width: 8px;
    height: 4px;
    margin: auto;

    content: '';

    border-top: 4px solid #1920d6;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.products_head .sort .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 45px);
    left: -5px;

    visibility: hidden;
    overflow: hidden;

    width: 255px;
    min-width: 100%;
    padding: 18px 0;

    transition: .2s linear;

    opacity: 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.products_head .sort .nice-select.open .list
{
    top: calc(100% + 15px);

    visibility: visible;

    opacity: 1;
}

.products_head .sort .nice-select .list .list_item
{
    color: #0055bc;
    font-size: 14px;
    line-height: 18px;

    padding: 7px 25px;

    cursor: pointer;
    transition: color .2s linear;
}

.products_head .sort .nice-select .list .list_item:empty
{
    display: none;
}

.products_head .sort .nice-select .list .list_item:hover,
.products_head .sort .nice-select .list .list_item.selected
{
    color: #a7133b;
}


.products_head .limit
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.products_head .limit a
{
    color: var(--text_color);
    font-weight: 700;

    display: inline-block;

    margin-left: 17px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    opacity: .44;
}

.products_head .limit a:hover
{
    opacity: 1;
}

.products_head .limit a.active
{
    color: #0055bc;

    opacity: 1;
}



/*-----------------
    Information
-----------------*/
.information
{
    padding: 35px 0 44px !important;
}

.information .block_head
{
    position: relative;

    min-height: 127px;
    margin-bottom: 0;
    padding-left: 178px;

    align-items: center;
    align-content: center;
}

.information .block_head .icon
{
    color: #fff;
    font-size: 71px;
    font-weight: 700;
    line-height: 127px;

    position: absolute;
    top: 0;
    left: 0;

    width: 141px;
    height: 127px;

    text-align: center;

    border-radius: 20px 20px 20px 0;
    background: #0055bc;
}



/*------------------
    Product info
------------------*/
.product_info .row
{
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}


.product_info .data
{
    display: flex;

    width: calc(100% - var(--sidebar_width) - 13px);
    margin-right: auto;
    padding: 30px;

    border: 1px solid #d9d9d9;
    border-radius: 10px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.product_info .images
{
    width: calc(51.27% - 15px);
}


.product_info .images .big .slide a
{
    position: relative;

    display: block;

    padding-bottom: 75.9%;
}

.product_info .images .big .slide .img
{
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .images .big .slide img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.product_info .images .thumbs
{
    display: flex;

    margin-top: 24px;
    margin-bottom: -15px;
    margin-left: -25px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.product_info .images .thumbs button
{
    position: relative;

    display: block;
    overflow: hidden;

    width: calc(25% - 25px);
    margin-bottom: 15px;
    margin-left: 25px;
    padding-bottom: 16.41%;

    transition: .2s linear;

    opacity: .5;
    border: 1px solid transparent;
    border-radius: 6px;
}

.product_info .images .thumbs button .img
{
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .images .thumbs button img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.product_info .images .thumbs button:hover,
.product_info .images .thumbs button.active
{
    opacity: 1;
    border-color: #a7133b;
}


.product_info .info
{
    display: flex;

    width: calc(48.73% - 15px);

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.product_info .info .stickers
{
    display: flex;

    margin-right: 15px;
    margin-left: -8px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .info .sticker
{
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    display: block;

    width: 48px;
    margin-left: 8px;

    text-align: center;
    text-transform: uppercase;

    border-radius: 10px 10px 10px 0;
}

.product_info .info .sticker.discount
{
    background: #f94777;
}

.product_info .info .sticker.new
{
    background: #10b4ae;
}

.product_info .info .sticker.hit
{
    background: #e2600e;
}


.product_info .info .articul
{
    font-weight: 700;
    line-height: 19px;
}

.product_info .info .exp
{
    font-size: 14px;
    line-height: 18px;

    margin-top: 8px;
}


.product_info .info .buy
{
    display: flex;

    margin-top: 17px;
    padding: 13px 0 25px;

    border-top: 1px dashed #707070;
    border-bottom: 1px dashed #707070;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.product_info .info .price
{
    font-size: 14px;
    line-height: 18px;
}

.product_info .info .price .val
{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    margin-top: 8px;
}


.product_info .info .status
{
    font-size: 14px;
    line-height: 24px;

    margin-left: 17px;

    align-self: flex-end;
}

.product_info .info .status.green
{
    color: #10ba79;
}


.product_info .info .delivery
{
    color: #a7133b;
    font-size: 14px;
    line-height: 24px;

    margin-left: 17px;

    align-self: flex-end;
}

.product_info .info .delivery a
{
    color: #a7133b;
}

.product_info .info .delivery a:hover
{
    text-decoration: none;
}


.product_info .info .btns
{
    display: flex;

    margin-top: 16px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.product_info .info .buy_btn
{
    color: #fff;
    font-weight: 700;
    line-height: 19px;

    display: flex;

    height: 48px;
    padding: 10px 15px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border-radius: 5px;
    background: #a7133b;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .info .buy_btn .icon
{
    display: block;

    width: 21px;
    height: 18px;
    margin-right: 10px;

    fill: currentColor;
}

.product_info .info .buy_btn:hover
{
    background: #7b0928;
}


.product_info .info .quike_buy_btn
{
    color: #a7133b;
    font-weight: 700;
    line-height: 19px;

    display: flex;

    height: 48px;
    margin-left: 6px;
    padding: 10px 22px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 2px solid #a7133b;
    border-radius: 5px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .info .quike_buy_btn .icon
{
    display: block;

    width: 21px;
    height: 18px;
    margin-right: 10px;

    fill: currentColor;
}

.product_info .info .quike_buy_btn:hover
{
    color: #fff;

    background: #a7133b;
}


.product_info .info .features
{
    font-size: 14px;
    line-height: 18px;

    margin-top: 19px;
}

.product_info .info .features > * + *
{
    margin-top: 13px;
}

.product_info .info .features b
{
    font-weight: 500;
}


.product_info .discount
{
    color: #fff;
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 27px;

    width: var(--sidebar_width);
    max-width: 100%;
    margin-left: auto;
    padding: 36px;

    border-radius: 10px;
    background: #0055bc;
}

.product_info .discount .percent
{
    font-size: 93px;
    line-height: 98px;
}

.product_info .discount .title
{
    font-size: 33px;
    line-height: 40px;
}

.product_info .discount .desc
{
    margin-top: 27px;
}



.product_tabs .tabs
{
    width: 850px;
    max-width: 100%;
    margin-bottom: 24px;
}



/*----------------------
    Delivery/Ppayment
----------------------*/
.delivery_payment
{
    padding-top: 16px;
}

.delivery_payment .tabs
{
    margin-bottom: 32px;
}

.delivery_payment .tabs button + button
{
    margin-left: 38px;
}



/*---------------------
    Payment methods
---------------------*/
.payment_methods .row
{
    margin-bottom: -15px;
    margin-left: -13px;

    align-items: stretch;
    align-content: stretch;
}

.payment_methods .row > *
{
    width: calc(25% - 13px);
    margin-bottom: 15px;
    margin-left: 13px;
}


.payment_methods .method
{
    display: flex;

    padding: 26px 26px 36px;

    border: 1px solid #d9d9d9;
    border-radius: 10px;

    justify-content: flex-start;
    align-items: center;
    align-content: space-between;
    flex-wrap: wrap;
}

.payment_methods .method .icon
{
    display: flex;

    width: 123px;
    height: 123px;
    margin: 0 auto 29px;
    padding: 10px;

    border-radius: 50%;
    background: #eff0f4;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.payment_methods .method .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.payment_methods .method .name
{
    font-weight: 700;
    line-height: 24px;

    width: 100%;
}

.payment_methods .method .name small
{
    font-size: 13px;
    font-weight: normal;

    display: block;
}



/*----------------------
    Delivery methods
----------------------*/
.delivery_methods .row
{
    margin-bottom: -15px;
    margin-left: -12px;

    align-items: stretch;
    align-content: stretch;
}

.delivery_methods .row > *
{
    width: calc(50% - 12px);
    margin-bottom: 15px;
    margin-left: 12px;
}

.delivery_methods .row > *.big
{
    width: calc(100% - 12px);
}


.delivery_methods .method
{
    display: flex;
    flex-direction: column;

    padding: 26px;

    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

.delivery_methods .method .name
{
    font-weight: 700;
    line-height: 19px;
}

.delivery_methods .method .desc
{
    font-size: 15px;

    margin-top: 20px;

    flex: 1 0 auto;
}

.delivery_methods .method .desc > * + *
{
    margin-top: 24px;
}

.delivery_methods .method .desc a
{
    color: #0055bc;

    transition: color .2s linear;
}

.delivery_methods .method .desc a:hover
{
    color: #a7133b;

    text-decoration: none;
}

.delivery_methods .method .price
{
    color: #a7133b;
    font-weight: 700;

    margin-top: 24px;
}



/*---------------
    Cart info
---------------*/
.cart_info .cart_table
{
    padding: 24px 20px 40px;

    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

.cart_info table
{
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
}

.cart_info table .alignleft
{
    text-align: left;
}


.cart_info table th
{
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;

    text-align: center;
}

.cart_info table th + th
{
    padding-left: 42px;
}


.cart_info table tbody tr
{
    border-bottom: 1px dashed rgba(112,112,112,.3);
}

.cart_info table td
{
    padding: 32px 0;

    text-align: center;
    vertical-align: middle;
}

.cart_info table td + td
{
    padding-left: 42px;
}


.cart_info table td.thumb
{
    width: 84px;
    min-width: 84px;

    table-layout: fixed;
}

.cart_info table td.thumb a
{
    display: block;

    width: 100%;
}

.cart_info table td.thumb img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
    /*max-height: -moz-available;
    max-height: -webkit-fill-available;
    max-height:         fill-available;*/
    margin: 0 auto;
}


.cart_info table td.info .name
{
    font-size: 14px;
    line-height: 18px;
}

.cart_info table td.info .name a
{
    color: #0055bc;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
}

.cart_info table td.info .name a:hover
{
    color: #a7133b;
}


.cart_info table td.info .articul
{
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;

    margin-top: 8px;
}


.cart_info table td.price
{
    font-weight: 700;
    line-height: 19px;

    white-space: nowrap;
}


.cart_info table td.amount .box
{
    position: relative;

    width: 110px;
    margin: 0 auto;
}

.cart_info table td.amount button
{
    font-weight: 700;
    line-height: 48px;

    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: block;

    width: 36px;
    height: 100%;
}

.cart_info table td.amount button.plus
{
    right: 0;
    left: auto;
}

.cart_info table td.amount .input
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);

    display: block;

    width: 100%;
    height: 48px;
    padding: 0 35px;

    text-align: center;

    border: 2px solid #d9d9d9;
    border-radius: 5px;
    background: none;
}


.cart_info table td.delete
{
    width: 69px;
    min-width: 69px;

    table-layout: fixed;
}

.cart_info table td.delete button,
.cart_info table td.delete a
{
    position: relative;

    display: block;

    width: 27px;
    height: 27px;
    margin: 0 auto;

    transition: background .2s linear;

    border-radius: 50%;
    background: #d6d6d6;
}

.cart_info table td.delete button:before,
.cart_info table td.delete button:after,

.cart_info table td.delete a:before,
.cart_info table td.delete a:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 55%;
    height: 1px;
    margin: auto;

    content: '';
    transition: background .2s linear;
    transform: rotate(45deg);

    background: #707070;
}

.cart_info table td.delete button:after,
.cart_info table td.delete a:after
{
    transform: rotate(-45deg);
}

.cart_info table td.delete button:hover,
.cart_info table td.delete a:hover
{
    background: #0055bc;
}

.cart_info table td.delete button:hover:before,
.cart_info table td.delete button:hover:after,
.cart_info table td.delete a:hover:before,
.cart_info table td.delete a:hover:after
{
    background: #fff;
}



.cart_info .discount
{
    color: #fff;
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 27px;

    display: flex;

    margin-top: 27px;
    padding: 28px 36px;

    border-radius: 10px;
    background: #0055bc;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cart_info .discount .percent
{
    font-size: 93px;
    line-height: 98px;
}

.cart_info .discount .title
{
    font-size: 33px;
    line-height: 40px;
}

.cart_info .discount .desc
{
    width: 410px;
    max-width: 100%;
    margin: 0 auto;
}



/*-----------------------
    Checkout delivery
-----------------------*/
.checkout_delivery
{
    margin-top: 28px;
}


.checkout_delivery .title
{
    color: #000;
    font-size: var(--font_size_title);
    font-weight: 900;
    line-height: 27px;

    margin-bottom: 15px;
}


.checkout_delivery .methods
{
    padding: 26px 28px;

    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

.checkout_delivery .methods > * + *
{
    margin-top: 17px;
}


.checkout_delivery .methods input[type=radio]
{
    display: none;
}

.checkout_delivery .methods label
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;

    position: relative;

    display: table-cell;

    height: 23px;
    padding-left: 42px;

    cursor: pointer;
    vertical-align: middle;
}

.checkout_delivery .methods label:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 24px;
    height: 23px;

    content: '';
    transition: .2s linear;

    border: 1px solid #d1d1d1;
    border-radius: 5px;
    background: none;
}

.checkout_delivery .methods label:after
{
    position: absolute;
    top: 6px;
    left: 6px;

    display: block;

    width: 11px;
    height: 11px;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    border-radius: 50%;
    background: #fff;
}

.checkout_delivery .methods input[type=radio]:checked + label:before
{
    border-color: #0055bc;
    background: #0055bc;
}

.checkout_delivery .methods input[type=radio]:checked + label:after
{
    opacity: 1;
}



/*----------------------
    Checkout payment
----------------------*/
.checkout_payment
{
    margin-top: 28px;
}


.checkout_payment .title
{
    color: #000;
    font-size: var(--font_size_title);
    font-weight: 900;
    line-height: 27px;

    margin-bottom: 15px;
}


.checkout_payment .methods
{
    padding: 26px 28px;

    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

.checkout_payment .methods > * + *
{
    margin-top: 17px;
}


.checkout_payment .methods input[type=radio]
{
    display: none;
}

.checkout_payment .methods label
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;

    position: relative;

    display: table-cell;

    height: 23px;
    padding-left: 42px;

    cursor: pointer;
    vertical-align: middle;
}

.checkout_payment .methods label:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 24px;
    height: 23px;

    content: '';
    transition: .2s linear;

    border: 1px solid #d1d1d1;
    border-radius: 5px;
    background: none;
}

.checkout_payment .methods label:after
{
    position: absolute;
    top: 6px;
    left: 6px;

    display: block;

    width: 11px;
    height: 11px;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    border-radius: 50%;
    background: #fff;
}

.checkout_payment .methods input[type=radio]:checked + label:before
{
    border-color: #0055bc;
    background: #0055bc;
}

.checkout_payment .methods input[type=radio]:checked + label:after
{
    opacity: 1;
}



/*-------------------
    Checkout info
-------------------*/
.checkout_info
{
    padding: 24px 24px 37px;

    border-radius: 10px;
    background: #edf5ff;
}

.checkout_info > * + *
{
    margin-top: 24px;
}


.checkout_info .sep
{
    position: relative;

    width: calc(100% + 26px);
    height: 1px;
    margin-right: 13px;
    margin-left: -13px;

    border-bottom: 1px dashed rgba(112,112,112,.3);
}

.checkout_info .sep:before,
.checkout_info .sep:after
{
    position: absolute;
    top: -10px;
    left: -11px;

    display: block;

    width: 10px;
    height: 21px;

    content: '';

    border-radius: 0 20px 20px 0;
    background: var(--bg);
}

.checkout_info .sep:after
{
    right: -11px;
    left: auto;

    border-radius: 20px 0 0 20px;
}


.checkout_info .chekout_total
{
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;

    display: flex;

    padding: 0 7px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.checkout_info .chekout_total .name
{
    color: #0055bc;
    font-weight: 900;
}


.checkout_info .info
{
    font-size: 14px;
    line-height: 18px;
}

.checkout_info .info > *
{
    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.checkout_info .info > * + *
{
    margin-top: 11px;
}

.checkout_info .info .val
{
    font-weight: 700;

    white-space: nowrap;
}

.checkout_info .info .red
{
    color: #a7133b;
}


.checkout_info .payment
{
    font-size: 14px;
    line-height: 18px;

    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.checkout_info .payment .title
{
    font-weight: 700;

    width: 100%;
    margin-bottom: 12px;
}

.checkout_info .payment .val
{
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;

    text-align: right;
    white-space: nowrap;
}

.checkout_info .payment .val small
{
    font-size: 13px;
    font-weight: normal;
    line-height: 16px;
}


.checkout_info .delivery
{
    font-size: 14px;
    line-height: 18px;

    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.checkout_info .delivery .title
{
    font-weight: 700;

    width: 100%;
    margin-bottom: 12px;
}

.checkout_info .delivery .val
{
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;

    text-align: right;
    white-space: nowrap;
}


.checkout_info .btns
{
    padding: 0 7px;
}


.checkout_info .checkout_btn
{
    color: #fff;
    font-weight: 700;
    line-height: 19px;

    width: 100%;
    height: 48px;

    transition: background .2s linear;

    border-radius: 5px;
    background: #a7133b;
}

.checkout_info .checkout_btn:hover
{
    background: #7b0928;
}


.checkout_info .update_btn
{
    color: #a7133b;
    font-weight: 700;
    line-height: 19px;

    display: block;

    width: 100%;
    height: 48px;
    margin-top: 14px;

    transition: .2s linear;

    border: 2px solid #a7133b;
    border-radius: 5px;
}

.checkout_info .update_btn:hover
{
    color: #fff;

    background: #a7133b;
}



/*----------
    Tabs
----------*/
.tabs
{
    display: flex;

    border-bottom: 2px solid #ddd;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.tabs button
{
    color: #0055bc;
    font-weight: 500;
    line-height: 19px;

    position: relative;

    display: block;

    padding: 0 15px 15px;

    transition: color .2s linear;
}

.tabs button + button
{
    margin-left: 18px;
}

.tabs button:after
{
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;

    width: 0;
    height: 5px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    border-radius: 5px 5px 0 0;
    background: #0055bc;
}

.tabs button:hover,
.tabs button.active
{
    color: #000;
}

.tabs button.active:after
{
    width: 100%;
}

.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: auto;

    opacity: 1;
}



/*--------------
    All link
--------------*/
.all_link
{
    display: flex;

    margin-top: 37px;

    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.all_link a
{
    color: #fff;
    font-weight: 700;
    line-height: 19px;

    display: flex;

    height: 48px;
    padding: 10px 20px;

    transition: background .2s linear;
    text-decoration: none;

    border-radius: 5px;
    background: #a7133b;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.all_link a .icon
{
    position: relative;
    top: 1px;

    display: block;

    width: 8px;
    height: 8px;
    margin-left: 44px;

    content: '';

    border-radius: 50%;
    background: #fff;
}

.all_link a .icon:before,
.all_link a .icon:after
{
    position: absolute;
    top: 0;
    left: -16px;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    border-radius: 50%;
    background: #fff;
}

.all_link a .icon:after
{
    left: -32px;
}

.all_link a:hover
{
    background: #7b0928;
}



/*---------------
    Load more
---------------*/
.load_more
{
    display: flex;

    margin-top: 37px;

    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.load_more button
{
    color: #fff;
    font-weight: 700;
    line-height: 19px;

    display: flex;

    height: 48px;
    padding: 10px 20px 10px 23px;

    transition: background .2s linear;

    border-radius: 5px;
    background: #a7133b;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.load_more button .icon
{
    position: relative;
    top: 1px;

    display: block;

    width: 8px;
    height: 8px;
    margin-left: 44px;

    content: '';

    border-radius: 50%;
    background: #fff;
}

.load_more button .icon:before,
.load_more button .icon:after
{
    position: absolute;
    top: 0;
    left: -16px;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    border-radius: 50%;
    background: #fff;
}

.load_more button .icon:after
{
    left: -32px;
}

.load_more button:hover
{
    background: #7b0928;
}



/*------------
    Footer
------------*/
footer
{
    padding: 62px 0 72px;

    background: #0055bc;
    box-shadow: 0 3px 9px rgba(0,0,0,.1);
}


footer .cont.row
{
    justify-content: space-between;
}



footer .col_left
{
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
}



footer .logo
{
    color: #fff;

    display: flex;

    min-height: 40px;

    text-decoration: none;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

footer .logo img
{
    display: block;

    width: 41px;
    margin-right: 7px;
}

footer .logo .name
{
    font-size: 18px;
    font-weight: 900;
    line-height: 22px;

    text-transform: uppercase;
}

footer .logo .desc
{
    font-size: 9px;
    font-weight: 700;
    line-height: 11px;

    margin-top: 3px;

    text-transform: uppercase;
}

footer .logo .count
{
    font-family: var(--font_family2);
    font-size: 38px;
    line-height: 46px;

    margin-left: 12px;
}



footer .contacts
{
    margin-top: 55px;
}


footer .contacts .phone
{
    font-size: var(--font_size);
    font-weight: 700;
    line-height: 19px;
}

footer .contacts .phone a
{
    color: #fff;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}


footer .contacts .callback_btn
{
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;

    margin-top: 4px;

    text-decoration: underline;
}

footer .contacts .callback_btn:hover
{
    text-decoration: none;
}


footer .copyright
{
    margin-top: 44px;
}



footer .menu > * + *
{
    margin-top: 5px;
}

footer .menu a
{
    color: #fff;
    font-size: 13px;
    line-height: 16px;

    display: inline-block;

    max-width: 149px;

    vertical-align: top;
    text-decoration: none;
}

footer .menu a:hover
{
    text-decoration: underline;
}



footer .cats
{
    display: flex;

    margin-left: -50px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

footer .cats .col
{
    margin-left: 50px;
}

footer .cats .col > * + *
{
    margin-top: 5px;
}

footer .cats a
{
    color: #fff;
    font-size: 13px;
    line-height: 16px;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}

footer .cats a:hover
{
    text-decoration: underline;
}



/*-----------
    PopUp
-----------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 400px;
    max-width: 100%;
    padding: 46px 64px 71px;

    border-radius: 20px;
    background: #edf5ff;
    box-shadow: 0 3px 30px rgba(17,55,126,.25);
}

.modal_title
{
    color: #0055bc;
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 27px;

    text-align: center;
}

.modal_desc
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;

    margin-top: 8px;

    text-align: center;
}

.modal .exp
{
    color: #cb2451;
    font-size: 13px;
    font-weight: 500;
    line-height: 19px;

    margin-top: 8px;

    text-align: center;
}

.modal_data
{
    margin-top: 27px;
}



#checkout_modal
{
    width: 822px;

    border-radius: 0 20px 20px 20px;
    background: #edf5ff;
    box-shadow: none;
}

#checkout_modal .modal_title,
#checkout_modal .modal_desc,
#checkout_modal .exp
{
    text-align: left;
}

#checkout_modal .form .line
{
    margin-bottom: 25px;
}

#checkout_modal .form .submit
{
    justify-content: flex-end;
}

#checkout_modal .form .checkout_total
{
    color: #0055bc;
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 27px;

    margin-right: 28px;
}

#checkout_modal .form .submit_btn
{
    width: auto;
}

.breadcrumbs li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.breadcrumbs li:after {
    content: "//";
    position: absolute;
    right: -13px;
}


.breadcrumbs li:last-child {
     margin-right: 0; 
}

.breadcrumbs li:last-child:after {
     display: none; 
}

#stuffHelper button {
    border: 1px solid #666;
    font-size: 14px;
    padding: 0 5px;
}

#stuffHelperName {
	display: inline-block;
	margin-bottom: 8px;
}

.justifyright {
	float: right;
	margin: 0 0 10px 10px;
}

.justifyleft {
	float: left;
	margin: 0 10px 10px 0;
}

#product_tab4 table, .text_block table {
	border: 1px solid #0055bc;
	width: 100%;
	border-collapse: collapse;
}


#product_tab4 table td, .text_block table td {
	border: 1px solid #0055bc;
    padding: 5px;
}

.mob_header .logo a {
	text-decoration: none;
	color: #000;
}

.pagination {
	text-align: center;
	margin-top: 20px;
}

.pagination a {
	display: inline-block;
	padding: 3px 5px;
	background: #a7133b;
	border: 1px solid #a7133b;
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
}

.pagination .active {
	border: 1px solid #a7133b;
	background: #fff;
	color: #a7133b;
}

.pagination .next, .pagination .prev {
	display: none;
}

header .catalog #catalog_modal img {
	vertical-align: middle;
	margin-left: 10px;
}