@font-face
{
    font-family: 'Raleway';
    font-weight: 300;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/Raleway-Light.woff') format('woff'),
    url('../fonts/Raleway-Light.ttf') format('truetype');
}

@font-face
{
    font-family: 'Raleway';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/Raleway-Regular.woff') format('woff'),
    url('../fonts/Raleway-Regular.ttf') format('truetype');
}

@font-face
{
    font-family: 'Raleway';
    font-weight: 500;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/Raleway-Medium.woff') format('woff'),
    url('../fonts/Raleway-Medium.ttf') format('truetype');
}

@font-face
{
    font-family: 'Raleway';
    font-weight: 600;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/Raleway-SemiBold.woff') format('woff'),
    url('../fonts/Raleway-SemiBold.ttf') format('truetype');
}

@font-face
{
    font-family: 'Raleway';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/Raleway-Bold.woff') format('woff'),
    url('../fonts/Raleway-Bold.ttf') format('truetype');
}


@font-face
{
    font-family: 'PTRoubleSans';
    font-weight: 500;
    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;

    -webkit-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
{
    --bg: #fff;
    --form_focus_color: #51b1a9;
    --form_error_color: red;
    --form_success_color: green;
    --form_placeholder_color: #ccc;
    --aside_width: 277px;
    --scroll_width: 17px;
    --text_color: #000;
    --font_size: 16px;
    --font_size_title: 39px;
    --font_family: 'Open Sans', 'Arial', sans-serif;
    --font_family2: 'Raleway', 'Arial', sans-serif;
}



.clear
{
    clear: both;
}


.left
{
    float: left;
}


.right
{
    float: right;
}



html
{
    height: 100%;

    background: var(--bg);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);

    height: 100%;

    transition: opacity .2s linear;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

body.show
{
    opacity: 1 !important;
}


.wrap
{
    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 100%;
}


.main
{
    position: relative;

    flex: 1 0 auto;
}


.cont
{
    position: relative;

    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}



.compensate-for-scrollbar
{
    margin-right: var(--scroll_width) !important;
}



.flex
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.currency
{
    font-family: 'PTRoubleSans';
    font-weight: normal;
}

.currency.hide{
    display:none!important;
}

.page_content .content,
.page_content aside
{
    margin-bottom: 0;
}



.breadcrumbs
{
    color: #099;
    font-family: var(--font_family2);
    font-size: 13px;
    line-height: 23px;

    margin-bottom: 20px;

    letter-spacing: .05em;
}

.breadcrumbs a
{
    color: #000;

    transition: .2s linear;
    white-space: nowrap;
    text-decoration: none;
}

.breadcrumbs a:hover
{
    color: #099;

    text-decoration: underline;
}

.breadcrumbs .sep
{
    position: relative;
    top: -1px;

    display: inline-block;

    width: 4px;
    height: 4px;
    margin: 0 10px;

    vertical-align: middle;

    border-radius: 50%;
    background: #7b8ba8;
}



.page_title
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 44px;
    font-weight: 700;
    line-height: 48px;

    margin-bottom: 25px;
    padding-bottom: 30px;

    letter-spacing: .025em;

    background: url(../images/bg_page_title.png) 0 100% no-repeat;
}

.page_title.no_bg
{
    margin-bottom: 30px;
    padding-bottom: 0;

    background: none;
}


.page_desc
{
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: 21px;

    width: 100%;
    max-width: 100%;
    margin: 0 auto 25px;

    letter-spacing: .025em;
}

.page_title.center,
.page_desc.center
{
    text-align: center;
}



.content_flex.flex,
.content_flex > .cont.flex
{
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.content_flex + .content_flex
{
    margin-top: 90px;
}

.content_flex + .content_flex.margin_mini
{
    margin-top: 30px;
}

.content_flex .content
{
    position: relative;

    width: calc(100% - var(--aside_width) - 40px);
}

.content_flex .content > :first-child
{
    margin-top: 0;
}

.content_flex .content > :last-child
{
    margin-bottom: 0;
}



.block
{
    margin-bottom: 60px;
}



.block_head
{
    margin-bottom: 40px;
}

.block_head.center
{
    padding-bottom: 40px;

    text-align: center;

    background: url(../images/bg_block_head.png) 50% 100% no-repeat;
}

.block_head .title
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: var(--font_size_title);
    line-height: 41px;

    letter-spacing: .025em;
}

.block_head .desc
{
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
}



.form
{
    --form_border_color: #999;
    --form_border_radius: 4px;
    --form_bg_color: #fff;
    --form_label_width: 189px;
}


::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

:-moz-placeholder
{
    color: var(--form_placeholder_color);
}

:-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .cols
{
    margin-left: -25px;
}

.form .cols .col
{
    width: calc(50% - 25px);
    margin-left: 25px;
}

.form .cols .col > :last-child
{
    margin-bottom: 0;
}


.form .columns
{
    margin-left: -25px;

    --columns_offset: 25px;
}

.form .columns > *
{
    width: calc(50% - var(--columns_offset));
    margin-left: var(--columns_offset);
}


.form .columns > *.width1of3
{
    width: calc(33.333% - var(--columns_offset));
}

.form .columns > *.width2of3
{
    width: calc(66.666% - var(--columns_offset));
}


.form .columns > *.width1of4
{
    width: calc(25% - var(--columns_offset));
}

.form .columns > *.width2of4
{
    width: calc(50% - var(--columns_offset));
}

.form .columns > *.width3of4
{
    width: calc(75% - var(--columns_offset));
}


.form .line
{
    margin-bottom: 25px;
}

.form .line.flex
{
    justify-content: flex-end;
}

