/**********************************************************/
/**************************GLOBAL**************************/
/**********************************************************/

html {
    overflow-y: scroll;
    height: 100%;
    min-height: 100%;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.animate-custom, .animate-custom:hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.opacity-custom {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /* IE 5.5+*/
    -moz-opacity: 1; /* Mozilla 1.6 & - */
    -khtml-opacity: 1; /* Konqueror 3.1, Safari 1.1 */
    opacity: 1; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.opacity-custom:hover {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70); /* IE 5.5+*/
    -moz-opacity: 0.7; /* Mozilla 1.6 */
    -khtml-opacity: 0.7; /* Konqueror 3.1, Safari 1.1 */
    opacity: 0.7; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.box-container {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

.box-container.small {
    max-width: 900px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}

.hidden {
    display: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
    background: white;
    color: #333333;
    height: 100%;
    min-height: 100%;
}

body.fixed-header {
    padding: 133px 0 0 0;
    box-sizing: border-box;
}

.shadow {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.7);
    z-index: 800;
}

/**************************FIX'S***************************/

a { color: inherit; }
a:hover { text-decoration: none; }

::selection {background: black; color: white;}
::-moz-selection {background: black; color: white;}
::-webkit-selection {background: black; color: white;}

::-webkit-input-placeholder { color: gray; }
:-moz-placeholder { color: gray; }
::-moz-placeholder { color: gray; }
:-ms-input-placeholder { color: gray; }

input:focus, textarea:focus, button:focus, a:focus { outline: none; }

input[type="submit"] { -webkit-appearance: none; -moz-appearance: none; appearance: none; }

/**************************FORMS***************************/

.form-container {
    padding: 20px;
    background: #f3f3f3;
    width: 100%;
    box-sizing: border-box;
}

.form-item,
.form-items {
    padding-bottom: 20px;
}

.form-items {
    justify-content: space-between;
}

.form-items .form-item {
    box-sizing: border-box;
    padding: 0 20px;
}

.form-items.two-items .form-item {
    width: 50%;
}

.form-items.four-items .form-item {
    width: 25%;
}

.form-items .form-item:first-child {
    padding-left: 0;
}

.form-items .form-item:last-child {
    padding-right: 0;
}

.form-item.half-width {
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}

.form-item:last-child {
    padding-bottom: 0;
}

.form-title {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0 10px 0;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-item span.required {
    color: red;
    padding-left: 5px;
}

.form-item-radio {
    padding-bottom: 10px;
}

label[for] {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: normal;
    padding-bottom: 5px;
}

label[for].grid {
    display: flex;
    align-items: center;
}

select {
    display: block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    background: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-transform: none;
    color: black;
    font-weight: 400;
}

input:not([type="submit"]) {
    display: block;
    width: 100%;
    height: 36px;
    line-height: 24px;
    padding: 5px 15px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    background: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-transform: none;
    color: black;
    font-weight: 400;
}

textarea {
    display: block;
    width: 100%;
    min-height: 170px;
    line-height: 16px;
    padding: 10px 15px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    background: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-transform: none;
    color: black;
    font-weight: 400;
    resize: none;
}

input:not([type="submit"]):focus,
textarea:focus {
    border: 1px solid black;
}

input:not([type="submit"]).error,
textarea.error {
    border: 1px solid red;
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    padding: 0 0 0 30px;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    line-height: 10px;
    text-align: center;
    border: 2px solid black;
    box-sizing: border-box;
    position: absolute;
    top: 0; left: 0;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
    content: "\f00c";
    font-family: FontAwesome;
}

.contact-form input[type="submit"],
.subscribe-form input[type="submit"] {
    width: 100%;
}

/**************************BUTTON**************************/

.button {
    display: block;
    height: 36px;
    line-height: 24px;
    padding: 5px 15px;
    box-sizing: border-box;
    border: 1px solid black;
    background: black;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-transform: none;
    color: white;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 10;
    text-align: center;
}

.button:hover {
    color: black;
    background: white;
}

.button.inactive,
.button.inactive:hover {
    border: #ccc;
    background: #ccc;
    color: white;
    cursor: default;
}

/**************************EDITOR**************************/

.body img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 2em 0;
}

strong {
    font-weight: bold;
}

.body ul {
    font-size: 16px;
    text-transform: none;
    font-weight: 400;
    padding: 0 0 20px 25px;
}

.body ul li {
    list-style: circle;
    padding: 0 0 10px 0;
    line-height: 1.8em;
}

.body iframe {
    width: 100%;
    height: 440px;
    border: 1px solid #e5e5e5;
}

.body p {
    font-size: 16px;
    text-transform: none;
    font-weight: 400;
    line-height: 1.8em;
    padding-bottom: 1em;
}

.body h2,h3,h4 {
    font-weight: 400;
    padding: 0 0 20px 0;
}

.body h2 {
    font-size: 30px;
}

.body h3 {
    font-size: 26px;
}

.body h4 {
    font-size: 22px;
}

/**************************MODALS**************************/

.modal-window {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    background: white;
    padding: 20px;
    box-sizing: border-box;
    max-width: 1200px;
    width: 80%;
    z-index: 850;
    color: black;
    border: 1px solid #e5e5e5;
    box-shadow: 0 0 15px rgba(0,0,0,.8);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.modal-window.small {
    width: 40%;
}

.modal-window.xsmall {
    width: 25%;
}

.modal-window-close,
.instagram-item-modal-close {
    position: absolute;
    top: 10px; right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 26px;
    cursor: pointer;
}

.modal-window-close:hover,
.instagram-item-modal-close:hover {
    color: gray;
}

/**********************************************************/
/**************************HEADER**************************/
/**********************************************************/

header {
    position: relative;
    color: white;
    border-bottom: 1px solid transparent;
}

header.scroll {
    color: black;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 600;
    background: white;
}

.admin-bar header.scroll {
    top: 32px;
}

header:before {
    display: block;
    content: "";
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 75px;
    background: black;
}

header.scroll:before {
    display: none;
}

/**************************LOGO****************************/

.logo-container {
    height: 75px;
    position: absolute;
    top: 0; left: 50%;
    margin: 0 -140px;
    z-index: 10;
}

header.scroll .logo-container {
    left: 0;
    margin: 0;
}

.logo-container a {
    display: block;
    height: inherit;
    padding: 0 20px;
}

.logo-container a span {
    float: left;
    height: inherit;
    position: relative;
}

.logo-container a span.logo-square {
    width: 75px;
}

.logo-container a span.logo-label {
    width: 165px;
}

header.scroll .logo-container a span.logo-label {
    display: none;
}

.logo-container a span.logo-label:before,
.logo-container a span.logo-square:before {
    display: block;
    content: "";
}

.logo-container a span.logo-label:before {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url(../images/logo-label.svg) center center no-repeat;
    background-size: contain;
}

.logo-container a span.logo-square:before {
    position: absolute;
    top: 15px; right: 15px; bottom: 15px; left: 15px;
    background: url(../images/logo.svg) center center no-repeat;
    background-size: contain;
}

header.scroll .logo-container a span.logo-square:before {
    background: url(../images/logo-black.svg) center center no-repeat;
}

/*********************SEARCH*CONTAINER*********************/

.search-block {
    padding: 15px 0;
    position: absolute;
    top: 0; right: 10px;
    height: 75px;
    box-sizing: border-box;
    z-index: 10;
}

.search-form-container {
    float: left;
}

#search-form {
    position: relative;
    padding: 5px 0;
}

#search-form input[type="text"] {
    display: block;
    border: none;
    background: transparent;
    color: transparent;
    padding: 0 35px 0 15px;
    box-sizing: border-box;
    height: 35px;
    line-height: 35px;
    width: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    position: absolute;
    top: 5px; right: 0;
    z-index: 0;
}

#search-form input[type="text"]:focus {
    width: 250px;
    border: 1px solid #ccc;
    background: white;
    color: black;
}

