@font-face
{
    font-family: 'Trebuchet MS';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/TrebuchetMS.woff') format('woff'),
    url('../fonts/TrebuchetMS.ttf') format('truetype');
}

@font-face
{
    font-family: 'Trebuchet MS';
    font-weight: normal;
    font-style: italic;

    font-display: swap;
    src: url('../fonts/TrebuchetMS-Italic.woff') format('woff'),
    url('../fonts/TrebuchetMS-Italic.ttf') format('truetype');
}

@font-face
{
    font-family: 'Trebuchet MS';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/TrebuchetMS-Bold.woff') format('woff'),
    url('../fonts/TrebuchetMS-Bold.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
{
    outline: none transparent !important;
    box-shadow: 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
{
    --color: #fff;
    --bg: #fff;
    --btn_bg: #dae2e5;
    --btn_bg_h: #eaeaea;
    --text_color: #666;
    --text_color2: #333;
    --link_color: #d09945;
    --link_color_h: #d09945;
    --form_focus_color: #666;
    --form_error_color: #cb0000;
    --form_success_color: #2cab00;
    --form_placeholder_color: #666;
    --aside_width: 310px;
    --scroll_width: 17px;
    --font_size: 14px;
    --font_size_title: 24px;
    --line_height: 21px;
    --line_height_title: 30px;
    --font_family: 'Arial', sans-serif;
    --font_family2: '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);
    font-weight: normal;
    line-height: var(--line_height);

    display: flex;
    visibility: hidden;
    overflow-x: hidden;
    flex-direction: column;

    height: 100%;

    transition: opacity .2s linear;

    opacity: 0;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

body.show
{
    visibility: visible;

    opacity: 1;
}


.wrap
{
    position: relative;

    overflow: hidden;

    flex: 1 0 auto;
}


.cont
{
    position: relative;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}



::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

:-moz-placeholder
{
    color: var(--form_placeholder_color);
}

:-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}



.fancybox-active header.fixed,
.fancybox-active header.absolute
{
    padding-right: var(--scroll_width);
}

.compensate-for-scrollbar
{
    margin-right: var(--scroll_width) !important;
}



.modal_cont
{
    position: relative;
    z-index: 99;
}

.mini_modal
{
    position: absolute;
    z-index: 99;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;

    transition: .2s linear;

    opacity: 0;
}

.mini_modal.active
{
    top: 100%;

    visibility: visible;

    opacity: 1;
}



.flex
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.content_flex.flex,
.content_flex > .cont.flex
{
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.content_flex .content
{
    position: relative;

    width: calc(100% - var(--aside_width) - 30px);
    margin-bottom: 60px;

    order: 2;
}

.content_flex .content > :first-child
{
    margin-top: 0;
}

.content_flex .content > :last-child
{
    margin-bottom: 0;
}



.hide
{
    display: none;
}



.block
{
    margin-bottom: 30px;
}



.block_head
{
    margin-bottom: 25px;
}

.block_head.center
{
    text-align: center;
}

.block_head .title
{
    font-size: var(--font_size_title);
    line-height: var(--line_height_title);
}

.block_head .title.big
{
    color: var(--text_color2);
    font-size: 23px;
    line-height: 25px;
}

.block_head .all a
{
    color: var(--text_color);
    line-height: var(--line_height_title);

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.block_head .all a:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}


.block_head .desc
{
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
}



.breadcrumbs
{
    font-size: 14px;

    margin-bottom: 30px;
}

.breadcrumbs a
{
    color: var(--text_color2);

    white-space: nowrap;
    text-decoration: none;
}

.breadcrumbs a:hover
{
    text-decoration: underline;
}

.breadcrumbs .sep
{
    position: relative;
    top: -1px;

    display: inline-block;

    width: 4px;
    height: 6px;
    margin: 0 8px;

    vertical-align: middle;
}

.breadcrumbs .sep:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 5px;
    height: 5px;
    margin-top: -2px;
    margin-left: -3px;

    content: '';
    transform: rotate(-45deg);

    border-right: 1px solid var(--text_color);
    border-bottom: 1px solid var(--text_color);
}



.page_content
{
    position: relative;

    padding-top: 5px;
    padding-bottom: 50px;
}

.page_content:before
{
    position: absolute;
    top: 0;
    left: 50%;

    display: block;

    width: 1280px;
    max-width: 100%;
    height: 1px;

    content: '';
    transform: translateX(-50%);

    background: #f1f1f1;
}

.page_content .content,
.page_content aside
{
    margin-bottom: 0;
}


.page_title
{
    color: var(--text_color2);
    font-size: 23px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 20px;
}

.page_desc
{
    width: 100%;
    max-width: 100%;
    margin: -15px auto 30px;
}

.page_title.center,
.page_desc.center
{
    text-align: center;
}



.pagination
{
    font-weight: 700;
    line-height: 20px;

    margin-top: 50px;
}

.pagination.center
{
    text-align: center;
}

.pagination.border
{
    padding-top: 20px;

    border-top: 1px solid #f1f1f1;
}

.pagination a,
.pagination .sep
{
    color: var(--text_color);

    position: relative;

    display: inline-block;

    margin: 0 10px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.pagination a:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 2px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    background: #000;
}

.pagination a:hover,
.pagination a.active
{
    color: var(--text_color2);
}

.pagination a:hover:after,
.pagination a.active:after
{
    width: 100%;
}


.pagination .prev,
.pagination .next
{
    width: 20px;
    height: 20px;

    transition: .2s linear;

    opacity: .4;
    border-radius: 50%;
    background: url(../images/ic_slider_arrows.png) 0 0 no-repeat;
    background-size: auto 100%;
}

.pagination .prev
{
    margin-right: 15px;
    margin-left: 0;
}

.pagination .next
{
    margin-right: 0;
    margin-left: 15px;

    background-position: 100% 0;
}

.pagination .prev:after,
.pagination .next:after
{
    display: none;
}

.pagination .prev:hover,
.pagination .next:hover
{
    opacity: 1;
}



.form
{
    --form_border_color: #dae2e5;
    --form_border_radius: 0;
    --form_bg_color: #fff;
    --form_label_width: 200px;
}


.form .columns
{
    margin-left: -10px;

    justify-content: space-between;
}

.form .columns .col
{
    width: calc(50% - 10px);
    margin-left: 10px;
}

.form .columns .col > :last-child
{
    margin-bottom: 0;
}


.form .cols
{
    margin-left: -10px;
}

.form .cols .line
{
    width: calc(50% - 10px);
    margin-left: 10px;
}


.form .cols .width1of3
{
    width: calc(33.333% - 10px);
}

.form .cols .width2of3
{
    width: calc(66.666% - 10px);
}


.form .cols .width1of4
{
    width: calc(25% - 10px);
}

.form .cols .width2of4
{
    width: calc(50% - 10px);
}

.form .cols .width3of4
{
    width: calc(75% - 10px);
}


.form .line
{
    margin-bottom: 15px;
}

.form .line.flex
{
    justify-content: flex-end;
}

.form .line.flex .label
{
    display: flex;

    width: var(--form_label_width);
    max-width: 100%;
    min-height: 40px;
    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: 40px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.form .label
{
    font-size: 14px;
    line-height: 18px;

    margin-bottom: 5px;

    white-space: nowrap;
}


.form .field
{
    position: relative;
}

.form .field + .field
{
    margin-top: 10px;
}

.form .field.flex
{
    min-height: 40px;
    margin-left: -10px;

    align-items: center;
    align-content: center;
}

.form .field.flex > * + *
{
    margin-left: 10px;
}


.form .input
{
    color: var(--text_color2);
    font: 18px var(--font_family);

    display: block;

    width: 100%;
    height: 40px;
    padding: 0 15px;

    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form textarea
{
    color: var(--text_color2);
    font: 18px/22px var(--font_family);

    display: block;

    width: 100%;
    height: 100px;
    padding: 10px 15px;

    resize: none;
    transition: .2s linear;

    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(--focus_color);
}

.form .success,
.form .success + .nice-select .current
{
    border-color: var(--success_color);
}

.form .error,
.form .error + .nice-select .current
{
    border-color: var(--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_text
{
    color: var(--error_color);
    font-size: 14px;
    line-height: 18px;

    margin-top: 5px;
}


.form .exp
{
    font-size: 14px;
    line-height: 20px;
}


.form .captcha img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}


.form .agree
{
    font-size: 14px;
    line-height: 18px;

    padding: 0 35px;

    text-align: center;
}

.form .agree a
{
    color: var(--text_color2);
    font-weight: 700;

    transition: .2s linear;
    text-decoration: none;
}

.form .agree a:hover
{
    color: var(--text_color);

    text-decoration: underline;
}


.form input[type=checkbox],
.form input[type=radio],
.form input[type=file]
{
    display: none;
}

.form input[type=checkbox] + label,
.form input[type=radio] + label
{
    font-size: 14px;
    line-height: 18px;

    position: relative;

    display: table-cell;

    height: 18px;
    padding-left: 22px;

    cursor: pointer;
    text-align: left;
    vertical-align: middle;
}

.form input[type=checkbox] + label a,
.form input[type=radio] + label a
{
    color: var(--text_color);

    transition: .2s linear;
}

.form input[type=checkbox] + label a:hover,
.form input[type=radio] + label a:hover
{
    color: var(--text_color2);

    text-decoration: none;
}

.form input[type=checkbox] + label:before,
.form input[type=radio] + label:before
{
    position: absolute;
    top: 2px;
    left: 0;

    display: block;

    width: 14px;
    height: 14px;

    content: '';
    transition: .2s linear;

    border: 1px solid var(--btn_bg);
}

.form input[type=radio] + label:before
{
    border-radius: 50%;
}

.form input[type=checkbox]:checked + label,
.form input[type=radio]:checked + label
{
    color: var(--text_color2);
}

.form input[type=checkbox]:checked + label:before,
.form input[type=radio]:checked + label:before
{
    border-color: var(--text_color);
    background: var(--text_color2);
    box-shadow: inset 0 0 0 1px #fff;
}


.form select
{
    display: none;
}

.form .nice-select
{
    position: relative;

    display: block;
}

.form .nice-select .current
{
    color: var(--placeholder_color);
    font-size: 18px;
    line-height: 38px;

    position: relative;
    z-index: 10;

    display: block;
    overflow: hidden;

    height: 40px;
    padding: 0 59px 0 15px;

    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 .current.selected
{
    color: var(--text_color2);
}

.form .nice-select .current:before
{
    position: absolute;
    top: -1px;
    right: -1px;

    display: block;

    width: 45px;
    height: calc(100% + 2px);

    content: '';

    background: #eaeaea;
}

.form .nice-select .current:after
{
    position: absolute;
    top: 50%;
    right: 15px;

    display: block;

    width: 12px;
    height: 12px;
    margin-top: -9px;

    content: '';
    transform: rotate(-45deg);

    border-bottom: 2px solid var(--text_color2);
    border-left: 2px solid var(--text_color2);
}

.form .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;

    transition: .2s linear;

    opacity: 0;
    border: 1px solid var(--form_border_color);
    border-radius: 0 0 var(--form_border_radius) var(--form_border_radius);
    background: var(--form_bg_color);
}

.form .nice-select.open .list
{
    top: calc(100% - 1px);

    visibility: visible;

    opacity: 1;
}

.form .nice-select .list .scrollbar
{
    overflow: hidden;

    max-height: 240px;
}

.form .nice-select .list .list_item
{
    color: var(--text_color2);

    padding: 10px 20px;

    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
{
    background: var(--form_border_color);
}


.form input[type=file] + label
{
    cursor: pointer;

    flex-wrap: nowrap;
}

.form input[type=file] + label .btn
{
    font-size: 14px;
    line-height: 44px;

    display: block;

    width: 150px;
    padding: 0 10px;

    transition: .2s linear;
    text-align: center;

    border-radius: var(--form_border_radius);
    background: var(--btn_bg_h);

    --file_btn: 200px;
}

.form input[type=file] + label .path
{
    color: var(--text_color2);
    font-size: 18px;
    line-height: 42px;

    overflow: hidden;

    width: calc(100% - 149px);
    height: 44px;
    margin-right: -1px;
    margin-left: auto;
    padding: 0 15px;

    white-space: nowrap;
    text-overflow: ellipsis;

    border: 1px solid var(--btn_bg);
}

.form input[type=file] + label:hover .btn
{
    background: var(--btn_bg);
}



.form .rating .stars
{
    display: flex;

    height: 22px;
    margin: 7px 0 22px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .rating div.star-rating
{
    display: inline-block;
    overflow: hidden;

    width: 24px;
    height: 22px;

    cursor: pointer;
    vertical-align: top;
    text-indent: -999em;

    background: transparent;
}

.form .rating div.star-rating + div.star-rating
{
    margin-left: 9px;
}

.form .rating div.rating-cancel,
.form .rating div.rating-cancel a
{
    display: none !important;
}

.form .rating div.star-rating,
.form .rating div.star-rating a
{
    background: url(../images/ic_star3.png) no-repeat 0 0;
}
.form .rating div.rating-cancel a,
.form .rating div.star-rating a
{
    display: block;

    width: 24px;
    height: 100%;

    border: 0;
    background-position: 0 0;
}
.form .rating div.star-rating-on a,
.form .rating div.star-rating-hover a
{
    background-position: 0 100% !important;
}

.form .rating div.star-rating-readonly a
{
    cursor: default !important;
}

.form .rating div.star-rating
{
    overflow: hidden!important;

    background: transparent!important;
}


.form .submit
{
    padding-top: 15px;

    text-align: center;
}

.form .submit_btn
{
    color: var(--text_color2);
    font: 700 14px/48px var(--font_family);

    display: inline-block;

    height: 50px;
    padding: 0 30px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    letter-spacing: .05em;
    text-transform: uppercase;

    border: 1px solid var(--btn_bg);
    border-radius: var(--form_border_radius);
    background: var(--btn_bg);
}

.form .submit_btn:hover
{
    border-color: var(--btn_bg_h);
    background: var(--btn_bg_h);
}



.text_block > :last-child,
.text_block .cols .col > :last-child,
.text_block blockquote > :last-child,
.text_block q > :last-child,
.text_block .info_block .col > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block h1,
.text_block > .title
{
    color: var(--text_color2);
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;

    margin-bottom: 25px;
}

.text_block > * + .title,
.text_block * + h2,
.text_block * + h3,
.text_block * + h4,
.text_block * + h5,
.text_block * + h6
{
    margin-top: 40px;
}

.text_block .clear + .title,
.text_block .clear + h2,
.text_block .clear + h3,
.text_block .clear + h4,
.text_block .clear + h5,
.text_block .clear + h6
{
    margin-top: 30px;
}


.text_block h2
{
    color: var(--text_color2);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;

    margin-bottom: 25px;
}

.text_block h1 + h2
{
    margin-top: 0 !important;
}


.text_block h3
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;

    margin-bottom: 20px;
}

.text_block h1 + h3,
.text_block h2 + h3
{
    margin-top: 0 !important;
}


.text_block h4
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;

    margin-bottom: 20px;
}

.text_block h1 + h4,
.text_block h2 + h4,
.text_block h3 + h4
{
    margin-top: 0 !important;
}


.text_block h5
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;

    margin-bottom: 20px;
}

.text_block h1 + h5,
.text_block h2 + h5,
.text_block h3 + h5,
.text_block h4 + h5
{
    margin-top: 0 !important;
}


.text_block h6
{
    color: var(--text_color);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;

    margin-bottom: 20px;
}

.text_block h1 + h6,
.text_block h2 + h6,
.text_block h3 + h6,
.text_block h4 + h6,
.text_block h5 + h6
{
    margin-top: 0 !important;
}


.text_block .table_wrap,
.text_block .cols,
.text_block .info_block,
.text_block .gallery,
.text_block .slider_in_text,
.text_block .carousel_in_text,
.text_block .accordion,
.text_block hr
{
    margin: calc(var(--line_height) * 2) 0;
}

.text_block h1 + *,
.text_block h2 + *,
.text_block h3 + *,
.text_block h4 + *,
.text_block h5 + *,
.text_block h6 + *
{
    margin-top: 0 !important;
}


.text_block p,
.text_block img,
.text_block iframe,
.text_block ul,
.text_block ol,
.text_block blockquote,
.text_block q,
.text_block figure
{
    margin-bottom: var(--line_height);
}


.text_block img,
.text_block iframe,
.text_block figure
{
    display: block;

    max-width: 100%;
}

.text_block img.left,
.text_block iframe.left,
.text_block figure.left
{
    max-width: calc(50% - 30px);
    margin-top: 4px;
    margin-right: 30px;
}

.text_block img.right,
.text_block iframe.right,
.text_block figure.right
{
    max-width: calc(30% - 30px);
    margin-top: 4px;
    margin-left: 30px;
}


.text_block figure img
{
    display: block;

    margin: 0;
}

.text_block figure figcaption
{
    font-size: 14px;
    line-height: 17px;

    display: block;

    margin-top: 10px;

    opacity: .5;
}


.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-weight: 700;

    padding: 10px;

    text-align: left;
    vertical-align: middle;

    border-bottom: 1px solid #000;
}

.text_block table td
{
    font-size: 14px;
    line-height: 18px;

    padding: 10px;

    text-align: left;
    vertical-align: middle;

    border-bottom: 1px solid #ccc;
}

.text_block table tbody tr:last-child td
{
    border-bottom: 1px solid #000;
}

.text_block .table_exp
{
    font-size: 14px;
    line-height: 18px;

    margin-top: 15px;

    opacity: .75;
}


.text_block blockquote,
.text_block q
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 700;
    font-style: italic;

    display: block;

    width: 100%;
    margin: calc(var(--line_height) * 2) 0;
    padding-top: 5px;
    padding-left: 45px;

    background: url(../images/ic_quote.png) 0 0 no-repeat;
}


.text_block .columns
{
    margin-bottom: calc(var(--line_height) * -1) !important;

    column-gap: 60px;
    column-count: 2;
}

.text_block .columns > *
{
    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}


.text_block .cols,
.text_block .info_block
{
    justify-content: space-between;
}

.text_block .info_block .col,
.text_block .cols .col
{
    width: calc(50% - 30px);
}

.text_block .info_block .col.text
{
    align-self: center;
}

.text_block .info_block .col img,
.text_block .info_block .col iframe,
.text_block .info_block .col figure
{
    margin: 0 auto;
}


.text_block ul li
{
    position: relative;

    display: block;

    padding-left: 20px;

    list-style-type: none;
}

.text_block ul li + li
{
    margin-top: 10px;
}

.text_block ul li:before
{
    position: absolute;
    top: 10px;
    left: 0;

    display: block;

    width: 4px;
    height: 4px;

    content: '';

    border-radius: 50%;
    background: var(--text_color2);
}


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;

    padding-left: 26px;

    list-style-type: none;
}

.text_block ol li + li
{
    margin-top: 10px;
}

.text_block ol li:before
{
    color: var(--text_color2);
    font-weight: 700;

    position: absolute;
    top: 0;
    left: 0;

    content: counter(li)'.';
    counter-increment: li;
}


.text_block hr
{
    display: block;

    width: 100%;
    height: 1px;

    opacity: .3;
    border: none;
    background: var(--text_color2);
}


.text_block a
{
    color: var(--link_color);

    transition: .2s linear;
}

.text_block a:hover
{
    color: var(--link_color_h);

    text-decoration: none;
}


.text_block .slider_in_text .slide,
.text_block .carousel_in_text .slide
{
    display: none;
}

.text_block .slider_in_text .slick-initialized .slide,
.text_block .carousel_in_text .slick-initialized .slide
{
    display: block;
}

.text_block .slider_in_text .slide img,
.text_block .slider_in_text .slide figure,
.text_block .slider_in_text .slide iframe,
.text_block .carousel_in_text .slide img,
.text_block .carousel_in_text .slide figure,
.text_block .carousel_in_text .slide iframe
{
    display: block;

    width: 100%;
    margin: 0;
}

.text_block .slider_in_text .slide iframe,
.text_block .carousel_in_text .slide iframe
{
    height: 100%;
}


.text_block .carousel_in_text .slick-list
{
    margin: -10px;
}

.text_block .carousel_in_text .slide
{
    padding: 10px;
}


.text_block .gallery .flex
{
    margin-bottom: -20px;
    margin-left: -20px;
}

.text_block .gallery .item
{
    position: relative;

    display: block;
    overflow: hidden;

    width: calc(25% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}

.text_block .gallery img,
.text_block .gallery figure,
.text_block .gallery iframe
{
    display: block;

    width: 100%;
    margin: 0;
}


.text_block .spoler_link
{
    color: #b1b1b1;
    line-height: 20px;

    display: inline-block;

    margin-top: -12px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border-bottom: 1px dotted;
}

.text_block .spoler_link:hover
{
    color: var(--text_color2);
}



a[data-fancybox],
a.fancy_img
{
    position: relative;

    display: block;
    overflow: hidden;

    cursor: zoom-in;
}

a[data-fancybox]:after,
a.fancy_img:after
{
    position: absolute;
    right: 10px;
    bottom: 10px;

    display: block;

    width: 40px;
    height: 40px;

    content: '';

    background: #f1f1f1 url(../images/ic_zoom.png) 50% no-repeat;
}



.grayscale
{
    transition: .5s linear;

    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.grayscale:hover
{
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}



.accordion .item + .item
{
    margin-top: 10px;
}

.accordion .item .title
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding: 10px 40px 10px 30px;
    cursor: pointer;
    transition: .2s linear;
    background: #ecf1f3;
}

.accordion .item .title:after
{
    position: absolute;
    top: 50%;
    right: 20px;

    display: block;

    width: 12px;
    height: 12px;
    margin-top: -8px;

    content: '';
    transition: border-color .2s linear;
    transform: rotate(-45deg);

    border-bottom: 2px solid var(--text_color2);
    border-left: 2px solid var(--text_color2);
}

.accordion .item .title:hover,
.accordion .item .title.active
{
    background: var(--btn_bg_h);
}

.accordion .item .title.active:after
{
    margin-top: -2px;

    border: none;
    border-top: 2px solid var(--text_color2);
    border-right: 2px solid var(--text_color2);
}

.accordion .item .data
{
    display: none;

    padding: 25px 40px;

    background: #f5f5f5;
}



a.video_link
{
    position: relative;

    display: block;
    overflow: hidden;
}

a.video_link:after
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;

    opacity: 1 !important;
    background: rgba(0,0,0,.5) url(../images/ic_video_link.svg) 50% no-repeat !important;
    background-size: auto 140px !important;
}

a.video_link:hover:after
{
    background-color: rgba(0,0,0,.7) !important;
}



.tooltip
{
    position: relative;

    display: inline-block;

    vertical-align: middle;
}

.tooltip .icon
{
    display: block;

    width: 14px;
    height: 14px;

    cursor: help;

    border-radius: 50%;
    background: url(../images/ic_tooltip.png) 0 0 no-repeat;
}

.tooltip .text
{
    font-size: 14px;
    font-weight: normal;

    position: absolute;
    z-index: 99;
    top: 50%;
    right: calc(100% + 54px);

    visibility: hidden;

    width: 310px;
    padding: 20px;

    transition: .2s linear;
    transform: translateY(-50%);
    text-align: left;

    opacity: 0;
    background: #f5f5f5;
    box-shadow: 0 5px 7px rgba(0,0,0,.14);
}

.tooltip:hover .text
{
    right: calc(100% + 24px);

    visibility: visible;

    opacity: 1;
}



.tabs
{
    display: flex;

    margin-bottom: 20px;

    border-bottom: 1px solid #f1f1f1;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.tabs a
{
    color: var(--text_color);
    font-size: 12px;
    font-weight: 700;
    line-height: 32px;
    position: relative;
    display: inline-block;
    height: 32px;
    cursor: pointer;
    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    white-space: normal;
    text-decoration: none;
    text-transform: uppercase;
}

.tabs a + a
{
    margin-left: 65px;
}

.tabs a:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 2px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    background: #000;
}

.tabs a:hover,
.tabs a.active
{
    color: var(--text_color2);
}

.tabs a.active:after
{
    width: 100%;
}

.tab_content
{
    position: relative;

    display: none;
}



/*---------------
   Header
---------------*/
header
{
    position: relative;
    z-index: 999;
    top: 0;
    left: 0;

    width: 100%;
    margin: 0;
}

header.absolute
{
    position: absolute;

    margin: 0;

    background: none;
}

header.fixed
{
    position: fixed;

    margin: 0;

    -webkit-animation: moveDown .5s;
    animation: moveDown .5s;
}



header .flex
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .top
{
    font-size: 13px;
    line-height: 26px;
    padding: 5px 0;
    background: #ecedef;
}

header .top a
{
    color: var(--text_color);

    display: inherit;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .top a:hover
{
    text-decoration: underline;
}



header .info
{
    padding: 10px 0 1px;
}



header .phone
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .phone > * + *
{
    margin-left: 15px;
}

header .phone .number
{
    font-size: 13px;
    font-weight: 700;
}

header .phone .number:hover
{
    text-decoration: none;
}



header .top .links
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .top .links > * + *
{
    margin-left: 20px;
}



header .top .col_right
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .top .col_right > * + *
{
    margin-left: 20px;
}



header .lang
{
    margin-right: -20px;
}

header .lang .current
{
    position: relative;
    z-index: 1000;

    display: flex;

    padding: 0 20px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .lang .current .arr
{
    display: block;

    width: 5px;
    height: 5px;
    margin-top: -3px;
    margin-left: 6px;

    content: '';
    transform: rotate(-45deg);

    border-bottom: 1px solid var(--text_color);
    border-left: 1px solid var(--text_color);
}

header .lang .current:hover
{
    text-decoration: none;

    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.05);
}

header .lang .current.active
{
    text-decoration: none;

    background: none;
    box-shadow: none;
}

header .lang .current.active .arr
{
    margin-top: 2px;

    border: none;
    border-top: 1px solid var(--text_color);
    border-right: 1px solid var(--text_color);
}


#lang_modal
{
    top: 0;
    left: 0;

    min-width: 100%;
    padding-top: 50px;

    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.05);
}

#lang_modal a
{
    line-height: 45px;

    display: block;

    padding: 0 22px;

    white-space: nowrap;
}



header .search_link
{
    position: absolute;
    top: 50%;
    left: 20px;

    display: block;

    width: 46px;
    height: 46px;
    margin-top: -23px;
    margin-left: -13px;

    background: url(../images/ic_search.png) 50% no-repeat;
}


header .search
{position: absolute;z-index: 99;top: 0;left: 20px;display: none;width: calc(34% - 40px);padding: 1px 0 22px;background: #fff;}

header .search form
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .search form .input
{color: var(--text_color);font-family: var(--font_family);font-size: 16px;display: block;width: 100%;height: 30px;padding: 0 40px 0 0;border: none;border-bottom: 1px solid #333;background: #fff;}

header .search form .submit_btn
{position: relative;width: 30px;height: 50px;margin-left: -85px;cursor: pointer;border: none;background: url(../images/ic_search.png) 50% no-repeat;vertical-align: middle;}

header .search form .close
{color: var(--text_color);font-size: 14px;display: block;width: 40px;transition: .2s linear;text-align: center;text-decoration: none;height: 40px;}

header .search form .close:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}



header .logo
{
    margin: 0 auto;
}

header .logo a
{
    color: var(--text_color);
    font-size: 14px;
    line-height: 14px;

    display: block;

    text-align: center;
    text-decoration: none;
}

header .logo img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}

header .logo a > * + *
{
    margin-top: 10px;
}



header .info .links
{
    position: absolute;
    top: 50%;
    right: 20px;

    display: flex;

    margin-top: -23px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


header .favorite_link
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 12px;
    line-height: 46px;

    display: block;

    width: 46px;
    height: 46px;

    white-space: nowrap;
    text-decoration: none;

    background: url(../images/ic_favorite.png) 50% no-repeat;
}

header .favorite_link.active
{
    width: auto;
    padding-left: 25px;

    background-position: -18px 50%;
    background-image: url(/images/ic_favorite.png);
}


header .cart_link
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 12px;
    line-height: 46px;

    display: block;

    min-width: 46px;
    height: 46px;
    margin-right: -13px;

    white-space: nowrap;
    text-decoration: none;

    background: url(../images/ic_cart_link.png) 50% no-repeat;
}

header .cart_link.active
{
    width: auto;
    margin-right: 0;
    margin-left: 20px;
    padding-left: 25px;

    background-position: 0 50%;
}



header .mob_menu_link
{
    position: absolute;
    z-index: 1000;
    top: -69px;
    right: 20px;

    display: none;

    width: 60px;
    height: 48px;
    margin-right: -15px;
    padding: 15px;
}

header .mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #000;
}

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
{
    padding-bottom: 22px;
}