.form .line.flex .label
{
    font-size: 18px;

    display: flex;

    width: var(--form_label_width);
    max-width: 100%;
    min-height: 42px;
    margin: 0;
    padding-right: 15px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .line.flex .field
{
    width: calc(100% - var(--form_label_width));
}

.form .line.text
{
    display: flex;

    min-height: 42px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.form .label
{
    color: #263759;
    font-family: var(--font_family2);
    font-weight: 600;
    line-height: 18px;

    margin-bottom: 7px;

    letter-spacing: .025em;
}


.form .field
{
    position: relative;
}

.form .field + .field
{
    margin-top: 13px;
}

.form .field.flex
{
    min-height: 42px;
    margin-left: -25px;

    align-items: center;
    align-content: center;
}

.form .field.flex > *
{
    margin-left: 25px;
}


.form .input
{
    color: #000;
    font: 15px var(--font_family);

    display: block;

    width: 100%;
    height: 45px;
    padding: 0 15px;

    transition: .2s linear;
    letter-spacing: .05em;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form textarea
{
    color: #000;
    font: 18px var(--font_family);

    display: block;

    width: 100%;
    height: 170px;
    padding: 10px 15px;

    resize: none;
    transition: .2s linear;
    letter-spacing: .05em;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}


.form .input:focus,
.form textarea:focus,
.form .nice-select.open .current
{
    border-color: var(--form_focus_color);
}

.form .success,
.form .success + .nice-select .current
{
    border-color: var(--form_success_color);
}

.form .error,
.form .error + .nice-select .current
{
    border-color: var(--form_error_color);
}


.form .input:disabled,
.form textarea:disabled,
.form select:disabled + .nice-select,
.form input[type=checkbox]:disabled + label,
.form input[type=radio]:disabled + label,
.form input[type=file]:disabled + label
{
    cursor: default;
    pointer-events: none;

    opacity: .5;
}

.form .error-input{
    border-color: var(--form_error_color);
    color: var(--form_error_color);
}

.form .error-input:focus{
    border-color: var(--text_color);
    color: var(--text_color);
}

.form .error_text
{
    color: var(--form_error_color);
    font-size: 14px;
    line-height: 20px;

    margin-top: 5px;
}


.form input[type=checkbox],
.form input[type=radio]
{
    display: none;
}


.form input[type=radio] + label
{
    font-family: var(--font_family2);
    font-size: 18px;
    line-height: 20px;

    position: relative;

    display: table-cell;

    min-height: 20px;
    padding-left: 27px;

    cursor: pointer;
    text-align: left;
    vertical-align: middle;
}

.form input[type=radio] + label:before
{
    position: absolute;
    top: 1px;
    left: 0;

    display: block;

    width: 17px;
    height: 17px;

    content: '';
    transition: .2s linear;

    border: 3px solid #5c6a8d;
    border-radius: 50%;
    background: #fff;
}


.form input[type=radio]:checked + label:before
{
    border-color: #263759;
    background: #099;
    box-shadow: inset 0 0 0 2px #fff;
}


.form input[type=checkbox] + label
{
    color: #666;
    font-family: var(--font_family2);
    font-size: 13px;
    line-height: 18px;

    position: relative;

    display: table-cell;

    min-height: 18px;
    padding-left: 27px;

    cursor: pointer;
    text-align: left;
    vertical-align: middle;
    letter-spacing: .025em;
}

.form input[type=checkbox] + label .icon
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 17px;
    height: 17px;

    transition: .2s linear;

    opacity: .7;

    fill: #666;
}

.form input[type=checkbox] + label a
{
    color: #666;

    transition: .2s linear;
}

.form input[type=checkbox] + label a:hover
{
    color: #000;

    text-decoration: none;
}

.form input[type=checkbox]:checked + label .icon
{
    opacity: 1;

    fill: #263759;
}


.form select
{
    display: none;
}

.form .nice-select
{
    position: relative;

    display: block;
}

.form .nice-select .current
{
    color: var(--placeholder_color);
    line-height: 43px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 45px;
    padding: 0 40px 0 20px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form .nice-select.open .current
{
    z-index: 10;
}

.form .nice-select .current.selected
{
    color: #000;
}

.form .nice-select .current:after
{
    position: absolute;
    top: 50%;
    right: 14px;

    display: block;

    width: 7px;
    height: 7px;
    margin-top: -6px;

    content: '';
    transform: rotate(-45deg);

    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
}

.form .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;
    padding: 13px 0 10px;

    transition: .2s linear;

    opacity: 0;
    border: 1px solid #e9e9e8;
    border-radius: 0 0 var(--form_border_radius) var(--form_border_radius);
    background: var(--form_bg_color);
    box-shadow: 0 0 24px rgba(0,0,0,.05);
}

.form .nice-select.open .list
{
    top: calc(100% - 4px);

    visibility: visible;

    opacity: 1;
}

.form .nice-select .list .scrollbar
{
    overflow: auto;

    max-height: 248px;
}

.form .nice-select .list .list_item
{
    color: #000;
    font-family: var(--font_family2);
    font-size: 15px;
    line-height: 17px;

    padding: 7px 15px;

    cursor: pointer;
    transition: .2s linear;
}

.form .nice-select .list .list_item:empty
{
    display: none;
}

.form .nice-select .list .list_item:hover,
.form .nice-select .list .list_item.selected
{
    color: #099;
}


.form input[type=file] + label
{
    cursor: pointer;

    flex-wrap: nowrap;
}

.form input[type=file] + label .btn
{
    line-height: 38px;

    display: block;

    width: var(--file_btn);
    padding: 0 20px;

    transition: .2s linear;
    text-align: center;

    border: 1px solid var(--btn_bg);
    border-radius: var(--form_border_radius);
    background: var(--btn_bg);

    --file_btn: 200px;
}

.form input[type=file] + label .path
{
    line-height: 40px;

    overflow: hidden;

    width: calc(100% - var(--file_btn) - 20px);
    margin-left: auto;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.form input[type=file] + label:hover .btn
{
    border-color: var(--btn_bg_h);
    background: var(--btn_bg_h);
}


.form .submit_btn
{
    color: #fff;
    font: 600 18px/22px var(--font_family2);

    display: inline-block;

    min-width: 290px;
    max-width: 100%;
    padding: 15px 20px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    letter-spacing: .025em;
    text-transform: uppercase;

    border: none;
    border-radius: var(--form_border_radius);
    background: #263759;
    box-shadow: 0 4px 0 #51b1a9;
}

.form .submit_btn:hover
{
    background: #51b1a9;
    box-shadow: 0 4px 0 #46847f;
}



.text_block
{
    font-family: var(--font_family2);
    line-height: 24px;

    letter-spacing: .025em;
}

.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block h1,
.text_block > .title
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 36px;
    font-weight: 300;
    line-height: 42px;

    margin-bottom: 30px;

    letter-spacing: .025em;
}

.text_block > * + .title,
.text_block * + h2
{
    margin-top: 40px;
}

.text_block .clear + .title,
.text_block .clear + h2
{
    margin-top: 30px;
}


.text_block h2
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 25px;
    font-weight: normal;
    line-height: 27px;

    margin-bottom: 25px;

    letter-spacing: .025em;
}
.text_block h3
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 23px;
    font-weight: normal;
    line-height: 27px;
    margin-bottom: 15px;
    letter-spacing: .025em;
}
.text_block h1 + h2,
.text_block img.left + h2,
.text_block img.left + h2,
.text_block .img.left + h2,
.text_block .img.left + h2
{
    margin-top: 0 !important;
}


.text_block .table_wrap
{
    margin: 40px 0;
}

.text_block h1 + *,
.text_block h2 + *
{
    margin-top: 0 !important;
}


.text_block p,
.text_block img
{
    margin-bottom: 20px;
}


.text_block img
{
    display: block;

    max-width: 100%;
}

.text_block img.left
{
    max-width: calc(50% - 45px);
    margin-top: 4px;
    margin-right: 45px;
}

.text_block img.right
{
    max-width: calc(50% - 45px);
    margin-top: 4px;
    margin-left: 45px;
}


.text_block .img
{
    width: 330px;
    max-width: 100%;
    margin-bottom: 20px;
}

.text_block .img.left
{
    width: 330px;
    max-width: calc(100% - 45px);
    margin-right: 45px;
}

.text_block .img.right
{
    width: 330px;
    max-width: calc(50% - 45px);
    margin-left: 45px;
}

.text_block .img img
{
    margin: 0 auto;
}


.text_block .space
{
    width: 100%;
    height: 1px;
    margin: 30px 0;
}


.text_block .table_wrap
{
    overflow: auto;

    max-width: 100%;
}

.text_block table
{
    width: 100%;

    table-layout: fixed;
    border-spacing: 0;
    border-collapse: collapse;
}

.text_block table th
{
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;

    padding: 15px 20px;

    text-align: left;
    vertical-align: middle;

    background: #ddd;
}

.text_block table th + th,
.text_block table td + td
{
    border-left: 1px solid #fff;
}

.text_block table td
{
    line-height: 20px;

    padding: 15px 20px;

    text-align: left;
    vertical-align: middle;
}

.text_block table tbody tr:nth-child(2n) td
{
    background: #ddd;
}


.video_link
{
    position: relative;

    display: block;

    text-decoration: none;
}

.video_link img
{
    margin: 0;
}

.video_link:after
{
    position: absolute;
    left: 50%;

    display: block;

    width: 56px;
    height: 56px;
    margin: 29px 0 0 -26px;

    content: '';

    border-radius: 50%;
    background: url(../images/bg_video_play.png) 0 0/100% 100% no-repeat,
    url(../images/ic_video_play.png) calc(50% + 3px) 50% no-repeat rgba(255,255,255,.67);
}

.big .slider_video img{
    width: 499px;
}

.big .video_link:after{
    width: 97px;
    height: 97px;
    margin: 199px 0 0 -48px;
}



.border_rope
{
    position: relative;
}