#search-form label {
    display: block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 5px; right: 0;
    z-index: 15;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

header.scroll #search-form label {
    color: black;
}

#search-form input[type="text"]:focus + label {
    color: black;
    z-index: 0;
}

#search-form input[type="submit"] {
    display: block;
    height: 35px;
    width: 35px;
    border: none;
    background: none;
    font-size: 0;
    color: transparent;
    position: absolute;
    top: 5px; right: 0;
    z-index: 10;
    cursor: pointer;
}

.contact-button {
    float: left;
    padding: 5px 0 5px 5px;
}

.contact-button a {
    display: block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
}

.language-button {
    float: left;
    padding: 5px 0 5px 5px;
}

.language-button a {
    display: block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
}

/************************MAIN*MENU*************************/

.main-menu-container {
    padding: 75px 0 0 0;
    color: black;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    height: 56px;
    position: relative;
}

header.scroll .main-menu-container {
    padding: 20px 0 0 100px;
    border-bottom: none;
    text-align: left;
}

.main-menu {
    display: inline-block;
}

.main-menu > li {
    float: left;
    position: relative;
}

.main-menu > li.catalog-expanded {
    position: static;
}

.main-menu > li > a {
    display: block;
    line-height: 26px;
    padding: 15px;
    text-decoration: none;
    position: relative;
}

.main-menu > li:hover > a,
.main-menu > li.active > a {
    text-decoration: underline;
}

.main-menu > li.show > a:before,
.main-menu > li.active > a:before,
.main-menu > li:hover > a:before,
.main-menu > li.show > a:after,
.main-menu > li.active > a:after,
.main-menu > li:hover > a:after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0; left: 50%;
    margin: 0 -12px;
    z-index: 350;
}

.main-menu:hover > li.active > a:before,
.main-menu:hover > li.active > a:after {
    display: none;
}

.main-menu:hover > li.active:hover > a:before,
.main-menu:hover > li.active:hover > a:after {
    display: block;
}

header.scroll .main-menu > li.show > a:before,
header.scroll .main-menu > li.active > a:before,
header.scroll .main-menu > li:hover > a:before,
header.scroll .main-menu > li.show > a:after,
header.scroll .main-menu > li.active > a:after,
header.scroll .main-menu > li:hover > a:after {
    display: none;
}

header.scroll .main-menu > li.catalog-expanded:hover > a:before,
header.scroll .main-menu > li.catalog-expanded:hover > a:after,
header.scroll .main-menu > li.expanded:hover > a:before,
header.scroll .main-menu > li.expanded:hover > a:after {
    display: block;
}

.main-menu > li.show > a:before,
.main-menu > li.active > a:before,
.main-menu > li:hover > a:before {
    border-top: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 13px solid #e5e5e5;
    border-left: 13px solid transparent;
}

.main-menu > li.show > a:after,
.main-menu > li.active > a:after,
.main-menu > li:hover > a:after {
    border-top: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    border-left: 12px solid transparent;
    left: calc(50% + 1px);
    bottom: -1px;
}

.main-menu > li.special {
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
    position: relative;
}

.main-menu > li.special:before {
    display: block;
    content: "";
    width: 1px;
    height: 16px;
    background: #e5e5e5;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -8px 0;
}

.drop-down-menu {
    display: none;
    background: white;
    border: 1px solid #e5e5e5;
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 100;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: left;
}

.main-menu > li.expanded:hover .drop-down-menu {
    display: block;
}

.drop-down-menu li a {
    display: block;
    padding: 0 15px;
    line-height: 30px;
    text-decoration: none;
    white-space: nowrap;
}

.drop-down-menu li.active a{
    background: #f4f4f4;
}

.drop-down-menu li a:hover {
    background: #eee;
}

.catalog-expanded-container {
    display: none;
    position: absolute;
    top: 100%; right: 0; left: 0;
    background: white;
    border: 1px solid #e5e5e5;
    text-align: left;
    padding: 10px 0 0 0;
    z-index: 300;
}

.catalog-expanded:hover .catalog-expanded-container {
    display: block;
}

.catalog-expanded-container ul {
    padding: 20px;
}

.catalog-expanded-container ul li {
    padding: 5px 0;
}

.catalog-expanded-container ul li.label {
    padding: 0 0 15px 0;
}

.catalog-expanded-container ul li.label a {
    text-decoration: none;
    font-size: 18px;
}

.catalog-expanded-container ul li a {
    text-decoration: none;
    line-height: 16px;
    white-space: normal;
}

.catalog-expanded-container ul li a:hover {
    text-decoration: underline;
}