header .menu
{
    position: relative;

    width: 100%;

    justify-content: center;
    align-items: center;
    align-content: center;
}

header .menu .item
{
    position: relative;
}

header .menu .item + .item
{
    margin-left: 45px;
}

header .menu .item > a
{
    color: var(--text_color2);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    position: relative;
    display: flex;
    min-height: 32px;
    transition: .2s linear;
    text-decoration: none;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .menu .item > a:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 2px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    background: #000;
}

header .menu .item > a.red,
header .menu .item:hover > a.red,
header .menu .item > a.red.active
{
    color: #f00;
}

header .menu .item > a.red:after
{
    background: #f00;
}

header .menu .item:hover > a,
header .menu .item > a.active
{
    color: var(--text_color2);
}

header .menu .item:hover > a:after,
header .menu .item > a.active:after
{
    width: 100%;
}


header .menu .sub_menu
{
    position: absolute;
    z-index: 99;
    top: calc(100% + 30px);
    left: -90px;

    visibility: hidden;

    min-width: 100%;
    padding: 35px 55px;

    transition: .2s linear;

    opacity: 0;
    background: #f1f1f1;
}

header .menu .item:hover > a.touch_link + .sub_menu
{
    top: calc(100% + 30px);

    visibility: hidden;

    opacity: 0;
}