.border_rope:before
{
    position: absolute;
    top: 0;
    left: 31px;

    display: block;

    width: calc(100% - 62px);
    height: 6px;

    content: '';

    background: url(../images/bg_rope_top.png) 0 0 repeat-x;
}

.border_rope:after
{
    position: absolute;
    bottom: 0;
    left: 31px;

    display: block;

    width: calc(100% - 62px);
    height: 6px;

    content: '';
    transform: rotate(180deg);

    background: url(../images/bg_rope_top.png) 0 0 repeat-x;
}


.border_rope .bg_left,
.border_rope .bg_right
{
    position: absolute;
    top: 31px;
    left: 0;

    width: 6px;
    height: calc(100% - 62px);

    background: url(../images/bg_rope_left.png) 0 0 repeat-y;
}

.border_rope .bg_left:before,
.border_rope .bg_right:before
{
    position: absolute;
    bottom: 100%;
    left: 0;

    display: block;

    width: 31px;
    height: 31px;

    content: '';

    background: url(../images/bg_rope_corner_left.png) 0 0 no-repeat;
}

.border_rope .bg_left:after,
.border_rope .bg_right:after
{
    position: absolute;
    top: 100%;
    left: 0;

    display: block;

    width: 31px;
    height: 31px;

    content: '';
    transform: rotate(270deg);

    background: url(../images/bg_rope_corner_left.png) 0 0 no-repeat;
}

.border_rope .bg_right
{
    right: 0;
    left: auto;

    background: url(../images/bg_rope_right.png) 0 0 repeat-y;
}

.border_rope .bg_right:before,
.border_rope .bg_right:after
{
    right: 0;
    left: auto;

    background: url(../images/bg_rope_corner_right.png) 0 0 no-repeat;
}

.border_rope .bg_right:after
{
    transform: rotate(90deg);
}



.buttonUp
{
    position: fixed;
    z-index: 999;
    left: 5%;
    bottom: 5%;
    display: none;
}

.buttonUp a
{
    position: relative;

    display: block;

    border-radius: 50%;
}

.buttonUp a:before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;

    content: '';

    background: url(../images/bg_aside_products_button.png) 0 0 no-repeat;
}

.buttonUp a span
{
    position: relative;
    z-index: 9;

    display: block;

    width: 44px;
    height: 44px;

    transition: .2s linear;

    border-radius: 50%;
    background: #fff;
}

.buttonUp a span:before,
.buttonUp a span:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 14px;
    height: 14px;
    margin-top: -6px;
    margin-left: -7px;

    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);

    border-top: 1px solid #263759;
    border-right: 1px solid #263759;
}

.buttonUp a span:after
{
    margin-top: -1px;
}

.buttonUp a:hover span
{
    background: #cfb27f;
}

.buttonUp a:hover span:before,
.buttonUp a:hover span:after
{
    border-color: #fff;
}



.sorting
{
    font-family: var(--font_family2);
    font-size: 15px;
    line-height: 24px;

    position: relative;
    z-index: 99;

    display: flex;

    margin-bottom: 24px;

    letter-spacing: .05em;

    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.sorting > * + *
{
    margin-left: 50px;
}

.sorting .item
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.sorting .item .name
{
    padding-right: 15px;
}


.sorting .form
{
    --form_border_color: #ccc;
}

.sorting .form .nice-select
{
    width: 237px;
    max-width: 100%;
}



.pagination
{
    line-height: 44px;

    display: flex;

    margin-top: -10px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination.center
{
    justify-content: center;
}

.pagination.alignright
{
    justify-content: flex-end;
}

.pagination > * + *
{
    margin-left: 1px;
}

.pagination a,
.pagination .sep
{
    color: #263759;
    font-weight: 700;
    line-height: 44px;

    display: inline-block;

    width: 44px;
    height: 44px;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;

    border-radius: 50%;
    background: #f6f7f8;
}

.pagination .sep
{
    background: none;
}

.pagination a:hover,
.pagination a.active
{
    color: #fff;

    background: #7d879b;
}


.pagination .prev,
.pagination .next
{
    position: relative;

    transition: .2s linear;

    background: #fff;
}

.pagination .prev
{
    margin-right: 51px;
}

.pagination .next
{
    margin-left: 51px;
}

.pagination .prev:before,
.pagination .next:before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;

    content: '';

    background: url(../images/bg_main_slider_button.png) 0 0 no-repeat;
}

.pagination .prev:after,
.pagination .next:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 14px;
    height: 14px;
    margin-top: -7px;

    content: '';
    transition: border-color .2s linear;
    transform: rotate(-45deg);
}

.pagination .prev:after
{
    margin-left: -4px;

    border-top: 1px solid var(--text_color);
    border-left: 1px solid var(--text_color);
}

.pagination .next:after
{
    margin-left: -11px;

    border-right: 1px solid var(--text_color);
    border-bottom: 1px solid var(--text_color);
}

.pagination .prev:hover,
.pagination .next:hover
{
    background: #263759;
}

.pagination .prev:hover:after,
.pagination .next:hover:after
{
    border-color: #fff;
}


.overlay
{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,.7);
}



/*---------------
   Header
---------------*/
header
{
    position: relative;
    z-index: 999;
    top: 0;
    left: 0;

    width: 100%;
    margin-bottom: 30px;

    border-top: 6px solid #51b1a9;
}

header.absolute
{
    position: absolute;

    margin: 0;

    background: none;
}

header.fixed
{
    position: fixed;
    background: #fff;
    z-index: 9999;

    margin: 0;
}



header .flex
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .info
{
    padding: 0;
    padding-bottom: 10px;
}

header.fixed .info
{
    padding: 0;
    padding-bottom: 10px;
}

header .info .cont.flex
{
    min-height: 45px;
}

header .info .cont.mobile.flex
{
    display: none;
}



header .logo
{
    position: absolute;
    z-index: 9;
    left: 50%;

    top: 0px;
    margin-left: -92px;

    top: 18px;
    margin-left: -69px;
}

header.fixed .logo
{
    top: 18px;
    margin-left: -69px;
}

header .logo a,
header .logo img
{
    display: block;

    /*width: 183px;*/
    width: 128px;
    max-width: 100%;
    margin: 0 auto;
}

header.fixed .logo a
{
    width: 128px;
}