.close-button {
    position: absolute;
    top: 5px;
    right: 7px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 2px rgba(0,0,0,.8);
    cursor: pointer;
}

.close-button:hover {
    color: black;
    text-shadow: none;
}

/***********************MOBILE*MENU************************/

.mobile-menu-button {
    display: none;
    float: left;
    padding: 5px 0 5px 5px;
    height: 45px;
    width: 40px;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 950;
}

.mobile-menu-button:before,
.mobile-menu-button:after {
    display: block;
    content: "";
}

.mobile-menu-button:before,
.mobile-menu-button span,
.mobile-menu-button:after {
    height: 2px;
    position: absolute;
    background: white;
    right: 0; left: 16px;
}

.mobile-menu-button:before {
    top: 15px;
}

.mobile-menu-button span {
    top: 21px;
}

.mobile-menu-button:after {
    top: 27px;
}

.mobile-menu-button.open:before {
    background: black;
    top: 21px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu-button.open span {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); /* IE 5.5+*/
    -moz-opacity: 0; /* Mozilla 1.6 */
    -khtml-opacity: 0; /* Konqueror 3.1, Safari 1.1 */
    opacity: 0; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.mobile-menu-button.open:after {
    background: black;
    top: 21px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-main-menu {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 900;
    background: white;
    color: black;
    overflow-x: hidden;
    overflow-y: scroll;
}

.admin-bar .mobile-main-menu {
    top: 46px;
}

.mobile-main-menu .title {
    position: fixed;
    top: 0; right: 0; left: 0;
    height: 55px;
    line-height: 55px;
    padding: 0 55px 0 15px;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
    background: white;
    z-index: 10;
}

.admin-bar .mobile-main-menu .title {
    top: 46px;
}

.main-menu-mobile {
    padding: 55px 0 0 0;
}

.main-menu-mobile a {
    display: block;
    line-height: 16px;
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.main-menu-mobile li li a {
    padding: 10px 15px 10px 30px;
}

.main-menu-mobile .active > a {
    background: #eee;
}

.main-menu-mobile .mobile-expanded > a {
    position: relative;
}

.main-menu-mobile .mobile-expanded > a:before {
    display: block;
    content: "\f0d7";
    font-family: 'FontAwesome', sans-serif;
    width: 36px;
    height: 10px;
    line-height: 10px;
    text-align: center;
    position: absolute;
    top: 50%; right: 0; bottom: 0;
    margin: -5px 0;
}

.main-menu-mobile .mobile-expanded.open > a:before {
    content: "\f0d8";
}

.main-menu-mobile .special > a {
    background: black;
    color: white;
}

.main-menu-mobile li ul {
    display: none;
}

.catalog-links-mobile a {
    padding: 10px 15px 10px 45px !important;
}

.main-menu-mobile .label a {
    font-weight: bold;
    padding: 10px 15px 10px 30px !important;
}

/**********************************************************/
/*************************CONTENT**************************/
/**********************************************************/

#main-container {
    height: 100%;
    min-height: 100%;
}

#main-container.blur {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    filter: blur(2px);
}

section#main-content {
    overflow: hidden;
    min-height: 100%;
}

section#main-content:after {
    display: block;
    content: "";
    height: 181px;
    clear: both;
}

.shop section#main-content:after {
    height: 239px;
}

section#content {
    padding: 40px 0;
}

/**************************SLIDER**************************/

.front-page-slider-container {
    padding-bottom: 40%;
    position: relative;
}

.front-page-slider {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    height: 100%;
}

