/* For old browsers */
@supports (not(--css: variables))
{
    .supports_error
    {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

/* For IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    .supports_error
    {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}



/*-----------
    Fonts
-----------*/
@font-face
{
    font-family: 'Acrom';
    font-weight: 100;
    font-style: normal;

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

@font-face
{
    font-family: 'Acrom';
    font-weight: 300;
    font-style: normal;

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

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

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

@font-face
{
    font-family: 'Acrom';
    font-weight: 500;
    font-style: normal;

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

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

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



/*------------------
    Reset styles
------------------*/
*
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

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

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            -moz-border-radius: 0;
         border-radius: 0;
         outline: none transparent !important;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;

    -webkit-appearance: none;
            -moz-appearance: none;
         appearance: none;
    -moz-outline: none !important;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #fff;
    --sidebar_width: 305px;
    --scroll_width: 17px;
    --text_color: #000;
    --font_size: 14px;
    --font_size_title: 35px;
    --font_family: 'Acrom', 'Arial', sans-serif;
}


::-moz-selection
{
    color: #fff;

    background: #000;
}


::selection
{
    color: #fff;

    background: #000;
}

::-moz-selection
{
    color: #fff;

    background: #000;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}

html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: #ccc;
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #000;
}

html.custom_scroll
{
    scrollbar-color: #000 #ccc;
    scrollbar-width: thin;
}


body
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
}

body.lock
{
    position: fixed;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
}


button
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    cursor: pointer;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    min-width: 360px;
    min-height: 100%;

    background: var(--bg);
}


.main
{
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}


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


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


.lozad
{
    -webkit-transition: opacity .5s linear;
    -o-transition: opacity .5s linear;
    -moz-transition: opacity .5s linear;
    transition: opacity .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.row
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}



.content_flex.row,
.content_flex > .cont.row
{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
}

.content_flex .content
{
    position: relative;

    width: -webkit-calc(100% - var(--sidebar_width) - 40px);

    width: -moz-calc(100% - var(--sidebar_width) - 40px);

    width: calc(100% - var(--sidebar_width) - 40px);
}

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

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

.content_flex .content > * + *
{
    margin-top: 40px;
}



.block
{
    margin-bottom: 70px;
}

.block.no_margin
{
    margin-bottom: 0 !important;
}



.owl-carousel,
.owl-carousel .slide:first-child
{
    display: block;
}

.owl-carousel .slide
{
    display: none;
}

.owl-carousel .owl-stage
{
    font-size: 0;

    white-space: nowrap;
}

.owl-carousel .owl-item
{
    font-size: var(--font_size);

    display: inline-block;

    vertical-align: top;
    white-space: normal;
}

.owl-carousel .slide .lozad
{
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;
}


.buttonUp
{
    position: fixed;
    z-index: 99;
    right: 50%;
    bottom: 22px;

    display: none;

    margin-right: -700px;
}

.buttonUp button
{
    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    width: 40px;
    height: 40px;

    -webkit-transition: background .2s linear;

    -o-transition: background .2s linear;

    -moz-transition: background .2s linear;

    transition: background .2s linear;

    -webkit-border-radius: 50%;

       -moz-border-radius: 50%;

            border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
       -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2);

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.buttonUp button span
{
    position: relative;

    display: block;

    width: 1px;
    height: 17px;

    -webkit-transition: background .2s linear;

    -o-transition: background .2s linear;

    -moz-transition: background .2s linear;

    transition: background .2s linear;

    background: #7b7b7b;
}

.buttonUp button span:after
{
    position: absolute;
    top: 2px;
    right: 0;
    left: -4px;

    display: block;

    width: 9px;
    height: 9px;
    margin: auto;

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

    border-top: 1px solid #7b7b7b;
    border-right: 1px solid #7b7b7b;
}

.buttonUp button:hover
{
    background: #000;
}

.buttonUp button:hover span
{
    background: #fff;
}

.buttonUp button:hover span:after
{
    border-color: #fff;
}



.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    opacity: .65;
    background: #000;
}



.supports_error
{
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.supports_error.show
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}



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

    width: 100%;
}


header > .close
{
    position: absolute;
    top: 0;
    left: 100%;

    display: none;

    width: 50px;
    height: 50px;

    cursor: pointer;

    border: none;
    background: none;
}

header.show > .close
{
    display: block;
}

header.show > .close:before,
header.show > .close:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 50%;
    height: 2px;
    margin: auto;

    content: '';
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #fff;
}

header.show > .close:after
{
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
}



header .top
{
    padding: 15px 0;
}

header .top .cont.row
{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
}


header .info
{
    padding: 25px 0 40px;
}

header .info .cont.row
{
    position: relative;

    min-height: 72px;

    -webkit-box-pack: justify;

    -webkit-justify-content: space-between;

       -moz-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
}



header .logo
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 130px;
    height: 72px;
    margin: auto;
}

header .logo a,
header .logo img
{
    display: block;

    width: 100%;
    height: 100%;
}



header .menu
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

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