header .col_left,
header .col_right
{
    display: flex;

    width: calc(50% - 120px);

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .col_right
{
    width: calc(50% - 140px);
    padding-top: 16px;
    margin-right: 30px;
}

header .col_left
{
    padding-top: 16px;
    padding-bottom: 5px;
}

.bottom .col_left{
    padding-top: 0px;
    padding-bottom: 0px;
}

header .bottom{
    display: block;
}

header .bottom .col_right
{
    padding: 0;
}



header .phone
{
    color: #5c6a8d;
    font-family: var(--font_family2);
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;

    letter-spacing: .025em;
}

header .phone .number
{
    color: #263759;
    font-family: var(--font_family);
    font-size: 17px;
    font-weight: 600;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}



header .time
{
    color: #263759;
    font-size: 14px;
    line-height: 20px;

    padding-left: 23px;

    white-space: nowrap;
    letter-spacing: .025em;s

}

header .mes_contact
{
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

header .mes_contact a
{
    color: #263759;

    position: relative;

    display: inline-block;

    padding-left: 24px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .mes_contact a:hover
{
    color: #099;

    text-decoration: underline;
}

header .mes_contact a:hover .icon {
    fill: #099;
}

header .mes_contact a .icon
{
    position: absolute;
    top: -2px;
    left: 0;
    display: block;
    width: 19px;
    height: 24px;
    transition: .2s linear;
    fill: #c96;
}

header .office_info
{
    display: flex;
    flex-direction: column;
}

header .office
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;

    letter-spacing: .025em;
}

header .office a
{
    color: #263759;

    position: relative;

    display: inline-block;

    padding-left: 24px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .office a .icon
{
    position: absolute;
    top: 6px;
    left: 0;

    display: block;

    width: 19px;
    height: 24px;

    transition: .2s linear;

    fill: #c96;
}

header .office a:hover
{
    color: #099;

    text-decoration: underline;
}

header .office a:hover .icon
{
    fill: #099;
}



header .delivery
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;

    letter-spacing: .025em;
}

header .delivery a
{
    color: #263759;

    position: relative;

    display: inline-block;

    padding-left: 32px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .delivery a .icon
{
    position: absolute;
    top: 6px;
    left: 0;

    display: block;

    width: 20px;
    height: 20px;

    transition: .2s linear;

    fill: #c96;
}

header .delivery a:hover
{
    color: #099;

    text-decoration: underline;
}

header .delivery a:hover .icon
{
    fill: #099;
}



header .cart
{
    padding-left: 50px;
    color: #263759;
    font-family: var(--font_family2);
    font-size: 15px;
    font-weight: 700;
    line-height: 23px;

    letter-spacing: .025em;
}

header .cart a
{
    color: #263759;

    position: relative;

    display: inline-block;

    padding-left: 52px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .cart a .icon
{
    position: absolute;
    top: 50%;
    left: 0;

    display: flex;

    width: 41px;
    height: 41px;
    margin-top: -31px;

    transition: .2s linear;

    border-radius: 50%;
    background: #51b1a9;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .cart a .icon svg
{
    position: relative;
    top: -1px;

    display: block;

    width: 22px;
    height: 22px;
}

header .cart a sup
{
    font-family: var(--font_family);
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;

    display: inline-block;

    vertical-align: top;
}

header .cart a .price
{
    font-family: var(--font_family);
}

header .cart a .price .currency
{
    position: relative;
    top: -1px;

    display: inline-block;

    vertical-align: top;
}

header .cart a:hover
{
    color: #099;
}

header .cart a:hover .icon
{
    background: #c96;
}



header .mob_menu_link
{
    position: relative;
    z-index: 1000;
    top: 0;
    right: 0;

    display: none;

    width: 60px;
    height: 41px;
    margin-right: -15px;
    padding: 12px 15px;
}

header .mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #263759;
}

header .mob_menu_link span + span
{
    margin-top: 6px;
}

header .mob_menu_link.active span:nth-child(2)
{
    opacity: 0;
}

header .mob_menu_link.active span:nth-child(1)
{
    top: 8px;

    transform: rotate(45deg);
}

header .mob_menu_link.active span:nth-child(3)
{
    top: -8px;

    transform: rotate(-45deg);
}



header .bottom .cont
{
    position: relative;

    background: #263759;

    justify-content: space-between;
}

header .bottom .cont:before
{
    position: absolute;
    top: -11px;
    left: -53px;

    display: block;

    width: 74px;
    height: 58px;

    content: '';

    background: url(../images/bg_header_bottom.png) 0 0 no-repeat;
}

header .bottom .cont:after
{
    position: absolute;
    top: -11px;
    right: -53px;

    display: block;

    width: 74px;
    height: 58px;

    content: '';

    background: url(../images/bg_header_bottom2.png) 0 0 no-repeat;
}


header .bottom .mob_close
{
    position: absolute;
    top: 0;
    left: 100%;

    display: none;

    width: 50px;
    height: 65px;
    padding: 10px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .bottom .mob_close span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #2c7771;
}

header .bottom .mob_close span + span
{
    margin-top: 6px;
}

header .bottom .mob_close span:nth-child(1)
{
    top: 4px;

    transform: rotate(45deg);
}

header .bottom .mob_close span:nth-child(2)
{
    top: -4px;

    transform: rotate(-45deg);
}


header .bottom .col_left,
header .bottom .col_right
{
    width: calc(50% - 64px);
}


header .menu
{
    position: relative;

    width: 100%;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

header .bottom .col_right .menu
{
    width: calc(100% - 260px);
}

header .menu .item
{
    position: relative;
}

header .menu .item > a
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 700;
    line-height: normal;

    position: relative;

    display: flex;

    min-height: 58px;
    padding: 0 36px;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .menu .item:hover > a,
header .menu .item > a.active
{
    background: #51b1a9;
}



header .search
{
    width: 237px;
    max-width: 100%;
}

header .search form
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .search .input
{
    color: #ccc;
    font-family: var(--font_family2);
    font-size: 15px;
    font-weight: 500;

    display: block;

    width: 100%;
    height: 45px;
    padding: 0 50px 0 20px;

    border: 1px solid rgba(204,204,204,.1);
    border-radius: 5px;
    background: rgba(255,255,255,.2);
}

.article h3 {
    font-size: 20px;
}

header .search .submit_btn
{
    position: relative;

    display: flex;

    width: 41px;
    height: 45px;
    margin-left: -41px;

    cursor: pointer;

    border: none;
    background: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .search .submit_btn svg
{
    display: block;

    width: 19px;
    height: 19px;

    fill: #fff;
}

header .cat_btn
{
    /*display: none;*/
}

header .info .cont.mobile.flex .right_mobile_col .three_row div a span:nth-child(3)
{
    display: none;
}

@-webkit-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}
@-moz-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}
@keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}



/*---------------
   Sidebar
---------------*/
aside
{
    position: relative;

    width: var(--aside_width);
    max-width: 100%;
}



aside .cats .mob_link
{
    color: #fff;
    font: 600 14px/18px var(--font_family2);

    display: none;

    padding: 13px 20px 11px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;

    border-radius: 4px;
    background: #263759;
}

aside .cats .mob_link:hover
{
    background: #51b1a9;
    box-shadow: 0 4px 0 #46847f;
}


aside .cats .items
{
    position: relative;
    /*display: none;*/
}

aside .cats .mob_close
{
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    width: 50px;
    height: 65px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin-left: -50px;
    margin-top: -15px;
}

aside .cats .mob_close span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #2c7771;
}

aside .cats .mob_close span + span
{
    margin-top: 6px;
}

aside .cats .mob_close span:nth-child(1)
{
    top: 4px;

    transform: rotate(45deg);
}

aside .cats .mob_close span:nth-child(2)
{
    top: -4px;

    transform: rotate(-45deg);
}



aside .cats .item + .item
{
    margin-top: 30px;
}

aside .cats .main
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 25px;
    line-height: 27px;

    padding-top: 50px;

    text-align: center;
    letter-spacing: .025em;

    background: url(../images/bg_aside_cats.png) 50% 0 no-repeat;
}

aside .cats .main a
{
    color: #263759;

    display: inline-block;
    width: 100%;
    vertical-align: top;
    text-decoration: none;
}


aside .cats .sub_cats
{
    margin-top: 20px;
}

aside .cats .sub_cats a
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-weight: 600;

    display: block;

    padding: 4px 10px;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .05em;

    border-radius: 4px;
}

aside .cats .sub_cats a:hover,
aside .cats .sub_cats a.active
{
    color: #fff;

    background: #51b1a9;
}


aside .cats .sub_cats .sub_link
{
    position: relative;
}

aside .cats .sub_cats .sub_link a
{
    width: calc(100% - 34px);
}

aside .cats .sub_cats .sub_link .arr
{
    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: 34px;
    height: 100%;

    cursor: pointer;
}

aside .cats .sub_cats .sub_link .arr:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 6px;
    height: 6px;
    margin-top: -5px;
    margin-left: -3px;

    content: '';
    transform: rotate(-45deg);

    border-bottom: 1px solid var(--text_color);
    border-left: 1px solid var(--text_color);
}

aside .cats .sub_cats .sub_link a.active + .arr:after
{
    margin-top: -2px;

    border: none;
    border-top: 1px solid #263759;
    border-right: 1px solid #263759;
}

aside .cats .sub_cats .sub_link a:hover,
aside .cats .sub_cats .sub_link a.active
{
    color: #263759;

    background: none;
}