header .menu .item:hover .sub_menu,
header .menu .item > a.touch_link + .sub_menu.show
{
    top: 100%;

    visibility: visible;

    opacity: 1;
}

header .menu .sub_menu .columns
{
    column-gap: 60px;
    column-count: 2;
}

header .menu .sub_menu .columns > *
{
    margin-bottom: 10px;

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

header .menu .sub_menu a
{
    color: var(--text_color);
    font-weight: 700;

    position: relative;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}

header .menu .sub_menu a:before
{
    position: absolute;
    top: 10px;
    left: -20px;

    display: block;

    width: 4px;
    height: 4px;

    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);

    opacity: 0;
    border-right: 1px solid var(--text_color2);
    border-bottom: 1px solid var(--text_color2);
}

header .menu .sub_menu a span
{
    position: relative;
}

header .menu .sub_menu a span:after
{
    position: absolute;
    bottom: -3px;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    transition: width .3s linear;

    background: #000;
}

header .menu .sub_menu a:hover,
header .menu .sub_menu a.active
{
    color: var(--text_color2);
}

header .menu .sub_menu a:hover:before,
header .menu .sub_menu a.active:before
{
    opacity: 1;
}

header .menu .sub_menu a:hover span:after,
header .menu .sub_menu a.active span:after
{
    width: 100%;
}