header .menu .item > a
{
    color: #7b7b7b;
    font-size: 13px;
    line-height: 21px;

    display: block;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

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



header .phone
{
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}

header .phone a
{
    color: currentColor;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

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

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

header .phone a .icon
{
    display: block;

    width: 15px;
    height: 22px;
    margin-right: 9px;

    fill: #7b7b7b;
}



header .search
{
    width: 200px;
    max-width: 100%;
    margin-right: auto;
    margin-left: 24px;
}

header .search form
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

header .search ::-webkit-input-placeholder
{
    color: #7b7b7b;
}

header .search :-moz-placeholder
{
    color: #7b7b7b;
}

header .search :-ms-input-placeholder
{
    color: #7b7b7b;
}

header .search .input
{
    color: 12px;
    font-family: var(--font_family);
    font-size: var(--font_size);

    display: block;

    width: 100%;
    height: 30px;
    padding: 0 42px 0 15px;

    border: none;
    -webkit-border-radius: 15px;
       -moz-border-radius: 15px;
            border-radius: 15px;
    background: #ededed;
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
       -moz-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
}

header .search .submit_btn
{
    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    width: 38px;
    height: 30px;
    margin-left: -38px;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

header .search .submit_btn .icon
{
    display: block;

    width: 16px;
    height: 16px;

    -webkit-transition: opacity .2s linear;

    -o-transition: opacity .2s linear;

    -moz-transition: opacity .2s linear;

    transition: opacity .2s linear;

    opacity: .5;

    fill: #000;
}

header .search .submit_btn:hover .icon
{
    opacity: 1;
}



header .links
{
    font-size: 13px;
    line-height: 21px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    margin-left: auto;
    padding-right: 27px;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

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

header .links a,
header .links button
{
    color: currentColor;
    font-size: 13px;
    line-height: 21px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

header .links .icon
{
    display: block;

    margin-right: 10px;

    fill: currentColor;
}

header .links .account .icon
{
    width: 23px;
    height: 30px;
}

header .links .favorite .icon
{
    width: 37px;
    height: 19px;
}

header .links .cart .icon
{
    width: 27px;
    height: 30px;
}

header .links .count
{
    color: #7b7b7b;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;

    min-width: 29px;
    height: 22px;
    padding: 0 8px;

    text-align: center;

    -webkit-border-radius: 13px;

       -moz-border-radius: 13px;

            border-radius: 13px;
    background: #ededed;
}

header .links .price
{
    font-weight: 700;

    margin-left: 8px;
}


header .links a:hover,
header .links button:hover,
header .links a.active,
header .links button.active
{
    color: #7b7b7b;
}



header .cats
{
    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    border-top: 1px solid #d8d8d8;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

header .cats:before,
header .cats:after
{
    position: absolute;
    top: -3px;
    left: 0;

    display: block;

    width: 5px;
    height: 5px;

    content: '';

    border: 1px solid #d8d8d8;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: var(--bg);
}

header .cats:after
{
    right: 0;
    left: auto;
}


/* header .cats .item
{
    position: relative;
} */

header .cats .item + .item
{
    margin-left: 68px;
}

header .cats .item > a
{
    color: var(--text_color);
    font-size: var(--font_size);
    font-weight: 700;
    line-height: 22px;

    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    min-height: 70px;
    margin: -1px 0;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

header .cats .item > a.sub_link:after
{
    position: absolute;
    right: 0;
    bottom: 13px;
    left: 0;

    display: block;

    width: 12px;
    height: 6px;
    margin: auto;

    content: '';
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;

    opacity: 0;
    background: url(../images/ic_menu_arr.svg) 0 0/100% 100% no-repeat;
}

header .cats .item:hover > a,
header .cats .item > a.active
{
    color: #7b7b7b;
}

header .cats .item:hover > a.sub_link:after
{
    opacity: 1;
}

header .cats .item > a.active
{
    border-color: #7b7b7b;
}


header .cats .sub_cats
{
    position: absolute;
    z-index: 99;
    top: -webkit-calc(100% + 30px);
    top: -moz-calc(100% + 30px);
    top: calc(100% + 30px);
    left: 50%;

    visibility: hidden;

    min-width: 100%;
    padding: 25px;

    -webkit-transition: .2s linear;

    -o-transition: .2s linear;

    -moz-transition: .2s linear;

    transition: .2s linear;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    pointer-events: none;

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

header .cats .item:hover > a.touch_link + .sub_cats
{
    top: -webkit-calc(100% + 30px);
    top: -moz-calc(100% + 30px);
    top: calc(100% + 30px);

    visibility: hidden;

    opacity: 0;
}

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

    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}

header .cats .sub_cats .row
{
    margin-left: -25px;

    -webkit-flex-wrap: nowrap;

        -ms-flex-wrap: nowrap;

            flex-wrap: nowrap;
}

header .cats .sub_cats .row > *
{
    /* width: 196px; */
    width: auto;
    margin-left: 25px;
}

header .cats .sub_cats .title,
header .cats .sub_cats .title a
{
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;

    margin-bottom: 10px;
}

header .cats .sub_cats .list > * + *
{
    margin-top: 10px;
}

header .cats .sub_cats a
{
    color: #000;
    font-size: 13px;
    line-height: 17px;

    display: block;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

header .cats .sub_cats a:hover,
header .cats .sub_cats a.active
{
    color: #7b7b7b;
}



.mob_header
{
    position: relative;
    z-index: 99;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    padding: 15px 0;
}

.mob_header .cont
{
    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: justify;

    -webkit-justify-content: space-between;

       -moz-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}


.mob_header .logo
{
    margin-right: auto;
}

.mob_header .logo a,
.mob_header .logo img
{
    display: block;

    height: 60px;
}


.mob_header .phone
{
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
}

.mob_header .phone a
{
    color: currentColor;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

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

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.mob_header .phone a .icon
{
    display: block;

    width: 15px;
    height: 22px;
    margin-right: 8px;

    fill: #7b7b7b;
}


.mob_header .mob_sep
{
    position: relative;

    display: none;

    width: 100%;
    height: 1px;
    margin: 15px 0 12px;

    background: #d8d8d8;
}

.mob_header .mob_sep:before,
.mob_header .mob_sep:after
{
    position: absolute;
    top: -2px;
    left: 0;

    display: block;

    width: 5px;
    height: 5px;

    content: '';

    border: 1px solid #d8d8d8;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: var(--bg);
}

.mob_header .mob_sep:after
{
    right: 0;
    left: auto;
}


.mob_header .links
{
    font-size: 13px;
    line-height: 21px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    margin-left: 40px;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.mob_header .links > * + *
{
    margin-left: 40px;
}

.mob_header .links a,
.mob_header .links button
{
    color: currentColor;
    font-size: 13px;
    line-height: 21px;

    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.mob_header .links .icon
{
    display: block;

    fill: currentColor;
}

.mob_header .links .account .icon
{
    width: 23px;
    height: 30px;
}

.mob_header .links .favorite .icon
{
    width: 37px;
    height: 19px;
}

.mob_header .links .cart .icon
{
    width: 27px;
    height: 30px;
}

.mob_header .links .count
{
    color: #7b7b7b;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;

    min-width: 29px;
    height: 22px;
    margin-left: 8px;
    padding: 0 8px;

    text-align: center;

    -webkit-border-radius: 13px;

       -moz-border-radius: 13px;

            border-radius: 13px;
    background: #ededed;
}


.mob_header .links a:hover,
.mob_header .links button:hover,
.mob_header .links a.active,
.mob_header .links button.active
{
    color: #7b7b7b;
}


.mob_header .mob_menu_btn
{
    display: block;

    width: 48px;
    height: 38px;
    margin-right: -10px;
    margin-left: 30px;
    padding: 10px;

    cursor: pointer;

    border: none;
    background: none;
}

.mob_header .mob_menu_btn span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: #000;
}

.mob_header .mob_menu_btn span:before,
.mob_header .mob_menu_btn span:after
{
    position: absolute;
    top: -8px;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: #000;
}

.mob_header .mob_menu_btn span:after
{
    top: 8px;
}



/*-------------
    Sidebar
-------------*/
aside
{
    position: relative;

    width: var(--sidebar_width);
    max-width: 100%;
}

aside.padding
{
    padding-top: 26px;
}



aside .cats .cat
{
    position: relative;

    padding: 15px 0;

    border-bottom: 1px solid #d8d8d8;
}

aside .cats .cat > *
{
    color: currentColor;
    font-weight: 700;
    line-height: 22px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    min-height: 34px;

    text-decoration: none;

    -webkit-box-pack: justify;

    -webkit-justify-content: space-between;

       -moz-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

aside .cats .cat > * .icon
{
    position: absolute;
    top: 0;
    right: 0;

    width: 31px;
    height: 64px;
}

aside .cats .cat > * .icon:before,
aside .cats .cat > * .icon:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 11px;
    height: 1px;
    margin: auto;

    content: '';

    background: currentColor;
}

aside .cats .cat > * .icon:after
{
    width: 1px;
    height: 11px;
}


aside .cats .cat .sub_cats
{
    display: none;

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

aside .cats .cat .sub_cats > * + *
{
    margin-top: 10px;
}

aside .cats .cat .sub_cats > * > a
{
    color: currentColor;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;

    display: block;

    padding: 0 20px;

    text-decoration: none;
}


aside .cats .cat .sub_cats .sub_cats
{
    padding: 0;
}

aside .cats .cat .sub_cats .sub_cats > * + *
{
    margin-top: 0;
}

aside .cats .cat .sub_cats .sub_cats > * > a
{
    color: currentColor;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;

    display: block;

    padding: 6px 20px;

    -webkit-transition: .2s linear;

    -o-transition: .2s linear;

    -moz-transition: .2s linear;

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

aside .cats .cat .sub_cats .sub_cats > * > a:hover,
aside .cats .cat .sub_cats .sub_cats > * > a.active
{
    color: #7b7b7b;

    background: #ededed;
}



aside .mob_filter_btn
{
    color: #405e7d;
    font-size: 14px;
    font-weight: 500;

    display: none;

    width: 100%;
    height: 50px;

    -webkit-transition: .2s linear;

    -o-transition: .2s linear;

    -moz-transition: .2s linear;

    transition: .2s linear;

    background: #eceff2;
}

aside .mob_filter_btn.active
{
    color: #fff;

    background: #405e7d;
}



aside .filter
{
    margin-top: 45px;
}

aside .filter .item
{
    padding-bottom: 30px;

    border-bottom: 1px solid #d8d8d8;
}

aside .filter .item + .item
{
    margin-top: 20px;
}

aside .filter .name
{
    font-size: 13px;
    font-weight: 700;
    line-height: 21px;

    margin-bottom: 13px;
}

aside .filter .line
{
    margin-bottom: 0;
}

aside .filter .line + .line
{
    margin-top: 15px;
}


aside .filter .range .row
{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}

aside .filter .range .sep
{
    width: 25px;
    height: 1px;

    background: #7b7b7b;
}

aside .filter .range .input
{
    width: -webkit-calc(50% - 15px);
    width: -moz-calc(50% - 15px);
    width: calc(50% - 15px);

    text-align: center;

    border: none;
}


aside .filter .submit
{
    padding-top: 30px;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
}

aside .filter .reset_btn
{
    margin-left: 19px;
}



aside .banners
{
    margin-top: 70px;
}

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


aside .banners .banner
{
    color: #fff;
    font-size: 18px;
    line-height: 26px;

    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 131.15%;

    text-decoration: none;

    background: #ddd;
}

aside .banners .banner img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}

aside .banners .banner .info
{
    position: absolute;
    top: 0;
    left: 0;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    width: 100%;
    height: 100%;
    padding: 35px;

    text-align: center;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

aside .banners .banner .info .title
{
    font-size: 26px;
    line-height: 34px;

    position: relative;

    margin-bottom: 15px;
    padding-bottom: 22px;
}

aside .banners .banner .info .title:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 83px;
    height: 1px;
    margin: auto;

    content: '';

    background: #fff;
}


aside .banners .promo_info
{
    color: #fff;
    font-size: 16px;
    line-height: 24px;

    position: relative;

    display: block;
    overflow: hidden;

    padding: 30px;

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

    background: #000;
}

aside .banners .promo_info .title
{
    font-size: 20px;
    line-height: 28px;
}

aside .banners .promo_info .thumb
{
    width: -webkit-calc(100% + 60px);
    width: -moz-calc(100% + 60px);
    width: calc(100% + 60px);
    margin: 0 -30px;
}

aside .banners .promo_info .thumb img
{
    display: block;

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



/*---------------
    Page head
---------------*/
.page_head
{
    margin-bottom: 35px;
}

.page_head .cont > * + *
{
    margin-top: 35px;
}


.breadcrumbs
{
    color: #7b7b7b;
    font-size: 11px;
    line-height: 19px;

    position: relative;

    padding-top: 25px;

    text-align: center;
    text-transform: uppercase;

    border-top: 1px solid #d8d8d8;
}

.breadcrumbs:before,
.breadcrumbs:after
{
    position: absolute;
    top: -3px;
    left: 0;

    display: block;

    width: 5px;
    height: 5px;

    content: '';

    border: 1px solid #d8d8d8;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: var(--bg);
}

.breadcrumbs:after
{
    right: 0;
    left: auto;
}

.breadcrumbs a
{
    color: currentColor;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

    transition: color .2s linear;
    white-space: nowrap;
    text-decoration: none;
}

.breadcrumbs a:hover
{
    color: #000;
}

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

    display: inline-block;

    width: 5px;
    height: 5px;
    margin: 0 10px;

    vertical-align: middle;

    border: 1px solid #d8d8d8;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
}



.page_title
{
    font-size: var(--font_size_title);
    font-weight: 500;
    line-height: 45px;

    display: block;

    text-align: center;
}



/*----------------
    Block head
----------------*/
.block_head
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    width: 100%;
    margin-bottom: 30px;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.block_head .title
{
    font-size: var(--font_size_title);
    font-weight: 500;
    line-height: 45px;
}


.block_head.center
{
    text-align: center;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
}

.block_head.center .title
{
    width: 100%;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #d8d8d8;
    --form_focus_color: #000;
    --form_error_color: #c53636;
    --form_border_radius: 0;
    --form_bg_color: #fff;
    --form_placeholder_color: #7b7b7b;
}


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

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

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


.form .columns
{
    margin-left: -webkit-calc(var(--form_columns_offset) * -1);
    margin-left: -moz-calc(var(--form_columns_offset) * -1);
    margin-left: calc(var(--form_columns_offset) * -1);

    --form_columns_offset: 30px;
}

.form .columns.center
{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.form .columns > *
{
    width: -webkit-calc(50% - var(--form_columns_offset));
    width: -moz-calc(50% - var(--form_columns_offset));
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .columns > *.width1of3
{
    width: -webkit-calc(33.333% - var(--form_columns_offset));
    width: -moz-calc(33.333% - var(--form_columns_offset));
    width: calc(33.333% - var(--form_columns_offset));
}

.form .columns > *.width2of3
{
    width: -webkit-calc(66.666% - var(--form_columns_offset));
    width: -moz-calc(66.666% - var(--form_columns_offset));
    width: calc(66.666% - var(--form_columns_offset));
}

.form .columns > *.width3of3
{
    width: -webkit-calc(100% - var(--form_columns_offset));
    width: -moz-calc(100% - var(--form_columns_offset));
    width: calc(100% - var(--form_columns_offset));
}


.form .columns > *.width1of5
{
    width: -webkit-calc(20% - var(--form_columns_offset));
    width: -moz-calc(20% - var(--form_columns_offset));
    width: calc(20% - var(--form_columns_offset));
}

.form .columns > *.width2of5
{
    width: -webkit-calc(40% - var(--form_columns_offset));
    width: -moz-calc(40% - var(--form_columns_offset));
    width: calc(40% - var(--form_columns_offset));
}

.form .columns > *.width3of5
{
    width: -webkit-calc(60% - var(--form_columns_offset));
    width: -moz-calc(60% - var(--form_columns_offset));
    width: calc(60% - var(--form_columns_offset));
}

.form .columns > *.width4of5
{
    width: -webkit-calc(80% - var(--form_columns_offset));
    width: -moz-calc(80% - var(--form_columns_offset));
    width: calc(80% - var(--form_columns_offset));
}

.form .columns > *.width5of5
{
    width: -webkit-calc(100% - var(--form_columns_offset));
    width: -moz-calc(100% - var(--form_columns_offset));
    width: calc(100% - var(--form_columns_offset));
}


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


.form .field
{
    position: relative;
}


.form .input
{
    color: var(--text_color);
    font: 13px var(--font_family);

    display: block;

    width: 100%;
    height: 38px;

    -webkit-transition: border-color .2s linear;

    -o-transition: border-color .2s linear;

    -moz-transition: border-color .2s linear;

    transition: border-color .2s linear;

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

.form .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


.form .input:focus,
.form textarea:focus,
.form .nice-select.open .current
{
    border-color: var(--form_focus_color);
}

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


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

.form input[type=checkbox] + label
{
    color: #7b7b7b;
    font-size: 13px;
    line-height: 18px;

    position: relative;

    display: table-cell;

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

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

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

    display: block;

    width: 18px;
    height: 18px;

    content: '';
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    -webkit-border-radius: var(--form_border_radius);
       -moz-border-radius: var(--form_border_radius);
            border-radius: var(--form_border_radius);
}

.form input[type=checkbox] + label:after
{
    position: absolute;
    top: 5px;
    left: 5px;

    display: block;

    width: 9px;
    height: 5px;

    content: '';
    -webkit-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    transition: opacity .2s linear;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    opacity: 0;
    border-bottom: 1px solid #292928;
    border-left: 1px solid #292928;
}

.form input[type=checkbox]:checked + label:after
{
    opacity: 1;
}


.form select
{
    display: none;
}

.form .nice-select
{
    position: relative;

    display: block;
}

.form .nice-select .current
{
    color: #000;
    font-size: 13px;
    line-height: 37px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 38px;
    padding: 0 17px 0 0;

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

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

.form .nice-select .current:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: block;

    width: 12px;
    height: 6px;
    margin: auto;

    content: '';

    background: url(../images/ic_select_arr.svg) 0 0/100% 100% no-repeat;
}

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

    visibility: hidden;
    overflow: hidden;

    width: 232px;
    min-width: 100%;
    padding: 9px 0;

    -webkit-transition: .2s linear;

    -o-transition: .2s linear;

    -moz-transition: .2s linear;

    transition: .2s linear;

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

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

    visibility: visible;

    opacity: 1;
}

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

    max-height: 217px;
}

.form .nice-select .list .list_item
{
    padding: 5px 19px;

    cursor: pointer;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    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: #7b7b7b;

    background: #ededed;
}


.form .recovery
{
    margin-top: -15px;
}

.form .recovery .btn
{
    color: #405e7d;
    font-size: 13px;
    line-height: 18px;

    position: relative;

    display: inline-block;

    -webkit-transition: border-color .2s linear;

    -o-transition: border-color .2s linear;

    -moz-transition: border-color .2s linear;

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

    border-bottom: 1px solid #a8c0d9;
}

.form .recovery .btn:hover
{
    border-color: transparent;
}


.form .agree
{
    font-size: 13px;
    line-height: 21px;

    text-align: center;
}

.form .agree a
{
    color: #405e7d;
}

.form .agree a:hover
{
    text-decoration: none;
}


.form .submit
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}


.form .submit_btn
{
    color: var(--text_color);
    font: 700 11px var(--font_family);

    display: inline-block;

    height: 41px;
    padding: 0 19px;

    cursor: pointer;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: 1px solid #000;
    -webkit-border-radius: var(--form_border_radius);
       -moz-border-radius: var(--form_border_radius);
            border-radius: var(--form_border_radius);
    background: var(--btn_bg);
}

.form .submit_btn:hover
{
    color: #fff;

    background: #000;
}


.form .reset_btn
{
    color: #7b7b7b;
    font: 700 11px var(--font_family);

    display: inline-block;

    height: 41px;
    padding: 0 19px;

    cursor: pointer;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: none;
    -webkit-border-radius: var(--form_border_radius);
       -moz-border-radius: var(--form_border_radius);
            border-radius: var(--form_border_radius);
    background: #ededed;
}

.form .reset_btn:hover
{
    color: #fff;

    background: #7b7b7b;
}



/*----------------
    Typography
----------------*/
.text_block
{
    font-weight: 300;
    line-height: 22px;

    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;

    -webkit-touch-callout: text;
}


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

.text_block > :first-child,
.text_block .cols .col > :first-child,
.text_block blockquote > :first-child,
.text_block q > :first-child,
.text_block .columns > :first-child
{
    margin-top: 0 !important;
}


.text_block h2
{
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;

    width: 865px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.text_block h2.light
{
    font-weight: 300;
}

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


.text_block h3
{
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;

    width: 865px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

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


.text_block h4
{
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;

    text-align: center;
}

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


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

.text_block .clear + h2,
.text_block .clear + h3,
.text_block .clear + h4
{
    margin-top: 20px;
}

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


.text_block > *
{
    margin-bottom: 20px;
}


.text_block .table_wrap,
.text_block blockquote,
.text_block q,
.text_block .columns,
.text_block .cols,
.text_block hr,
.text_block img,
.text_block .carousel
{
    margin-top: 40px;
    margin-bottom: 40px;
}

.text_block hr
{
    margin-top: 40px !important;
}


.text_block img
{
    display: block;

    max-width: 100%;
}

.text_block img.left
{
    max-width: -webkit-calc(50% - 40px);
    max-width: -moz-calc(50% - 40px);
    max-width: calc(50% - 40px);
    margin-top: 4px;
    margin-right: 40px;
}

.text_block img.right
{
    max-width: -webkit-calc(50% - 40px);
    max-width: -moz-calc(50% - 40px);
    max-width: calc(50% - 40px);
    margin-top: 4px;
    margin-left: 40px;
}

.text_block img.loaded
{
    height: auto !important;
}


.text_block .table_wrap
{
    overflow: auto;

    max-width: 100%;
}

.text_block .table_wrap::-webkit-scrollbar
{
    width: 7px;
    height: 7px;

    -webkit-border-radius: 0;

            border-radius: 0;
    background-color: #eee;

    -webkit-appearance: none;
}

.text_block .table_wrap::-webkit-scrollbar-thumb
{
    -webkit-border-radius: 0;
            border-radius: 0;
    background-color: #000;
}

.text_block table
{
    width: 100%;

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

.text_block table th
{
    font-weight: 700;

    height: 66px;
    padding: 15px 0;

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

    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.text_block table td
{
    font-weight: 400;

    height: 66px;
    padding: 15px 0;

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

    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.text_block table td b,
.text_block table td strong
{
    font-weight: 700;

    white-space: nowrap;
}

.text_block table th + th,
.text_block table td + td
{
    padding-left: 20px;
}


.text_block blockquote,
.text_block q
{
    display: block;

    width: 100%;
    padding: 60px 70px;

    background: #eceff2;
}


.text_block .columns
{
    -webkit-column-gap: 85px;
       -moz-column-gap: 85px;
            column-gap: 85px;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
}

.text_block .columns > *
{
    -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
            transform: translateZ(0);

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

.text_block .columns > * + *
{
    margin-top: 20px;
}


.text_block .cols
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;

    -webkit-justify-content: space-between;

       -moz-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

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

.text_block .cols .col.align_self_center
{
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
}

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

.text_block .cols .col > * + *
{
    margin-top: 20px;
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 40px;

    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: 20px;
    height: 1px;

    content: '';

    background: #7b7b7b;
}


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 40px;

    list-style-type: none;
}

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

.text_block ol li:before
{
    font-weight: 700;

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

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


.text_block .carousel .slide a
{
    color: currentColor;

    display: block;

    text-decoration: none;
}


.text_block figure .thumb
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 150.16%;

    background: #ddd;
}

.text_block figure .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;
    margin: 0 !important;

    -o-object-fit: cover;

       object-fit: cover;
}

.text_block figure .name
{
    color: #405e7d;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;

    margin-top: 15px;
}

.text_block figure .name span
{
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;

    background-image: -webkit-gradient(linear, left top, left bottom, from(#a8c0d9), to(#a8c0d9));

    background-image: -webkit-linear-gradient(#a8c0d9, #a8c0d9);

    background-image: -moz-linear-gradient(#a8c0d9, #a8c0d9);

    background-image: -o-linear-gradient(#a8c0d9, #a8c0d9);

    background-image: linear-gradient(#a8c0d9, #a8c0d9);
    background-repeat: no-repeat;
    background-position: 0 100%;
    -webkit-background-size: 100% 1px;
       -moz-background-size: 100% 1px;
            background-size: 100% 1px;
}

.text_block a:hover figure .name span
{
    -webkit-background-size: 100% 0;
       -moz-background-size: 100% 0;
            background-size: 100% 0;
}

.text_block figure figcaption
{
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;

    margin-top: 10px;
}


.text_block hr
{
    display: block;

    width: 88px;
    height: 1px;

    border: none;
    background: #000;
}

.text_block hr.center
{
    margin-right: auto;
    margin-left: auto;
}


.text_block b,
.text_block strong
{
    font-weight: 500;
}


.text_block a
{
    color: #405e7d;
}

.text_block a:hover
{
    text-decoration: none;
}



/*-----------------
    Main slider
-----------------*/
.main_slider
{
    margin-bottom: 48px;
}

.main_slider .slide
{
    position: relative;

    overflow: hidden;

    background: #fff;
}


.main_slider .slide .row
{
    min-height: 500px;
    padding: 60px 110px 60px 160px;

    -webkit-box-pack: justify;

    -webkit-justify-content: space-between;

       -moz-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
}


.main_slider .slide .info
{
    color: #8f8f91;

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

.main_slider .slide .title
{
    font-size: 50px;
    font-weight: 100;
    line-height: 60px;

    position: relative;

    padding-bottom: 31px;
}

.main_slider .slide .title:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 154px;
    height: 1px;

    content: '';

    background: currentColor;
}


.main_slider .slide .img
{
    display: block;

    max-width: -webkit-calc(100% - 445px);

    max-width: -moz-calc(100% - 445px);

    max-width: calc(100% - 445px);
    margin: -60px auto;
}



/*---------------
    Cats wall
---------------*/
.cats_wall .row
{
    margin-bottom: -20px;
    margin-left: -20px;

    -webkit-box-align: stretch;

    -webkit-align-items: stretch;

       -moz-box-align: stretch;

        -ms-flex-align: stretch;

            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
}

.cats_wall .row > *
{
    width: -webkit-calc(25% - 20px);
    width: -moz-calc(25% - 20px);
    width: calc(25% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}


.cats_wall .cat
{
    color: #fff;

    position: relative;

    display: block;

    text-decoration: none;
}

.cats_wall .cat:before
{
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 160px;
    height: 130px;
    margin: auto;

    content: '';
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;

    background: rgba(0,0,0,.5);
}


.cats_wall .cat .thumb
{
    position: relative;

    overflow: hidden;

    padding-bottom: 100%;

    background: #8b8c8e;
}

.cats_wall .cat .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}


.cats_wall .cat .name
{
    font-size: 17px;
    line-height: 25px;

    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    width: 160px;
    height: 130px;
    margin: auto;
    padding: 20px;

    -webkit-transition: border-color .2s linear;

    -o-transition: border-color .2s linear;

    -moz-transition: border-color .2s linear;

    transition: border-color .2s linear;
    text-align: center;
    text-transform: uppercase;

    border: 1px solid transparent;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}


.cats_wall .cat:hover:before
{
    width: 100%;
    height: 100%;
}

.cats_wall .cat:hover .name
{
    border-color: #fff;
}



/*---------------
    Cats list
---------------*/
.cats_list .cat
{
    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;
    overflow: hidden;

    -webkit-box-pack: justify;

    -webkit-justify-content: space-between;

       -moz-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.cats_list .cat + .cat
{
    margin-top: 70px;
}

.cats_list .cat.bg
{
    background: #f1f3f5;
}

.cats_list .cat.bg2
{
    background: #f1ede9;
}


.cats_list .cat .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

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


.cats_list .cat .thumb
{
    position: relative;
    z-index: 3;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;
    overflow: hidden;

    width: -webkit-calc(50% - 10px);

    width: -moz-calc(50% - 10px);

    width: calc(50% - 10px);

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}


.cats_list .cat .thumb img
{
    display: block;

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


.cats_list .cat .thumb.cover
{
    background: #eceff2;
}

.cats_list .cat .thumb.cover img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

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

    -o-object-fit: cover;

       object-fit: cover;
}


.cats_list .cat .info
{
    position: relative;
    z-index: 3;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    width: -webkit-calc(50% - 10px);

    width: -moz-calc(50% - 10px);

    width: calc(50% - 10px);
    min-height: 500px;
    padding: 70px 70px 70px 0;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.cats_list .cat .info.bg
{
    background: #f1f3f5;
}

.cats_list .cat .info.bg2
{
    background: #f1ede9;
}


.cats_list .cat .name
{
    font-size: var(--font_size_title);
    font-weight: 500;
    line-height: 45px;

    margin-bottom: 30px;
}

.cats_list .cat .name a
{
    color: currentColor;

    display: inline-block;

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


.cats_list .cat .desc
{
    font-weight: 300;
    line-height: 22px;

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


.cats_list .cat .link
{
    font-weight: 500;
    line-height: 22px;

    margin-top: 45px;
}

.cats_list .cat .link a
{
    color: #405e7d;

    position: relative;

    display: inline-block;

    -webkit-transition: border-color .2s linear;

    -o-transition: border-color .2s linear;

    -moz-transition: border-color .2s linear;

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

    border-bottom: 1px solid #a8c0d9;
}

.cats_list .cat .link a:after
{
    position: absolute;
    top: 1px;
    right: -27px;
    bottom: 0;

    display: block;

    width: 18px;
    height: 1px;
    margin: auto;

    content: '';

    background: #405e7d;
}

.cats_list .cat .link a:before
{
    position: absolute;
    top: 1px;
    right: -27px;
    bottom: 0;

    display: block;

    width: 9px;
    height: 9px;
    margin: auto;

    content: '';
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-right: 1px solid #405e7d;
    border-bottom: 1px solid #405e7d;
}

.cats_list .cat .link a:hover
{
    border-color: transparent;
}


.cats_list .cat .thumb + .info
{
    padding-left: 70px;
}

.cats_list .cat .thumb + .info .desc
{
    width: 100%;
}



/*-----------------
    Action form
-----------------*/
.action_form .data
{
    padding: 40px 40px 55px;

    border: 4px solid #000;
    background: url(../images/bg_subscribe_top.png) 100% 0 no-repeat, url(../images/bg_subscribe_bottom.png) 0 100% no-repeat;
}


.action_form .block_title
{
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;

    margin-bottom: 30px;

    text-align: center;
}


.action_form .form
{
    width: 758px;
    max-width: 100%;
    margin: 0 auto;
}



/*---------------
    Subscribe
---------------*/
.subscribe .data
{
    padding: 40px 40px 55px;

    border: 4px solid #000;
    background: url(../images/bg_subscribe_top.png) 100% 0 no-repeat, url(../images/bg_subscribe_bottom.png) 0 100% no-repeat;
}


.subscribe .block_title
{
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;

    margin-bottom: 30px;

    text-align: center;
}


.subscribe .form
{
    width: 278px;
    max-width: 100%;
    margin: 0 auto;
}

.subscribe .form .icon
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    width: 57px;
    height: 57px;
    margin: 0 auto 15px;
    padding: 15px;

    -webkit-border-radius: 50%;

       -moz-border-radius: 50%;

            border-radius: 50%;
    background: #ededed;
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
       -moz-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.subscribe .form .icon > *
{
    display: block;

    width: 27px;
    height: 18px;

    fill: #7b7b7b;
}


.subscribe .call
{
    font-weight: 500;
    line-height: 26px;

    margin-top: 60px;

    text-align: center;
}

.subscribe .phone
{
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;

    display: inline-block;

    margin-top: 8px;

    vertical-align: top;
}

.subscribe .phone a
{
    color: currentColor;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

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

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.subscribe .phone a .icon
{
    display: block;

    width: 15px;
    height: 22px;
    margin-right: 9px;

    fill: #7b7b7b;
}



/*-------------
    Gallery
-------------*/
.gallery .row
{
    margin-bottom: -20px;
    margin-left: -20px;

    -webkit-box-align: stretch;

    -webkit-align-items: stretch;

       -moz-box-align: stretch;

        -ms-flex-align: stretch;

            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
}

.gallery .row > *
{
    width: -webkit-calc(25% - 20px);
    width: -moz-calc(25% - 20px);
    width: calc(25% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}


.gallery .item
{
    display: block;

    text-decoration: none;
}

.gallery .item .thumb
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 100%;

    background: #ddd;
}

.gallery .item .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100% ! important;
    margin: 0 !important;

    -o-object-fit: cover;

       object-fit: cover;
}



/*--------------
    Products
--------------*/
.products .head
{
    color: #7b7b7b;
    font-size: 13px;
    line-height: 21px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    margin-bottom: 15px;
    margin-left: -50px;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.products .head > *
{
    max-width: -webkit-calc(100% - 50px);
    max-width: -moz-calc(100% - 50px);
    max-width: calc(100% - 50px);
    margin-bottom: 15px;
    margin-left: 50px;
}


.products .head .limit,
.products .head .sort
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}


.products .head .name
{
    margin-right: 10px;
}


.products .head select
{
    display: none;
}

.products .head .nice-select
{
    position: relative;

    display: block;
}

.products .head .nice-select .current
{
    color: #000;

    position: relative;

    display: block;
    overflow: hidden;

    padding: 0 17px 0 0;

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

.products .head .nice-select .current:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: block;

    width: 12px;
    height: 6px;
    margin: auto;

    content: '';

    background: url(../images/ic_select_arr.svg) 0 0/100% 100% no-repeat;
}

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

    visibility: hidden;
    overflow: hidden;

    width: 232px;
    min-width: 100%;
    padding: 9px 0;

    -webkit-transition: .2s linear;

    -o-transition: .2s linear;

    -moz-transition: .2s linear;

    transition: .2s linear;

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

.products .head .nice-select.open .list
{
    top: -webkit-calc(100% - 1px);
    top: -moz-calc(100% - 1px);
    top: calc(100% - 1px);

    visibility: visible;

    opacity: 1;
}

.products .head .nice-select .list .scrollbar
{
    overflow: auto;

    max-height: 217px;
}

.products .head .nice-select .list .list_item
{
    padding: 5px 19px;

    cursor: pointer;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;
}

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

.products .head .nice-select .list .list_item:hover,
.products .head .nice-select .list .list_item.selected
{
    color: #7b7b7b;

    background: #ededed;
}



.products .row
{
    margin-bottom: -45px;
    margin-left: -20px;

    -webkit-box-align: stretch;

    -webkit-align-items: stretch;

       -moz-box-align: stretch;

        -ms-flex-align: stretch;

            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
    --products_count: 4;
}

.products .row > *
{
    width: -webkit-calc(25% - 20px);
    width: -moz-calc(25% - 20px);
    width: calc(25% - 20px);
    margin-bottom: 45px;
    margin-left: 20px;
}

.content .products .row
{
    --products_count: 3;
}

.content .products .row > *
{
    width: -webkit-calc(33.333% - 20px);
    width: -moz-calc(33.333% - 20px);
    width: calc(33.333% - 20px);
}


.products .product
{
    position: relative;

    text-align: center;
}


.products .product .stickers
{
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 35px;

    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    text-transform: uppercase;
}

.products .product .stickers > *
{
    padding: 0 13px;
}

.products .product .stickers > *.new
{
    background: #405e7d;
}

.products .product .stickers > *.sale
{
    background: #715350;
}

.products .product .stickers > *.limited
{
    background: #c7a582;
}


.products .product .favorite_btn
{
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    width: 50px;
    height: 35px;

    -webkit-transition: background .2s linear;

    -o-transition: background .2s linear;

    -moz-transition: background .2s linear;

    transition: background .2s linear;

    background: rgba(0,0,0,.5);

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.products .product .favorite_btn .icon
{
    display: block;

    width: 30px;
    height: 15px;

    fill: #fff;
}

.products .product .favorite_btn:hover
{
    background: #000;
}

.products .product .favorite_btn.active
{
    background: #ededed;
}

.products .product .favorite_btn.active .icon
{
    fill: #909090;
}


.products .product .thumb
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-bottom: 150.16%;

    background: #ddd;
}

.products .product .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    -webkit-transition: .3s linear;

    -o-transition: .3s linear;

    -moz-transition: .3s linear;

    transition: .3s linear;

    -o-object-fit: cover;

       object-fit: cover;
}

.products .product .thumb img + img
{
    z-index: 2;

    opacity: 0;
}


.products .product .name
{
    font-size: 16px;
    line-height: 24px;

    margin-top: 15px;
}

.products .product .name a
{
    color: currentColor;

    display: inline-block;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

.products .product .thumb:hover ~ .name a,
.products .product .name a:hover
{
    color: #7b7b7b;
}


.products .product .sizes
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

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

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.products .product .sizes > *
{
    color: #7b7b7b;
    font-size: 12px;
    line-height: 28px;

    max-width: -webkit-calc(100% - 15px);

    max-width: -moz-calc(100% - 15px);

    max-width: calc(100% - 15px);
    margin-bottom: 10px;
    margin-left: 15px;
    padding: 0 10px;

    text-transform: uppercase;

    border: 1px solid #d8d8d8;
}


.products .product .price
{
    font-weight: 700;
    line-height: 24px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

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

    white-space: nowrap;

    border-top: 1px solid #d8d8d8;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.products .product .price .old
{
    color: #715350;

    margin-left: 20px;

    text-decoration: line-through;
}


.products .product .thumb:hover img
{
    opacity: 0;
}

.products .product:hover .thumb img + img
{
    opacity: 1;
}



/*------------------
    Product info
------------------*/
.product_info .data
{
    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    padding-bottom: 45px;

    border-bottom: 1px solid #d8d8d8;

    -webkit-box-pack: justify;

    -webkit-justify-content: space-between;

       -moz-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .data:before,
.product_info .data:after
{
    position: absolute;
    bottom: -3px;
    left: 0;

    display: block;

    width: 5px;
    height: 5px;

    content: '';

    border: 1px solid #d8d8d8;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: var(--bg);
}

.product_info .data:after
{
    right: 0;
    left: auto;
}


.product_info .data .col_left,
.product_info .data .col_right
{
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    width: calc(50% - 10px);
}

.product_info .data .col_left
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}



.product_info .stickers
{
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 35px;

    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;

    text-transform: uppercase;
}

.product_info .stickers > *
{
    padding: 0 13px;
}

.product_info .stickers > *.new
{
    background: #405e7d;
}

.product_info .stickers > *.sale
{
    background: #715350;
}

.product_info .stickers > *.limited
{
    background: #c7a582;
}



.product_info .images
{
    width: 100%;
    padding: 17px;

    border: 1px solid #ededed;
}


.product_info .images .big .img
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    height: 600px;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .images .big .img img
{
    display: block;

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


.product_info .images .thumbs
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 17px;
    margin-bottom: -12px;
    margin-left: -12px;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .images .thumbs > *
{
    width: -webkit-calc(16.666% - 12px);
    width: -moz-calc(16.666% - 12px);
    width: calc(16.666% - 12px);
    margin-bottom: 12px;
    margin-left: 12px;
}

.product_info .images .thumbs button
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    height: 132px;
    padding: 1px;

    -webkit-transition: border-color .2s linear;

    -o-transition: border-color .2s linear;

    -moz-transition: border-color .2s linear;

    transition: border-color .2s linear;

    border: 1px solid transparent;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .images .thumbs img
{
    display: block;

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

.product_info .images .thumbs button:hover,
.product_info .images .thumbs button.active
{
    border-color: #7b7b7b;
}



.product_info .care
{
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;

    margin-top: 25px;
}

.product_info .care .title
{
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;

    margin-bottom: 10px;
}



.product_info .share
{
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;

    margin-top: 25px;
}

.product_info .care + .share
{
    margin-left: 50px;
}

.product_info .share .title
{
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;

    margin-bottom: 15px;
}

.product_info .share img
{
    display: block;

    max-width: 100%;
}


.product_info .buy
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    padding: 30px;

    border: 3px solid #ededed;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}


.product_info .buy .price
{
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    white-space: nowrap;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .buy .price .old
{
    color: #715350;
    font-weight: 400;

    margin-left: 30px;

    text-decoration: line-through;
}


.product_info .buy .favorite_btn
{
    font-size: 13px;
    line-height: 28px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    margin-left: auto;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

    transition: color .2s linear;
    text-transform: uppercase;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .buy .favorite_btn .icon
{
    display: block;

    width: 37px;
    height: 19px;
    margin-right: 15px;

    fill: currentColor;
}

.product_info .buy .favorite_btn.active span,
.product_info .buy .favorite_btn span + span
{
    display: none;
}

.product_info .buy .favorite_btn.active span + span
{
    display: inline;
}

.product_info .buy .favorite_btn:hover
{
    color: #7b7b7b;
}


.product_info .buy .sep
{
    width: 100%;
    height: 1px;
    margin-top: 25px;
    margin-bottom: 25px;

    background: #d8d8d8;
}


.product_info .option
{
    width: 100%;
}

.product_info .option .title
{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 10px;
}

.product_info .option .vals
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: -15px;
    margin-left: -15px;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .option .vals > *
{
    max-width: -webkit-calc(100% - 15px);
    max-width: -moz-calc(100% - 15px);
    max-width: calc(100% - 15px);
    margin-bottom: 15px;
    margin-left: 15px;
}

.product_info .option .vals input
{
    display: none;
}

.product_info .option .vals label
{
    color: #7b7b7b;
    font-size: 12px;
    line-height: 16px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    padding: 7px 11px 5px;

    cursor: pointer;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;
    text-transform: uppercase;

    border: 1px solid #d8d8d8;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .option .vals label:hover
{
    border-color: #000;
}

.product_info .option .vals input:checked + label
{
    color: #000;

    border-color: transparent;
    background: #ededed;
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
       -moz-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
}


.product_info .option .link
{
    color: #405e7d;
    font-weight: 500;
    line-height: 22px;

    margin-top: 13px;
}

.product_info .option .link a
{
    color: currentColor;

    display: inline-block;

    -webkit-transition: border-color .2s linear;

    -o-transition: border-color .2s linear;

    -moz-transition: border-color .2s linear;

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

    border-bottom: 1px solid #a8c0d9;
}

.product_info .option .link a:hover
{
    border-color: transparent;
}


.product_info .buy .buy_btn
{
    color: var(--text_color);
    font: 700 13px var(--font_family);

    display: inline-block;

    height: 50px;
    margin-top: 35px;
    padding: 0 24px;

    -webkit-transition: .2s linear;

    -o-transition: .2s linear;

    -moz-transition: .2s linear;

    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: 1px solid #000;
    -webkit-border-radius: var(--form_border_radius);
       -moz-border-radius: var(--form_border_radius);
            border-radius: var(--form_border_radius);
    background: var(--btn_bg);
}

.product_info .buy .buy_btn:hover
{
    color: #fff;

    background: #000;
}


.product_info .buy .quike_buy_btn
{
    color: #405e7d;
    font-size: 14px;
    font-weight: 500;

    display: inline-block;

    height: 50px;
    margin-top: 35px;
    margin-left: 30px;
    padding: 0 26px;

    -webkit-transition: .2s linear;

    -o-transition: .2s linear;

    -moz-transition: .2s linear;

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

    background: #eceff2;
}

.product_info .buy .quike_buy_btn:hover
{
    color: #fff;

    background: #405e7d;
}



.product_info .description
{
    margin-top: 25px;
    padding: 0 0 0 33px;
}

.product_info .description .title
{
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;

    margin-bottom: 10px;
}

.product_info .description .features > *
{
    font-size: 13px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .description .features > * + *
{
    margin-top: 13px;
}

.product_info .description .features .name
{
    width: 160px;
    padding-right: 15px;
}

.product_info .description .features .val
{
    font-weight: 500;

    width: -webkit-calc(100% - 160px);

    width: -moz-calc(100% - 160px);

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

.product_info .description .text_block
{
    font-size: 13px;
    line-height: 21px;

    margin-top: 20px;
}



.product_info .payment
{
    margin-top: 25px;
    padding: 0 0 0 33px;
}

.product_info .payment .title
{
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;

    margin-bottom: 10px;
}

.product_info .payment .features > *
{
    font-size: 13px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.product_info .payment .features > * + *
{
    margin-top: 13px;
}

.product_info .payment .features .name
{
    width: 230px;
    padding-right: 15px;
}

.product_info .payment .features .val
{
    font-weight: 500;

    width: -webkit-calc(100% - 230px);

    width: -moz-calc(100% - 230px);

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

.product_info .payment .text_block
{
    font-size: 13px;
    line-height: 21px;

    margin-top: 20px;
}



/*---------------
    Cart info
---------------*/
.cart_info .data
{
    padding: 27px;

    border: 3px solid #ededed;
}


.cart_info table
{
    width: 100%;

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

.cart_info table th
{
    font-weight: 700;
    line-height: 22px;

    padding: 0 0 20px;

    text-align: left;
    vertical-align: middle;
    text-transform: uppercase;
}

.cart_info table td
{
    padding-top: 30px;
    padding-bottom: 30px;

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

    border-top: 1px solid #d8d8d8;
}

.cart_info table tr:last-child td
{
    padding-bottom: 0;
}

.cart_info table th + th,
.cart_info table td + td
{
    padding-left: 30px;
}


.cart_info table td.thumb
{
    width: 100px;
    min-width: 100px;

    table-layout: fixed;
}

.cart_info table td.thumb a
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100px;
    height: 150px;

    background: #ddd;
}

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

    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}


.cart_info table td.info .name
{
    font-size: 16px;
    line-height: 24px;
}

.cart_info table td.info .name a
{
    color: currentColor;

    display: inline-block;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

.cart_info table td.thumb:hover ~ td.info .name a,
.cart_info table td.info .name a:hover
{
    color: #7b7b7b;
}


.cart_info table td.info .size
{
    color: #7b7b7b;
    font-size: 12px;
    line-height: 28px;

    display: inline-block;

    margin-top: 15px;
    padding: 0 10px;

    vertical-align: top;
    text-transform: uppercase;

    border: 1px solid #d8d8d8;
}


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

    width: 200px;
    min-width: 200px;

    table-layout: fixed;

    white-space: nowrap;
}

.cart_info table td.price .old
{
    color: #715350;
    font-weight: 400;

    text-decoration: line-through;
}

.cart_info table td.price.total
{
    width: 150px;
    min-width: 150px;
}



.cart_info table td.amount
{
    width: 225px;
    min-width: 225px;

    table-layout: fixed;
}

.cart_info table td.amount .box
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

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

    display: block;

    width: 29px;
    height: 29px;

    -webkit-transition: background .2s linear;

    -o-transition: background .2s linear;

    -moz-transition: background .2s linear;

    transition: background .2s linear;

    -webkit-border-radius: 50%;

       -moz-border-radius: 50%;

            border-radius: 50%;
    background: #ededed;
}

.cart_info table td.amount button:before,
.cart_info table td.amount button:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 11px;
    height: 1px;
    margin: auto;

    content: '';
    -webkit-transition: background .2s linear;
    -o-transition: background .2s linear;
    -moz-transition: background .2s linear;
    transition: background .2s linear;

    background: #7b7b7b;
}

.cart_info table td.amount button:after
{
    width: 1px;
    height: 11px;
}

.cart_info table td.amount button.plus
{
    right: 0;
    left: auto;
}

.cart_info table td.amount button.minus:after
{
    opacity: 0;
}

.cart_info table td.amount button:hover
{
    background: #000;
}

.cart_info table td.amount button:hover:before,
.cart_info table td.amount button:hover:after
{
    background: #fff;
}

.cart_info table td.amount .input
{
    color: #000;
    font-family: var(--font_family);
    font-size: 14px;

    display: block;

    width: 46px;
    height: 29px;
    padding: 0 15px;

    text-align: center;

    border: none;
    background: none;
}


.cart_info table td.delete
{
    width: 79px;
    min-width: 79px;

    table-layout: fixed;
}

.cart_info table td.delete button
{
    position: relative;

    width: 29px;
    height: 29px;

    -webkit-transition: background .2s linear;

    -o-transition: background .2s linear;

    -moz-transition: background .2s linear;

    transition: background .2s linear;

    -webkit-border-radius: 50%;

       -moz-border-radius: 50%;

            border-radius: 50%;
    background: #ededed;
}

.cart_info table td.delete button:before,
.cart_info table td.delete button:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 50%;
    height: 1px;
    margin: auto;

    content: '';
    -webkit-transition: background .2s linear;
    -o-transition: background .2s linear;
    -moz-transition: background .2s linear;
    transition: background .2s linear;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);

    background: #7b7b7b;
}

.cart_info table td.delete button:after
{
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.cart_info table td.delete button:hover
{
    background: #000;
}

.cart_info table td.delete button:hover:before,
.cart_info table td.delete button:hover:after
{
    background: #fff;
}



.cart_info .bottom
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

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

    background: #ededed;
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
       -moz-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);

    -webkit-box-pack: end;

    -webkit-justify-content: flex-end;

       -moz-box-pack: end;

        -ms-flex-pack: end;

            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}


.cart_info .back_link
{
    color: #405e7d;
    font-weight: 500;
    line-height: 22px;

    position: relative;

    display: inline-block;

    margin-right: auto;
    margin-left: 27px;

    -webkit-transition: border-color .2s linear;

    -o-transition: border-color .2s linear;

    -moz-transition: border-color .2s linear;

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

    border-bottom: 1px solid #a8c0d9;
}

.cart_info .back_link:after
{
    position: absolute;
    top: 1px;
    bottom: 0;
    left: -27px;

    display: block;

    width: 18px;
    height: 1px;
    margin: auto;

    content: '';

    background: #405e7d;
}

.cart_info .back_link:before
{
    position: absolute;
    top: 1px;
    bottom: 0;
    left: -27px;

    display: block;

    width: 9px;
    height: 9px;
    margin: auto;

    content: '';
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-top: 1px solid #405e7d;
    border-left: 1px solid #405e7d;
}

.cart_info .back_link:hover
{
    border-color: transparent;
}


.cart_info .bottom .total
{
    font-size: 20px;
    font-weight: 300;
    line-height: 34px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.cart_info .bottom .total .price
{
    font-weight: 700;

    width: 200px;
    margin-left: 30px;

    white-space: nowrap;
}



/*-------------------
    Checkout info
-------------------*/
.checkout_info .block
{
    margin-bottom: 0 !important;
}

.checkout_info .block + .block
{
    margin-top: 30px;
}


.checkout_info .block_title
{
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;

    margin-bottom: 30px;

    text-align: center;
}


.checkout_info .delivery_method
{
    display: none;
}

.checkout_info .delivery_method1
{
    display: block;
}


.checkout_info .exp
{
    font-size: 13px;
    line-height: 21px;

    padding-bottom: 30px;

    text-align: center;
}


.checkout_info .checkout_total
{
    font-size: 20px;
    font-weight: 300;
    line-height: 34px;

    text-align: center;
}

.checkout_info .checkout_total .price
{
    font-size: 26px;
    font-weight: 700;
}


.checkout_info .agree
{
    width: 590px;
    max-width: 100%;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
}


.checkout_info .submit_btn
{
    font-size: 13px;

    height: 50px;
    padding: 0 23px;
}



/*-------------
    LK info
-------------*/
.lk_info .pass_form
{
    display: none;
}


.lk_info .pesonal_form .submit
{
    display: none;
}

.lk_info .pesonal_form.active .submit
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}


.lk_info .form .submit
{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}


.lk_info .form .cancel_btn
{
    color: #7b7b7b;
    font: 700 11px var(--font_family);

    display: inline-block;

    height: 41px;
    padding: 0 19px;

    cursor: pointer;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    -moz-transition: .2s linear;
    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: none;
    -webkit-border-radius: var(--form_border_radius);
       -moz-border-radius: var(--form_border_radius);
            border-radius: var(--form_border_radius);
    background: #ededed;
}

.lk_info .form .cancel_btn:hover
{
    color: #fff;

    background: #7b7b7b;
}


.lk_info .btns
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: -15px;
    margin-left: -30px;
    padding-top: 10px;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.lk_info .btns > *
{
    width: -webkit-calc(20% - 30px);
    width: -moz-calc(20% - 30px);
    width: calc(20% - 30px);
    margin-bottom: 15px;
    margin-left: 30px;
}

.lk_info .btns > *:last-child
{
    margin-left: auto;
}


.lk_info .btns button
{
    font-size: 13px;
    line-height: 21px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

    transition: color .2s linear;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.lk_info .btns button .icon
{
    display: block;

    margin-right: 10px;

    fill: currentColor;
}

.lk_info .btns button.edit_info_btn .icon
{
    width: 24px;
    height: 30px;
}

.lk_info .btns button.edit_pass_btn .icon
{
    width: 24px;
    height: 30px;
}

.lk_info .btns button.logout_btn .icon
{
    width: 24px;
    height: 30px;
}

.lk_info .btns button:hover,
.lk_info .btns button.active
{
    color: #7b7b7b;
}



/*----------------
    LK history
----------------*/
.lk_history .item
{
    -webkit-transition: border-color .2s linear;
    -o-transition: border-color .2s linear;
    -moz-transition: border-color .2s linear;
    transition: border-color .2s linear;

    border: 3px solid #ededed;
}

.lk_history .item + .item
{
    margin-top: 15px;
}


.lk_history .item .head
{
    font-size: 13px;
    line-height: 21px;

    position: relative;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    padding: 15px 64px 15px 30px;

    cursor: pointer;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.lk_history .item .head > * + *
{
    margin-left: 20px;
}

.lk_history .head .col_number
{
    width: 90px;
}

.lk_history .head .col_date
{
    width: 125px;
}

.lk_history .head .col_status
{
    width: 110px;
}

.lk_history .head .col_status.green
{
    color: #42a671;
}

.lk_history .head .col_status.red
{
    color: #715350;
}

.lk_history .head .col_payment
{
    width: 125px;
}

.lk_history .head .col_price
{
    font-weight: 700;

    width: 196px;
    margin-left: auto;

    -webkit-transition: opacity .2s linear;

    -o-transition: opacity .2s linear;

    -moz-transition: opacity .2s linear;

    transition: opacity .2s linear;
    text-transform: uppercase;
}


.lk_history .head:before,
.lk_history .head:after
{
    position: absolute;
    top: 0;
    right: 27px;
    bottom: 0;

    display: block;

    width: 11px;
    height: 1px;
    margin: auto;

    content: '';
    -webkit-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    transition: opacity .2s linear;

    background: #7b7b7b;
}

.lk_history .head:after
{
    right: 32px;

    width: 1px;
    height: 11px;
}


.lk_history .item:hover,
.lk_history .item.active
{
    border-color: #7b7b7b;
}

.lk_history .item.active .head:after
{
    opacity: 0;
}

.lk_history .item.active .head .col_price
{
    opacity: 0;
}


.lk_history .data
{
    display: none;

    padding: 0 30px 30px;
}


.lk_history .cart_info
{
    padding-top: 20px;

    border-top: 1px solid #d8d8d8;
}

.lk_history .cart_info table td.amount
{
    font-weight: 700;
}

.lk_history .cart_info table td.amount span
{
    display: block;

    width: 58px;

    text-align: center;
}

.lk_history .cart_info table td.price.total
{
    width: 260px;
    min-width: 260px;
}

.lk_history .cart_info .bottom
{
    margin-top: 30px;
}



/*----------------
    Pagination
----------------*/
.pagination
{
    line-height: 40px;

    display: -webkit-box;

    display: -webkit-flex;

    display: -moz-box;

    display: -ms-flexbox;

    display: flex;

    margin-top: 40px;

    -webkit-box-pack: start;

    -webkit-justify-content: flex-start;

       -moz-box-pack: start;

        -ms-flex-pack: start;

            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.pagination.center
{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.pagination.alignright
{
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.pagination a
{
    color: var(--text_color);
    font-size: 15px;
    font-weight: 300;

    display: inline-block;

    width: 40px;
    height: 40px;
    margin: 0 7px;

    -webkit-transition: .2s linear;

    -o-transition: .2s linear;

    -moz-transition: .2s linear;

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

    border: 1px solid transparent;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
}

.pagination a:hover
{
    border-color: #7e7e7e;
}

.pagination a.active
{
    border-color: transparent;
    background: #ededed;
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
       -moz-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .1);
}


.pagination .prev,
.pagination .next
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;

    -webkit-justify-content: center;

       -moz-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

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

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

.pagination .prev span,
.pagination .next span
{
    position: relative;

    display: block;

    width: 18px;
    height: 1px;

    -webkit-transition: background .2s linear;

    -o-transition: background .2s linear;

    -moz-transition: background .2s linear;

    transition: background .2s linear;

    background: #7b7b7b;
}

.pagination .prev span:after,
.pagination .next span:after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -5px;

    display: block;

    width: 9px;
    height: 9px;
    margin: auto;

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

    border-top: 1px solid #7b7b7b;
    border-left: 1px solid #7b7b7b;
}

.pagination .next span:after
{
    left: 5px;

    -webkit-transform: rotate(-225deg);

       -moz-transform: rotate(-225deg);

        -ms-transform: rotate(-225deg);

         -o-transform: rotate(-225deg);

            transform: rotate(-225deg);
}


.pagination .prev:hover,
.pagination .next:hover
{
    border-color: transparent;
}

.pagination .prev:hover span,
.pagination .next:hover span
{
    background: #000;
}

.pagination .prev:hover span:after,
.pagination .next:hover span:after
{
    border-color: #000;
}



/*------------
    Footer
------------*/
footer
{
    background: #f7f7f7;
}


footer .info
{
    padding: 55px 0 75px;
}

footer .info .cont.row
{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


footer .bottom
{
    color: #7b7b7b;
    font-size: 12px;
    line-height: 26px;

    padding: 30px 0;
}

footer .bottom .cont.row
{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
}

footer .bottom a
{
    color: currentColor;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

footer .bottom a:hover
{
    color: #000;
}



footer .logo
{
    width: 100%;
    margin-bottom: 50px;
}

footer .logo img
{
    display: block;

    width: 87px;
    height: 48px;
    margin: 0 auto;
}



footer .title
{
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;

    margin-bottom: 10px;

    text-transform: uppercase;
}



footer .links,
footer .contacts
{
    width: -webkit-calc(25% - 20px);
    width: -moz-calc(25% - 20px);
    width: calc(25% - 20px);

    text-align: center;
}


footer .links .list > * + *,
footer .contacts .list > * + *
{
    margin-top: 15px;
}


footer .links .list a,
footer .contacts .list a
{
    color: currentColor;

    display: inline-block;

    -webkit-transition: color .2s linear;

    -o-transition: color .2s linear;

    -moz-transition: color .2s linear;

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

footer .links .list a:hover,
footer .contacts .list a:hover
{
    color: #7b7b7b;
}



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

    width: 400px;
    max-width: 100%;
    padding: 40px;

    background: #fff;
}

.modal_title
{
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;

    margin: 0 0 25px;

    text-align: center;
}

.modal .text_block
{
    text-align: center;
}

.modal .links
{
    margin-top: 20px;

    text-align: center;
}

.modal .links > * + *
{
    margin-top: 10px;
}

.modal .links .btn
{
    color: #405e7d;

    position: relative;

    display: inline-block;

    -webkit-transition: border-color .2s linear;

    -o-transition: border-color .2s linear;

    -moz-transition: border-color .2s linear;

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

    border-bottom: 1px solid #a8c0d9;
}

.modal .links .btn:after
{
    position: absolute;
    top: 2px;
    right: -27px;
    bottom: 0;

    display: block;

    width: 18px;
    height: 1px;
    margin: auto;

    content: '';

    background: #405e7d;
}

.modal .links .btn:before
{
    position: absolute;
    top: 2px;
    right: -27px;
    bottom: 0;

    display: block;

    width: 7px;
    height: 7px;
    margin: auto;

    content: '';
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-right: 1px solid #405e7d;
    border-bottom: 1px solid #405e7d;
}

.modal .links .btn:hover
{
    border-color: transparent;
}



@media (max-width: 1439px)
{
    .buttonUp
    {
        right: 20px;

        margin-right: 0;
    }


    footer .creator
    {
        margin-right: 60px;
    }
}