aside .cats .sub_cats.level2
{
    display: none;

    margin: 0;
    padding: 10px 30px 20px 10px;
}

aside .cats .sub_cats.level2 a
{
    font-weight: normal;
}



aside .products
{
    padding: 30px 40px 55px;
}

aside .products .block_title
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 21px;
    font-weight: 600;
    line-height: 27px;

    margin-bottom: 25px;

    text-align: center;
    letter-spacing: .025em;
}


aside .products .owl-stage-outer
{
    overflow: hidden;
}

aside .products .owl-item
{
    visibility: visible;

    opacity: 1;
}


aside .products .product
{
    overflow: visible;

    padding: 0 10px;

    text-align: left;

    border: none;
}

aside .products .product + .product
{
    margin-top: 68px;
}

aside .products .product + .product:before
{
    position: absolute;
    top: -44px;
    left: 50%;

    display: block;

    width: 192px;
    height: 20px;
    margin-left: -96px;

    content: '';

    background: url(../images/bg_products_sep.png) 0 0 no-repeat;
}


aside .products .product .thumb
{
    padding-bottom: 71%;
}

aside .products .product .name
{
    font-size: 14px;

    margin-top: 5px;
}

aside .products .product .price
{
    font-size: 15px;
    line-height: 19px;

    min-height: 0;
    margin-top: 7px;
}

aside .products .product .price .currency
{
    line-height: 17px;

    height: 19px;
}

aside .products .product .price .old
{
    font-size: 14px;
    line-height: 22px;

    display: inline-block;

    margin-left: 8px;

    vertical-align: top;
}

aside .products .product:hover
{
    box-shadow: none;
}



aside .text_img,
aside .text_img img
{
    display: block;

    max-width: 100%;

    text-decoration: none;
}



/*---------------
   Main section
---------------*/
.owl-carousel .slide
{
    display: none;
}

.owl-carousel,
.owl-loaded .slide,
.main_slider .slider .slide:first-child,
aside .products .slider .slide:first-child
{
    display: block !important;
}



.main_slider
{
    position: relative;
    top: -22px;

    margin-bottom: 38px;
}

.main_slider .slide
{
    position: relative;

    overflow: hidden;
}

.main_slider .slide .cont
{
    min-height: 492px;
    padding: 0;

    justify-content: space-between;
    align-items: center;
    align-content: center;
}


.main_slider .slide .info
{
    color: #263759;

    width: 380px;
    max-width: 100%;

    text-align: center;
}

.main_slider .slide .info > * + *
{
    margin-top: 25px;
}


.main_slider .slide .title
{
    font-family: var(--font_family2);
    font-size: 30px;
    line-height: 39px;

    padding-top: 40px;

    letter-spacing: .025em;

    background: url(../images/bg_main_slider_title.png) 50% 0 no-repeat;
}

.main_slider .slide .title b
{
    font-size: 33px;

    display: block;

    margin-top: 5px;
}


.main_slider .slide .price
{
    font-size: 23px;
    font-weight: 700;
    line-height: 25px;

    padding-bottom: 40px;

    letter-spacing: .025em;

    background: url(../images/bg_main_slider_price.png) 50% 100% no-repeat;
}

.main_slider .slide .price .old
{
    color: #515f7a;
    font-size: 15px;
    font-weight: 600;

    text-decoration: line-through;
}


.main_slider .slide .img
{
    width: calc(100% - 380px);

    text-align: center;
}

.main_slider .slide .img a
{
    display: inline-block;

    vertical-align: top;
}

.main_slider .slide .img img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.main_slider .counter
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 18px;
    line-height: 44px;

    position: absolute;
    z-index: 10;
    bottom: 32px;
    left: 62px;

    letter-spacing: .025em;
}



.products .block_title
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 36px;
    font-weight: 300;
    line-height: 40px;

    margin-bottom: 32px;

    letter-spacing: .025em;
}

.products .block_title.with_slider
{
    width: calc(100% - 230px);
}

div.items div.list:last-child{
    padding-bottom: 50px;
}

.products .owl-stage-outer
{
    overflow: visible;
}

.products .owl-item
{
    visibility: hidden;

    transition: .2s linear;

    opacity: 0;
}

.products .owl-item.active
{
    visibility: visible;

    opacity: 1;
}

.products .owl-item + .owl-item .product
{
    margin-left: -1px;
}

.products .owl-item:hover
{
    z-index: 9;
}


.products .flex
{
    padding-bottom: var(--products_offset);
    padding-left: var(--products_offset);

    --products_count: 3;
    --products_offset: 1px;
    align-items: stretch;
    align-content: stretch;
}

.products .flex > *
{
    width: calc((100% / var(--products_count)) - (var(--products_offset) * -1));
    margin-bottom: calc(var(--products_offset) * -1);
    margin-left: calc(var(--products_offset) * -1);
}

.products .flex > *:first-child
{
    border-top-left-radius: 10px;
}

.products .flex > *:nth-child(3)
{
    border-top-right-radius: 10px;
}

.products .flex > *:nth-last-child(3)
{
    border-bottom-left-radius: 10px;
}

.products .flex > *:last-child
{
    border-bottom-right-radius: 10px;
}


.products .product
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    padding: 20px 10px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 1px solid #e9e9e8;
    background: #fff;
}


.products .product .stickers
{
    position: absolute;
    z-index: 9;
    top: 10px;
    left: 0;
}

.products .product .stickers > * + *
{
    margin-top: 9px;
}

.products .product .sticker
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 13px;
    line-height: 22px;

    position: relative;

    display: inline-block;

    height: 22px;
    padding: 0 10px;

    vertical-align: top;
    white-space: nowrap;
    letter-spacing: .025em;
}

.products .product .sticker:after
{
    position: absolute;
    top: 0;
    left: 100%;

    display: block;

    width: 8px;
    height: 22px;

    content: '';

    border-top: 11px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 11px solid transparent;
}

.products .product .sticker.new
{
    background: #263759;
}

.products .product .sticker.new:after
{
    border-top-color: #263759;
    border-bottom-color: #263759;
}

.products .product .sticker.hit
{
    background: #c96;
}

.products .product .sticker.hit:after
{
    border-top-color: #c96;
    border-bottom-color: #c96;
}

.products .product .sticker.discount
{
    background: #51b1a9;
}

.products .product .sticker.discount:after
{
    border-top-color: #51b1a9;
    border-bottom-color: #51b1a9;
}


.products .product .thumb
{
    position: relative;

    padding-bottom: 105%;
}

.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 .cat
{
    color: #666;
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: 22px;

    letter-spacing: .025em;
}