@-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%;
    margin-bottom: 60px;

    order: 1;
}

aside > * + *
{
    margin-top: 30px;
}

aside .sticky-spacer + *
{
    margin-top: 0;
}



aside .links
{
    padding: 30px;

    background: #f1f1f1;
}

aside .links > * + *
{
    margin-top: 30px;
}

aside .links a
{
    color: var(--text_color);

    position: relative;

    display: block;

    padding-right: 15px;

    transition: .2s linear;
    text-decoration: none;
}

aside .links a:before
{
    position: absolute;
    top: 10px;
    right: 0;

    display: block;

    width: 4px;
    height: 4px;

    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);

    opacity: 0;
    border-right: 1px solid var(--text_color2);
    border-bottom: 1px solid var(--text_color2);
}

aside .links a:after
{
    position: absolute;
    bottom: -5px;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    transition: width .3s linear;

    background: #000;
}

aside .links a:hover,
aside .links a.active
{
    color: var(--text_color2);
}

aside .links a:hover:before,
aside .links a.active:before
{
    opacity: 1;
}

aside .links a:hover:after,
aside .links a.active:after
{
    width: 100%;
}



/*---------------
   Main section
---------------*/
.slick-initialized .slide
{
    display: block !important;
}



.main_slider
{
    background: #dae2e5;
}

