/*
Theme Name: Light
Description: Adapted theme on WP.
Version: 1.0
*/
/*Сброс стандартных стилей браузера*/
:focus {
 outline: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
 display: block;
}
body {
 line-height: 1.1;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
 -webkit-appearance: none;
 -moz-appearance: none;
}
input[type=search] {
 -webkit-appearance: none;
 -moz-appearance: none;
 -webkit-box-sizing: content-box;
 -moz-box-sizing: content-box;
 box-sizing: content-box;
}
textarea {
 overflow: auto;
 vertical-align: top;
 resize: vertical;
}
audio,
canvas,
video {
 display: inline-block;
 *display: inline;
 *zoom: 1;
 max-width: 100%;
}
audio:not([controls]) {
 display: none;
 height: 0;
}
[hidden] {
 display: none;
}
html {
 font-size: 100%;
 -webkit-text-size-adjust: 100%;
 -ms-text-size-adjust: 100%;
}
*:focus,
*:active,
*:hover {
 outline: none;
}
img {
 border: 0;
 -ms-interpolation-mode: bicubic;
}
figure {
 margin: 0;
}
form {
 margin: 0;
}
fieldset {
 border: 1px solid #C0C0C0;
 margin: 0 2px;
 padding: 0.35em 0.625em 0.75em;
}
legend {
 border: 0;
 /* 1 */
 padding: 0;
 white-space: normal;
 /* 2 */
 *margin-left: -7px;
 /* 3 */
}
button,
input,
select,
textarea {
 font-size: 100%;
 margin: 0;
 vertical-align: baseline;
 *vertical-align: middle;
}
button,
input {
 line-height: normal;
}
button,
select {
 text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
 -webkit-appearance: button;
 /* 2 */
 cursor: pointer;
 /* 3 */
 *overflow: visible;
 /* 4 */
}
button[disabled],
html input[disabled] {
 cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
 box-sizing: border-box;
 /* 1 */
 padding: 0;
 /* 2 */
 *height: 13px;
 /* 3 */
 *width: 13px;
 /* 3 */
}
input[type="search"] {
 -webkit-appearance: textfield;
 /* 1 */
 -moz-box-sizing: content-box;
 -webkit-box-sizing: content-box;
 /* 2 */
 box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
 -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
 border: 0;
 padding: 0;
}
textarea {
 overflow: auto;
 /* 1 */
 vertical-align: top;
 /* 2 */
}
table {
 border-collapse: collapse;
 border-spacing: 0;
}
html,
button,
input,
select,
textarea {
 color: #222;
}
::-moz-selection {
 background: #B3D4FC;
 text-shadow: none;
}
::selection {
 background: #B3D4FC;
 text-shadow: none;
}
img {
 vertical-align: middle;
}
fieldset {
 border: 0;
 margin: 0;
 padding: 0;
}
textarea {
 resize: vertical;
}
.chromeframe {
 margin: 0.2em 0;
 background: #CCC;
 color: #000;
 padding: 0.2em 0;
}
/*Прелоадер*/
.loader-wrap {
 background-color: #000;
 position: fixed;
 z-index: 9555555;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 display: flex;
 justify-content: center;
 align-content: center;
 opacity: 0.7;
 transition: 550ms;
}
.home .loader-wrap {
 opacity: 1;
}
.loader {
 display: block;
 position: relative;
 height: 100px;
 width: 100px;
 margin: auto;
 background-color: #FFF;
 border-radius: 50%;
 -webkit-animation: loaderAnim 3s infinite linear;
 animation: loaderAnim 3s infinite linear;
}
.loader:before,
.loader:after {
 content: "";
 display: block;
 border-radius: 50%;
 position: absolute;
 background-color: #000;
}
.loader:before {
 height: 80px;
 width: 80px;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%,-50%);
 transform: translate(-50%, -50%);
}
.loader:after {
 height: 100px;
 width: 100px;
 background-color: #000;
 top: 50%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
 left: -50px;
 -webkit-animation: pulse .9554140127s infinite alternate;
 animation: pulse 0.9554140127s infinite alternate;
}
@-webkit-keyframes loaderAnim {
 0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
 }
 100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
 }
}
@keyframes loaderAnim {
 0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
 }
 100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
 }
}
@-webkit-keyframes pulse {
 0% {
  -webkit-transform: translateY(-50%) scale(0.25);
  transform: translateY(-50%) scale(0.25);
  border-color: #FFF;
 }
 100% {
  -webkit-transform: translateY(-50%) scale(1.9);
  transform: translateY(-50%) scale(1.9);
 }
}
@keyframes pulse {
 0% {
  -webkit-transform: translateY(-50%) scale(0.25);
  transform: translateY(-50%) scale(0.25);
  border-color: #FFF;
 }
 100% {
  -webkit-transform: translateY(-50%) scale(1.9);
  transform: translateY(-50%) scale(1.9);
 }
}
.loaded .loader-wrap {
 opacity: 0;
 pointer-events: none;
}
/*Общее*/
@font-face {
 font-display: swap;
 font-family: 'Myriad Pro';
 src: url('assets/webfonts/myriadpro/MyriadPro-Bold.eot');
 src: local('Myriad Pro Bold'), local('MyriadPro-Bold'), url('assets/webfonts/myriadpro/MyriadPro-Bold.eot?#iefix') format('embedded-opentype'), url('assets/webfonts/myriadpro/MyriadPro-Bold.woff') format('woff'), url('assets/webfonts/myriadpro/MyriadPro-Bold.ttf') format('truetype');
 font-weight: bold;
 font-style: normal;
}
@font-face {
 font-display: swap;
 font-family: 'Myriad Pro';
 src: url('assets/webfonts/myriadpro/MyriadPro-Semibold.eot');
 src: local('Myriad Pro Semibold'), local('MyriadPro-Semibold'), url('assets/webfonts/myriadpro/MyriadPro-Semibold.eot?#iefix') format('embedded-opentype'), url('assets/webfonts/myriadpro/MyriadPro-Semibold.woff') format('woff'), url('assets/webfonts/myriadpro/MyriadPro-Semibold.ttf') format('truetype');
 font-weight: 600;
 font-style: normal;
}
@font-face {
 font-display: swap;
 font-family: 'Myriad Pro';
 src: url('assets/webfonts/myriadpro/MyriadPro-Black.eot');
 src: local('Myriad Pro Black'), local('MyriadPro-Black'), url('assets/webfonts/myriadpro/MyriadPro-Black.eot?#iefix') format('embedded-opentype'), url('assets/webfonts/myriadpro/MyriadPro-Black.woff') format('woff'), url('assets/webfonts/myriadpro/MyriadPro-Black.ttf') format('truetype');
 font-weight: 900;
 font-style: normal;
}
@font-face {
 font-display: swap;
 font-family: 'Myriad Pro';
 src: url('assets/webfonts/myriadpro/MyriadPro-Regular.eot');
 src: local('Myriad Pro Regular'), local('MyriadPro-Regular'), url('assets/webfonts/myriadpro/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'), url('assets/webfonts/myriadpro/MyriadPro-Regular.woff') format('woff'), url('assets/webfonts/myriadpro/MyriadPro-Regular.ttf') format('truetype');
 font-weight: normal;
 font-style: normal;
}
@font-face {
 font-display: swap;
 font-family: 'Myriad Pro';
 src: url('assets/webfonts/myriadpro/MyriadPro-Light.eot');
 src: local('Myriad Pro Light'), local('MyriadPro-Light'), url('assets/webfonts/myriadpro/MyriadPro-Light.eot?#iefix') format('embedded-opentype'), url('assets/webfonts/myriadpro/MyriadPro-Light.woff') format('woff'), url('assets/webfonts/myriadpro/MyriadPro-Light.ttf') format('truetype');
 font-weight: 300;
 font-style: normal;
}
body {
 margin: 0;
 font-family: 'Myriad Pro';
 position: relative;
 padding-top: 120px;
 font-size: 18px;
}
pre {
 /*+border-radius: 10px;*/
 -moz-border-radius: 10px;
 -webkit-border-radius: 10px;
 -khtml-border-radius: 10px;
 border-radius: 10px;
 padding: 15px 20px;
 font-size: 16px;
 background-color: #272822;
 color: #FFFFFF;
 font-family: 'Consolas', 'Monospace', 'Menlo Regular';
 min-width: 60vw;
 /*+box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5);*/
 -moz-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5);
 -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5);
 box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5);
 border: 2px solid #BDBDBD;
 text-align: left;
}
* {
 box-sizing: border-box;
 letter-spacing: 0.02em;
}
h1,
h2,
h3,
h4,
h5,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
 text-transform: uppercase;
 letter-spacing: 0.04em;
 color: currentColor;
 text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover {
 color: #2C2C2C;
}
img {
 max-width: 100%;
 height: auto;
}
hr {
 max-width: 580px;
 margin: 20px auto;
}
blockquote {
 border: 1px solid #E5E5E5;
 background-color: rgba(217, 217, 217, 0.200);
 padding: 15px 30px;
 /*+border-radius: 5px 0px 5px 5px;*/
 -moz-border-radius: 5px 0px 5px 5px;
 -webkit-border-radius: 5px 0px 5px 5px;
 -khtml-border-radius: 5px 0px 5px 5px;
 border-radius: 5px 0px 5px 5px;
 position: relative;
 margin: 15px;
}
blockquote:after {
 content: ',,';
 position: absolute;
 top: 3px;
 right: 5px;
 display: block;
 line-height: 0;
 transform: scale(1.3);
 font-weight: bold;
}
a {
 transition: 350ms;
 color: currentColor;
}
a:hover {
 text-decoration: none;
 color: #6C6C6C;
}
label {
 margin-bottom: 10px;
 display: inline-block;
}
.flex {
 display: flex;
 justify-content: space-between;
}
.container {
 margin: auto;
 max-width: 1610px;
 padding: 0 10px;
}
.main {
 min-height: calc(100vh - 370px);
 position: relative;
 padding-bottom: 90px;
}
.breadcrumbs_block ul {
 padding: 10px 0;
 margin: 0;
 list-style: none;
 display: flex;
 font-size: 14px;
}
.breadcrumbs_block a {
 text-decoration: none;
}
.itua_breadcrumbs li:last-child span {
 font-weight: bold;
}
.kb_sep {
 margin: 0 5px;
 font-size: 12px;
}
.flow {
 overflow: hidden !important;
}
.text-right {
 text-align: right;
}
.text-center {
 text-align: center;
}
.social_link {
 align-items: center;
 display: flex;
 justify-content: center;
}
.social_link a {
 font-size: 22px;
 padding: 2px;
 width: 25px;
 height: 25px;
 align-items: center;
 display: flex;
 justify-content: center;
}
/*Шапка*/
.header a {
 text-decoration: none;
}
.header {
 position: absolute;
 top: 0;
 width: 100%;
 padding-top: 10px;
 z-index: 100;
}
.header > .container {
 padding-left: 0;
}
.header_right,
.header_left {
 width: calc(50% - 130px);
 display: flex;
 align-items: center;
}
.header_left {
 justify-content: flex-start;
 order: 1;
}
.header_right {
 justify-content: flex-end;
 order: 3;
}
.header .logo_container {
 order: 2;
}
.header .custom-logo {
 max-width: 260px;
}
.header > .container {
 flex-wrap: wrap;
 align-items: center;
}
.header .menu {
 padding: 20px 0;
 margin: 0;
 list-style: none;
}
.header .menu .menu-item a {
 position: relative;
 padding: 7px 10px;
 font-weight: 600;
 text-transform: uppercase;
 display: inline-block;
 color: #4A4A4A;
 font-size: 18px;
}
.header .menu .menu-item a:hover,
.header .menu .menu-item.active > a,
.header .menu .menu-item.open > a {
 color: #000000;
}
.header .menu > .menu-item {
 position: relative;
}
.header .menu > .menu-item > a:after {
 content: "";
 width: calc(100% - 20px);
 height: 3px;
 background-color: #2D343E;
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%) scaleX(0);
 transition: all 0.25s ease;
}
.header .menu .menu-item:hover > a:after,
.header .menu .menu-item.active > a:after,
.header .menu .menu-item.open > a:after {
 transform: translateX(-50%) scale(1);
}
.header .menu .sub-menu {
 padding: 0 15px 5px;
 margin: 0;
 list-style: none;
 position: absolute;
 top: 40px;
 left: 50%;
 transform: translateX(-50%);
 background-color: #FFFFFF;
}
.menu-item-has-children.default_menu > .sub-menu {
 width: 220px;
 padding: 7px 15px 10px;
 /*+border-radius: 0 0 7px 7px;*/
 -moz-border-radius: 0 0 7px 7px;
 -webkit-border-radius: 0 0 7px 7px;
 -khtml-border-radius: 0 0 7px 7px;
 border-radius: 0 0 7px 7px;
 /*+box-shadow: 3px 3px 35px rgba(0, 0, 0, 0.2);*/
 -moz-box-shadow: 3px 3px 35px rgba(0, 0, 0, 0.2);
 -webkit-box-shadow: 3px 3px 35px rgba(0, 0, 0, 0.2);
 box-shadow: 3px 3px 35px rgba(0, 0, 0, 0.2);
 top: 50px;
 display: none;
 border-top: 3px solid #7E7E7E;
}
.menu-item-has-children.default_menu:before {
 position: absolute;
 bottom: -16px;
 left: 50%;
 transform: translatex(-50%);
 content: '';
 display: block;
 transition: 250ms;
 border: 0px solid transparent;
 pointer-events: none;
}
.menu-item-has-children.default_menu.open:before {
 border: 24px solid transparent;
 border-top: 0px solid black;
 border-bottom: 8px solid #7E7E7E;
}
.menu-item-has-children.default_menu > .sub-menu a {
 border-bottom: 1px solid transparent;
 padding-bottom: 5px;
 font-weight: 400;
 font-size: 16px;
 padding: 5px 0;
 width: 100%;
 transition: 350ms;
 color: #3C3C3C;
}
.menu-item-has-children.default_menu > .sub-menu a:hover {
 border-bottom: 1px solid #A1A1A1;
 color: #000000;
}
.header .menu .menu-item.mega_menu {
 position: static;
}
.header .menu .menu-item.mega_menu .sub-menu {
 width: 100%;
 top: 82px;
 /*+box-shadow: 0 150px 150px rgba(0, 0, 0, 0.3);*/
 -moz-box-shadow: 0 150px 150px rgba(0, 0, 0, 0.3);
 -webkit-box-shadow: 0 150px 150px rgba(0, 0, 0, 0.3);
 box-shadow: 0 150px 150px rgba(0, 0, 0, 0.3);
 display: none;
 padding: 30px 0;
 max-height: calc(100vh - 82px);
 overflow-y: auto;
}
.header .sub-menu .container {
 display: flex;
 width: 100%;
 margin: auto;
 list-style: none;
 padding: 0 5px;
}
.header .menu .mega_menu .sub-menu .container > .menu-item {
 width: 20%;
 padding: 5px 15px;
}
.header .mega_menu .sub-menu .container > .menu-item > a {
 border-bottom: 1px solid #CBCBCB;
 width: 100%;
 margin-bottom: 10px;
 font-weight: 600;
 padding-left: 0;
 color: #000000;
}
.header .mega_menu .sub-menu .container > .menu-item > a:hover {
 border-bottom: 1px solid #000000;
}
.header .sub-menu-level .menu-item a {
 font-weight: 400;
 font-size: 16px;
 padding: 5px 0;
 width: 100%;
 transition: 350ms;
 color: #747474;
}
.header .sub-menu-level .menu-item a:hover {
 color: #000000;
}
.header .sub-menu-level {
 list-style: none;
 padding: 0;
 margin: 0;
}
.main_menu > .menu-item-has-children {
 padding-right: 10px;
 position: relative;
}
.main_menu > .menu-item-has-children > a:before {
 border: 4px solid transparent;
 border-left: 4px solid #BBBBBB;
 content: '';
 position: absolute;
 right: 0;
 top: 13px;
 transition: 350ms;
 transform: rotate(90deg);
 top: 15px;
 right: -5px;
}
.main_menu > .menu-item-has-children.open > a:before {
 border-left: 4px solid transparent;
 border-right: 4px solid #000000;
 top: 11px;
}
.sub-menu-level .menu-item {
 position: relative;
 padding-left: 15px;
}
.sub-menu-level.level2 > .menu-item {
 padding-left: 0;
 padding-bottom: 3px;
}
.sub-menu-level.level2 > .menu-item > a {
 border-bottom: 1px solid #E1E1E1;
 padding-bottom: 5px;
}
.sub-menu-level.level2 > .menu-item:hover > a {
 border-bottom: 1px solid #9B9B9B;
 color: #000000;
}
.sub-menu-level.level2 > .sub-menu-item-has-children {
 transition: 350ms;
 position: relative;
}
.sub-menu-level.level2 > .sub-menu-item-has-children > a {
 padding-right: 13px;
}
.sub-menu-level.level2 > .sub-menu-item-has-children:after {
 border: 4px solid transparent;
 border-left: 4px solid #BBBBBB;
 content: '';
 position: absolute;
 right: 0;
 top: 7px;
 transition: 350ms;
}
.sub-menu-level.level2 > .sub-menu-item-has-children.open:after {
 border-left: 4px solid #000000;
 transform: rotate(90deg);
 top: 10px;
 right: 2px;
}
.sub-menu-level.level2 > .sub-menu-item-has-children.open {
 margin-bottom: 5px;
 padding-bottom: 5px;
}
.sub-menu-level.level2 > .sub-menu-item-has-children.open > a {
 margin-bottom: 5px;
}
.sub-menu-level.level2 > .sub-menu-item-has-children > ul {
 display: none;
}
.sub-menu-level.level3 .menu-item:before {
 background-color: #BBBBBB;
 position: absolute;
 display: block;
 content: '';
 left: 3px;
 transition: 350ms;
 height: 4px;
 width: 4px;
 top: 11px;
}
.sub-menu-level .menu-item:hover:before {
 /*+border-radius: 50%;*/
 -moz-border-radius: 50%;
 -webkit-border-radius: 50%;
 -khtml-border-radius: 50%;
 border-radius: 50%;
 background-color: #3A3A3A;
 opacity: 1;
}
.cart_head_section {
 position: relative;
 display: flex;
 align-items: center;
 height: 50px;
 margin: auto 0 auto 15px;
}
.cart_head .far.fa-shopping-cart {
 font-size: 32px;
}
.cart_head .cart_count {
 background-color: #000000;
 color: #FFFFFF;
 font-weight: 900;
 height: 26px;
 width: 26px;
 display: flex;
 text-align: center;
 position: absolute;
 justify-content: center;
 align-items: center;
 font-size: 12px;
 /*+border-radius: 50%;*/
 -moz-border-radius: 50%;
 -webkit-border-radius: 50%;
 -khtml-border-radius: 50%;
 border-radius: 50%;
 right: -10px;
 bottom: 10px;
 border: 2px solid #FFFFFF;
}
#lang_menu a {
 font-size: 14px;
 display: flex;
 align-items: center;
 padding: 3px 5px;
}
#lang_menu {
 list-style: none;
 position: relative;
 padding: 0;
 margin: 0 0 0 15px;
 font-weight: 600;
}
#lang_menu .sub-menu {
 list-style: none;
 display: none;
 position: absolute;
 left: 50%;
 top: 25px;
 padding: 5px;
 margin: 0;
 background-color: #FFFFFF;
 transform: translateX(-50%);
 text-align: center;
 width: 60px;
 box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 35px 0px;
}
#lang_menu .sub-menu a {
 border-bottom: 1px solid transparent;
}
#lang_menu .sub-menu a:hover {
 border-bottom: 1px solid #525252;
}
body.home {
 padding: 0;
}
body.home .header {
 background-color: rgba(0, 0, 0, 0.2);
 padding-bottom: 10px;
 color: #FFFFFF;
 transition: background-color 350ms;
 position: fixed;
}
body.home.admin-bar .header {
 top: 32px;
}
body.home .header:hover,
body.home.sub_open .header {
 background-color: rgba(0, 0, 0, 0.8);
}
body.home .header a {
 color: #FFFFFF;
}
body.home .header .menu .menu-item a {
 color: #FFFFFF;
}
body.home .header .menu .menu-item a:hover,
body.home .header .menu .menu-item.active > a,
body.home .header .menu .menu-item.open > a {
 color: #EDEDED;
}
body.home .header .sub-menu {
 background-color: rgba(0, 0, 0, 0.8);
}
body.home .header .mega_menu .sub-menu .container > .menu-item > a {
 color: #FFFFFF;
 border-bottom: 1px solid #3A3A3A;
}
body.home .header .mega_menu .sub-menu .container > .menu-item > a:hover {
 border-bottom: 1px solid #707070;
}
body.home .sub-menu-level.level2 > .menu-item > a {
 border-bottom: 1px solid #282828;
 font-weight: 300;
}
body.home .sub-menu-level.level2 > .menu-item:hover > a {
 border-bottom: 1px solid #707070;
 color: #E3E3E3;
}
body.home .header .sub-menu-level .menu-item a {
 font-weight: 300;
 color: #FFFFFF;
}
body.home .header .menu > .menu-item > a:after {
 background-color: #FFFFFF;
}
body.home .main_menu > .menu-item-has-children.open > a:before {
 border-right: 4px solid #FFFFFF;
}
body.home .sub-menu-level.level2 > .sub-menu-item-has-children.open:after {
 border-left: 4px solid #FFFFFF;
}
body.home #lang_menu .sub-menu {
 background-color: #000000;
}
/*Кнопки*/
.button i {
 margin-left: 5px;
}
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover,
.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover.woocommerce #respond
input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.0) 70%), linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, #2E2E2E 50%) !important;
 background-color: #2E2E2E !important;
 background-size: 200% 100%, 100% 200% !important;
 background-position: 200% 0, 100% 0% !important;
 color: #FFFFFF !important;
 border: 1px solid #2E2E2E !important;
 top: 0 !important;
 padding: 14px 25px 13px !important;
}
.button,
input[type=submit],
a.button,
.woocommerce a.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
 position: relative;
 display: inline-block;
 font-weight: 600;
 text-decoration: none;
 user-select: none;
 padding: 14px 25px 13px;
 outline: none;
 border-radius: 0;
 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.0) 70%), linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, #2E2E2E 50%);
 background-repeat: no-repeat;
 background-size: 200% 100%, 100% 200%;
 background-position: 200% 0, 100% 0%;
 box-shadow: rgba(0, 0, 0, 0.5) 3px 10px 10px -10px;
 font-size: 15px;
 text-transform: uppercase;
 color: #FFFFFF;
 background-color: #2E2E2E;
 transition: 0.5s ease;
 border: 1px solid #2E2E2E;
}
.button:hover,
input[type=submit]:hover,
a.button:hover,
.woocommerce a.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .cart .button:hover,
.woocommerce .cart input.button:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
 background-position: -200% 0, 100% -100%;
 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.0) 70%), linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, #2E2E2E 50%);
 border: 1px solid #DBDBDB;
 background-color: #FFFFFF;
 color: #2E2E2E;
}
.button:active,
input[type=submit]:active,
a.button:active,
.woocommerce a.button:active,
.woocommerce #respond input#submit:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.woocommerce .cart .button:active,
.woocommerce .cart input.button:active,
.woocommerce div.product form.cart .button:active {
 top: 1px;
}
.button.gray,
input[type=submit].gray,
a.button.gray {
 color: #FFF;
 background-color: #464646;
 background-image: none;
 transition: 350ms;
}
.button.gray:hover,
input[type=submit].gray:hover,
a.button.gray:hover {
 background-color: #3C3C3C;
}
/*Формы*/
label span.required {
 color: red;
 font-size: 120%;
 position: relative;
 font-weight: bold;
}
input,
select,
textarea {
 padding: 10px 15px;
 font-family: inherit;
 border: 1px solid #D1D1D1;
}
select {
 cursor: pointer;
}
.form_group {
 margin-bottom: 15px;
}
.form_group label,
.form-row label {
 width: 100%;
 margin-bottom: 5px;
 font-weight: 500;
 margin-left: 2px;
}
.form_group .my_input,
.input-text {
 width: 100%;
 transition: 250ms;
}
.form_group .my_select {
 width: 100%;
 transition: 250ms;
}
.select2 .select2-selection {
 width: 100%;
 transition: 250ms;
 padding: 8px 15px 7px;
 font-family: inherit;
 border: 1px solid #D1D1D1;
 display: inline-block;
 height: auto;
 max-height: none;
 line-height: normal;
 /*+border-radius: 0;*/
 -moz-border-radius: 0;
 -webkit-border-radius: 0;
 -khtml-border-radius: 0;
 border-radius: 0;
 max-height: 45px;
 min-height: 45px;
}
.select2 .select2-selection__arrow {
 top: calc(50% - 3px) !important;
 transform: translateY(-50%) !important;
 right: 15px !important;
}
.select2 .select2-selection .select2-selection__arrow b {
 transform: scale(1.5);
}
.error {
 border-color: #D51515;
 /*+box-shadow: 0 0 3px rgba(212, 21, 21, 0.5);*/
 -moz-box-shadow: 0 0 3px rgba(212, 21, 21, 0.5);
 -webkit-box-shadow: 0 0 3px rgba(212, 21, 21, 0.5);
 box-shadow: 0 0 3px rgba(212, 21, 21, 0.5);
}
.form_out {
 text-align: center;
 font-size: 14px;
 margin-bottom: 15px;
 font-weight: bold;
}
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
 padding: 10px 15px;
 font-family: inherit;
 border: 1px solid #D1D1D1;
 width: 130px;
}
.form_group.flex {
 align-items: center;
}
.form_group.flex .my_label {
 margin: 0;
}
.my_label .req {
 color: red;
 font-weight: 900;
}
/*Комменты*/
.comment-body {
 border: 1px solid #E5E5E5;
 padding: 15px;
 margin-bottom: 15px;
 background-color: #F3F3F5;
 box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
 font-size: 16px;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 color: #3C3C3C;
 /*+border-radius: 5px;*/
 -moz-border-radius: 5px;
 -webkit-border-radius: 5px;
 -khtml-border-radius: 5px;
 border-radius: 5px;
 padding: 20px;
 margin-bottom: 50px;
 /*+box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);*/
 -moz-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
 -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
 box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.comment-body a,
#respond a {
 color: #000000;
}
.comment-body h1,
.comment-body h2,
.comment-body h3,
.comment-body h4,
.comment-body h5,
.comment-body h6 {
 color: #000000;
}
#respond h1,
#respond h2,
#respond h3,
#respond h4,
#respond h5,
#respond h6 {
 color: #000000;
}
#respond {
 color: #3C3C3C;
}
.commentlist {
 list-style: none;
 padding: 0;
}
.comment-author {
 display: inline-block;
 margin-right: 10px;
}
.comment-author cite {
 font-style: normal;
 font-weight: bold;
}
#commentform {
 border: 1px solid #D7D7D7;
 padding: 15px;
 margin-bottom: 15px;
 background-color: #F3F3F5;
 font-size: 16px;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 color: #3C3C3C;
 /*+border-radius: 5px;*/
 -moz-border-radius: 5px;
 -webkit-border-radius: 5px;
 -khtml-border-radius: 5px;
 border-radius: 5px;
 padding: 15px 20px;
 margin: 15px auto 50px;
 max-width: 800px;
}
#commentform #comment {
 width: 100%;
}
#commentform .comment-notes,
#commentform .comment-form-comment,
#commentform label {
 width: 100%;
}
#commentform .comment-form-url,
#commentform .comment-form-email,
#commentform .comment-form-author {
 width: 49%;
}
#commentform .comment-form-cookies-consent {
 padding-left: 21px;
 position: relative;
 cursor: pointer;
 padding-top: 10px;
}
#commentform .comment-form-cookies-consent input {
 position: absolute;
 left: 0;
 height: 16px;
 width: 16px;
 top: 11px;
}
#commentform .comment-form-url input,
#commentform .comment-form-email input,
#commentform .comment-form-author input {
 width: 100%;
}
.comment-body .reply {
 display: flex;
 align-items: flex-end;
 font-weight: bold;
}
#comments {
 max-width: none;
}
#commentform label {
 font-weight: bold;
}
.comment-form-cookies-consent label {
 font-weight: 300 !important;
 cursor: pointer;
 font-size: 14px;
}
#commentform.comment-form .comment-notes {
 display: none;
}
.comment-form-rating .stars a {
 font-size: 30px;
}
#reply-title {
 font-size: 24px;
 margin: 15px 0 0;
 text-align: center;
 width: 100%;
 display: block;
 font-weight: bold;
}
.avatar {
 display: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
 margin: auto;
}
.woocommerce #reviews #comments h2 {
 clear: none;
 font-size: 14px;
 text-align: right;
 margin-bottom: 20px;
}
/*Модальное*/
.modal {
 position: fixed;
 height: 100%;
 width: 100%;
 z-index: 9000;
 top: 0;
 left: 0;
 display: flex;
 align-content: center;
 transition: 450ms;
 opacity: 0;
 pointer-events: none;
 perspective: 2000px;
}
.open.modal {
 opacity: 1;
 pointer-events: auto;
}
.modal_overlay {
 height: 100%;
 width: 100%;
 position: fixed;
 background-color: rgba(0, 0, 0, 0.5);
}
.modal_body .modal_exit {
 width: 20px;
 height: 20px;
 position: absolute;
 top: 5px;
 right: 5px;
}
.modal_exit {
 cursor: pointer;
}
.modal_body .modal_exit:before,
.modal_body .modal_exit:after {
 content: '';
 width: 4px;
 height: 115%;
 background-color: #000000;
 display: block;
 position: absolute;
 left: calc(50% - 2px);
 top: -1px;
 /*+border-radius: 10px;*/
 -moz-border-radius: 10px;
 -webkit-border-radius: 10px;
 -khtml-border-radius: 10px;
 border-radius: 10px;
 transition: 350ms;
}
.modal_body .modal_exit:before {
 transform: rotate(45deg);
}
.modal_body .modal_exit:after {
 transform: rotate(-45deg);
}
.modal_body .modal_exit:hover:before {
 transform: rotate(45deg) scale(1.1);
 background-color: #464646;
}
.modal_body .modal_exit:hover:after {
 transform: rotate(-45deg) scale(1.1);
 background-color: #464646;
}
.modal_body {
 margin: auto;
 background-color: #FFFFFF;
 z-index: 10;
 position: relative;
 align-self: center;
 padding: 40px;
 overflow-y: auto;
 max-height: 98vh;
 min-width: 300px;
 transition: all 0.6s ease-in-out;
 transform-style: preserve-3d;
 transform: rotateY(-90deg) translateY(-15%);
 /*+box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);*/
 -moz-box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
 -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
 box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
}
.open.modal .modal_body {
 transform: rotateY(0deg);
}
.modal_title {
 font-weight: bold;
 text-align: center;
 text-transform: uppercase;
 margin-top: 0;
 font-size: 24px;
}
.modal_subtitle {
 margin-top: -15px;
 text-align: center;
 font-size: 14px;
 color: #686868;
}
/*Подвал*/
.footer {
 background-color: #0C0C0C;
 padding: 50px 0 20px;
 z-index: 2;
 position: relative;
 color: #DADADC;
}
.footer a {
 color: #A5A5A5;
 text-decoration: none;
}
.footer a:hover {
 color: #FFFFFF;
}
.footer_wids {
 width: 100%;
 justify-content: flex-start;
 display: flex;
 padding-bottom: 20px;
}
.footer_sidebar_widgets {
 position: relative;
 width: 25%;
 padding: 0 15px;
}
.footer_wids .widget_nav_menu ul {
 list-style: none;
 padding: 0;
 margin: 0;
}
.footer_wids .widget_nav_menu ul a {
 font-size: 16px;
 position: relative;
 width: 100%;
 display: block;
 border-bottom: 1px solid #383838;
 padding: 5px;
}
.footer iframe {
 width: 100%;
 height: 200px;
}
.footer_sidebar_widgets.widget_media_image img {
 width: 100%;
}
.title_footer {
 text-transform: uppercase;
 font-weight: 600;
 letter-spacing: 3px;
 font-size: 22px;
 margin-bottom: 15px;
 padding: 0 5px;
}
.title_footer_general {
 font-weight: bold;
 letter-spacing: 5px;
 font-size: 45px;
 margin-bottom: 35px;
}
.footer_contacts {
 text-align: center;
 padding: 10px 0;
}
.footer_contacts .contact_link {
 justify-content: center;
 margin: 15px 0;
 font-size: 16px;
}
.footer_contacts .contact_link_item a {
 padding: 5px 10px;
}
.footer_contacts .contact_link_item,
.contact_link_item a {
 display: flex;
 align-items: center;
}
.contact_link i {
 margin-right: 5px;
 font-size: 120%;
}
.footer_contacts .social_link a {
 padding: 5px;
 font-size: 30px;
 height: auto;
 width: auto;
}
.footer hr {
 max-width: none;
}
.copyright {
 display: flex;
 font-size: 14px;
 justify-content: space-between;
}
#foot_menu {
 display: flex;
 margin: 0;
 padding: 0;
 list-style: none;
}
#foot_menu a {
 margin: 0 15px;
}
#foot_menu li:last-child a {
 margin-right: 0;
}
/*404*/
.page_404_cont {
 display: flex;
 justify-content: center;
 align-items: center;
}
.page_404 {
 margin: auto;
 height: 280px;
 width: 100%;
}
.page_404 h1 span {
 font-size: 100px;
}
/*табы*/
.tabs_block {
 margin: 40px 0;
}
.tab_controls {
 display: flex;
 justify-content: space-between;
}
.tab_link {
 padding: 10px 15px;
 width: 100%;
 text-align: center;
 text-transform: uppercase;
 font-weight: bold;
 background-color: #818181;
 color: #FFFFFF;
 border-bottom: 5px solid #FFFFFF;
 margin: 5px 2px 0;
 cursor: pointer;
 transition: 180ms;
}
.tab_link:hover {
 color: #FFFFFF;
 background-color: #5E5E5E;
}
.tab_controls .tab_link:first-child {
 margin-left: 0;
}
.tab_controls .tab_link:last-child {
 margin-right: 0;
}
.tab_link.active {
 background: rgb(205, 22, 22);
 margin-bottom: 5px;
 margin-top: 0;
}
.tab_content {
 background-color: #FFFFFF;
 padding: 15px;
 z-index: 5;
 margin-top: -5px;
}
/*Таблица на флексах*/
.my_table {
 padding: 15px;
 background-color: #FFFFFF;
 margin-top: 15px;
 margin-bottom: 15px;
 border: 1px solid #D9D9D9;
}
.my_table_row {
 display: flex;
 justify-content: space-between;
 align-items: center;
 border-bottom: 1px solid black;
 padding: 10px;
}
.my_table_val {
 font-weight: bold;
}
.my_table_row_res {
 background-color: #5E5E5E;
 color: #FFFFFF;
 border: 0px solid black;
 margin-top: 10px;
 font-size: 110%;
}
.my_table_row_subres {
 background-color: #CD1616;
 color: #FFFFFF;
 border: 0px solid black;
 margin-top: 10px;
 font-size: 110%;
}
.my_table_row_center {
 text-align: center;
 justify-content: center;
}
.my_table_row_nb {
 border: 0px solid black;
}
/*Календарь*/
#wp-calendar {
 width: 100%;
 text-align: center;
}
#wp-calendar caption {
 background-color: #D51515;
 color: #FFFFFF;
 font-weight: bold;
 padding: 5px;
 width: 100%;
}
#wp-calendar thead {
 background-color: #FFFFFF;
}
#wp-calendar th,
#wp-calendar td {
 padding: 5px;
 border: 1px solid #DBDBDB;
 background-color: #FFFFFF;
 line-height: 18px;
 font-size: 14px;
}
#wp-calendar a {
 color: #000000;
 pointer-events: none;
}
#calendar_wrap #today {
 background-color: #D51515;
 color: #FFFFFF;
 font-weight: bold;
}
#wp-calendar .pad {
 background-color: rgba(255, 255, 255, 0.5);
}
#calendar_wrap .wp-calendar-nav {
 display: none;
}
/*Пагинация*/
.paginate_block {
 display: flex;
 justify-content: center;
 align-items: center;
 margin-top: 25px;
}
.paginate_block .page-numbers {
 padding: 5px 8px;
 background-color: #FFFFFF;
 height: 30px;
 width: 30px;
 text-align: center;
}
.paginate_block .prev,
.paginate_block .next {
 background-color: #FFFFFF;
 margin: 0 10px;
 background-color: #4A4A4A;
 color: #FFFFFF;
 transition: 150ms;
}
.paginate_block .prev:hover,
.paginate_block .next:hover {
 background-color: #D41515;
 color: #FFFFFF;
 /*+border-radius: 3px;*/
 -moz-border-radius: 3px;
 -webkit-border-radius: 3px;
 -khtml-border-radius: 3px;
 border-radius: 3px;
}
.paginate_block .page-numbers.current {
 font-weight: bold;
 padding: 5px 8px;
 border: 1px solid #E1E1E1;
 margin: 0 10px;
 background-color: #D41515;
 color: #FFFFFF;
}
.paginate_block .page-numbers.dots {
 border: 0px solid black;
 background-color: transparent;
}
/*Плюс/Минус в инпутах*/
.plus_minus_block {
 display: flex;
 justify-content: space-between;
 align-items: center;
 overflow: hidden;
}
.plus_minus_block span {
 padding: 12px 14px;
 cursor: pointer;
 color: #FFFFFF;
 transition: 350ms;
 height: 45px;
 position: relative;
 display: inline-block;
 font-weight: 600;
 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.0) 70%), linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, #2E2E2E 50%);
 background-repeat: no-repeat;
 background-size: 200% 100%, 100% 200%;
 background-position: 200% 0, 100% 0%;
 box-shadow: rgba(0, 0, 0, 0.5) 3px 10px 10px -10px;
 background-color: #2E2E2E;
 transition: 0.5s ease;
 border: 1px solid #2E2E2E;
}
.plus_minus_block span:hover {
 background-position: -200% 0, 100% -100%;
 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.0) 70%), linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, #2E2E2E 50%);
 border: 1px solid #DBDBDB;
 background-color: #FFFFFF;
 color: #2E2E2E;
}
.plus_minus_block input {
 text-align: center;
 width: 100%;
 /*pointer-events: none;*/
 height: 45px;
}
input[type="number"] {
 -moz-appearance: textfield;
}
input[type="number"]:hover,
input[type="number"]:focus {
 -moz-appearance: number-input;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
 -webkit-appearance: none;
 margin: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
 -webkit-appearance: none;
 margin: 0;
}
/*кнопка быстрой связи*/
.widget-callback > div {
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.widget-callback .callback-button {
 position: fixed;
 right: 30px;
 bottom: 30px;
 z-index: 10;
 font-size: 14px;
}
.widget-callback .callback-button-title {
 position: absolute;
 right: 75px;
 top: 16px;
 background: rgba(41, 41, 41, 0.75);
 color: #FFF;
 padding: 6px 10px;
 border-radius: 3px;
 white-space: nowrap;
}
.widget-callback.widget-callback-form-open .callback-button-title {
 display: none;
}
.widget-callback .callback-button-title:before {
 content: '';
 position: absolute;
 width: 0;
 height: 0;
 border: solid transparent;
 border-width: 6px;
 top: 50%;
 right: -12px;
 transform: translateY(-50%);
 border-left-color: rgba(41, 41, 41, 0.75);
}
.widget-callback .callback-button-phone {
 width: 60px;
 height: 60px;
 display: block;
 background: #4DBCE9;
 border-radius: 50%;
 position: relative;
 cursor: pointer;
 animation: 1200ms ease 0s normal none 1 running shake;
 animation-iteration-count: infinite;
 -webkit-animation: 1200ms ease 0s normal none 1 running shake;
 -webkit-animation-iteration-count: infinite;
}
.widget-callback.widget-callback-form-open .callback-button-phone {
 animation: unset;
 -webkit-animation: unset;
 background: #DDD;
}
.widget-callback .callback-button-phone:before {
 content: '';
 background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBpZD0iTGF5ZXJfMSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNTEyLjAyMSA1MTIuMDIxIiBoZWlnaHQ9IjUxMnB4IiB2aWV3Qm94PSIwIDAgNTEyLjAyMSA1MTIuMDIxIiB3aWR0aD0iNTEycHgiIGNsYXNzPSIiPjxnPjxnPjxwYXRoIGQ9Im0zNjcuOTg4IDUxMi4wMjFjLTE2LjUyOCAwLTMyLjkxNi0yLjkyMi00OC45NDEtOC43NDQtNzAuNTk4LTI1LjY0Ni0xMzYuMTI4LTY3LjQxNi0xODkuNTA4LTEyMC43OTVzLTk1LjE1LTExOC45MS0xMjAuNzk1LTE4OS41MDhjLTguMjQxLTIyLjY4OC0xMC42NzMtNDYuMTA4LTcuMjI2LTY5LjYxMiAzLjIyOS0yMi4wMTYgMTEuNzU3LTQzLjM4OSAyNC42NjMtNjEuODA5IDEyLjk2My0xOC41MDEgMzAuMjQ1LTMzLjg4OSA0OS45NzctNDQuNSAyMS4wNDItMTEuMzE1IDQ0LjAwOS0xNy4wNTMgNjguMjY1LTE3LjA1MyA3LjU0NCAwIDE0LjA2NCA1LjI3MSAxNS42NDUgMTIuNjQ3bDI1LjExNCAxMTcuMTk5YzEuMTM3IDUuMzA3LS40OTQgMTAuODI5LTQuMzMxIDE0LjY2N2wtNDIuOTEzIDQyLjkxMmM0MC40ODIgODAuNDg2IDEwNi4xNyAxNDYuMTc0IDE4Ni42NTYgMTg2LjY1Nmw0Mi45MTItNDIuOTEzYzMuODM3LTMuODM3IDkuMzYtNS40NjYgMTQuNjY3LTQuMzMxbDExNy4xOTkgMjUuMTE0YzcuMzc3IDEuNTgxIDEyLjY0NyA4LjEwMSAxMi42NDcgMTUuNjQ1IDAgMjQuMjU2LTUuNzM4IDQ3LjIyNC0xNy4wNTQgNjguMjY2LTEwLjYxMSAxOS43MzItMjUuOTk5IDM3LjAxNC00NC41IDQ5Ljk3Ny0xOC40MTkgMTIuOTA2LTM5Ljc5MiAyMS40MzQtNjEuODA5IDI0LjY2My02Ljg5OSAxLjAxMy0xMy43OTcgMS41MTgtMjAuNjY4IDEuNTE5em0tMjM2LjM0OS00NzkuMzIxYy0zMS45OTUgMy41MzItNjAuMzkzIDIwLjMwMi03OS4yNTEgNDcuMjE3LTIxLjIwNiAzMC4yNjUtMjYuMTUxIDY3LjQ5LTEzLjU2NyAxMDIuMTMyIDQ5LjMwNCAxMzUuNzI2IDE1NS40MjUgMjQxLjg0NyAyOTEuMTUxIDI5MS4xNTEgMzQuNjQxIDEyLjU4NCA3MS44NjcgNy42NCAxMDIuMTMyLTEzLjU2NyAyNi45MTUtMTguODU4IDQzLjY4NS00Ny4yNTYgNDcuMjE3LTc5LjI1MWwtOTUuMzQxLTIwLjQzLTQ0LjgxNiA0NC44MTZjLTQuNzY5IDQuNzY5LTEyLjAxNSA2LjAzNi0xOC4xMTcgMy4xNjgtOTUuMTktNDQuNzItMTcyLjI0Mi0xMjEuNzcyLTIxNi45NjItMjE2Ljk2Mi0yLjg2Ny02LjEwMy0xLjYwMS0xMy4zNDkgMy4xNjgtMTguMTE3bDQ0LjgxNi00NC44MTZ6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIiBmaWxsPSIjRkZGRkZGIi8+PHBhdGggZD0ibTQ5Ni4wMiAyNzJjLTguODM2IDAtMTYtNy4xNjQtMTYtMTYgMC0xMjMuNTE0LTEwMC40ODYtMjI0LTIyNC0yMjQtOC44MzYgMC0xNi03LjE2NC0xNi0xNnM3LjE2NC0xNiAxNi0xNmM2OC4zODEgMCAxMzIuNjY4IDI2LjYyOCAxODEuMDIgNzQuOThzNzQuOTggMTEyLjYzOSA3NC45OCAxODEuMDJjMCA4LjgzNi03LjE2MyAxNi0xNiAxNnoiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiIGNsYXNzPSJhY3RpdmUtcGF0aCIgZGF0YS1vbGRfY29sb3I9IiMwMDAwMDAiIGZpbGw9IiNGRkZGRkYiLz48cGF0aCBkPSJtNDMyLjAyIDI3MmMtOC44MzYgMC0xNi03LjE2NC0xNi0xNiAwLTg4LjIyNC03MS43NzYtMTYwLTE2MC0xNjAtOC44MzYgMC0xNi03LjE2NC0xNi0xNnM3LjE2NC0xNiAxNi0xNmMxMDUuODY5IDAgMTkyIDg2LjEzMSAxOTIgMTkyIDAgOC44MzYtNy4xNjMgMTYtMTYgMTZ6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIiBmaWxsPSIjRkZGRkZGIi8+PHBhdGggZD0ibTM2OC4wMiAyNzJjLTguODM2IDAtMTYtNy4xNjQtMTYtMTYgMC01Mi45MzUtNDMuMDY1LTk2LTk2LTk2LTguODM2IDAtMTYtNy4xNjQtMTYtMTZzNy4xNjQtMTYgMTYtMTZjNzAuNTggMCAxMjggNTcuNDIgMTI4IDEyOCAwIDguODM2LTcuMTYzIDE2LTE2IDE2eiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCIgZmlsbD0iI0ZGRkZGRiIvPjwvZz48L2c+IDwvc3ZnPg==");
 background-size: contain;
 position: absolute;
 display: block;
 width: 24px;
 height: 24px;
 left: 50%;
 top: 50%;
 margin: -12px 0 0 -12px;
 transform: scale(1);
 -webkit-transition: all 0.2s linear;
 transition: all 0.2s linear;
}
.widget-callback .callback-button-phone:after {
 content: '';
 background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMi4wMDEgNTEyLjAwMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyLjAwMSA1MTIuMDAxOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4IiBjbGFzcz0iIj48Zz48Zz4NCgk8Zz4NCgkJPHBhdGggZD0iTTI4NC4yODYsMjU2LjAwMkw1MDYuMTQzLDM0LjE0NGM3LjgxMS03LjgxMSw3LjgxMS0yMC40NzUsMC0yOC4yODVjLTcuODExLTcuODEtMjAuNDc1LTcuODExLTI4LjI4NSwwTDI1NiwyMjcuNzE3ICAgIEwzNC4xNDMsNS44NTljLTcuODExLTcuODExLTIwLjQ3NS03LjgxMS0yOC4yODUsMGMtNy44MSw3LjgxMS03LjgxMSwyMC40NzUsMCwyOC4yODVsMjIxLjg1NywyMjEuODU3TDUuODU4LDQ3Ny44NTkgICAgYy03LjgxMSw3LjgxMS03LjgxMSwyMC40NzUsMCwyOC4yODVjMy45MDUsMy45MDUsOS4wMjQsNS44NTcsMTQuMTQzLDUuODU3YzUuMTE5LDAsMTAuMjM3LTEuOTUyLDE0LjE0My01Ljg1N0wyNTYsMjg0LjI4NyAgICBsMjIxLjg1NywyMjEuODU3YzMuOTA1LDMuOTA1LDkuMDI0LDUuODU3LDE0LjE0Myw1Ljg1N3MxMC4yMzctMS45NTIsMTQuMTQzLTUuODU3YzcuODExLTcuODExLDcuODExLTIwLjQ3NSwwLTI4LjI4NSAgICBMMjg0LjI4NiwyNTYuMDAyeiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9ImFjdGl2ZS1wYXRoIiBkYXRhLW9sZF9jb2xvcj0iIzAwMDAwMCIgZmlsbD0iI0ZGRkZGRiIvPg0KCTwvZz4NCjwvZz48L2c+IDwvc3ZnPg==");
 background-size: contain;
 position: absolute;
 display: block;
 width: 24px;
 height: 24px;
 left: 50%;
 top: 50%;
 margin: -12px 0 0 -12px;
 transform: scale(0);
 -webkit-transition: all 0.2s linear;
 transition: all 0.2s linear;
}
.widget-callback.widget-callback-form-open .callback-button-phone:before {
 content: '';
 transform: scale(0);
}
.widget-callback.widget-callback-form-open .callback-button-phone:after {
 content: '';
 transform: scale(1);
}
.widget-callback .callback-form {
 display: none;
 background: #FFF;
 border: 1px solid #F9F9F9;
 width: 240px;
 border-radius: 5px;
 padding: 30px 15px;
 right: 60px;
 bottom: 110px;
 position: absolute;
 box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
}
.widget-callback.widget-callback-form-open .callback-form {
 display: block;
 animation: formcbwg-in 0.1s ease;
}
@keyframes formcbwg-in {
 0% {
  transform: translateY(15%);
 }
 100% {
  transform: translateY(0%);
 }
}
@keyframes formcbwg-out {
 0% {
  transform: translateY(0%);
 }
 100% {
  transform: translateY(15%);
 }
}
.widget-callback .callback-form-title {
 text-align: center;
 display: block;
 margin: 0 0 30px;
}
.widget-callback input {
 width: 100%;
 box-sizing: border-box;
 padding: 15px;
 margin: 0 0 10px;
 border: 1px solid #EBEBEB;
 border-radius: 3px;
 font-size: 16px;
}
.widget-callback input[type="submit"] {
 background: #199C68;
 color: #FFF;
 text-transform: uppercase;
 font-size: 14px;
 border: none;
 cursor: pointer;
}
.widget-callback .success-send {
 text-align: center;
}
.widget-callback .success-send img {
 width: 60px;
 margin: 0 0 20px;
}
.widget-callback.widget-callback-form-open .callback-button {
 z-index: 10000;
}
#contactform .flex .form_group {
 margin-left: 10px;
 margin-right: 10px;
}
#contactform .flex .form_group:first-child {
 margin-left: 0;
}
#contactform .flex .form_group:last-child {
 margin-right: 0;
}
#contact_form .modal_body {
 padding: 30px 30px 20px 30px;
}
@media (max-width: 600px) {
 .widget-callback .callback-button {
  right: 30px;
  bottom: 30px;
 }
 .widget-callback .callback-form {
  width: 80%;
  right: 10%;
  box-sizing: border-box;
 }
 #contactform .flex .form_group {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
 }
 #contactform .flex {
  flex-wrap: wrap;
 }
 .widget-callback.widget-callback-form-open .callback-button {
  z-index: 0;
 }
}
@keyframes shake {
 0% {
  transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
 }
 10% {
  transform: rotateZ(-30deg);
  -ms-transform: rotateZ(-30deg);
  -webkit-transform: rotateZ(-30deg);
 }
 20% {
  transform: rotateZ(15deg);
  -ms-transform: rotateZ(15deg);
  -webkit-transform: rotateZ(15deg);
 }
 30% {
  transform: rotateZ(-10deg);
  -ms-transform: rotateZ(-10deg);
  -webkit-transform: rotateZ(-10deg);
 }
 40% {
  transform: rotateZ(7.5deg);
  -ms-transform: rotateZ(7.5deg);
  -webkit-transform: rotateZ(7.5deg);
 }
 50% {
  transform: rotateZ(-6deg);
  -ms-transform: rotateZ(-6deg);
  -webkit-transform: rotateZ(-6deg);
 }
 60% {
  transform: rotateZ(5deg);
  -ms-transform: rotateZ(5deg);
  -webkit-transform: rotateZ(5deg);
 }
 70% {
  transform: rotateZ(-4.28571deg);
  -ms-transform: rotateZ(-4.28571deg);
  -webkit-transform: rotateZ(-4.28571deg);
 }
 80% {
  transform: rotateZ(3.75deg);
  -ms-transform: rotateZ(3.75deg);
  -webkit-transform: rotateZ(3.75deg);
 }
 90% {
  transform: rotateZ(-3.33333deg);
  -ms-transform: rotateZ(-3.33333deg);
  -webkit-transform: rotateZ(-3.33333deg);
 }
 100% {
  transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
 }
}
@-webkit-keyframes shake {
 0% {
  transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
 }
 10% {
  transform: rotateZ(-30deg);
  -ms-transform: rotateZ(-30deg);
  -webkit-transform: rotateZ(-30deg);
 }
 20% {
  transform: rotateZ(15deg);
  -ms-transform: rotateZ(15deg);
  -webkit-transform: rotateZ(15deg);
 }
 30% {
  transform: rotateZ(-10deg);
  -ms-transform: rotateZ(-10deg);
  -webkit-transform: rotateZ(-10deg);
 }
 40% {
  transform: rotateZ(7.5deg);
  -ms-transform: rotateZ(7.5deg);
  -webkit-transform: rotateZ(7.5deg);
 }
 50% {
  transform: rotateZ(-6deg);
  -ms-transform: rotateZ(-6deg);
  -webkit-transform: rotateZ(-6deg);
 }
 60% {
  transform: rotateZ(5deg);
  -ms-transform: rotateZ(5deg);
  -webkit-transform: rotateZ(5deg);
 }
 70% {
  transform: rotateZ(-4.28571deg);
  -ms-transform: rotateZ(-4.28571deg);
  -webkit-transform: rotateZ(-4.28571deg);
 }
 80% {
  transform: rotateZ(3.75deg);
  -ms-transform: rotateZ(3.75deg);
  -webkit-transform: rotateZ(3.75deg);
 }
 90% {
  transform: rotateZ(-3.33333deg);
  -ms-transform: rotateZ(-3.33333deg);
  -webkit-transform: rotateZ(-3.33333deg);
 }
 100% {
  transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
 }
}
/*другое*/
.home_block {
 position: relative;
 max-height: 100vh;
 height: 100vh;
}
.video_back {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
}
.video_back video {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 filter: brightness(30%);
 object-fit: cover;
}
.home_block .center_text {
 margin: auto;
 text-align: center;
 display: flex;
 position: relative;
 width: 600px;
 top: 0;
 left: 0;
 justify-content: center;
 align-items: center;
 height: 100vh;
 color: #FFFFFF;
 flex-wrap: wrap;
 z-index: 10;
}
.in_center_text h2 {
 font-size: 42px;
 margin: 0;
}
.in_center_text .subtitle {
 margin-top: 0;
}
.tree_back {
 overflow: hidden;
}
.tree_back_block {
 display: flex;
 height: 100vh;
 list-style: none;
 padding: 0;
 margin: 0;
}
.tree_back_item {
 width: 33.33%;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 transition: 350ms;
}
.tree_back_item:hover {
 transform: scale(1.05);
 z-index: 15;
 position: relative;
}
.tree_back_item a {
 height: 100%;
 width: 100%;
 display: flex;
 background-color: rgba(0, 0, 0, 0.6);
 transition: 350ms;
 color: #FFFFFF;
 text-decoration: none;
 text-align: center;
}
.tree_back_item > a > span {
 margin: auto;
 display: block;
}
.tree_back_item .title {
 margin: 0;
 font-size: 42px;
}
.tree_back_item .subtitle {
 margin: 0;
}
.tree_back_item:hover > a {
 background-color: rgba(0, 0, 0, 0.2);
}
.tree_back_item > a > span > * {
 transition: 350ms;
}
.tree_back_item:hover > a > span > * {
 text-shadow: 10px -10px rgba(0, 0, 0, 0.3);
 transform: scale(1.2);
}
.home_block .next_block {
 position: absolute;
 bottom: 5px;
 left: 50%;
 transform: translateX(-50%);
 color: #FFFFFF;
 font-size: 40px;
 opacity: 0.2;
 cursor: pointer;
 z-index: 50;
 animation: next_block 2.6s ease infinite;
 transition: 450ms;
}
@keyframes next_block {
 from {
  bottom: 5px;
  transform: translateX(-50%) scale(1);
  opacity: 0.2;
 }
 50% {
  bottom: 10px;
  transform: translateX(-50%) scale(0.9);
  opacity: 0.5;
 }
 to {
  bottom: 5px;
  transform: translateX(-50%) scale(1);
  opacity: 0.2;
 }
}
body.home .pagination {
 position: fixed;
 z-index: 50;
 right: 0;
 top: 50%;
 transform: translateY(-50%);
 list-style: none;
 padding: 0;
 margin: 0;
}
body.home .pagination a {
 height: 12px;
 width: 12px;
 background-color: #FFFFFF;
 display: block;
 /*+border-radius: 50%;*/
 -moz-border-radius: 50%;
 -webkit-border-radius: 50%;
 -khtml-border-radius: 50%;
 border-radius: 50%;
 margin: 15px;
 transform: scale(0.9);
 border: 2px solid #FFFFFF;
 /*+box-shadow: 0 0 0px 2px #000000;*/
 -moz-box-shadow: 0 0 0px 2px #000000;
 -webkit-box-shadow: 0 0 0px 2px #000000;
 box-shadow: 0 0 0px 2px #000000;
}
body.home .pagination a.active {
 transform: scale(1.2);
 border: 2px solid black;
 /*+box-shadow: 0 0 0px 2px #FFFFFF;*/
 -moz-box-shadow: 0 0 0px 2px #FFFFFF;
 -webkit-box-shadow: 0 0 0px 2px #FFFFFF;
 box-shadow: 0 0 0px 2px #FFFFFF;
}
body.home main.main {
 padding-bottom: 0;
}
@media (min-width: 1201px) {
 .hidden_desk {
  display: none;
 }
 body:not(.home) .header.scroll_pre {
  transform: translateY(-100%);
  position: fixed;
  opacity: 0;
  background-color: #FFFFFF;
  padding-top: 0;
  border-bottom: 3px solid #3C3C3C;
  top: 0;
 }
 body.admin-bar:not(.home) .header.scroll_pre {
  top: 32px;
 }
 body:not(.home) .admin-bar .header.scroll_pre {
  top: 32px;
 }
 body:not(.home) .header.scroll_pre .custom-logo {
  width: 160px;
 }
 body:not(.home) .header.scroll .menu {
  padding: 0;
  transition: none;
 }
 body:not(.home) .header.scroll {
  transition: 450ms;
 }
 body:not(.home) .header.scroll_pre .menu .menu-item.mega_menu .sub-menu {
  top: 64px;
 }
 body:not(.home) .header.scroll .menu {
  padding: 15px 0;
 }
 body:not(.home) .header.scroll_open {
  opacity: 1;
  transform: translateY(0);
  /*+box-shadow: 0 15px 15px rgba(0, 0, 0, 0.100);*/
  -moz-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.100);
  -webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.100);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.100);
 }
}
@media (max-width: 1700px) {
 .container {
  max-width: 1320px;
 }
}
@media (max-width: 1200px) {
 .container {
  padding: 0 20px;
 }
 .gamb span {
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  display: block;
  position: absolute;
  transition: 350ms;
 }
 .gamb_child1 {
  top: 0;
 }
 .gamb_child2 {
  top: 50%;
  transform: translateY(-50%);
 }
 .gamb_child3 {
  bottom: 0;
 }
 .header_open .header .gamb_child1 {
  transform: rotate(-135deg);
  top: 10px;
 }
 .header_open .header .gamb_child2 {
  transform: scale(0);
 }
 .header_open .header .gamb_child3 {
  transform: rotate(135deg);
  top: 10px;
 }
 .gamb {
  height: 24px;
  width: 34px;
  position: absolute;
  cursor: pointer;
  display: block;
  order: 1;
  top: 23px;
  left: 20px;
 }
 .header {
  padding-top: 70px;
  background-color: #000000;
  color: #FFFFFF;
  position: fixed;
 }
 .header .custom-logo {
  height: 60px;
 }
 body.home .header {
  padding-bottom: 0;
 }
 body.home .header:hover {
  background-color: #000000;
 }
 body.home .header .sub-menu {
  background-color: #000000;
 }
 .header .logo_container {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 160px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
 }
 .header_left {
  padding-top: 20px;
 }
 .header_left,
 .header_right {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: block;
 }
 .cart_head_section {
  position: absolute;
  right: 20px;
  top: 10px;
 }
 .header > .container {
  padding: 0 10px;
  height: 0;
  transition: 500ms;
  /*+box-shadow: 0 50px 200px #000000;*/
  -moz-box-shadow: 0 50px 200px #000000;
  -webkit-box-shadow: 0 50px 200px #000000;
  box-shadow: 0 50px 200px #000000;
  display: block;
  overflow: hidden;
 }
 .header_open .header > .container {
  height: calc(100vh - 70px);
  overflow-y: auto;
 }
 .header .menu {
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
 }
 .header .menu .menu-item {
  width: 100%;
 }
 .header .menu > .menu-item {
  width: 100%;
  border-bottom: 1px solid #484848;
 }
 .header .menu .menu-item a {
  color: #FFFFFF;
  width: 100%;
 }
 .header .menu .menu-item a:hover,
 .header .menu .menu-item.active > a,
 .header .menu .menu-item.open > a {
  color: #FFFFFF;
 }
 .header .menu > .menu-item > a {
  margin: 2px 0;
 }
 .header .menu > .menu-item > a:after {
  display: none;
 }
 #lang_menu {
  margin: 20px 0 0;
  text-align: center;
  justify-content: center;
 }
 .header .menu .menu-item.mega_menu .sub-menu {
  top: 70px;
  /*+box-shadow: none;*/
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: none;
  padding: 10px 0;
  height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 100;
 }
 .mega_menu .sub-menu .container {
  flex-wrap: wrap;
 }
 .header .menu .menu-item .sub-menu a {
  color: #323232;
 }
 .header .menu .mega_menu .sub-menu .container > .menu-item {
  width: 290px;
  padding: 5px 15px;
  margin: 0 auto;
 }
 .header .menu > .menu-item {
  position: static;
 }
 .menu-item-has-children.default_menu > .sub-menu {
  width: 100%;
  padding: 15px 20px;
  /*+border-radius: 0;*/
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  /*+box-shadow: none;*/
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 70px;
  display: none;
  border: 0px solid black;
  height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 100;
  text-align: center;
 }
 #lang_menu .sub-menu li > a {
  color: #323232;
 }
 body {
  padding-top: 70px;
 }
}
@media (max-width: 1023px) {
 .footer_wids {
  flex-wrap: wrap;
 }
 .footer_wids .widget_nav_menu .title_footer {
  width: 100%;
  border-bottom: 1px solid #4C4C4C;
  padding: 10px 20px 10px 0;
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
 }
 .footer_wids .widget_nav_menu .title_footer:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: '';
  width: 16px;
  height: 2px;
  background-color: #FFFFFF;
 }
 .footer_wids .widget_nav_menu .title_footer:before {
  width: 2px;
  height: 16px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  content: '';
  transition: 350ms;
 }
 .footer_wids .widget_nav_menu .title_footer.open:before {
  transform: translateY(-50%) rotate(90deg);
 }
 .footer_wids .footer_sidebar_widgets {
  width: 100%;
  padding: 0;
 }
 .footer_wids .widget_nav_menu div:last-child {
  display: none;
 }
 .tree_back_block {
  flex-wrap: wrap;
 }
 .tree_back_item {
  width: 100%;
 }
 .breadcrumbs_block ul {
  padding: 10px 0;
  margin: 0;
  list-style: none;
  display: flex;
  font-size: 14px;
  overflow-x: auto;
  white-space: nowrap;
 }
}
@media (max-width: 767px) {
 .copyright_text {
  order: 1;
  width: 100%;
  text-align: center;
 }
 .copyright {
  flex-wrap: wrap;
 }
 #foot_menu {
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 20px;
 }
 #foot_menu li {
  width: 100%;
  margin-bottom: 5px;
  text-align: center;
 }
 #foot_menu li a {
  margin: 0;
 }
 .footer_contacts .contact_link {
 }
 .footer_contacts .contact_link .contact_link_item {
  width: 220px;
  flex-wrap: wrap;
 }
 .footer_contacts .contact_link .contact_link_item a {
  margin: auto;
 }
 .home_block .center_text {
  width: 100%;
  padding: 0 15px;
 }
 body.home .pagination {
  display: none;
 }
 .home_block .center_text h2 {
  font-size: 26px;
 }
 .home_block .subtitle {
  font-size: 14px;
 }
 .tree_back_item .title {
  font-size: 33px;
 }
}
@media (max-width: 585px) {
 .modal_body {
  width: calc(100% - 10px);
 }
 body {
  font-size: 16px;
 }
 .woocommerce-tabs li {
  width: 100%;
  display: flex;
  margin: 0 !important;
 }
 .tabs.wc-tabs {
  padding: 0 !important;
  margin: 0 !important;
 }
 .woocommerce-tabs a {
  width: 100%;
  display: block;
 }
 .prdctfltr_showing {
  display: none;
 }
 .page-title {
  font-size: 26px;
 }
}
/*WC*/
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
 width: 100%;
 max-width: none;
 padding: 0;
}
.woocommerce-checkout #customer_details .woocommerce-shipping-fields {
 display: none;
}
.woocommerce-checkout #order_review .shop_table td {
 width: 50%;
}
.woocommerce-checkout #order_review .shop_table th {
 width: 50%;
}
.woocommerce-checkout #order_review .shop_table .cart_item {
 background-color: #FBFBFB;
}
#shipping_method.woocommerce-shipping-methods li input.shipping_method + label {
 padding-left: 10px;
 cursor: pointer;
}
#shipping_method.woocommerce-shipping-methods li input.shipping_method {
 margin: 0;
}
#shipping_method.woocommerce-shipping-methods li input.shipping_method {
 display: none;
}
#shipping_method.woocommerce-shipping-methods li input.shipping_method + label {
 display: inline-block;
 cursor: pointer;
 position: relative;
 padding-left: 25px;
 margin-right: 0;
 line-height: 18px;
 user-select: none;
}
#shipping_method.woocommerce-shipping-methods li input.shipping_method +
label:before {
 content: "";
 display: inline-block;
 position: absolute;
 left: 0;
 bottom: 1px;
 border: 1px solid #A9A9A9;
 /*+border-radius: 50%;*/
 -moz-border-radius: 50%;
 -webkit-border-radius: 50%;
 -khtml-border-radius: 50%;
 border-radius: 50%;
 height: 14px;
 width: 14px;
 top: calc(50% - 1px);
 transform: translatey(-50%);
}
#shipping_method.woocommerce-shipping-methods li
input.shipping_method[type=radio]:checked + label:before {
 border: 1px solid #6E6E6E;
}
#shipping_method.woocommerce-shipping-methods li input.shipping_method +
label:after {
 content: "";
 display: inline-block;
 position: absolute;
 left: 4px;
 bottom: 1px;
 /*+border-radius: 50%;*/
 -moz-border-radius: 50%;
 -webkit-border-radius: 50%;
 -khtml-border-radius: 50%;
 border-radius: 50%;
 height: 8px;
 width: 8px;
 top: calc(50% - 1px);
 transform: translatey(-50%) scale(0);
 background-color: #5A5A5A;
 opacity: 0;
 transition: 350ms;
}
#shipping_method.woocommerce-shipping-methods li
input.shipping_method[type=radio]:checked + label:after {
 opacity: 1;
 transform: translatey(-50%);
}
#shipping_method.woocommerce-shipping-methods li input.shipping_method +
label:hover:after {
 opacity: 0.2;
 transform: translatey(-50%);
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
 color: #2E2E2E;
 top: calc(50% - 1px);
 transform: translateY(-50%);
 left: 1em;
}
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
 position: relative;
 list-style: none outside;
 width: auto;
 word-wrap: break-word;
 color: #2E2E2E;
 padding: 1em 1em 1em 3em;
 font-weight: 600;
}
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
 margin-top: -13px !important;
 margin-bottom: -15px !important;
 margin-right: -10px !important;
}
.woocommerce-form-coupon {
 margin-top: 0;
}
.woocommerce form.checkout_coupon {
 margin-top: -35px;
 border-top: 0px solid black;
 border-bottom: 1px solid #2E2E2E;
 /*+border-radius: 0;*/
 -moz-border-radius: 0;
 -webkit-border-radius: 0;
 -khtml-border-radius: 0;
 border-radius: 0;
 padding-top: 1px;
}
.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message a:hover {
 color: #000000;
}
.woocommerce-info {
 background-color: rgba(31, 132, 189, 0.5);
 border-top: 5px solid #1F84BD;
 color: #06659A;
}
.woocommerce-info::before {
 color: #06659A;
}
.woocommerce table.shop_attributes th {
 width: 250px;
 text-align: left;
 border-right: 1px dotted rgba(0, 0, 0, 0.1);
}
.woocommerce table.shop_attributes td {
 font-style: normal;
 padding: 0 8px;
}
.woocommerce-message {
 background-color: rgba(87, 173, 27, 0.5);
 border-top: 5px solid #57AD1B;
}
.woocommerce-error {
 background-color: rgba(183, 28, 35, 0.500);
 border-top: 5px solid #B71C23;
}
.woocommerce-result-count {
 float: left !important;
 margin-top: 15px !important;
 display: block !important;
}
.pl-quickview-trigger {
 display: none;
}
.pl-button:hover:after {
 filter: invert(100%);
}
.pl-button {
 overflow: hidden !important;
}
.pl-alt-after .pl-price {
 padding-bottom: 15px !important;
 text-align: right;
}
.pl-grid-table {
 margin-top: -4px;
 margin-bottom: 0 !important;
}
.pl-grid-table span {
 transition: 350ms;
}
.pl-grid-table span:hover {
 filter: invert(100%);
}
.pl-magic {
 padding: 0 10px !important;
 /*+border-radius: 0 !important;*/
 -moz-border-radius: 0 !important;
 -webkit-border-radius: 0 !important;
 -khtml-border-radius: 0 !important;
 border-radius: 0 !important;
 border: 1px solid #E7E7E7;
 transition: 350ms;
}
.pl-magic .pl-meta-wrap {
 font-size: 14px;
 font-weight: 300;
 color: #000000 !important;
}
.pl-grid .pl-magic .pl-meta-wrap {
 display: none;
}
.pl-magic .pl-loop-product-link .pl-excerpt {
 font-size: 14px !important;
 transition: 350ms;
 margin-bottom: 0 !important;
 line-height: 1 !important;
 height: 57px !important;
}
.pl-magic:hover .pl-loop-product-link .pl-excerpt {
 color: #000000 !important;
}
.pl-grid .pl-magic .pl-loop-product-link .pl-excerpt {
 display: none;
}
.pl-magic .pl-loop-product-link .pl-price {
 font-size: 18px !important;
 margin-bottom: 15px !important;
 text-align: right;
 font-weight: bold !important;
}
.pl-table .pl-magic .pl-price {
 margin-bottom: 5px !important;
 margin-top: 10px !important;
}
.pl-magic .pl-addtocart {
 text-align: right;
 margin-bottom: 10px !important;
 margin-top: -10px !important;
 transition: 250ms;
 display: flex;
 white-space: nowrap;
 justify-content: flex-end;
 align-items: center;
}
.pl-magic .pl-figure-wrapper {
 border-bottom: 2px solid #E1E1E1;
}
.pl-magic .pl-figure-wrapper {
 margin-bottom: 10px !important;
}
.pl-magic .pl-title {
 font-size: 16px !important;
 font-weight: 400 !important;
 letter-spacing: 1px !important;
 color: #323232 !important;
 line-height: 1 !important;
 height: 50px;
 overflow: hidden;
}
.pl-magic .pl-loop-product-link {
 text-decoration: none !important;
}
.pl-adding-to-cart {
 color: transparent !important;
}
.archive .woocommerce_page .page-title::before {
 content: '';
 display: block;
 clear: both;
}
.products div.pl-table {
 width: 100% !important;
}
.pl-table .pl-magic .pl-title {
 font-size: 22px !important;
 padding-top: 20px;
}
.pl-magic .pl-product-meta a {
 color: #000000 !important;
}
.pl-table .pl-magic .pl-meta-wrap {
 display: flex !important;
 flex-wrap: wrap;
}
.pl-table .pl-magic .pl-meta-wrap > span {
 margin-right: 15px;
}
.pl-table .pl-magic .pl-figure-wrapper {
 margin-right: 15px !important;
 margin-top: 15px !important;
}
@media (min-width: 1025px) {
 .pl-grid .pl-magic .pl-addtocart {
  height: 0;
  overflow: hidden;
 }
 .pl-grid .pl-magic:hover {
  background-color: #464646 !important;
  /*+box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;*/
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid #464646;
  transform: scale(1.03);
 }
 ul.products .pl-product:hover {
  z-index: 15 !important;
 }
 .pl-grid .pl-magic:hover .pl-loop-product-link .pl-price * {
  color: #FFFFFF !important;
 }
 .pl-grid .pl-magic:hover .pl-title {
  color: #FFFFFF !important;
 }
 .pl-grid .pl-magic:hover .pl-addtocart {
  height: 50px;
  padding-top: 5px;
 }
 .single-product .product .woocommerce-product-gallery {
  width: 550px !important;
  margin-top: 20px;
 }
 .single-product .product .summary {
  width: calc(100% - 550px) !important;
  padding: 15px 15px 15px 25px;
  border-left: 1px solid #D3CED2;
  margin-top: 20px;
 }
 .single-product .product .summary .product_title {
  font-size: 24px;
 }
}
.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers {
 height: 40px !important;
 width: 44px !important;
 font-weight: bold !important;
}
.woocommerce-pagination li {
 display: flex !important;
 padding: 0 !important;
 margin: 0 !important;
}
.woocommerce-pagination .page-numbers {
 display: flex !important;
 justify-content: center;
 border: 0px solid black !important;
}
.tabs.wc-tabs li {
 border: 0px solid black !important;
 background-color: #B9B9B9 !important;
 color: #FFFFFF !important;
 /*+border-radius: 0 !important;*/
 -moz-border-radius: 0 !important;
 -webkit-border-radius: 0 !important;
 -khtml-border-radius: 0 !important;
 border-radius: 0 !important;
}
.tabs.wc-tabs li.active {
 background: linear-gradient(45deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%) 200% 0px / 200% 100% no-repeat, linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(46, 46, 46) 50%) 100% 0% / 100% 200% no-repeat rgb(46, 46, 46) !important;
 color: #FFFFFF !important;
 /*+border-radius: 0 !important;*/
 -moz-border-radius: 0 !important;
 -webkit-border-radius: 0 !important;
 -khtml-border-radius: 0 !important;
 border-radius: 0 !important;
}
.wcspp-navigation a:hover {
 filter: invert(100%);
 background-color: #CDCDCD;
 /*+box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);*/
 -moz-box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
 -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
 box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
 transform: scale(1.2);
}
.tabs.wc-tabs li:after,
.tabs.wc-tabs li:before {
 display: none !important;
}
.woocommerce-MyAccount-navigation {
 width: 330px !important;
 padding: 0 35px 0 0;
}
.woocommerce-MyAccount-navigation ul {
 margin: 0;
 list-style: none;
 padding: 0;
}
.woocommerce-MyAccount-navigation a {
 text-decoration: none;
 padding: 10px 15px;
 display: block;
 border-bottom: 1px solid #C5C5C5;
 text-transform: uppercase;
 font-weight: 600;
 color: #666666;
 background-color: #EDEDED;
}
.woocommerce-MyAccount-navigation a:hover {
 border-bottom: 1px solid black;
 color: #000000;
 background-color: #DBDBDB;
}
.woocommerce-MyAccount-navigation ul li:last-child a {
 border-bottom: 0px solid black;
}
.woocommerce-MyAccount-navigation .is-active a {
 background-color: #343434;
 color: #FFFFFF;
}
.woocommerce-MyAccount-content {
 width: calc(100% - 330px) !important;
}
.woocommerce-MyAccount-content .woocommerce-Addresses .col-1,
.woocommerce-MyAccount-content .woocommerce-Addresses .col-2 {
 width: 49% !important;
 max-width: none !important;
 border: 1px solid #D7D7D7;
 padding: 10px 20px;
 position: relative;
 font-size: 14px;
}
.woocommerce-MyAccount-content .woocommerce-Addresses .edit {
 position: absolute;
 top: 10px;
 right: 10px;
 font-size: 14px;
}
.woocommerce-MyAccount-content em {
 font-size: 12px;
 padding-left: 10px;
 color: #6C6C6C;
}
.woocommerce-MyAccount-content legend {
 font-weight: bold;
 display: block;
 font-size: 24px;
 text-align: right;
}
.woocommerce-MyAccount-content label {
 line-height: normal !important;
}
.woocommerce-MyAccount-content fieldset {
 margin-top: 20px;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last,
.billing_patronymic {
 width: 33.3333%;
 overflow: visible;
 float: left;
}
.wcspp-telegram a {
 background-image: url(/wp-content/plugins/xforwoocommerce/x-pack/share-print-pdf-woocommerce/includes/images/telegram.svg);
 background-position: center;
 background-size: 60% !important;
}
@media (max-width: 960px) {
 .woocommerce-MyAccount-navigation {
  width: 100% !important;
  padding: 0;
 }
 .woocommerce-MyAccount-content {
  width: 100% !important;
  margin-top: 10px;
 }
}
@media (max-width: 768px) {
 .woocommerce-MyAccount-content .woocommerce-Addresses .col-1,
 .woocommerce-MyAccount-content .woocommerce-Addresses .col-2 {
  width: 100% !important;
  margin-bottom: 20px;
 }
}
/*WC валюта*/
.woocs_auto_switcher_link {
 display: flex !important;
 align-items: center;
}
.woocs_auto_switcher_link img {
 min-width: 20px !important;
 height: auto !important;
}
.woocs_auto_switcher {
 width: 80px !important;
 transform: translateX(-37px);
 transition: 350ms;
 opacity: 0.5;
}
.woocs_auto_switcher:hover {
 transform: none;
 opacity: 1;
}
.woocs_auto_switcher_link span {
 display: none !important;
}
/*Конфигуратор*/
.page_content .config_page {
 position: fixed;
 z-index: 900000;
 top: 0;
 left: 0;
 background-color: #FFFFFF;
 width: 100%;
 height: 100%;
 margin: auto;
}
.pos_view {
 width: 300px;
 height: 300px;
 display: flex;
 justify-content: flex-start;
 position: relative;
 align-items: flex-end;
 margin: 10px 10px 30px 30px;
}
.pos_view > .square {
 border: 4px dashed #282828;
 background-color: #E5E5E5;
}
.pos_view .posy {
 position: absolute;
 font-weight: bold;
 font-size: 14px;
 left: -30px;
 bottom: 0;
 height: 100%;
 width: 30px;
 text-align: center;
 display: flex;
 justify-content: center;
}
.pos_view .posy > span {
 transform: rotate(-90deg);
 display: block;
 white-space: nowrap;
 margin: auto;
}
.pos_view .posx {
 position: absolute;
 bottom: -22px;
 width: 100%;
 left: 0;
 text-align: center;
 font-weight: bold;
 font-size: 14px;
}
.step5_cols {
 display: flex;
 justify-content: space-between;
}
.sizes_block {
 border-left: 4px solid #5C32FF;
 border-bottom: 4px solid #FE4747;
 height: 100%;
 width: 100%;
 font-size: 14px;
 font-weight: bold;
 text-transform: uppercase;
 position: relative;
}
.left_sizes_block {
 color: #5C32FF;
 transform: rotate(-90deg) translateY(-50%);
 position: absolute;
 left: 0;
 top: 45%;
}
.right_sizes_block {
 color: #FE4747;
 position: absolute;
 bottom: 5px;
 left: 50%;
 transform: translateX(-50%);
}
.step5_cols .left_col {
 width: 200px;
 height: 200px;
 padding: 15px;
}
.step7 .rotate_button {
 margin-bottom: 10px;
}
.step5_cols .right_col {
 width: calc(100% - 250px);
 display: flex;
 border-left: 1px solid #D5D5D5;
 padding-left: 50px;
 align-items: center;
}
#config_page .my_label {
 width: 100%;
 display: block;
}
.config_page_header {
 padding: 15px 0;
 background-color: #E5E5E5;
 border-bottom: 1px solid #9F9F9F;
}
.config_page_header > .container {
 display: flex;
 place-content: center space-between;
}
#config_page {
 display: flex;
 align-items: center;
 height: calc(100% - 81px);
 overflow-y: auto;
 padding: 15px 0 60px;
}
#config_page > .container {
 margin: auto;
 width: 100%;
}
.config_page .steps_status {
 text-transform: uppercase;
 display: flex;
 place-content: center space-between;
}
.config_page .steps_status_item {
 display: block;
 font-weight: bold;
 padding: 15px;
 color: #000000;
 letter-spacing: 2px;
}
.config_page .steps_status_item.active {
 background-color: #606060;
 color: #FFFFFF;
}
.config_page_header .custom-logo {
 height: 50px;
 width: auto;
}
.config_page .steps {
 text-align: center;
}
.config_page .steps_title {
 margin-bottom: 35px;
}
.config_page .steps.step1 {
 width: auto;
 text-align: center;
}
.config_page .steps.step1 > .flex {
 justify-content: center;
 align-items: center;
}
.config_page .steps.step1 .col_item_fields {
 padding-right: 50px;
 width: 50%;
 text-align: right;
}
.config_page .steps.step1 .col_item_fields .form_group.flex .my_label {
 margin-right: 20px;
}
.config_page .steps.step1 .col_item_pos_view {
 padding-left: 30px;
 border-left: 1px solid #D1D1D1;
 width: 50%;
}
.config_page .steps .button_container {
 margin-top: 35px;
}
.config_page .steps.step5 {
 max-width: 600px;
 margin: auto;
}
.config_page .steps.step5 .button_container {
 text-align: center;
 padding-top: 10px;
}
.config_page .steps.step5 .steps_title {
 text-align: center;
}
.config_page .steps.step5 .form_group.flex .my_label {
 margin-right: 20px;
 text-align: right;
}
.config_page .steps.step2 .steps_title {
 margin-bottom: 35px;
}
.config_page .steps.step2 .desk {
 margin-top: 5px;
 font-size: 14px;
}
.config_page .select_button {
 width: 100%;
 padding: 30px;
 max-width: 600px;
}
.result_view {
 position: relative;
}
.result_view .pos_view .square {
 background-color: #FFFFFF;
 border: 1px dashed #A1A1A1;
}
.res_view {
 width: 100%;
 height: 100%;
 position: absolute;
 display: flex;
 justify-content: flex-start;
 align-items: flex-end;
 top: 0;
 left: 0;
 padding: 25px 30px;
 transition: 350ms;
}
.res_body {
 margin: auto;
 position: relative;
 transition: 350ms;
}
.res_view.scale_res_body {
 transform: scaleX(-1);
}
.res_body.res_square {
 border: 5px double black;
}
.res_body.res_line {
 border-bottom: 5px double black;
}
.res_body.res_g_ob {
 border-left: 5px double black;
 border-bottom: 5px double black;
}
.res_body.res_z_ob {
 border-top: 2px solid black;
 border-bottom: 2px solid black;
 background-color: transparent;
 background-image: linear-gradient(to bottom right, transparent 49.5%, #000, transparent 50.5%);
 background-repeat: no-repeat;
}
.res_body .res_posx {
 position: absolute;
 bottom: -22px;
 width: 100%;
 left: 0;
 text-align: center;
 font-size: 14px;
 right: 0;
 margin: auto;
 font-weight: 400;
}
.res_view.scale_res_body .res_posx {
 transform: scaleX(-1);
}
.res_body .res_posy {
 position: absolute;
 font-weight: 400;
 font-size: 14px;
 left: -30px;
 bottom: 0;
 height: 100%;
 width: 30px;
 text-align: center;
 display: flex;
 justify-content: center;
 top: 0;
 margin: auto;
}
.res_body .res_posy > span {
 transform: rotate(-90deg);
 display: block;
 white-space: nowrap;
 margin: auto;
}
.res_view.scale_res_body .res_posy > span {
 transform: rotate(90deg) scaleX(-1);
}
.result_view > .pos_view {
 margin: 0;
}
.result_view > .pos_view > .square {
 position: relative;
}
.config_page .alert {
 margin: 15px auto auto;
 text-align: center;
 position: fixed;
 left: 10px;
 top: 75px;
 z-index: 90;
 font-weight: bold;
}
.config_page .alert > span {
 padding: 10px 15px;
 display: block;
 background-color: #FFFFFF;
 /*+box-shadow: 2px 2px 0px;*/
 -moz-box-shadow: 2px 2px 0px;
 -webkit-box-shadow: 2px 2px 0px;
 box-shadow: 2px 2px 0px;
 border: 2px solid #9B9B9B;
}
.page_content .steps.step7 {
 text-align: center;
}
.page_content .steps.step7 .flex {
 justify-content: center;
 align-items: center;
}
.config_page .steps.step7 .right_col {
 padding-left: 30px;
}
.config_page .fix_footer {
 position: absolute;
 left: 5px;
 bottom: 5px;
 filter: ;
 filter: invert(100%) brightness(200%);
 transition: 350ms;
}
#note_place {
 font-size: 12px;
 font-weight: bold;
 margin-bottom: 15px;
 color: #663EFF;
}
.line_item.line_item_space .line_item_body {
 background-color: #A3A3A3;
}
.config_page .product_choose .slick-track {
 display: flex !important;
 align-items: flex-end !important;
}
.config_page .product_choose .select_product {
 padding: 10px;
 position: relative;
 overflow: hidden;
 display: flex;
 flex-wrap: wrap;
 transition: 350ms;
 justify-content: center;
}
.config_page .product_choose .select_product .product-title {
 font-size: 12px;
}
.config_page .select_product .product-price {
 font-weight: bold;
 padding-bottom: 5px;
}
.config_page .product_choose .select_product_desk {
 align-self: auto;
 background-color: #F3F3F3;
 padding: 10px;
}
.config_page .product_choose .product-buttons {
 position: absolute;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: 350ms;
 right: 0;
 top: 0;
 width: 100%;
 height: 100%;
 opacity: 0;
 transform: scale(0.6);
 background-color: rgba(66, 66, 66, 0.4);
 /*+box-shadow: inset 0 0 20px rgba(72, 72, 72, 0.200);*/
 -moz-box-shadow: inset 0 0 20px rgba(72, 72, 72, 0.200);
 -webkit-box-shadow: inset 0 0 20px rgba(72, 72, 72, 0.200);
 box-shadow: inset 0 0 20px rgba(72, 72, 72, 0.200);
 border: 3px solid #ABABAB;
 flex-wrap: wrap;
 padding: 15px;
}
.config_page .product_choose .select_product:hover .product-buttons {
 opacity: 1;
 transform: scale(1);
}
.conf_add_product {
 margin-top: 10px;
}
.width_select_product {
 background-color: #FFFFFF;
 border: 1px solid #838383;
 margin-bottom: 5px;
 display: inline-block;
 font-weight: bold;
 padding: 5px 10px;
 /*+border-radius: 5px;*/
 -moz-border-radius: 5px;
 -webkit-border-radius: 5px;
 -khtml-border-radius: 5px;
 border-radius: 5px;
}
.config_page .product_choose .select_product:hover {
 background-color: #E7E7E7;
}
.config_page .product_choose .select_product:hover .select_product_desk {
 background-color: #FFFFFF;
}
.config_page .product_choose {
 padding: 0 10px 10px;
 width: calc(100% - 60px);
 margin: auto;
}
.config_page ul.slick-dots {
 padding: 0 0 10px 0 !important;
 margin: 0 !important;
 list-style: none !important;
}
.config_page .slick-dots button {
 transform: scale(2);
}
.config_page .slick-arrow {
 fill:#000000 !important;
 transform: scale(2);
}
.config_page .slick-arrow:before {
 color: #000000;
}
.product_choose_selected {
 color: #222222;
}
.selected_product_list_item {
 display: flex;
 justify-content: space-between;
}
.free_val {
 color: #088D00;
 font-weight: 900;
 letter-spacing: normal;
}
.full_val {
 color: #00248C;
 font-weight: 900;
 letter-spacing: normal;
}
.busy_val {
 color: #8B0000;
 font-weight: 900;
 letter-spacing: normal;
}
.product_choose_head {
 padding-bottom: 10px;
 border-bottom: 1px solid #C7C7C7;
 margin-bottom: 20px;
 font-weight: 600;
}
.remove_selected_product_list_item {
 color: #7C0000;
 font-size: 24px;
 cursor: pointer;
 transition: 450ms;
 transform: scaleY(1.09);
 width: 30px;
 text-align: right;
}
.remove_selected_product_list_item:hover {
 color: #C00000;
}
.quan_selected_product_list_item {
 width: 75px;
}
.price_selected_product_list_item {
 width: 100px;
}
.name_selected_product_list_item {
 width: calc(100% - 205px);
 text-align: left;
 font-weight: 600;
}
.selected_product_list_item {
 display: flex;
 align-items: center;
 border-bottom: 1px solid #E1E1E1;
 margin: 0;
 padding-top: 2px;
 font-size: 16px;
}
.selected_product_list_item:hover {
 background-color: #F5F5F5;
}
.config_page .step10 {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
}
.config_page .step10 .button_container {
 width: 100%;
 border-top: 1px solid #E9E9E9;
 padding-top: 20px;
 margin-top: 10px;
}
.config_page .step10 .left_col {
 width: 320px;
 border-right: 1px solid #E9E9E9;
 text-align: center;
 padding-bottom: 10px;
 padding-top: 10px;
}
.result_view_step10 .pos_view .square {
 margin: auto;
}
.config_page .step10 .right_col {
 width: calc(100% - 340px);
 padding-bottom: 10px;
 padding-top: 10px;
}
.step10 .steps_title {
 width: 100%;
 border-bottom: 1px solid #E9E9E9;
 margin-bottom: 0;
 padding-bottom: 20px;
 margin-bottom: 10px;
}
.step10 .this_line {
 height: 40px;
 background-color: #E1E1E1;
 margin-bottom: 10px;
 display: flex;
 position: relative;
 padding: 0 2px;
}
.this_line .line_item {
 height: 40px;
 border: 3px solid #E1E1E1;
 transition: 350ms;
 pointer-events: none;
 opacity: 0;
 position: absolute;
 transform: scale(0.5);
 border-right: 1px solid #E1E1E1;
 border-left: 1px solid #E1E1E1;
}
.this_line .line_item.new_line_item {
 background-color: rgba(148, 8, 0, 0.4);
 transition: 150ms;
 color: #FFFFFF;
 line-height: 36px;
 font-size: 14px;
 font-weight: 600;
 transform: none;
 position: relative;
 opacity: 1;
}
.this_line .line_item_body {
 background-color: #2A9F01;
 color: #FFFFFF;
 height: 100%;
 line-height: 36px;
 font-size: 14px;
 font-weight: 600;
 transition: 450ms;
 cursor: pointer;
 overflow: hidden;
}
.button_container_spaces {
 display: flex;
 justify-content: flex-end;
}
.button_container_spaces .plus_minus_block {
 max-width: 200px;
}
.button.space_line {
 margin-left: 5px;
}
.select_line.dig .line_item.dig,
.select_line.bottom .line_item.bottom,
.select_line.top .line_item.top,
.select_line.left .line_item.left,
.select_line.right .line_item.right {
 display: block;
 position: relative;
 opacity: 1;
 transform: none;
 pointer-events: auto;
}
.line_item_body:hover {
 background-color: #1F7800;
}
.line_item.open > .line_item_body {
 background-color: #565656;
}
.line_item_controls {
 opacity: 0.5;
 pointer-events: none;
 top: 40px;
 position: absolute;
 left: 50%;
 transition: all 0.3s ease-in-out;
 transform-style: preserve-3d;
 transform: translate(-50%) rotateY(-90deg) rotateX(-90deg) scale(0.5);
 background-color: #FFFFFF;
 border: 1px solid #A3A3A3;
 width: 250px;
 padding: 10px;
 /*+box-shadow: 0 0;*/
 -moz-box-shadow: 0 0;
 -webkit-box-shadow: 0 0;
 box-shadow: 0 0;
 z-index: 50;
}
.line_item.open .line_item_controls {
 opacity: 1;
 pointer-events: auto;
 transform: translate(-50%);
 /*+box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.400);*/
 -moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.400);
 -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.400);
 box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.400);
}
.line_item_controls h3 {
 margin: 10px 0 0;
 font-size: 14px;
 font-weight: 600;
 text-transform: none;
}
.line_item_controls .price {
 margin-top: 5px;
 font-weight: bold;
 margin-bottom: 10px;
}
.line_item_controls .remove_line_item {
 padding: 7px 20px;
 width: 100%;
}
.select_line_status {
 margin-bottom: 15px;
 border-bottom: 1px solid #E1E1E1;
 font-weight: 600;
 padding: 0 10px 5px;
 font-size: 16px;
}
.select_line_status_free {
 color: #088D00;
 font-weight: 900;
 letter-spacing: normal;
}
.select_line_status_full {
 color: #00248C;
 font-weight: 900;
 letter-spacing: normal;
}
.select_line_status_busy {
 color: #8B0000;
 font-weight: 900;
 letter-spacing: normal;
}
.place_product_list_item {
 margin: 0;
 border-bottom: 1px solid #EBEBEB;
 width: 100%;
 display: flex;
 justify-content: space-between;
 padding: 3px;
 align-items: center;
 font-size: 14px;
}
.place_product_list_item:hover {
 background-color: #F7F7F7;
}
.add_place_product_list_item {
 padding: 10px 20px;
 font-size: 14px;
 cursor: pointer;
}
.quan_place_product_list_item {
 width: 60px;
 text-align: left;
}
.width_place_product_list_item {
 width: 90px;
}
.name_place_product_list_item {
 width: calc(100% - 300px);
 text-align: left;
 font-weight: 600;
 font-size: 15px;
}
.place_products {
 min-height: 160px;
}
.step10_controls {
 margin-top: 10px;
 text-align: right;
}
.step10_controls .button {
 font-size: 14px;
 padding: 10px 20px;
}
.result_view_step10.left .res_body {
 border-left: 5px solid #FF3636;
}
.result_view_step10.right .res_body {
 border-right: 5px solid #FF3636;
}
.result_view_step10.top .res_body {
 border-top: 5px solid #FF3636;
}
.result_view_step10.bottom .res_body {
 border-bottom: 5px solid #FF3636;
}
.result_view_step10.dig .res_body {
 background-image: linear-gradient(to bottom right, transparent 49.5%, #FF3636, transparent 50.5%);
}
.config_page_fix_head a {
 text-decoration: none;
 text-transform: uppercase;
 font-weight: bold;
 font-size: 14px;
 display: flex;
 align-items: center;
 position: absolute;
 top: 90px;
 color: #6A6A6A;
 padding-left: 10px;
}
.config_page_fix_head a:hover {
 color: #000000;
}
.config_page_fix_head i {
 margin-right: 7px;
 font-size: 20px;
 transition: 350ms;
}
.config_page_fix_head a:hover > i {
 margin-right: 10px;
 color: #B10000;
}
.conf_cart_item {
 display: flex;
 font-size: 16px;
 text-align: left;
 align-items: center;
 padding: 15px;
}
.conf_cart_items .conf_cart_item:nth-child(2n) {
 flex-direction: row-reverse;
 background-color: #EBEBEB;
}
.conf_cart_items .conf_cart_item:nth-child(2n) .cci_image {
 padding-left: 15px;
 border-left: 1px solid #FFFFFF;
 margin-left: 15px;
 padding-right: 0px;
 border-right: 0px solid #CFCFCF;
 margin-right: 0;
}
.cci_image {
 width: 200px;
 padding-right: 15px;
 border-right: 1px solid #CFCFCF;
 margin-right: 15px;
}
.cci_desk {
 width: calc(100% - 215px);
}
.step11 .left_col {
 width: 60%;
 padding: 0 20px 0 0;
}
.step11 .right_col {
 width: 40%;
 padding: 0 0 0 20px;
}
.cci_name {
 margin: 0 0 5px 0;
 font-weight: 900;
}
.cci_desk span {
 display: flex;
 justify-content: space-between;
 border-bottom: 1px solid #F3F3F3;
 margin-bottom: 2px;
 padding-bottom: 2px;
 color: #7E7E7E;
}
.conf_cart_items .conf_cart_item:nth-child(2n) span {
 border-bottom: 1px solid #E3E3E3;
}
.conf_cart_totals {
 font-weight: 600;
 font-size: 22px;
 color: #FFFFFF;
 padding: 20px 0;
 background-color: #383838;
 margin-top: 10px;
 margin-bottom: 35px;
}
.pre_form_finish_center .button {
 width: 100%;
 filter: invert(1) brightness(1.2);
 border-bottom: 1px solid #FFFFFF;
 margin: 0 30px 10px;
 border-top: 1px solid #787878;
 border-right: 1px solid #FFFFFF;
 border-left: 1px solid #FFFFFF;
}
.button.go_form_finish {
 filter: none;
 border-bottom: 0px solid black;
}
.pre_form_finish_center .button_container {
 flex-wrap: wrap;
 margin: 0 !important;
}
.pre_form_finish {
 display: flex;
 justify-content: center;
 align-content: center;
 position: sticky;
 top: 20%;
}
.pre_form_finish_center {
 width: 100%;
 margin: auto;
}
.config_page .form_finish {
 text-align: left;
 position: sticky;
 top: 20%;
}
#config_page .form_finish .my_label {
 font-weight: 600;
 font-size: 16px;
}
#config_page .form_finish .flex .form_group {
 width: calc(50% - 5px);
 margin-bottom: 10px;
}
.config_page .back_form_finish {
 filter: invert(1) brightness(1.2);
}
.confs_cart {
 position: fixed;
 top: 95px;
 right: 15px;
 transform: rotateX(90deg) rotateY(-360deg) scaleY(3) scaleX(1.5);
 opacity: 0;
 transition: 650ms;
 pointer-events: none;
}
.confs_cart.view {
 opacity: 1;
 transform: none;
 pointer-events: auto;
}
.confs_cart .button {
 padding: 10px 15px;
}
.confs_cart .button i {
 margin: 0;
}
#confs {
 margin-bottom: 15px;
}
#note_cart {
 font-size: 12px;
 font-weight: bold;
 color: #540900;
}
.cart_form_finish_conf .form_group {
 padding: 0 5px;
}
.confs_item {
 margin: 0;
 display: flex;
 justify-content: space-between;
 border-bottom: 1px solid #C3C3C3;
 padding: 5px;
 align-items: center;
}
.confs_item a {
 text-decoration: none;
}
.confs_item_remove {
 color: #7C0000;
 font-size: 24px;
 cursor: pointer;
 transition: 450ms;
 transform: scaleY(1.09);
 width: 30px;
 text-align: right;
}
.confs_item_remove:hover {
 color: #C00000;
}
.step5_cols.default_form .left_col {
 display: none;
}
.step5_cols.default_form .right_col {
 padding: 0;
 margin: auto;
 max-width: 300px;
 border: 0px solid black;
}
/*.container.has_sidebar
{
	display: flex;
	justify-content: space-between;
}*/
/*.main_sidebar
{
	width: 260px;
}*/
/*.container.has_sidebar .main_content
{
	width: calc(100% - 300px);
}*/
.main_sidebar .prdctfltr_filter {
 border: 1px solid rgb(231, 231, 231);
 background: rgb(255, 255, 255);
 box-shadow: rgba(0, 0, 0, 0.08) 0px 4.5px 22.5px 0px, rgba(0, 0, 0, 0.04) 0px 5.94px 45px 0px;
 padding: 15px 20px !important;
}
.main_sidebar .prdctfltr_filter .title_page_sidebar {
 margin-bottom: 10px;
}
.prdctfltr_filter_title {
 font-size: 20px !important;
 margin-top: 20px;
}
.prdctfltr_filter_title .prdctfltr_woocommerce_filter {
 font-size: 34px !important;
}
.prdctfltr_woocommerce_ordering {
 padding: 10px;
}
.wcspp-ies:before {
 content: 'IES';
 position: absolute;
 top: 0;
 left: 0;
 display: block;
 height: 100%;
 width: 100%;
 z-index: 10;
 pointer-events: none;
 text-align: center;
 line-height: 50px;
 color: #323232;
}
.wcspp-ies:hover:before {
 color: #FFFFFF;
}
.wcspp-3d:before {
 content: '3D';
 position: absolute;
 top: 0;
 left: 0;
 display: block;
 height: 100%;
 width: 100%;
 z-index: 10;
 pointer-events: none;
 text-align: center;
 line-height: 50px;
 color: #323232;
}
.wcspp-3d:hover:before {
 color: #FFFFFF;
}
@media (max-width: 940px) {
 .config_page .form_group.flex {
  flex-wrap: wrap;
  text-align: left;
 }
 .config_page .form_group.flex .my_label {
  margin-bottom: 5px;
  margin-right: 0;
 }
 .config_page .steps.step1 .col_item_fields .form_group.flex .my_label {
  margin-right: auto;
 }
 .config_page .steps.step5 .form_group.flex .my_label {
  margin-right: auto;
  text-align: left;
 }
 .config_page .form_group.flex .plus_minus_block {
  width: 100%;
 }
 #config_page {
  padding-top: 30px;
 }
 .product-buttons {
  position: static;
 }
 #config_page .product_choose .product-buttons {
  position: relative;
  opacity: 1;
  transform: none;
  background-color: #FFFFFF;
  border: 0px solid black;
 }
 .config_page .product_choose .select_product:hover {
  background-color: #FFFFFF;
 }
 .config_page .product_choose .select_product:hover .select_product_desk {
  background-color: #F3F3F3;
 }
}
@media (max-width: 800px) {
 .product_choose {
  width: calc(100% - 80px);
  margin: auto;
 }
 #config_page .steps.step10 .left_col,
 #config_page .steps.step10 .right_col {
  width: 100%;
 }
 .steps.step10 .left_col .result_view .pos_view {
  margin: auto;
 }
 #config_page .steps.step10,
 #config_page .steps.step11 > .flex {
  flex-wrap: wrap;
 }
 #config_page .steps.step11 .left_col,
 #config_page .steps.step11 .right_col {
  width: 100%;
  padding: 0;
 }
 #config_page {
  padding-bottom: 120px;
 }
}
@media (max-width: 767px) {
 .config_page .steps.step1 .flex,
 .config_page .steps.step7 .flex {
  flex-wrap: wrap;
 }
 .config_page .steps.step1 .col_item {
  padding: 0;
  width: 100%;
  border: 0px solid black;
 }
 .config_page .steps.step7 .flex .left_col {
  margin-bottom: 20px;
  padding: 0;
 }
 .config_page .steps.step7 .right_col {
  padding: 0;
 }
 .config_page .steps.step7 .button_container {
  margin-top: 0;
 }
 .config_page .steps_status {
  display: none;
 }
 .config_page .logo_container {
  margin: auto;
 }
 .page_content .steps.step1 .pos_view .square {
  padding: 0;
 }
 .config_page .container {
  padding: 0 10px;
 }
 .config_page .steps.step1 .pos_view {
  width: 260px;
  height: 260px;
  margin: 0 0 0 20px;
 }
 #config_page .steps.step1 .pos_view {
  margin: auto;
 }
 .steps.step5 .step5_cols {
  flex-wrap: wrap;
 }
 #config_page .steps.step5 .step5_cols .left_col,
 #config_page .steps.step5 .step5_cols .right_col {
  width: 100%;
  margin: auto;
  border: 0px solid black;
  padding: 0 0 20px 0;
 }
 .steps.step5 .step5_cols .form_sizes {
  margin: auto;
 }
 .steps.step1 .pos_view {
  padding: 10px;
  margin: 0 0 0 25px !important;
 }
 .steps.step1 .pos_view .posx {
  width: 100% !important;
 }
 .steps.step1 .pos_view .posy {
  height: 100% !important;
 }
 .steps.step1 .pos_view .square {
  margin: auto;
 }
 .selected_product_list_item {
  flex-wrap: wrap;
  margin-bottom: 10px;
 }
 .name_selected_product_list_item {
  width: 100%;
  margin-bottom: 15px;
 }
 .place_product_list_item {
  flex-wrap: wrap;
  margin-bottom: 10px;
 }
 .name_place_product_list_item {
  width: 100%;
  margin-bottom: 15px;
 }
 .line_item_body {
  font-size: 0px !important;
 }
 .line_item {
  position: static !important;
 }
 .line_item_controls {
  left: 0;
  right: 0;
  margin: 10px auto auto;
 }
 .line_item.open .line_item_controls {
  opacity: 1;
  pointer-events: auto;
  transform: none;
 }
 .this_line .line_item.new_line_item {
  font-size: 0px !important;
 }
 .conf_cart_item {
  flex-wrap: wrap;
 }
 .conf_cart_item .cci_image {
  width: 100% !important;
  border: 0px solid black !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 20px !important;
 }
 .conf_cart_item .cci_desk {
  width: 100%;
  border-bottom: 1px solid black;
 }
}
/*сетка бустрап 4 (только колонки)*/
.row {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 margin-right: -15px;
 margin-left: -15px;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
 position: relative;
 width: 100%;
 min-height: 1px;
 padding-right: 15px;
 padding-left: 15px;
}
.col {
 -ms-flex-preferred-size: 0;
 flex-basis: 0;
 -webkit-box-flex: 1;
 -ms-flex-positive: 1;
 flex-grow: 1;
 max-width: 100%;
}
.col-auto {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 auto;
 flex: 0 0 auto;
 width: auto;
 max-width: none;
}
.col-1 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 8.333333%;
 flex: 0 0 8.333333%;
 max-width: 8.333333%;
}
.col-2 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 16.666667%;
 flex: 0 0 16.666667%;
 max-width: 16.666667%;
}
.col-3 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 25%;
 flex: 0 0 25%;
 max-width: 25%;
}
.col-4 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 33.333333%;
 flex: 0 0 33.333333%;
 max-width: 33.333333%;
}
.col-5 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 41.666667%;
 flex: 0 0 41.666667%;
 max-width: 41.666667%;
}
.col-6 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 50%;
 flex: 0 0 50%;
 max-width: 50%;
}
.col-7 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 58.333333%;
 flex: 0 0 58.333333%;
 max-width: 58.333333%;
}
.col-8 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 66.666667%;
 flex: 0 0 66.666667%;
 max-width: 66.666667%;
}
.col-9 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 75%;
 flex: 0 0 75%;
 max-width: 75%;
}
.col-10 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 83.333333%;
 flex: 0 0 83.333333%;
 max-width: 83.333333%;
}
.col-11 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 91.666667%;
 flex: 0 0 91.666667%;
 max-width: 91.666667%;
}
.col-12 {
 -webkit-box-flex: 0;
 -ms-flex: 0 0 100%;
 flex: 0 0 100%;
 max-width: 100%;
}
@media (min-width: 576px) {
 .col-sm {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
 }
 .col-sm-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
 }
 .col-sm-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
 }
 .col-sm-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
 }
 .col-sm-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
 }
 .col-sm-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
 }
 .col-sm-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
 }
 .col-sm-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
 }
 .col-sm-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
 }
 .col-sm-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
 }
 .col-sm-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
 }
 .col-sm-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
 }
 .col-sm-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
 }
 .col-sm-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
 }
}
@media (min-width: 768px) {
 .col-md {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
 }
 .col-md-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
 }
 .col-md-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
 }
 .col-md-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
 }
 .col-md-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
 }
 .col-md-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
 }
 .col-md-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
 }
 .col-md-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
 }
 .col-md-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
 }
 .col-md-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
 }
 .col-md-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
 }
 .col-md-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
 }
 .col-md-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
 }
 .col-md-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
 }
}
@media (min-width: 992px) {
 .col-lg {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
 }
 .col-lg-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
 }
 .col-lg-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
 }
 .col-lg-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
 }
 .col-lg-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
 }
 .col-lg-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
 }
 .col-lg-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
 }
 .col-lg-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
 }
 .col-lg-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
 }
 .col-lg-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
 }
 .col-lg-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
 }
 .col-lg-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
 }
 .col-lg-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
 }
 .col-lg-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
 }
}
@media (min-width: 1200px) {
 .col-xl {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
 }
 .col-xl-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
 }
 .col-xl-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
 }
 .col-xl-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
 }
 .col-xl-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
 }
 .col-xl-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
 }
 .col-xl-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
 }
 .col-xl-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
 }
 .col-xl-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
 }
 .col-xl-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
 }
 .col-xl-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
 }
 .col-xl-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
 }
 .col-xl-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
 }
 .col-xl-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
 }
}