.products .product .cat a
{
    color: #666;

    position: relative;

    display: inline-block;

    padding: 0 28px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.products .product .cat a:before,
.products .product .cat a:after
{
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 16px;
    height: 1px;

    content: '';
    transition: .2s linear;

    background: #999;
}

.products .product .cat a:after
{
    right: 0;
    left: auto;
}

.products .product .cat a:hover
{
    color: #099;
}

.products .product .cat a:hover:before,
.products .product .cat a:hover:after
{
    background: #099;
}


.products .product .name
{
    color: #263759;
    font-family: var(--font_family2);
    line-height: 22px;

    width: 190px;
    max-width: 100%;
    margin: 10px auto 0;

    letter-spacing: .025em;

    flex: 1 0 auto;
}

.products .product .name a
{
    color: #263759;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.products .product .name a:hover
{
    color: #099;
}


.products .product .flex
{
    display: flex;
    flex-direction: column;
    position: relative;

    width: 250px;
    max-width: 100%;
    margin: 20px auto 0;
}

.products .product .flex .row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.products .product .flex .row.price_and_status {
    justify-content: space-between;
    margin-bottom: 24px;
}
.products .product .flex .row.yandex_badge {
    justify-content: center;
    min-height: 18px;
}

.products .product .price
{
    color: #263759;
    font-size: 24px;
    font-weight: 400;
    line-height: 22px;

    text-align: left;
    white-space: nowrap;
    letter-spacing: .025em;
}

.products .product .price .val
{
    font-size: 22px;
    font-weight: 700;
    line-height: 23px;

    letter-spacing: .025em;
}

.products .product .price .currency
{
    line-height: 19px;
    margin-left: -5px;
    position: relative;
    display: inline-block;
    height: 22px;
}

.products .product .price .old
{
    color: #515f7a;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;

    text-decoration: line-through;
}


.products .product .status
{
    display: flex;
    font-size: 10px;
    justify-content: end;
    align-items: center;
    white-space: nowrap;
    letter-spacing: .025em;
    border-radius: 10px;
    padding: 0 6px;
}

.products .product .status.green {
    background-color: rgba(51, 153, 0, 0.2);
}

.products .product .status.blue {
    background-color: rgba(0, 102, 204, 0.2);
}

.products .product .status.red {
    background-color: rgba(255, 51, 0, 0.2);
}


.products .product .status span
{
    position: relative;

    padding-left: 11px;
}

.product_info .data .status span 
{
    display: flex;
    align-items:center;

    margin: 10px 0;

    font-size: 14px;
}

.products .product .status span:before
{
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    content: '';
    border-radius: 50%;
}

.product_info .data .status span:before 
{
    display: block;

    width: 7px;
    height: 7px;

    content: '';

    border-radius: 50%;

    margin-right: 10px;
}

.products .product .status span.green,
.product_info .data .status span.green
{
    color: #390;
}

.products .product .status span.green:before,
.product_info .data .status span.green:before
{
    background: #390;
}

.products .product .status span.blue,
.product_info .data .status span.blue
{
    color: #06c;
}

.products .product .status span.blue:before,
.product_info .data .status span.blue:before
{
    background: #06c;
}

.products .product .status span.red,
.product_info .data .status span.red
{
    color: #f30;
}

.products .product .status span.red:before,
.product_info .data .status span.red:before
{
    background: #f30;
}


.products .product .buy_link
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 16px;
    font-weight: 500;
    line-height: 38px;

    width: 100%;
    height: 40px;

    cursor: pointer;
    transition: .2s linear;
    text-align: center;
    letter-spacing: .05em;

    border: none;
    border-bottom: 2px solid #51b1a9;
    border-radius: 3px;
    background: #263759;

    text-decoration: none;
    margin-bottom: 12px;
}

.products .product .buy_link:hover,
.products .product .buy_link.active
{
    background: #51b1a9;
}


.products .product:hover
{
    z-index: 9;

    box-shadow: 0 0 24px rgba(0,0,0,.05);
}



.cats_wall
{
    position: relative;

    padding: 80px 40px 60px;
}

.cats_wall .img_top
{
    position: absolute;
    z-index: 9;
    top: -94px;
    left: 50%;

    display: block;

    width: 336px;
    height: 193px;
    margin-left: -168px;

    background: #fff url(../images/bg_cats_wall_top.png) 0 0 no-repeat;
}

.cats_wall .img_bottom
{
    position: absolute;
    z-index: 9;
    bottom: -6px;
    left: 50%;

    display: block;

    width: 125px;
    height: 40px;
    margin-left: -63px;

    background: #fff url(../images/bg_cats_wall_bottom.png) 0 0 no-repeat;
}


.cats_wall .slide .item + .item
{
    margin-top: 10px;
}


.cats_wall .item
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;

    display: block;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .025em;
}

.cats_wall .item .thumb
{
    position: relative;

    margin-bottom: 2px;
    padding-bottom: 100%;
}

.cats_wall .item .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;
}

.cats_wall .item .thumb img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.cats_wall .item:hover
{
    color: #099;
}



.articles .flex
{
    margin-bottom: calc(var(--articles_offset) * -1);
    margin-left: calc(var(--articles_offset) * -1);

    --articles_count: 3;
    --articles_offset: 27px;
}

.articles .flex > *
{
    width: calc((100% / var(--articles_count)) - var(--articles_offset));
    margin-bottom: var(--articles_offset);
    margin-left: var(--articles_offset);
}


.articles .item
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;

    display: block;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .025em;
}

.articles .item > * + *
{
    margin-top: 20px;
}

.articles .item .thumb
{
    padding-bottom: 80%;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.articles .item .info > * + *
{
    margin-top: 15px;
}

.articles .item .date
{
    color: #515f7a;
    font-size: 14px;
    font-weight: normal;
}

.articles .item:hover
{
    color: #099;
}



.cart_info .block_title
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 30px;
    line-height: 34px;

    margin-bottom: 15px;

    letter-spacing: .025em;
}


.cart_info .flex
{
    margin-bottom: calc(var(--articles_offset) * -1);
    margin-left: calc(var(--articles_offset) * -1);

    --articles_count: 2;
    --articles_offset: 21px;
}

.cart_info .flex > *
{
    width: calc((100% / var(--articles_count)) - var(--articles_offset));
    margin-bottom: var(--articles_offset);
    margin-left: var(--articles_offset);
}


.cart_info .item
{
    position: relative;

    display: flex;
    overflow: hidden;

    transition: .2s linear;

    border: 1px solid #e9e9e8;
    border-radius: 10px;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}