.main_slider .slide
{
    position: relative;

    display: none;
    overflow: hidden;

    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.main_slider .slider .slide:first-child
{
    display: block;
}

.main_slider .slide .cont
{
    min-height: 350px;
    padding-top: 60px;
    padding-bottom: 60px;
    align-items: center;
    align-content: center;
}

.main_slider .slide .info
{
    line-height: 30px;
width: fit-content;
max-width: 100%;
padding: 0 115px;
position: absolute;
bottom: 40px;
right: 10px;
}

.main_slider .slide .info > * + *
{
    margin-top: 30px;
}

.main_slider .slide .title
{
    color: #000;
    font-size: 36px;
    line-height: 40px;
}

.main_slider .slide .desc
{
    min-height: 150px;
}

.main_slider .slide .link
{
    color: var(--text_color);
    line-height: 48px;

    display: flex;

    width: 200px;
    max-width: 100%;
    height: 50px;
    padding: 0 15px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 1px solid;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main_slider .slide .link .arr
{
    display: block;

    width: 12px;
    height: 12px;
    margin-left: 15px;

    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);

    border-right: 1px solid var(--text_color);
    border-bottom: 1px solid var(--text_color);
}

.main_slider .slide .link:hover
{
    color: #fff;

    border-color: var(--text_color);
    background: var(--text_color);
}

.main_slider .slide .link:hover .arr
{
    border-color: #fff;
}



.products .tabs
{
    margin-bottom: 10px;
    padding-right: 90px;
}


.products .slider
{
    display: none;
}

.products .slider.slick-initialized
{
    display: block;
}

.products .slick-list
{
    margin: -5px -14px -14px;
}

.products .slide
{
    padding: 5px 14px 14px;
}


.products .flex
{
    margin-bottom: -70px;
    margin-left: -20px;
}

.products .flex .product
{
    width: calc(25% - 20px);
    margin-bottom: 70px;
    margin-left: 20px;
}

.content .products .flex .product
{
    width: calc(33.333% - 20px);
}


.products .product
{
    position: relative;

    padding: 15px 15px 17px;

    transition: .2s linear;
    text-align: center;
}


.products .product .favorite_link
{
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;

    display: block;

    width: 38px;
    height: 36px;

    background: url(../images/ic_favorite.png) 50% no-repeat;
}


.products .product .thumb
{
    display: flex;

    height: 270px;
    margin-bottom: 15px;

    text-decoration: none;

    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 .rating
{
    display: flex;

    height: 10px;
    margin-bottom: 15px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.products .product .rating > *
{
    width: 11px;
    height: 10px;

    background: url(../images/ic_star.png) 0 0 no-repeat;
}

.products .product .rating > * + *
{
    margin-left: 3px;
}

.products .product .rating > *.active
{
    background-position: 0 100%;
}

.products .product .rating_val
{
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;

    height: 18px;
    margin-left: 10px;
}


.products .product .name
{
    font-weight: 700;
    line-height: 20px;
    /* margin-bottom: 15px; */
    padding-top: 12px;
    border-top: 1px solid #ddd;
	height:70px;
}

@media screen and (min-width:410px) and (max-width:580px)  {
	.products .product .name {height:90px}
}

@media screen  and (max-width:409px)  {
	.products .product .name {height:110px}
}

.products .product .name a
{
    color: var(--text_color);

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.products .product .name a:hover
{
    color: var(--text_color2);
}


.products .product .price
{
    color: var(--text_color2);
    font-family: var(--font_family2);
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
}

.products .product .additional-sticker
{
    font-weight: 700;
}


.products .product:hover
{
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,.08);
}



.promo_blocks .grid
{
    display: grid;
    --promo_block_height: 130px;
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: var(--promo_block_height);
}

.promo_blocks .item
{
    color: var(--text_color);
    position: relative;
    display: flex;
    padding: 20px 20px 20px;
    text-decoration: none;
    background-color: #e9f1f4;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.promo_blocks .item > *
{
    width: 100%;
}

.promo_blocks .item > * + *
{
    margin-top: 30px;
}

.promo_blocks .item .title
{
    color: var(--text_color2);
    font-size: 15px;
    font-weight: 700;
}

.promo_blocks .item .title a
{
    color: var(--text_color2);

    text-decoration: none;
}

.promo_blocks .item .title a:hover
{
    text-decoration: underline;
}

.promo_blocks .item .bottom
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 50px 30px;
}


.promo_blocks .stocks
{
    grid-column: 1 / 3;
    grid-row: 1 / 4;
}

.promo_blocks .stocks .slider
{
    position: static;

    display: none;

    padding-top: 10px;
}

.promo_blocks .stocks .slider.slick-initialized
{
    display: block;
}


.promo_blocks .stocks .slide
{
    padding-right: 20px;
}


.promo_blocks .stocks .stock
{
    width: 350px;
    max-width: 100%;
}

.promo_blocks .stocks .stock > * + *
{
    margin-top: 15px;
}

.promo_blocks .stocks .name
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 700;
}

.promo_blocks .stocks .date
{
    font-size: 14px;

    opacity: .5;
}


.promo_blocks .faq_link
{
    grid-row: 1 / 3;
    grid-column: 3 / 4;
}

.promo_blocks .intriguing_link
{
    grid-row: 1 / 3;
    grid-column: 4 / 5;
}

.promo_blocks .news_link
{
    padding: 20px;
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}


.promo_blocks a.item:hover .title
{
    text-decoration: underline;
}



.articles .block_head
{
    display: flex;

    margin-left: -25px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.articles .block_head .title,
.articles .block_head .all
{
    width: calc(50% - 25px);
    margin-left: 25px;
}


.articles .flex
{
    margin-bottom: -10px;
    margin-left: -32px;
}

.articles .flex .item
{
    width: calc(50% - 32px);
    margin-bottom: 10px;
    margin-left: 32px;
}


.articles .item
{
    color: var(--text_color);

    display: flex;

    text-decoration: none;

    background: #edf3f5;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.articles .item .thumb
{
    width: 28%;
    min-height: 200px;
    padding-bottom: 33.333%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.articles .item .info
{
    position: relative;
    width: 72%;
    padding: 12px 18px 12px;
}

.articles .item .info > * + *
{
    margin-top: 15px;
}

.articles .item .name
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 700;
}

.articles .item .date
{
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 20px 30px;
    display: none;
}

.articles a.item:hover .name
{
    text-decoration: underline;
}



.welcome .text_block
{
    color: #777;

    padding: 65px 70px 65px calc(50% + 16px);

    background: #e8eef1 url(../images/bg_welcome.jpg) 50% no-repeat;
    background-size: cover;
}

.welcome .text_block a
{
    color: #777;

    transition: .2s linear;
    text-decoration: none;
}

.welcome .text_block a:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}



.faq
{
    position: relative;
}


.faq .add_question_link
{
    color: var(--text_color);

    position: absolute;
    right: 0;
    bottom: calc(100% + 20px);

    transition: .2s linear;
    text-decoration: none;
}

.faq .add_question_link:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}


.faq .item
{
    color: var(--text_color2);
    padding: 22px;
    background: #f5f5f5;
}

.faq .item + .item
{
    margin-top: 10px;
}

.faq .item .name
{
    color: var(--text_color);
    font-size: 14px;

    margin-bottom: 12px;
}

.faq .item .text
{
    margin-bottom: 12px;
}

.faq .item .date
{
    color: var(--text_color);
    font-size: 14px;
}

.faq .item .answer_link, .faq .item .js-pocket-toggle
{
    color: var(--text_color2);
    line-height: 10px;
    display: inline-block;
    margin: 6px 0;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1px dotted;
}


.faq .item .answer
{
    display: none;

    margin-top: 15px;
    padding-left: 20px;

    border-left: 3px solid var(--text_color2);
}

.faq .item .answer .name
{
    margin-bottom: 5px;
}

.faq .item .answer .text
{
    color: #467f94;

    margin-bottom: 5px;
}



.reviews
{
    position: relative;
}


.reviews .add_review_link
{
    color: var(--text_color);

    position: absolute;
    top: 5px;
    right: 0;

    transition: .2s linear;
    text-decoration: none;
}

.reviews .add_review_link:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}


.reviews .item
{
    color: var(--text_color2);
    padding: 15px;
    background: #f5f5f5;
}

.reviews .item + .item
{
    margin-top: 10px;
}

.reviews .item .name
{
    color: var(--text_color);
    font-size: 14px;

    margin-bottom: 12px;
}

.reviews .item .rating
{
    display: flex;

    height: 10px;
    margin-top: 7px;
    margin-bottom: 12px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.reviews .item .rating > *
{
    width: 11px;
    height: 10px;

    background: url(../images/ic_star.png) 0 0 no-repeat;
}

.reviews .item .rating > * + *
{
    margin-left: 3px;
}

.reviews .item .rating > *.active
{
    background-position: 0 100%;
}

.reviews .item .text
{
    margin-bottom: 12px;
}

.reviews .item .date
{
    color: var(--text_color);
    font-size: 14px;
}


.reviews .item .answer
{
    margin-top: 15px;
    padding-left: 20px;

    border-left: 3px solid var(--text_color2);
}

.reviews .item .answer .name
{
    margin-bottom: 5px;
}

.reviews .item .answer .text
{
    color: #467f94;

    margin-bottom: 5px;
}


.reviews .spoler_link
{
    color: var(--text_color2);
    line-height: 18px;

    display: block;

    margin-top: 20px;

    transition: .2s linear;
    text-decoration: none;

    border-bottom: 1px dotted;
}

.reviews .spoler_link:after
{
    display: none;
}

.reviews .spoler_link:hover
{
    color: var(--text_color);
}



.cat_slider
{
    margin-bottom: 25px;

    background: #e5e9f1;
}

.cat_slider .slide
{
    position: relative;

    display: none;
    overflow: hidden;

    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.cat_slider .slider .slide:first-child
{
    display: block;
}

.cat_slider .slide .flex
{
    min-height: 320px;
    padding-top: 40px;
    padding-bottom: 40px;

    align-items: center;
    align-content: center;
}

.cat_slider .slide .info
{
    width: 570px;
    max-width: 100%;
    padding: 0 110px;
}

.cat_slider .slide .info > * + *
{
    margin-top: 25px;
}

.cat_slider .slide .title
{
    color: #000;
    font-size: var(--font_size_title);
    line-height: var(--line_height_title);
}

.cat_slider .slide .link
{
    color: var(--text_color);
    font-size: 14px;

    display: inline-block;

    margin-top: 40px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.cat_slider .slide .link:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}



.cat_desc
{
    margin-bottom: 25px;
}



.sub_cats .title
{
    color: var(--text_color2);
    font-size: 20px;

    margin-bottom: 15px;
}

.sub_cats .flex
{
    position: relative;

    margin-bottom: -10px;
    margin-left: -20px;
    padding-bottom: 30px;
}

.sub_cats .flex a
{
    color: var(--text_color);
    font-size: 14px;
    line-height: 20px;

    display: block;

    width: calc(20% - 20px);
    margin-bottom: 10px;
    margin-left: 20px;

    text-decoration: none;
}

.sub_cats .flex a.hide
{
    display: none;
}

.sub_cats .flex a span
{
    position: relative;
}

.sub_cats .flex a span:after
{
    position: absolute;
    bottom: -5px;
    left: 0;

    width: 0;
    height: 2px;

    content: '';
    transition: width .3s linear;

    background: #000;
}

.sub_cats .flex a:hover
{
    color: var(--text_color2);
}

.sub_cats .flex a:hover span:after
{
    width: 100%;
}


.sub_cats .flex a.spoler_link
{
    color: #b1b1b1;

    position: absolute;
    bottom: 0;
    left: 80%;

    display: inline-block;

    width: auto;

    transition: .2s linear;
    vertical-align: top;

    border-bottom: 1px dotted;
}

.sub_cats .flex a.spoler_link:after
{
    display: none;
}

.sub_cats .flex a.spoler_link:hover
{
    color: var(--text_color2);
}



.sorting
{
    position: relative;
    z-index: 100;

    display: flex;

    margin-bottom: 30px;
    margin-left: -20px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.sorting .item
{
    width: calc(33.333% - 20px);
    margin-left: 20px;
}


.sorting select
{
    display: none;
}

.sorting .nice-select
{
    position: relative;

    display: block;
}

.sorting .nice-select .current
{
    color: var(--text_color);
    line-height: 38px;

    position: relative;
    z-index: 10;

    display: block;
    overflow: hidden;

    height: 40px;
    padding: 0 34px 0 14px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

    border: 1px solid #e5e9f1;
    background: #fff;
}

.sorting .nice-select .current.selected
{
    color: var(--text_color2);
}

.sorting .nice-select .current:after
{
    position: absolute;
    top: 50%;
    right: 14px;

    display: block;

    width: 5px;
    height: 5px;
    margin-top: -3px;

    content: '';
    transform: rotate(-45deg);

    border-bottom: 1px solid var(--text_color2);
    border-left: 1px solid var(--text_color2);
}

.sorting .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;

    transition: .2s linear;

    opacity: 0;
    border: 1px solid #e5e9f1;
    background: #fff;
}

.sorting .nice-select.open .list
{
    top: calc(100% - 1px);

    visibility: visible;

    opacity: 1;
}

.sorting .nice-select .list .scrollbar
{
    overflow: hidden;

    max-height: 240px;
}

.sorting .nice-select .list .list_item
{
    font-size: 14px;
    line-height: 18px;

    padding: 11px 14px;

    cursor: pointer;
    transition: .2s linear;
}

.sorting .nice-select .list .list_item:empty
{
    display: none;
}

.sorting .nice-select .list .list_item:hover,
.sorting .nice-select .list .list_item.selected
{
    color: #000;

    background: #e5e9f1;
}



.where_buy > *:last-child
{
    margin-bottom: 0;
}


.where_buy .region
{
    width: 300px;
    max-width: 100%;
    margin-bottom: 30px;
}

.where_buy .region select
{
    display: none;
}

.where_buy .region .nice-select
{
    position: relative;

    display: block;
}

.where_buy .region .nice-select .current
{
    color: var(--text_color);
    line-height: 38px;

    position: relative;
    z-index: 10;

    display: block;
    overflow: hidden;

    height: 40px;
    padding: 0 34px 0 14px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

    border: 1px solid #e5e9f1;
    background: #fff;
}

.where_buy .region .nice-select .current.selected
{
    color: var(--text_color2);
}

.where_buy .region .nice-select .current:after
{
    position: absolute;
    top: 50%;
    right: 14px;

    display: block;

    width: 5px;
    height: 5px;
    margin-top: -3px;

    content: '';
    transform: rotate(-45deg);

    border-bottom: 1px solid var(--text_color2);
    border-left: 1px solid var(--text_color2);
}

.where_buy .region .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;

    transition: .2s linear;

    opacity: 0;
    border: 1px solid #e5e9f1;
    background: #fff;
}

.where_buy .region .nice-select.open .list
{
    top: calc(100% - 1px);

    visibility: visible;

    opacity: 1;
}

.where_buy .region .nice-select .list .scrollbar
{
    overflow: hidden;

    max-height: 240px;
}

.where_buy .region .nice-select .list .list_item
{
    font-size: 14px;
    line-height: 18px;

    padding: 11px 14px;

    cursor: pointer;
    transition: .2s linear;
}

.where_buy .region .nice-select .list .list_item:empty
{
    display: none;
}

.where_buy .region .nice-select .list .list_item:hover,
.where_buy .region .nice-select .list .list_item.selected
{
    color: #000;

    background: #e5e9f1;
}



.where_buy .block .title
{
    color: var(--text_color2);
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 20px;
}


.where_buy .block .flex
{
    margin-bottom: -40px;
    margin-left: -40px;

    align-items: stretch;
    align-content: stretch;
}

.where_buy .block .flex .elem
{
    width: calc(33.333% - 40px);
    margin-bottom: 40px;
    margin-left: 40px;
}


.where_buy .block .elem
{
    font-size: 14px;

    padding: 25px 20px 20px;

    border: 1px solid #dae2e5;
}

.where_buy .block .elem_name
{
    color: var(--text_color2);
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}

.where_buy .block .city
{
    margin-top: 5px;
}


.where_buy .block .urls
{
    margin-top: 10px;
    padding-top: 10px;

    border-top: 1px solid #e0e0e0;
}

.where_buy .block .urls .item
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.where_buy .block .urls .name
{
    width: 145px;
    max-width: 100%;
    padding-right: 15px;
}

.where_buy .block .urls .val
{
    color: var(--text_color2);

    overflow: hidden;

    width: calc(100% - 145px);

    white-space: nowrap;
    text-overflow: ellipsis;
}

.where_buy .block .urls a
{
    color: var(--text_color2);
}

.where_buy .block .urls a:hover
{
    text-decoration: none;
}


.where_buy .block .locations
{
    margin-top: 15px;
    padding-top: 15px;

    counter-reset: div;

    border-top: 1px solid #e0e0e0;
}

.where_buy .block .locations .item
{
    line-height: 18px;

    position: relative;

    display: flex;

    cursor: pointer;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.where_buy .block .locations .item + .item
{
    margin-top: 10px;
}

.where_buy .block .locations .name
{
    color: var(--text_color2);

    position: relative;

    width: calc(100% - 80px);
    padding-left: 15px;
}

.where_buy .block .locations .name:before
{
    position: absolute;
    top: 0;
    left: 0;

    content: counter(div)'.';
    counter-increment: div;
}

.where_buy .block .locations .details
{
    font-size: 12px;
    font-style: italic;

    width: 80px;

    text-align: right;
}

.where_buy .block .locations .details_info
{
    font-size: 14px;
    font-weight: normal;

    position: absolute;
    z-index: 99;
    top: 50%;
    right: 110px;

    visibility: hidden;

    width: 310px;
    max-width: calc(100% - 60px);
    padding: 20px;

    cursor: default;
    transition: .2s linear;
    transform: translateY(-50%);
    text-align: left;

    opacity: 0;
    background: #f5f5f5;
    box-shadow: 0 5px 7px rgba(0,0,0,.14);
}

.where_buy .block .locations .details_info .close
{
    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: 30px;
    height: 30px;

    background: url(../images/ic_cart_del.png) 50% no-repeat;
    background-size: 40%;
}

.where_buy .block .locations .details_info.show
{
    right: 80px;

    visibility: visible;

    opacity: 1;
}



.cart_info table
{
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
}

.cart_info table th
{
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;

    padding: 0 10px 7px;

    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.cart_info table th:first-child
{
    padding-left: 0;
}

.cart_info table th:last-child
{
    padding-right: 0;
    padding-left: 0;
}

.cart_info table tbody tr
{
    position: relative;

    border-bottom: 10px solid #fff;
}

.cart_info table td
{
    color: var(--text_color2);

    padding: 10px;

    text-align: left;
    vertical-align: middle;

    background: #f5f5f5;
}


.cart_info table td.image
{
    width: 120px;

    table-layout: fixed;
}

.cart_info table td.image a
{
    display: flex;

    height: 100px;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cart_info table td.image img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


@media (min-width: 1340px) {

    .cart_info table td.name { width: 380px; }

}

.cart_info table td.name a
{
    color: var(--text_color2);
    font-weight: 700;
    line-height: 18px;

    display: inline-block;

    width: 300px;
    max-width: 100%;

    vertical-align: top;
    text-decoration: none;
}

.cart_info table td.name a:hover
{
    text-decoration: underline;
}


.cart_info table td.price
{
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;

    width: 200px;

    table-layout: fixed;

    white-space: nowrap;
}


.cart_info table td.amount
{
    width: 175px;

    table-layout: fixed;
}

.cart_info table td.amount .box
{
    position: relative;

    display: inline-block;

    width: 110px;
    max-width: 100%;
}

.cart_info table td.amount .input
{
    color: var(--text_color2);
    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 700;

    display: block;

    width: 100%;
    height: 40px;

    text-align: center;

    border: 1px solid #e5e9f1;
    background: #fff;
}

.cart_info table td.amount a
{
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;

    display: block;

    width: 40px;
    height: 40px;
}

.cart_info table td.amount a:before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 10px;
    height: 2px;
    margin: -1px 0 0 -5px;

    content: '';

    background: var(--text_color2);
}

.cart_info table td.amount a.minus
{
    right: 0;
    left: auto;
}

.cart_info table td.amount a.plus:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 2px;
    height: 10px;
    margin: -5px 0 0 -1px;

    content: '';

    background: var(--text_color2);
}


.cart_info table td.discount
{
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;

    width: 150px;

    table-layout: fixed;

    white-space: nowrap;
}


.cart_info table td.delete
{
    position: relative;

    width: 53px;
    padding: 0;

    table-layout: fixed;
}

.cart_info table td.delete a
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    text-decoration: none;

    background: #eaeaea url(../images/ic_cart_del.png) 50% no-repeat;
}



.cart_info .cart_total
{
    display: flex;

    padding: 16px/*25px*/ 40px;

    background: #f5f5f5;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}


.cart_info .cart_total .exp
{
    color: var(--text_color2);
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: var(--line_height_title);

    max-width: 56%;
    padding: 10px 30px 10px 0;
}


.cart_info .cart_total .bonuses { display: flex; align-items: center; width: 56%; padding: 0 30px 0 0; font-weight: 700; font-size: 18px; line-height: 1.1; color: var(--text_color2); }

.cart_info .cart_total .bonuses-field { display: block; position: relative; }

.cart_info .cart_total .bonuses-field input[type="text"] { display: inline-block; position: relative; margin: 0 16px; width: 100px; height: 40px; padding-top: 2px; font-weight: 700; font-size: var(--font_size); font-family: var(--font_family); text-align: center; color: var(--text_color2); border: 1px solid #e5e9f1; background: #fff; }
.cart_info .cart_total .bonuses-field input[type="text"][readonly] { color: rgba(0, 0, 0, .35); cursor: default; }

.cart_info .cart_total .bonuses-field-btn { display: block; margin: 0 0 0 16px; width: 146px; height: 40px; padding: 0 10px; font-size: 14px; font-weight: 700; line-height: 40px; letter-spacing: .05em; text-align: center; text-decoration: none; text-transform: uppercase; color: var(--text_color2); background: var(--btn_bg); transition: .2s linear; }
.cart_info .cart_total .bonuses-field-btn:hover { background: var(--btn_bg_h); }

.cart_info .cart_total .bonuses-wrapper { display: table; position: relative; margin-top: -2px; }

.cart_info .cart_total .bonuses-wrapper > * { display: table-row; }
.cart_info .cart_total .bonuses-wrapper > * > * { display: table-cell; vertical-align: middle; }

.cart_info .cart_total .bonuses-wrapper > * ~ * > * { padding-top: 10px; }

@media (min-width: 1340px) {

    .cart_info .cart_total .bonuses-wrapper > * > *:nth-child(1) { width: 180px; }
    .cart_info .cart_total .bonuses-wrapper > * > *:nth-child(2) { width: 132px; }
    .cart_info .cart_total .bonuses-wrapper > * > *:nth-child(3) { width: 158px; }

    .cart_info .cart_total .bonuses-field-btn { margin-left: -30px; }

}

.cart_info .cart_total .info
{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    width: 44%;
    padding: 0 0 0 30px;
    border-left: 1px solid #d5d5d5;
}

.cart_info .cart_total .info > * { width: 100%; }

.cart_info .cart_total .total .item
{
    color: var(--text_color2);
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: var(--line_height_title);

    display: flex;

    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.cart_info .cart_total .total .item + .item
{
    margin-top: 5px;
}

.cart_info .cart_total .total .name
{
    width: calc(100% - 204px);
    padding-right: 30px;

    text-align: right;
}

.cart_info .cart_total .total .discount
{
    color: var(--text_color);
    font-size: 18px;
}

.cart_info .cart_total .total .val
{
    width: 204px;
}


.cart_info .cart_total .links
{
    display: flex;

    margin-top: 16px;

    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cart_info .cart_total .links > * + *
{
    margin-left: 30px;
}


.cart_info .cart_total .clear_link
{
    color: var(--text_color2);
    line-height: 18px;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    margin-top: 4px;

    border-bottom: 1px dotted;
}

.cart_info .cart_total .clear_link:hover
{
    border-color: transparent;
}


.cart_info .cart_total .checkout_link
{
    color: var(--text_color2);
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;

    display: block;

    width: 146px;
    height: 40px;
    padding: 0 10px;

    margin-right: 72px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    background: var(--btn_bg);
}

.cart_info .cart_total .checkout_link:hover
{
    background: var(--btn_bg_h);
}



.checkout_info .form
{
    display: flex;

    margin-bottom: -10px;
    margin-left: -10px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.checkout_info .form .col
{
    width: calc(33.333% - 10px);
    margin-bottom: 10px;
    margin-left: 10px;

    border: 1px solid #dae2e5;
}


.checkout_info .form .head
{
    font-size: 18px;
    font-weight: 700;

    position: relative;

    margin: -1px;
    padding: 18px;

    text-align: center;

    background: #f5f5f5;
}


.checkout_info .form .head .tooltip
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.checkout_info .form .head .tooltip .icon
{
    position: absolute;
    top: 50%;
    right: 20px;

    margin-top: -7px;
}

.checkout_info .form .head .tooltip .text
{
    right: 84px;

    max-width: calc(100% - 84px);
}

.checkout_info .form .head .tooltip:hover .text
{
    right: 84px;

    visibility: hidden;

    opacity: 0;
}

.checkout_info .form .head .tooltip .icon:hover + .text
{
    right: 54px;

    visibility: visible;

    opacity: 1;
}


.checkout_info .form .data
{
    padding: 29px;
}

.checkout_info .form .data > *:last-child
{
    margin-bottom: 0;
}

.checkout_info .form .quike_buy_link
{
    color: var(--text_color2);
    font-size: 14px;
    line-height: 48px;

    display: block;

    width: 200px;
    height: 50px;
    margin: 0 auto;
    padding: 0 15px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    border: 1px solid var(--btn_bg);
}

.checkout_info .form .quike_buy_link:hover
{
    border-color: var(--btn_bg_h);
    background: var(--btn_bg_h);
}


.checkout_info .form .total
{
    padding: 35px 0;
}

.checkout_info .form .total .item
{
    color: var(--text_color2);
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: var(--line_height_title);

    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.checkout_info .form .total .item + .item
{
    margin-top: 10px;
}

.checkout_info .form .total .small
{
    color: var(--text_color);
    font-size: 18px;
}



.lk .personal
{
    display: flex;

    padding: 30px 40px;

    background: #f5f5f5;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.lk .personal .info,
.lk .personal .form
{
    width: 50%;
    padding-right: 60px;
}

.lk .personal .info .item
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.lk .personal .info .item + .item
{
    margin-top: 20px;
}

.lk .personal .info .name
{
    font-size: 14px;

    width: 140px;
    max-width: 100%;
    padding-right: 20px;
}

.lk .personal .info .val
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 700;

    width: calc(100% - 140px);
}


.lk .personal .form
{
    display: none;
}

.lk .personal .form .submit
{
    text-align: left;
}

.lk .personal .form .cancel
{
    color: #b1b1b1;
    line-height: 20px;

    display: inline-block;

    margin-top: 14px;
    margin-left: 30px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;

    border-bottom: 1px dotted;
}

.lk .personal .form .cancel:hover
{
    color: var(--text_color2);
}


.lk .personal .links
{
    width: 50%;
    padding: 14px 0 14px 60px;

    border-left: 1px solid #d5d5d5;
}

.lk .personal .links * + *
{
    margin-top: 22px;
}

.lk .personal .links a
{
    color: var(--text_color);

    display: inline-block;

    padding-left: 40px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.lk .personal .links a.edit_personal_link
{
    line-height: 24px;

    background: url(../images/ic_edit_personal.png) 0 50% no-repeat;
}

.lk .personal .links a.edit_password_link
{
    line-height: 28px;

    background: url(../images/ic_edit_password.png) 0 50% no-repeat;
}

.lk .personal .links a.logout_link
{
    line-height: 22px;

    background: url(../images/ic_logout.png) 0 50% no-repeat;
}

.lk .personal .links a:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}



.lk .history .head.title
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.lk .history .head .col_number
{
    width: 175px;
}

.lk .history .head .col_date
{
    color: var(--text_color);
    font-size: 14px;
    font-weight: normal;

    width: 195px;
}

.lk .history .head .col_count
{
    width: 275px;
}

.lk .history .head .col_status
{
    width: 235px;
}


.lk .history .cart_info table tbody tr
{
    border: none;
}

.lk .history .cart_info table th,
.lk .history .cart_info table td
{
    border-bottom: 1px solid #ddd;
}

.lk .history .cart_info table th:last-child
{
    padding-right: 10px;
    padding-left: 10px;
}

.lk .history .cart_info table td.image
{
    width: 110px;
    padding-left: 0;
}

.lk .history .cart_info table td.amount
{
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;

    width: 200px;

    table-layout: fixed;

    white-space: nowrap;
}


.lk .history .cart_info table tfoot td
{
    padding: 20px 10px 0;

    border: none;
}

.lk .history .cart_info table tfoot td.total_text
{
    color: var(--text_color);
    font-size: 18px;
    font-weight: 700;

    text-align: right;
}



.product_info .product_name
{
    font-weight: normal;
    line-height: 36px;
}


.product_info .data
{
    justify-content: space-between;
}


.product_info .image
{
    position: relative;

    width: calc(50% - 20px);
    margin-bottom: 40px;

    border: 1px solid #f2f2f2;
}

.product_info .image a
{
    position: relative;

    display: flex;

    height: 450px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .image a img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.product_info .info
{
    width: calc(50% + 20px);
    margin-bottom: 40px;
    padding: 0 60px;
}


.product_info .info .rating_info
{
    padding-bottom: 15px;

    border-bottom: 1px solid #e3e3e3;
}

.product_info .info .rating
{
    display: flex;

    height: 18px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .info .rating > *
{
    width: 20px;
    height: 18px;

    background: url(../images/ic_star2.png) 0 0 no-repeat;
}

.product_info .info .rating > * + *
{
    margin-left: 6px;
}

.product_info .info .rating > *.active
{
    background-position: 0 100%;
}

.product_info .info .rating_val
{
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;

    height: 18px;
    margin-left: 10px;
}

.product_info .info .rating_info .add_review_link
{
    color: var(--text_color2);

    display: inline-block;

    margin-top: 12px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.product_info .info .rating_info .add_review_link:hover
{
    color: var(--text_color);

    text-decoration: underline;
}


.product_info .info .options
{
    margin-top: 20px;
    margin-bottom: -15px;
}

.product_info .info .options .cols
{
    margin-left: -25px;
}

.product_info .info .options .cols .line
{
    width: calc(50% - 25px);
    margin-left: 25px;
}


.product_info .info .options .cols .width1of3
{
    width: calc(33.333% - 25px);
}

.product_info .info .options .cols .width2of3
{
    width: calc(66.666% - 25px);
}


.product_info .info .options .cols .width1of4
{
    width: calc(25% - 25px);
}

.product_info .info .options .cols .width2of4
{
    width: calc(50% - 25px);
}

.product_info .info .options .cols .width3of4
{
    width: calc(75% - 25px);
}


.product_info .info .options .nice-select .current
{
    color: var(--text_color2);

    padding: 0 30px 0 14px;
}

.product_info .info .options .nice-select .current:before
{
    display: none;
}

.product_info .info .options .nice-select .current:after
{
    position: absolute;
    top: 50%;
    right: 14px;

    display: block;

    width: 5px;
    height: 5px;
    margin-top: -3px;

    content: '';
    transform: rotate(-45deg);

    border-bottom: 1px solid var(--text_color2);
    border-left: 1px solid var(--text_color2);
}

.product_info .info .options .nice-select .list .list_item
{
    padding: 7px 14px;
}


.product_info .info .options .amount .input
{
    font-weight: 700;

    text-align: center;
}

.product_info .info .options .amount a
{
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;

    display: block;

    width: 40px;
    height: 40px;
}

.product_info .info .options .amount a:before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 10px;
    height: 2px;
    margin: -1px 0 0 -5px;

    content: '';

    background: var(--text_color2);
}

.product_info .info .options .amount a.plus
{
    right: 0;
    left: auto;
}

.product_info .info .options .amount a.plus:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 2px;
    height: 10px;
    margin: -5px 0 0 -1px;

    content: '';

    background: var(--text_color2);
}

.product_info .info .options .product-code .field {
    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    text-align: center;
}

.product_info .info .options .product-code .product-code-value {
    color: var(--text_color2);
    font: 18px var(--font_family);
    display: block;
    width: 100%;
    padding: 0 15px;
    transition: .2s linear;
    line-height: 38px;
}

.product_info .info .price
{
    margin-top: 40px;
}

.product_info .info .price .current
{
    color: var(--text_color2);
    font-size: 18px;
    line-height: 50px;
}

.product_info .info .price .current .val
{
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 700;

    margin-left: 10px;
}

.product_info .info .price .old
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 16px;
    line-height: 20px;

    display: inline-block;

    vertical-align: top;
    text-decoration: line-through;
}

.product_info .info .price .discount
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 14px;
    line-height: 20px;

    display: inline-block;

    margin-left: 18px;

    vertical-align: top;
}


.product_info .info .buy
{
    display: flex;

    margin-top: 40px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .info .buy_link
{
    color: var(--text_color2);
    font-size: 14px;
    font-weight: 700;
    line-height: 48px;

    display: flex;

    width: 50%;
    height: 50px;
    padding: 10px 15px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    border: 1px solid var(--btn_bg);
    background: var(--btn_bg);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .info .buy_link:hover
{
    border-color: var(--btn_bg_h);
    background: var(--btn_bg_h);
}

.product_info .info .quike_buy_link
{
    color: var(--text_color2);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;

    display: flex;

    width: 50%;
    height: 50px;
    padding: 10px 15px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    border: 1px solid var(--btn_bg);
    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_info .info .quike_buy_link:hover
{
    border-color: var(--btn_bg_h);
    background: var(--btn_bg_h);
}

.product_info .stickers
{
    position: absolute;
    z-index: 99;
    top: 10px;
    left: 10px;
}

.product_info .stickers > * + *
{
    margin-top: 5px;
}

.product_info .stickers .sticker
{
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;

    min-width: 80px;
    height: 30px;
    padding: 0 12px;

    text-align: center;

    background: #f1f1f1;
}

.product_info .stickers .sticker.new
{
    color: #2cab00;
}

.product_info .stickers .sticker.new1
{
    color: #cb0000;
}

.product_info .stickers
{
    position: absolute;
    z-index: 99;
    top: 10px;
    left: 10px;
    overflow: hidden;
}

.product_info .stickers > * + *
{
    margin-top: 5px;
}

.product_info .stickers .sticker
{
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;

    min-width: 80px;
    height: 30px;
    padding: 0 12px;

    text-align: center;

    background: #f1f1f1;
}

.product .stickers
{
    position: absolute;
    z-index: 99;
    top: 10px;
    left: 10px;
}

@media (max-width: 767px) {
    .product .stickers { left: -6px; top: 0; right: 0; overflow: hidden; }
}

@media (min-width: 767px) {
    .product .stickers > div { padding-right: 50px; }
}

.product .stickers > div { float: left; /*width: 48%; margin-right: 4%; */}
.product .stickers > div:nth-child(even) { margin-right: 0; }

.product .stickers > div ~ div { margin-top: 0; }

.product .stickers .sticker {padding: 4px 6vmin;min-width: 0;height: auto;font-size: 13px;line-height: 1;background: none;}

.stickers .sticker.new
{
    color: #2cab00;
}

.stickers .sticker.new1
{
    color: #cb0000;
}


/*---------------
   Footer
---------------*/
footer
{
    padding-bottom: 60px;

    flex: 0 0 auto;
}


footer .info
{
    padding: 35px 0;

    border-top: 1px solid #f1f1f1;
}

footer .info .col
{
    width: 24%;
}

footer .info .title
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 700;

    margin-bottom: 10px;
}


footer .links > * + *
{
    margin-top: 5px;
}

footer .links a
{
    color: var(--text_color);
    line-height: 18px;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

footer .links a:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}



footer .socials
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .socials a
{
    display: flex;

    width: 36px;
    height: 36px;

    transition: .2s linear;
    text-decoration: none;

    border-radius: 50%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .socials a + a
{
    margin-left: 12px;
}

footer .socials img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



footer .contacts
{
    margin-top: 30px;
}

footer .contacts > * + *
{
    margin-top: 11px;
}

footer .contacts a
{
    color: var(--text_color);

    transition: .2s linear;
    text-decoration: none;
}

footer .contacts a:hover
{
    color: var(--text_color2);

    text-decoration: underline;
}



footer .bottom
{
    font-size: 14px;
    line-height: 18px;

    padding: 20px 0;

    border-top: 1px solid #f1f1f1;
}



/*---------------
   PopUp
---------------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 420px;
    max-width: 100%;
    padding: 0;

    border: 1px solid #dae2e5;
    background: #fff;
}

.modal_title
{
    color: var(--text_color2);
    font-size: 18px;
    font-weight: 700;

    margin: -1px;
    padding: 18px;

    text-align: center;

    background: #f5f5f5;
}

.modal_desc
{
    margin-top: 20px;

    text-align: center;
}

.modal .modal_data
{
    padding: 25px 30px;
}


.modal .text
{
    font-size: 14px;
    line-height: 18px;

    padding: 20px 0;

    text-align: center;
}

.modal .text .title
{
    color: var(--text_color2);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 10px;
}


.modal .form .recovery_link
{
    color: var(--text_color2);
    font-size: 14px;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.modal .form .recovery_link:hover
{
    color: var(--text_color);

    text-decoration: underline;
}


.modal .form .submit
{
    padding-top: 10px;
}

.modal .form .submit_btn
{
    min-width: 240px;
    max-width: 100%;
}


.modal .form .soc_auth
{
    font-size: 14px;

    margin-top: 15px;

    text-align: center;
}

.modal .form .soc_auth .socials
{
    display: flex;

    margin-top: 10px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.modal .form .soc_auth .socials a
{
    display: flex;

    width: 36px;
    height: 36px;

    transition: .2s linear;
    text-decoration: none;

    border-radius: 50%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.modal .form .soc_auth .socials a + a
{
    margin-left: 11px;
}

.modal .form .soc_auth .socials img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.modal .links
{
    display: flex;

    margin-top: 20px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.modal .links a
{
    color: var(--text_color2);
    font-size: 14px;
    font-weight: 700;
    line-height: 48px;

    display: flex;

    width: 50%;
    height: 50px;
    padding: 10px 15px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    border: 1px solid var(--btn_bg);
    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.modal .links a:hover
{
    border-color: var(--btn_bg_h);
    background: var(--btn_bg_h);
}



@media (min-width: 1024px)
{
    header .top .links
    {
        display: flex !important;
    }

    header .bottom
    {
        display: block !important;
    }
}
.modal.big_width{
    width: 900px;
}
.form textarea{
    font-size: 16px;
    height: 274px;
}

.rating {
    display: none;
}
.stock {
    display: none;
}
.discount_info{
    color: #cf984c;
}
.discount_info span{
    font-weight: 700;
}
.dilievery_info{
    margin-top: 25px;
    font-size: 17px;
}

.dilievery_info span{
    font-weight: 700;
}