.front-page-slider .item {
    display: block;
    height: inherit;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/**********************FRONT*PRODUCTS**********************/

.best-products-container {
    background: #2f2f2f;
    color: white;
}

.front-products-block {
    padding: 20px 0 40px 0;
}

.front-products-block .title {
    font-size: 26px;
    text-transform: none;
}

.front-products-items {
    margin: 0 -18px;
    padding: 20px 0 0 0;
}

.front-products-item {
    float: left;
    margin: 0 18px;
    padding-bottom: 30%;
    position: relative;
    width: calc(33.333333% - 36px);
    box-sizing: border-box;
    overflow: hidden;
}

.front-products-item-inner {
    display: block;
    position: absolute;
    top: 2px; right: 2px; bottom: 2px; left: 2px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.front-products-item-inner:before {
    display: block;
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.3);
    z-index: 0;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); /* IE 5.5+*/
    -moz-opacity: 0; /* Mozilla 1.6 & - */
    -khtml-opacity: 0; /* Konqueror 3.1, Safari 1.1 */
    opacity: 0; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.front-products-item-inner:hover:before {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /* IE 5.5+*/
    -moz-opacity: 1; /* Mozilla 1.6 & - */
    -khtml-opacity: 1; /* Konqueror 3.1, Safari 1.1 */
    opacity: 1; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.new-products .front-products-item-inner:after {
    display: block;
    content: "New";
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding: 5px 50px;
    box-sizing: border-box;
    background: red;
    color: white;
    font-weight: 400;
    position: absolute;
    top: 10px;
    left: -40px;
    z-index: 10;
}

.best-products .front-products-item-inner:after {
    display: block;
    content: "HIT";
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding: 5px 50px;
    box-sizing: border-box;
    background: white;
    color: black;
    font-weight: 400;
    position: absolute;
    top: 10px;
    left: -40px;
    z-index: 10;
}

.front-products-item-title {
    position: absolute;
    right: 0; bottom: 0; left: 0;
    color: white;
    padding: 15px 20px;
    z-index: 15;
    background: rgba(0,0,0,.5);
    font-size: 16px;
}

/************************FRONT*NEWS************************/

.front-news-block {
    padding: 20px 0 0 0;
}

.front-news-block .title {
    font-size: 26px;
    text-transform: none;
}

.front-news-items {
    padding: 20px 0 40px 0;
    margin: 0 -20px;
}

.front-news-item {
    float: left;
    width: 33.333333%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: justify;
}

.front-news-item-image-container {
    padding-bottom: 60%;
    position: relative;
}

.front-news-item-image {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.front-news-item-image:after {
    display: block;
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.3);
    z-index: 0;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); /* IE 5.5+*/
    -moz-opacity: 0; /* Mozilla 1.6 & - */
    -khtml-opacity: 0; /* Konqueror 3.1, Safari 1.1 */
    opacity: 0; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.front-news-item:hover .front-news-item-image:after {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /* IE 5.5+*/
    -moz-opacity: 1; /* Mozilla 1.6 & - */
    -khtml-opacity: 1; /* Konqueror 3.1, Safari 1.1 */
    opacity: 1; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.front-news-item-title {
    position: absolute;
    right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.5);
}

.front-news-item-title-mobile {
    display: none;
}

.front-news-item-title a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    color: white;
}

.front-news-item-desc {
    padding: 20px 0 0 0;
    font-weight: 400;
    text-transform: none;
    font-size: 14px;
}

.front-news-item-desc p {
    padding-bottom: 1em;
}

.front-news-item-desc p:last-child:after {
    display: none;
}

.front-news-more {
    padding: 0 0 40px 0;
}

.front-news-more a {
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #eee;
    color: #ccc;
    font-weight: 400;
    text-decoration: none;
}

.front-news-more a:hover {
    border: 1px solid black;
    background: black;
    color: white;
}

/*************************CATEGORY*************************/

.category-image-container {
    padding-bottom: 30%;
    position: relative;
}

.category-image {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-category .title {
    font-size: 40px;
    font-weight: 400;
    padding: 20px 0;
}

.category-desc {
    padding: 0 0 20px 0;
    text-transform: none;
    font-size: 14px;
    line-height: 1.8em;
}

.category-items-container .title {
    font-size: 18px;
    padding: 20px 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #eee;
}

.category-items {
    padding: 20px 0 0 0;
    margin: 0 -20px;
}

.category-item {
    width: 50%;
    box-sizing: border-box;
    padding: 0 18px 38px 18px;
}

.category-item-container {
    padding: 2px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.inactive .category-item-container {
    background: rgba(255,0,0,.15);
}

.new .category-item-container:before,
.hit .category-item-container:before {
    display: block;
    content: "New";
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding: 5px 50px;
    box-sizing: border-box;
    background: red;
    color: white;
    font-weight: 400;
    position: absolute;
    top: 10px;
    left: -40px;
    z-index: 10;
}

.hit .category-item-container:before {
    content: "HIT";
    background: black;
    color: white;
}

.category-item-container-inner {
    border: 1px solid #e5e5e5;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
}

.category-item-container-inner:before {
    display: block;
    content: "";
    position: absolute;
    top: 2px; right: 2px; bottom: 2px; left: 2px;
    background: rgba(0,0,0,.03);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.category-item:hover .category-item-container-inner:before {
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.category-item-image-container {
    float: left;
    width: 50%;
    padding-bottom: 50%;
    position: relative;
}

.category-item-image {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.category-item-image-gallery,
.category-item-image-gallery .category-item-image-first,
.category-item-image-gallery .category-item-image-second {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}

.category-item-image-gallery .category-item-image-first,
.category-item-image-gallery .category-item-image-second {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.category-item-image-gallery .category-item-image-second {
    opacity: 0;
}

.category-item-image-gallery:hover .category-item-image-first {
    opacity: 0;
}

.category-item-image-gallery:hover .category-item-image-second {
    opacity: 1;
}

.category-item-info {
    float: left;
    display: table;
    width: 50%;
    height: 100%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}

.category-item-info-inner {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

.category-item-info-title,
.category-item-info-subtitle {
    display: block;
    text-decoration: none;
}

.category-item-info-title {
    font-size: 18px;
    font-weight: 400;
}

.category-item-info-colors {
    margin: 0 -2px;
    padding: 10px 0 40px 0;
    position: relative;
}

.category-item-info-color {
    padding: 2px;
}

.category-item-info-color.new a {
    position: relative;
}

.category-item-info-color.new a:before {
    display: block;
    content: "";
    width: 0; height: 0;
    border-top: 5px solid red;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid red;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}

.category-item-info-color-square {
    display: block;
    width: 30px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.category-item-info-color-name {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 0;
}

.category-item-info-color:hover .category-item-info-color-name {
    display: block;
}

/**************************PRODUCT*************************/

.product-container {
    padding: 0 0 40px 0;
}

.product-images-container {
    float: left;
    width: calc(50% + 80px);
    box-sizing: border-box;
}

.product-info {
    float: left;
    width: calc(50% - 80px);
    box-sizing: border-box;
}

.product-info-tags {
    padding: 0 0 5px 0;
}

.product-info-tags span {
    display: block;
    float: left;
    font-size: 10px;
    font-weight: 400;
    padding: 2px 10px;
    border: 1px solid black;
    margin: 0 10px 0 0;
}

.product-info-tags span:last-child {
    margin: 0;
}

.product-info-title {
    font-size: 30px;
    line-height: 1em;
    font-weight: 400;
}

.product-info-subtitle {
    padding: 0 0 10px 0;
}

.product-info-collection {
    display: block;
    width: 100px;
    height: 40px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 0 10px 0;
}

.product-info-title + .product-info-collection {
    margin: 10px 0;
}

.product-info-colors {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0 5px 0;
    margin: 0 0 10px 0;
}

.product-info-title + .product-info-colors {
    margin: 10px 0;
}

.product-info-colors-name {
    padding: 10px 0;
    font-weight: 400;
    font-size: 16px;
}

.product-info-colors-container {
    margin: 0 0 0 -2px;
    max-width: 300px;
}

.product-info-color {
    padding: 2px;
}

.product-info-color.new {
    position: relative;
}

.product-info-color.new:before {
    display: block;
    content: "";
    width: 0; height: 0;
    border-top: 7px solid red;
    border-right: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid red;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
}

.product-info-color-square {
    width: 30px;
    height: 30px;
    margin: 0 2px 2px 0;
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.product-info-color-square:before,
.product-info-color-square:after {
    display: block;
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border: 3px solid white;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); /* IE 5.5+*/
    -moz-opacity: 0; /* Mozilla 1.6 & - */
    -khtml-opacity: 0; /* Konqueror 3.1, Safari 1.1 */
    opacity: 0; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.product-info-color-square:after {
    border: 1px solid black;
}

.product-info-color.active .product-info-color-square {
    cursor: default;
}

.product-info-color-square:hover:before {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /* IE 5.5+*/
    -moz-opacity: 1; /* Mozilla 1.6 & - */
    -khtml-opacity: 1; /* Konqueror 3.1, Safari 1.1 */
    opacity: 1; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.product-info-color.active .product-info-color-square:before,
.product-info-color.active .product-info-color-square:after {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /* IE 5.5+*/
    -moz-opacity: 1; /* Mozilla 1.6 & - */
    -khtml-opacity: 1; /* Konqueror 3.1, Safari 1.1 */
    opacity: 1; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.product-info-color-name,
.product-info-color-code,
.product-info-color-price {
    display: none;
}

.product-shop {
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0 15px 0;
    margin: 0 0 10px 0;
    align-items: center;
}

.product-info-collection + .product-shop,
.category-item .product-shop {
    border-top: 1px solid #e5e5e5;
    padding: 15px 0;
    margin-top: 10px;
}

.category-item .product-shop {
    padding: 10px 0;
}

.category-item .product-shop-price {
    padding: 0 20px 5px 0;
}

.product-shop-price {
    padding: 0 30px 5px 0;
    font-weight: bold;
    align-items: baseline;
}

.product-shop-price span.main-price,
.product-shop-price span.event-price {
    font-size: 20px;
    padding-right: 2px;
}

.product-shop-price span.event-price + span.main-price {
    order: -1;
    font-size: 120%;
    color: gray;
    text-decoration: line-through;
}

.product-info-desc {
    padding: 10px 0 20px 0;
    text-transform: none;
    font-size: 14px;
}

.product-info-desc p {
    padding-bottom: 1em;
}

.product-info-desc ul {
    padding: 0 0 0 20px;
}

.product-info-desc ul li {
    list-style: circle;
    padding: 0 0 5px 0;
    line-height: 1.5em;
}

.product-info-desc p:last-child:after {
    display: none;
}

.product-info-desc img {
    max-width: 100%;
    height: auto;
}

.product-info-special-title {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
}

.collapsed .product-info-special-title {
    padding-bottom: 40px;
}

.collapsed .product-info-special-title > * {
    border-bottom: 1px dashed #333;
    cursor: pointer;
}

.collapsed .product-info-special-title:hover > * {
    border-bottom: 1px dashed transparent;
}

.product-info-special-collapse {
    padding: 1em 0;
    text-align: center;
}

.product-info-special-collapse span {
    display: inline-block;
    border-bottom: 1px dashed #333;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.product-info-special-collapse span:hover {
    border-bottom: 1px dashed transparent;
}

.collapsed .product-info-special-body {
    display: none;
}

.product-images {
    display: none;
}

.product-images.active {
    display: block;
}

.product-images-previews {
    float: left;
    width: 80px;
}

.product-images-preview {
    width: 80px;
    height: 80px;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 0 10px 0;
    cursor: pointer;
    position: relative;

}

.product-images-preview:before {
    content: "";
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.1);
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); /* IE 5.5+*/
    -moz-opacity: 0; /* Mozilla 1.6 & - */
    -khtml-opacity: 0; /* Konqueror 3.1, Safari 1.1 */
    opacity: 0; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product-images-preview:hover:before {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /* IE 5.5+*/
    -moz-opacity: 1; /* Mozilla 1.6 & - */
    -khtml-opacity: 1; /* Konqueror 3.1, Safari 1.1 */
    opacity: 1; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.product-images-preview.active {
    border: 1px solid black;
    cursor: default;
}

.product-images-preview.active:hover:before {
    display: none;
}

.product-image-active-container {
    float: left;
    width: calc(100% - 80px);
    padding-bottom: 65%;
    position: relative;
}

.product-image-active {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.recommended-items-container {
    border-top: 1px solid #e5e5e5;
}

.recommended-items-container .title {
    font-size: 26px;
    text-transform: none;
    padding: 10px 0;
}

.recommended-items {
    margin: 0 -20px;
}

.recommended-item-container {
    float: left;
    width: 25%;
    box-sizing: border-box;
    padding: 0 18px 20px;
}

.recommended-item-inner {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.recommended-item {
    position: absolute;
    top: 2px; right: 2px; bottom: 2px; left: 2px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #e5e5e5;
}

.new .recommended-item:after,
.hit .recommended-item:after {
    display: block;
    content: "New";
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding: 5px 50px;
    box-sizing: border-box;
    background: red;
    color: white;
    font-weight: 400;
    position: absolute;
    top: 10px;
    left: -40px;
    z-index: 10;
}

.recommended-item:before {
    display: block;
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.05);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); /* IE 5.5+*/
    -moz-opacity: 0; /* Mozilla 1.6 & - */
    -khtml-opacity: 0; /* Konqueror 3.1, Safari 1.1 */
    opacity: 0; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.recommended-item:hover:before {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /* IE 5.5+*/
    -moz-opacity: 1; /* Mozilla 1.6 & - */
    -khtml-opacity: 1; /* Konqueror 3.1, Safari 1.1 */
    opacity: 1; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.hit .recommended-item:after {
    content: "HIT";
    background: black;
    color: white;
}

.recommended-item-title {
    position: absolute;
    right: 2px;
    bottom: 2px;
    left: 2px;
    padding: 10px 20px;
    color: white;
    background: rgba(0,0,0,.5);
    font-size: 18px;
}

.product-info-code span {
    display: inline-block;
    font-weight: 400;
    padding: 5px 15px;
    background: black;
    color: white;
    margin: 0 10px 10px 0;
}

.product-info-code span:last-child {
    margin: 0 0 10px 0;
}

/***********************COLLECTIONS************************/

.collections-item {
    display: block;
    padding-bottom: 30%;
    position: relative;
    margin: 0 0 40px 0;
}

.collections-item:last-child {
    margin: 0;
}

.collections-item-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/***********************SIMPLE*PAGE************************/

.page-simple .title {
    font-size: 40px;
    font-weight: 400;
    padding: 0 0 20px 0;
}

.download-catalog {
    font-size: 32px;
    line-height: 1.5em;
}

.download-catalog a {
    text-decoration: none;
    align-items: center;
}

.download-catalog a i {
    display: block;
}

.download-catalog a span {
    display: block;
    padding: 0 0 0 20px;
    text-transform: none;
}

.page-tabs {
    margin: -20px -10px 0 -10px;
}

.body + .page-tabs {
    margin: 0 -10px;
}

.page-tab {
    width: 10%;
    padding: 0 10px 20px;
    box-sizing: border-box;
    cursor: pointer;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60); /* IE 5.5+*/
    -moz-opacity: .6; /* Mozilla 1.6 & - */
    -khtml-opacity: .6; /* Konqueror 3.1, Safari 1.1 */
    opacity: .6; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.page-tab:hover,
.page-tab.active {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /* IE 5.5+*/
    -moz-opacity: 1; /* Mozilla 1.6 & - */
    -khtml-opacity: 1; /* Konqueror 3.1, Safari 1.1 */
    opacity: 1; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
}

.page-tab-inner {
    padding-bottom: 65%;
    position: relative;
}

.page-tab-title {
    display: none;
    position: absolute;
    top: -45px; left: 50%;
    padding: 5px 15px;
    line-height: 20px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 10;
    font-size: 14px;
    font-weight: bold;
    -moz-transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.page-tab-title:before {
    display: block;
    content: "";
    width: 0; height: 0;
    position: absolute;
    bottom: -20px; left: 50%;
    margin: 0 -10px;
    border: 10px solid transparent;
    border-top: 10px solid #ccc;
}

.page-tab-title:after {
    display: block;
    content: "";
    width: 0; height: 0;
    position: absolute;
    bottom: -18px; left: 50%;
    margin: 0 -9px;
    border: 9px solid transparent;
    border-top: 9px solid white;
}

.page-tab:hover .page-tab-title {
    display: block;
}

.page-tab-container {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #e5e5e5;
}

.page-tab:hover .page-tab-container,
.page-tab.active .page-tab-container {
    border: 1px solid black;
}

.page-tab-contents {
    padding: 20px 0 0 0;
    border-top: 1px solid #e5e5e5;
}

.page-tab-content {
    display: none;
}

.page-tab-content.active {
    display: block;
}

.page-tab-content-shops {
    padding: 0 0 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.page-tab-content-shops:last-child {
    border-bottom: none;
}

.page-tab-content-shop {
    display: block;
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.declaration-title {
    padding: 40px 0 20px 0 !important;
}

.declaration {
    display: block;
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #e5e5e5;
}

.declaration:last-child {
    border-bottom: none;
}

.page-tab-contents .subtitle {
    font-size: 26px;
    font-weight: 400;
    padding: 10px 0 20px 0;
}

.page-tab-contents .subtitle.with-logo {
    padding: 20px 0 20px 60px;
    position: relative;
}

.subtitle-logo {
    position: absolute;
    top: 10px; bottom: 10px; left: 0;
    width: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.page-tab-content-address {
    padding: 0 0 20px 0;
    font-size: 16px;
    font-weight: 400;
}

/***************************NEWS***************************/

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 0 20px 0;
}

.news-item:last-child {
    border-bottom: none;
}

.page-news .news-item {
    padding: 0;
    border-bottom: none;
    margin: 0;
}

.news-item-date {
    float: left;
    width: 20%;
    min-height: 10px;
}

.news-item-date-inner {
    width: 120px;
    text-align: center;
}

.news-item-date-inner span {
    display: block;
    font-weight: 400;
    line-height: 1em;
}

.news-item-date-inner span.day {
    font-size: 50px;
}

.news-item-date-inner span.mounth {
    font-size: 18px;
    padding: 0 0 10px 0;
    border-bottom: 1px solid black;
}

.news-item-date-inner span.year {
    font-size: 26px;
    padding: 10px 0 0 0;
}

.news-item-content {
    float: left;
    width: 60%;
}

.news-item-title {
    padding: 0 0 20px 0;
    text-align: center;
}

.news-item-title a {
    font-size: 30px;
    font-weight: 400;
    text-decoration: none;
}

.news-image-container,
.news-item-image {
    padding-bottom: 60%;
    position: relative;
}

.news-image,
.news-item-image a {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 20px; left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-item-desc p {
    font-size: 16px;
    text-transform: none;
    font-weight: 400;
    padding-bottom: 1em;
}

.page-news .title {
    padding: 0 0 20px 0;
    font-size: 30px;
    font-weight: 400;
}

/*************************CONTACTS*************************/

.page-contacts .title {
    font-size: 40px;
    font-weight: 400;
    padding: 0 0 20px 0;
}

.page-contacts .category-image-container + .title {
    padding: 20px 0;
}

.side-container {
    padding: 40px 0 0 0;
    border-top: 1px solid #e5e5e5;
}

.side-container .left-side {
    float: left;
    width: 50%;
    padding: 0 20px 0 0;
    box-sizing: border-box;
    font-size: 18px;
}

.page-contacts .side-container .left-side {
    text-transform: none;
}

.side-container .left-side span {
    display: block;
}

.side-container .left-side i {
    font-size: 20px;
    padding: 0 5px 0 0;
}

.side-container .left-side span.contacts-name {
    font-size: 22px;
    font-weight: 400;
}

.side-container .left-side span.contacts-address,
.side-container .left-side span.contacts-name {
    padding-bottom: 1em;
}

.side-container .left-side a.contacts-email,
.side-container .left-side a.contacts-phone {
    display: block;
    text-decoration: none;
    padding: 0 0 5px 0;
}

.side-container .right-side {
    float: left;
    width: 50%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}

/************************PAGINATION************************/

.pagination {
    padding: 40px 0 0 0;
    text-align: center;
}

.pagination-list {
    display: inline-block;
}

.pagination-list li {
    float: left;
    margin: 0 10px 0 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 400;
    color: #ccc;
}

.pagination-list li:hover {
    border: 1px solid black;
}

.pagination-list li.more {
    border: 1px solid #e5e5e5;
}

.pagination-list li.active {
    border: 1px solid #ccc;
    background: #e5e5e5;
    color: black;
}

.pagination-list li i {
    font-size: 20px;
}

.pagination-list li:last-child {
    margin: 0;
}

.pagination-list li a {
    display: block;
    text-decoration: none;
}

.pagination-list li:hover a,
.pagination-list li.active a {
    background: black;
    color: white;
}

/**************************SEARCH**************************/

.page-search .title {
    font-size: 26px;
    font-weight: 400;
    padding: 0 0 20px 0;
}

.search-item {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item-image-container {
    float: left;
    width: 200px;
}

.search-item-image {
    padding-bottom: 100%;
    position: relative;
}

.search-item-image a {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}

.search-item-info {
    float: left;
    width: calc(100% - 200px);
    padding: 0 0 0 20px;
    box-sizing: border-box;
}

.search-item-title {
    font-size: 22px;
    font-weight: 400;
}

.search-item-title a,
.search-item-subtitle a {
    display: inline-block;
    text-decoration: none;
    line-height: 1em;
}

.search-item-desc {
    text-transform: none;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 0 0 0;
}

/*********************INSTAGRAM*BLOCK**********************/

.instagram-block {
    background: #2f2f2f;
    color: white;
}

.page-product .instagram-block {
    margin-top: 20px;
}

.instagram-block .title {
    font-size: 26px;
    text-transform: none;
    padding: 20px 0 0 0;
}

.instagram-items {
    padding: 20px 0 40px 0;
    margin: 0 -20px;
    width: calc(100% + 40px);
}

.instagram-item {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.instagram-item-inner {
    padding-bottom: 100%;
    position: relative;
}

.instagram-item-image {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(255,255,255,.5);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: zoom-in;
}

.instagram-item-image:before {
    display: block;
    content: "\f16d";
    font-family: 'FontAwesome', sans-serif;
    position: absolute;
    top: 10px; right: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 20px;
    z-index: 10;
}

.instagram-item-image:after {
    display: block;
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.instagram-item-image:hover:after {
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.instagram-item-modal-image-container {
    width: 60%;
    box-sizing: border-box;
}

.instagram-item-modal-image-inner {
    padding-bottom: 100%;
    position: relative;
}

.instagram-item-modal-image {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(255,255,255,.5);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.instagram-item-modal-info {
    width: 40%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}

.instagram-item-modal-author {
    padding: 0 0 20px 0;
    align-items: center;
}

.instagram-item-modal-author-avatar {
    display: block;
    width: 50px;
    height: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 5px;
}

.instagram-item-modal-author-name {
    font-weight: 400;
    padding: 0 0 0 20px;
    text-decoration: none;
}

.instagram-item-modal-text {
    text-transform: none;
    font-size: 16px;
}

.instagram-item-modal {
    display: none;
}

/**********************SUBSCRIBE*MODAL*********************/

#subscribe-modal {
    background: url(../images/subscribe.jpg) center center no-repeat;
    background-size: cover;
    border: none;
    color: white;
}

#subscribe-modal:before {
    display: block;
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.5);
}

.subscribe-modal-inner {
    position: relative;
    z-index: 100;
}

.subscribe-modal-text {
    margin: 20px 0 40px 0;
    text-align: center;
    font-weight: normal;
}

.subscribe-modal-text .small {
    font-size: 150%;
}

.subscribe-modal-text .big {
    font-size: 200%;
    padding: 20px 0 0 0;
}

.subscribe-modal-form {
    max-width: 350px;
    margin: 0 auto;
}

.subscribe-modal-notshow {
    max-width: 350px;
    margin: 0 auto;
    padding: 20px 0 40px 0;
}

.subscribe-modal-notshow input[type="checkbox"] + label:before {
    border-color: white;
}

/**************************SCHOOL**************************/

.school-calendar {
    padding: 0 0 20px 0;
}

.body + .school-calendar {
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.school-calendar-header {
    padding: 0 0 20px 0;
    font-size: 20px;
    justify-content: space-between;
    align-items: center;
}

.school-calendar-header span {
    font-weight: normal;
}

.school-calendar-action {
    cursor: pointer;
}

.school-calendar-prev span {
    padding: 0 0 0 10px;
}

.school-calendar-next span {
    padding: 0 10px 0 0;
}

.school-calendar-action i {
    font-size: 26px;
}

.school-calendar-prev.inactive {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70); /* IE 5.5+*/
    -moz-opacity: 0.7; /* Mozilla 1.6 */
    -khtml-opacity: 0.7; /* Konqueror 3.1, Safari 1.1 */
    opacity: 0.7; /* CSS3 - Mozilla 1.7b +, Firefox 0.9 +, Safari 1.2+, Opera 9 */
    cursor: default !important;
}

.school-calendar-item {
    display: block;
    border-top: 1px solid black;
    line-height: 20px;
    padding: 20px 15px;
    text-decoration: none;
    font-size: 16px;
}

.school-calendar-item:last-child {
    border-bottom: 1px solid black;
}

a.school-calendar-item:hover {
    background: #f8f8f8;
}

.school-calendar-item-date {
    font-weight: bold;
}

/***************************CART***************************/

.cart-widget {
    display: block;
    position: fixed;
    top: 40%; right: -90px;
    width: 70px;
    height: 90px;
    margin: -45px 0;
    background: black;
    border-radius: 10px 0 0 10px;
    color: white;
    text-decoration: none;
    z-index: 200;
    border: 1px solid white;
    border-right: none;
    box-sizing: border-box;
}

.cart-widget.active {
    right: 0;
}

.cart-widget-icon {
    width: inherit;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: relative;
    font-size: 36px;
}

.cart-widget-count {
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    position: absolute;
    top: -5px; left: -5px;
    background: #333;
    border: white 2px solid;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
    opacity: 0;
    box-shadow: -1px -1px 2px rgba(0,0,0,.5);
}

.cart-widget-count.active {
    opacity: 1;
}

.cart-widget-total {
    width: inherit;
    height: 30px;
    line-height: 20px;
    text-align: center;
    font-size: 8px;
    font-weight: bold;
}

.cart-widget-total span {
    font-size: 12px;
    padding-right: 2px;
}

.side-container .cart-left-side {
    width: 70%;
}

.side-container .cart-right-side {
    width: 30%;
    padding-top: 30px;
}

.cart-block-container,
.order-block-container {
    padding-bottom: 40px;
}

.order-block-container,
.payment-block-container {
    display: none;
}

.cart-block-item {
    padding: 5px 0;
    border-bottom: 1px solid #e5e5e5;
}

.cart-block-item-image-container {
    width: 120px;
}

.cart-block-item-image-inner {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.cart-block-item-image {
    display: block;
    position: absolute;
    top: 5px; right: 5px; bottom: 5px; left: 5px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.cart-block-item-body {
    width: calc(100% - 310px);
    padding: 10px 20px 40px 10px;
    position: relative;
    box-sizing: border-box;
}

.cart-block-item-name {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
}

.cart-block-item-subtitle {
    font-size: 12px;
    text-transform: uppercase;
}

.cart-block-item-color {
    padding-top: 10px;
    color: #ccc;
    font-size: 12px;
    text-transform: uppercase;
}

.cart-block-item-count-container {
    width: 100px;
    justify-content: center;
    align-items: center;
}

.cart-block-item-count {
    padding: 5px !important;
    text-align: center;
}

.cart-block-item-count-widget {
    align-items: center;
}

.cart-block-item-count-widget input {
    width: 40px;
}

.cart-block-item-count-widget div.item-count {
    width: 30px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
}

.cart-block-item-count-widget div.item-count.disabled {
    opacity: .7;
    cursor: auto;
}

.cart-block-item-count-widget i {
    padding: 0 !important;
}

.cart-block-item-remove {
    display: none;
    position: absolute;
    bottom: 20px; left: 10px;
    font-size: 10px;
    color: red;
    font-weight: bold;
    cursor: pointer;
}

.cart-block-item:hover .cart-block-item-remove {
    display: block;
}

.cart-block-item-price {
    width: 90px;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}

.cart-block-item-price span {
    padding-right: 2px;
}

.cart-block-item-price i {
    font-size: 10px !important;
    position: relative;
    top: 2px;
}

.cart-block-bottom-item i {
    font-size: 12px !important;
    position: relative;
    top: 8px;
}

#delivery-price-container i {
    font-size: 12px !important;
    position: relative;
}

.cart-block-item-price span.old-price {
    font-size: 80%;
    color: gray;
    text-decoration: line-through;
}

.cart-block-bottom {
    padding-top: 10px;
    font-weight: bold;
}

.cart-block-bottom.border-top {
    border-top: 1px solid #e5e5e5;
}

.cart-block-bottom-item {
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

.cart-block-bottom-item.normal {
    font-weight: normal;
}

.cart-block-bottom-item.total {
    border-top: 1px solid #e5e5e5;
    padding-top: 10px;
}

.cart-block-bottom-item span {
    padding-right: 2px;
}

.cart-container {
    padding: 0 !important;
}

.loader-container {
    padding-bottom: 50%;
    position: relative;
}

.lds-dual-ring {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%; left: 50%;
    margin: -40px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 44px;
    height: 44px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #ccc;
    border-color: #ccc transparent #ccc transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

.shop-modal-window.small {
    max-width: 500px;
    width: 500px;
    border-radius: 25px;
}

.shop-modal-window .modal-text {
    font-size: 16px;
    text-align: center;
    padding: 20px 0;
    text-transform: initial;
    font-weight: bold;
    align-items: center;
    justify-content: center;
}

.shop-modal-window .modal-text i {
    padding: 0 10px 0 0;
    font-size: 36px;
    height: 36px;
    line-height: 36px;
    display: block;
}

.shop-modal-window .modal-buttons {
    justify-content: space-between;
    padding-top: 20px;
}

.shop-modal-window .modal-buttons .button {
    width: 200px;
}

.cart-block-container.active,
.order-block-container.active {
    position: relative;
}

.cart-block-container.active:after,
.order-block-container.active:after {
    display: block;
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(255,255,255,.25);
    z-index: 100;
}

.cart-block-buttons {
    padding-top: 20px;
    justify-content: space-between;
}

.cart-block-promo {
    border-bottom: 1px solid #e5e5e5;
}

.cart-block-promo .form-items .form-item {
    padding: 0;
}

.cart-block-promo .form-items .form-item:first-child {
    flex-grow: 1;
}

.form-item-promo {
    border: 2px solid gray;
    padding: 5px 5px 5px 15px;
    height: 36px;
    line-height: 22px;
    box-sizing: border-box;
    align-items: center;
    border-radius: 18px;
}

.form-item-promo > p {
    font-weight: bold;
    align-items: center;
}

.form-item-promo > p > span {
    font-weight: normal;
    font-size: 80%;
    color: gray;
    padding: 0 10px 0 5px;
}

.form-item-promo > span {
    color: gray;
    cursor: pointer;
}

.form-item-promo > span:hover {
    color: black;
}

/**********************************************************/
/**************************FOOTER**************************/
/**********************************************************/

footer {
    margin-top: -181px;
    text-align: center;
    background: white;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
}

.shop footer {
    text-align: left;
    margin-top: -239px;
}

.social-links-container {
    position: relative;
}

.social-links-container:before {
    display: block;
    content: "";
    width: 60px;
    height: 1px;
    background: #e5e5e5;
    position: absolute;
    bottom: 0; left: 50%;
    margin: 0 -30px;
}

.shop footer .social-links-container:before {
    display: none;
}

.social-links {
    padding: 20px 0;
    display: inline-block;
}

.social-links li {
    float: left;
    margin: 0 30px 0 0;
}

.social-links li:last-child {
    margin: 0;
}

.social-links li a {
    display: block;
    width: 42px;
    height: 42px;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    background: black;
    color: white;
    border-radius: 50%;
}

.social-links-label {
    font-weight: 400;
}

.copyright {
    padding: 20px 0 0 0;
}

.footer-shopabout-container {
    width: 30%;
}

.footer-shopinfo-container {
    width: 70%;
}

.footer-shopinfo-text {
    text-transform: none;
    font-weight: normal;
}

.shop-logos-container {
    padding-top: 25px;
}

.shop-logos-inner {
    padding-bottom: 6%;
    position: relative;
}

.shop-logos {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url(../images/shop-logos.png) center center no-repeat;
    background-size: contain;
}

.shop footer .logo-container {
    position: static;
    margin: 0;
    padding-bottom: 15px;
    margin-right: 40px;
}

.shop footer .logo-container a {
    padding: 0;
}

.shop footer .logo-container a span.logo-square:before {
    background: url(../images/logo-black.svg) center center no-repeat;
    top: 0; right: 0; bottom: 0; left: 0;
}

.shop footer .logo-container a span.logo-label:before {
    background: url(../images/logo-label-black.svg) center center no-repeat;
}

.shop footer .logo-container a span.logo-label {
    width: 200px;
    margin-left: 20px;
}

.shop footer .logo-container a span.logo-square {
    width: 55px;
    margin-left: 0;
    margin-right: 0;
}