.cart_info .item .thumb
{
    display: flex;

    width: 170px;
    max-width: 100%;
    padding: 20px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cart_info .item .thumb img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.cart_info .item .info
{
    display: flex;

    width: calc(100% - 170px);
    padding: 20px 40px 20px 20px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.cart_info .item .name
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;

    width: 100%;
    margin-bottom: 20px;
    padding-right: 20px;

    letter-spacing: .025em;
}

.cart_info .item .name a
{
    color: #263759;

    display: inline-block;

    width: 190px;
    max-width: 100%;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.cart_info .item .name a:hover
{
    color: #099;
}


.cart_info .item .price
{
    color: #263759;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    white-space: nowrap;
    letter-spacing: .025em;
}

.cart_info .item .price .currency
{
    line-height: 17px;

    height: 19px;
}

.cart_info .item .price .old
{
    color: #515f7a;
    font-size: 15px;
    font-weight: 600;
    line-height: 19px;

    text-decoration: line-through;
}

.cart_info .item .price.total
{
    font-size: 24px;
}


.cart_info .item .amount
{
    display: flex;

    width: 122px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cart_info .item .amount .input
{
    color: #263759;
    font-family: var(--font_family);
    font-size: 18px;

    display: block;

    width: calc(100% - 78px);
    height: 39px;

    text-align: center;

    border: none;
    background: none;
}

.cart_info .item .amount a
{
    color: #263759;
    font-size: 24px;
    line-height: 32px;

    display: block;

    width: 39px;
    height: 39px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 1px solid #999;
    border-radius: 50%;
}

.cart_info .item .amount a.plus
{
    line-height: 36px;
}

.cart_info .item .amount a:hover
{
    color: #fff;

    border-color: #099;
    background: #099;
}


.cart_info .item .delete
{
    position: absolute;
    top: 0;
    right: 0;

    display: flex;

    width: 58px;
    height: 58px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cart_info .item .delete .icon
{
    display: block;

    width: 18px;
    height: 18px;

    transition: .2s linear;

    fill: #5c6a8d;
}

.cart_info .item .delete:hover
{
    color: #099;

    text-decoration: underline;
}

.cart_info .item .delete:hover .icon
{
    fill: #55b3ab;
}


.cart_info .item:hover
{
    box-shadow: 0 0 24px rgba(0,0,0,.05);
}


.cart_info .cart_total
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;

    margin-top: 21px;

    text-align: center;
    letter-spacing: .025em;
}

.cart_info .cart_total > *
{
    display: inline-block;

    padding: 15px 5px 0;

    vertical-align: top;

    border-top: 5px solid #263759;
}

.cart_info .cart_total b
{
    font-family: var(--font_family);
    font-size: 30px;
    font-weight: 700;

    display: inline-block;

    height: 30px;

    vertical-align: top;
}

.cart_info .cart_total .currency
{
    line-height: 22px;

    display: inline-block;

    height: 30px;

    vertical-align: top;
}



.checkout .data
{
    display: flex;

    border: 1px solid #e9e9e8;
    border-radius: 10px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.checkout .data .block
{
    width: 100%;
    margin: 0;
    padding: 34px 34px 18px;
}

.checkout .data .block + .block
{
    border-top: 1px solid #e9e9e8;
}

.checkout .data .block.width1of2
{
    width: 50%;
}

.checkout .data .block.width1of2 + .block.width1of2
{
    border-left: 1px solid #e9e9e8;
}

.checkout .data .block .block_title
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;

    margin-bottom: 30px;

    letter-spacing: .025em;
}

.checkout .data .block_head.center
{
    padding-bottom: 50px;
}

.checkout .data .block.width1of2 .columns
{
    margin-left: -16px;

    --columns_offset: 16px;
}

.checkout .form .label
{
    white-space: nowrap;
}

.checkout .form .submit
{
    padding-top: 53px;

    text-align: center;
}



.product_info
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.product_info .images
{
    position: relative;
    z-index: 99;

    width: calc(100% - 382px);
}


.product_info .images .stickers
{
    position: absolute;
    z-index: 9;
    top: 10px;
    left: 0;
}

.product_info .images .stickers > * + *
{
    margin-top: 9px;
}

.product_info .images .sticker
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 13px;
    line-height: 22px;

    position: relative;

    display: inline-block;

    height: 22px;
    padding: 0 10px;

    vertical-align: top;
    white-space: nowrap;
    letter-spacing: .025em;
}

.product_info .images .sticker:after
{
    position: absolute;
    top: 0;
    left: 100%;

    display: block;

    width: 8px;
    height: 22px;

    content: '';

    border-top: 11px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 11px solid transparent;
}

.product_info .images .sticker.new
{
    background: #263759;
}

.product_info .images .sticker.new:after
{
    border-top-color: #263759;
    border-bottom-color: #263759;
}

.product_info .images .sticker.hit
{
    background: #c96;
}

.product_info .images .sticker.hit:after
{
    border-top-color: #c96;
    border-bottom-color: #c96;
}

.product_info .images .sticker.discount
{
    background: #51b1a9;
}

.product_info .images .sticker.discount:after
{
    border-top-color: #51b1a9;
    border-bottom-color: #51b1a9;
}


.product_info .images .big
{
    padding: 20px;

    border: 1px solid #e9e9e8;
    border-radius: 10px;
}

.product_info .images .big .slide a
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    padding-bottom: 100%;
}

.product_info .images .big .slide a:after
{
    position: absolute;
    bottom: 0;
    left: 50%;

    display: block;

    width: 41px;
    height: 41px;
    margin-left: -21px;

    content: '';

    border-radius: 50%;
    background: #dcefee url(../images/ic_zoom.svg) 50%/23px 23px no-repeat;
}


.product_info .images .thumbs
{
    margin-top: 18px;
    padding: 0 70px;
}

.product_info .images .thumbs .slide a
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    padding-bottom: 100%;

    transition: .2s linear;
    text-decoration: none;

    border: 1px solid #e9e9e8;
    border-radius: 4px;
}

.product_info .images .thumbs .slide a:hover,
.product_info .images .thumbs .slide a.active
{
    border-color: #263759;
}


.product_info .images .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 .slide img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



.product_info .data
{
    position: relative;
    z-index: 9;

    width: 344px;
    max-width: 100%;
}


.product_info .data .price
{
    color: #263759;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;

    letter-spacing: .025em;
}

.product_info .data .price b
{
    font-size: 30px;
}

.product_info .data .price .old
{
    color: #515f7a;
    font-size: 19px;
    line-height: 21px;

    margin-bottom: 5px;

    text-decoration: line-through;
}


.product_info .data .buy_link
{
    color: #fff;
    font-family: var(--font_family2);
    font-weight: 500;
    line-height: 52px;

    position: relative;

    display: block;

    height: 50px;
    margin-bottom: 30px;
    padding: 0 20px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;

    border-radius: 4px;
    background: #263759;
    box-shadow: 0 3px 0 #51b1a9;
}

.product_info .data .buy_link .icon
{
    position: absolute;
    top: 50%;
    left: 22px;

    display: block;

    width: 22px;
    height: 22px;
    margin-top: -11px;
}

.product_info .data .buy_link:hover
{
    background: #51b1a9;
    box-shadow: 0 3px 0 #46847f;
}

.buy_link.disabled 
{
    cursor: default;
    pointer-events: none;
    background-color: #a2a7b3 !important;
    border: none !important;
    box-shadow: none !important;
}


.product_info .data .exp
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 13px;
    line-height: 24px;

    margin-bottom: 25px;
    padding: 15px 19px;

    border: 2px solid #acdad6;
    border-radius: 4px;
}

.product_info .data .exp a
{
    color: #263759;
    font-weight: 700;
}

.product_info .data .exp a:hover
{
    text-decoration: none;
}


.product_info .data .desc
{
    padding-top: 30px;

    background: url(../images/bg_page_title.png) 50% 0 no-repeat;
}


.product_info .data .features
{
    margin-bottom: 30px;
}

.product_info .data .features .item
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;

    display: flex;

    letter-spacing: .025em;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}

.product_info .data .features .item + .item
{
    margin-top: 12px;
}

.product_info .data .features .item .name
{
    position: relative;

    width: 100%;
}

.product_info .data .features .item .name div
{
    position: relative;
    z-index: 2;

    display: inline-block;

    padding-right: 5px;

    vertical-align: top;

    background: #fff;
}

.product_info .data .features .item .name:after
{
    position: absolute;
    z-index: 1;
    bottom: 3px;
    left: 0;

    display: block;

    width: 100%;
    height: 2px;

    content: '';

    border-bottom: 2px dotted;
}

.product_info .data .features .item .val
{
    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 600;

    min-width: 35px;
    padding-left: 5px;

    white-space: nowrap;
}


.product_info .data .advantages
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: 18px;

    margin-top: 13px;
    padding-top: 30px;

    letter-spacing: .025em;

    background: url(../images/bg_page_title.png) 50% 0 no-repeat;
}

.product_info .data .advantages .item
{
    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .data .advantages .item + .item
{
    margin-top: 10px;
}

.product_info .data .advantages .icon
{
    display: flex;

    width: 70px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .data .advantages .icon svg
{
    display: block;

    margin: 0 auto;

    fill: #263759;
}

.product_info .data .advantages .icon .icon1
{
    width: 30px;
    height: 34px;
}

.product_info .data .advantages .icon .icon2
{
    width: 39px;
    height: 39px;
}

.product_info .data .advantages .icon .icon3
{
    width: 38px;
    height: 32px;
}

.product_info .data .advantages .icon .icon4
{
    width: 45px;
    height: 35px;
}

.product_info .data .advantages .icon .icon5
{
    width: 37px;
    height: 32px;
}

.product_info .data .advantages .name
{
    width: calc(100% - 70px);
}



.tabs
{
    position: relative;
    z-index: 9;

    display: flex;

    width: 623px;
    max-width: 100%;
    margin: 0 auto 48px;
    padding-left: 1px;

    align-items: stretch;
    align-content: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.tabs:before
{
    position: absolute;
    z-index: -1;
    top: -6px;
    left: -35px;

    display: block;

    width: 47px;
    height: 37px;

    content: '';

    background: url(../images/bg_tabs_left.png) 0 0 no-repeat;
}

.tabs:after
{
    position: absolute;
    z-index: -1;
    top: -6px;
    right: -35px;

    display: block;

    width: 47px;
    height: 37px;

    content: '';

    background: url(../images/bg_tabs_right.png) 0 0 no-repeat;
}

.tabs.left_active:before
{
    background-position: 0 100%;
}

.tabs.right_active:after
{
    background-position: 0 100%;
}

.tabs a
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-weight: 500;

    position: relative;

    display: flex;

    width: 100%;
    height: 50px;
    padding: 10px 20px;

    cursor: pointer;
    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;

    border: 1px solid #ccc;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.tabs a + a
{
    margin-left: -1px;
}

.tabs a:hover,
.tabs a.active
{
    color: #fff;

    z-index: 9;

    border-color: #263759;
    background: #263759;
}

.tab_content
{
    position: relative;

    display: none;
}



/*---------------
   Footer
---------------*/
footer
{
    flex: 0 0 auto;
}


footer .info
{
    padding: 70px 0;

    background: #263759;
}

footer .info .cont.flex
{
    align-items: flex-end;
    align-content: flex-end;
}

footer .info .cont.flex > * + *
{
    margin-left: 70px;
}



footer .logo
{
    margin-bottom: -10px;
}

footer .logo img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}



footer .contacts
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 15px;
    line-height: 19px;

    letter-spacing: .025em;
}

footer .contacts > * + *
{
    margin-top: 25px;
}


footer .contacts .phones
{
    color: #ccc;
    font-weight: 500;

    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

footer .contacts .phones > * + *
{
    margin-left: 50px;
}

footer .contacts .phone > * + *
{
    margin-top: 5px;
}

footer .contacts .phones .number
{
    color: #fff;
    font-family: var(--font_family);
    font-size: 17px;
    font-weight: 600;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}


footer .contacts .email
{
    line-height: 25px;

    width: 100%;
    padding-left: 45px;

    background: url(../images/ic_footer_email.svg) 0 50%/37px 25px no-repeat;
}

footer .contacts .email a
{
    color: #ccc;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    white-space: nowrap;
}

footer .contacts .email a:hover
{
    color: #fff;
}



footer .menu
{
    margin-bottom: -11px;

    column-gap: 60px;
    column-count: 2;
}

footer .menu > *
{
    margin-bottom: 5px;

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

footer .menu a
{
    color: #fff;
    font-family: var(--font_family2);
    font-weight: 700;

    display: inline-block;

    padding: 6px 11px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 3px;
}

footer .menu a:hover,
footer .menu a.active
{
    background: #51b1a9;
}



footer .bottom
{
    color: #ccc;
    font-size: 12px;
    line-height: 24px;

    padding: 26px 0;

    letter-spacing: .025em;

    background: #1a2843;
}

footer .bottom .cont.flex
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



footer .links a
{
    color: #ccc;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}

footer .links a:hover
{
    color: #fff;
}


footer .creator a
{
    color: #ccc;

    position: relative;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}

footer .creator a:before
{
    position: absolute;
    top: calc(100% - 2px);
    left: 1px;

    display: block;

    width: 58px;
    height: 16px;

    content: '';

    background: url(../images/ic_creator.png) 0 0 no-repeat;
}

footer .creator a:hover
{
    color: #fff;
}



/*---------------
   PopUp
---------------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 484px;
    max-width: 100%;
}

.modal_title
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;

    padding-bottom: 40px;

    text-align: center;
    letter-spacing: .025em;

    background: url(../images/bg_block_head.png) 50% 100% no-repeat;
}

.modal_data
{
    padding: 24px 22px;

    border-radius: 30px;
    background: #fff;
    box-shadow: 0 0 24px rgba(0,0,0,.05);
}


.modal .links
{
    display: flex;

    margin-top: 30px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.modal .links .continue_link
{
    color: #263759;
    font-family: var(--font_family2);
    font-weight: 700;
    line-height: 50px;

    display: block;

    width: calc(100% - 175px);
    height: 50px;
    padding: 0 20px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 1px solid;
    border-radius: 4px;
}

.modal .links .continue_link:hover
{
    color: #fff;

    border-color: #263759;
    background: #263759;
}

#success_cart_modal .preloader{
    padding-right: 50px;
}

#success_cart_modal .preloader img{
    width: 50px;
    height: 50px;
}

#success_cart_modal .preloader.hide{
    display: none;
}

#success_cart_modal .cart_link.hide{
    display: none;
}



.modal .links .cart_link
{
    color: #fff;
    font-family: var(--font_family2);
    font-weight: 500;
    line-height: 52px;

    position: relative;

    display: block;

    width: 150px;
    height: 50px;
    padding: 0 20px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;

    border-radius: 4px;
    background: #263759;
    box-shadow: 0 3px 0 #51b1a9;
}

.modal .links .cart_link:hover
{
    background: #51b1a9;
    box-shadow: 0 3px 0 #46847f;
}

aside .cats .main a:hover {
    color: #ffffff;
    background: #51b1a9;
    border-radius: 4px;
	width: 100%;
}

#office_modal img
{
    display: block;

    width: 100%;
    margin-bottom: 20px;

    border-radius: 25px;
}

#office_modal .adres
{
    color: #263759;
    font-size: 14px;
    line-height: 25px;

    padding: 0 20px;

    letter-spacing: .025em;
}

#office_modal .adres .flex
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

#office_modal .adres .link
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 13px;
    font-weight: 700;
    line-height: 35px;

    display: inline-block;

    width: 159px;
    height: 34px;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    border-radius: 4px;
    background: #263759;
    box-shadow: 0 2px 0 #51b1a9;
}

#office_modal .adres .link:hover
{
    background: #51b1a9;
    box-shadow: 0 2px 0 #46847f;
}

#success_cart_modal .modal_data
{
    padding: 35px;
}

.modal_notification .fancybox-close-small {
    top: 0;
}
.modal_notification .modal_data{
    padding: 40px;
}
.modal_notification .modal_data p{
    margin-bottom: 15px;
}
.modal_notification .links {
    display: flex!important;
    justify-content: space-around!important;
    gap: 15px!important;
}
.modal_notification .links a {
    flex: 1 0 auto!important;
    width: max-content!important;
    font-size: 15px!important;
}

.modal .product
{
    text-align: center;
}

.modal .product .name
{
    color: #263759;
    font-family: var(--font_family2);
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;

    letter-spacing: .025em;
}

.modal .product .thumb
{
    display: flex;

    height: 200px;
    margin-top: 15px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.modal .product .thumb img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



@media (min-width: 1024px)
{
    .overlay
    {
        display: none !important;
    }
}

.btn_whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    width: 70px;
    height: 70px;
    background-image: url(https://thumb.tildacdn.com/tild6162-3433-4131-b538-653830633732/-/resize/160x/-/format/webp/btn_whatsapp.png);
    background-size: contain;
}

.btn_max {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 10000;
    width: 70px;
    border-radius: 50%;
    height: 70px;
    background-image: url(../images/max-messenger-sign-logo.svg);
    background-size: contain;
}

.slider_video img{
    text-decoration: none;
    border-radius: 4px;
    padding-bottom: 0%;
    position: absolute;
    top: 0;
    left: 0;

    width: 119px;
    margin-right: 22px;
}

.slider_video img::after{
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 97px;
    height: 97px;
    margin: -48px 0 0 -48px;
    content: '';
    border-radius: 50%;
    background: url(../images/bg_video_play.png) 0 0 / 100% 100% no-repeat, url(../images/ic_video_play.png) calc(50% + 3px) 50% no-repeat rgba(255, 255, 255, .67);
}

#delivery-info{
    padding-bottom: 20px;
}

.max-svg {
    width: 24px; 
    height: 19px; 
}

.mes_contact .max a {
    padding-left: 0px;
    display: flex;
}

/*Review*/

.ya_review
{
    width: 560px;
    height: 800px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.field.hide{
    display: none;
}