@import url("../css/normalize.css");
@import url("../css/fonts.css");
@import url("../css/grid.css");
@import url("../css/slick.css");
@import url("../css/jquery.fancybox.css");
@import url("../css/nice-select.css");
@import url("../css/jquery-ui.css");

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

*,*:before,*:after { -webkit-box-sizing:border-box;box-sizing:border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
b, strong { font-weight: bold; }
input { outline: none; }
input:focus,textarea:focus{-webkit-box-shadow:none;box-shadow:none;}
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; vertical-align: top;}
iframe{ border:0; }
a { text-decoration: none; 	-webkit-transition:opacity .3s ease-out; -o-transition:opacity .3s ease-out; transition:opacity .3s ease-out; color: #FF5E1A; }
a:hover { text-decoration: none; }
*:focus{outline:none}

* {
  scrollbar-color: #b8b8b8 #e8e8e8;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 8px;
  background-color: #e8e8e8;
}

::-webkit-scrollbar-thumb {
  background-color: #b8b8b8;
  border-radius: 9em;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	font-weight:normal;
	color:#000;
	background: #F2F2F2;
	margin:0 auto;
	padding:0;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	position: relative;
}

body.no-scroll {
  overflow-y: hidden;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .85;
  display: none;
  z-index: 74;
}

.slick-track {
  display: flex;
  flex-wrap: wrap;
}

/*** GLOBAL ***/

.labels {
  display: flex;
  flex-wrap: wrap;
}

.images .labels {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 20px;
}

.labels .label {
  margin-right: 12px;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  padding: 8px 12px 7px;
  display: inline-block;
  vertical-align: top;
  font-weight: 700;
}

.labels .label:last-child {
  margin-right: 0;
}

.labels .label.red {
  background: #FA3333;
  color: #FFF;
}

.labels .label.green {
  background: #3EBE71;
  color: #FFF;
}

.labels .label.orange {
  background: #ff7714;
  color: #FFF;
}

.labels .label.blue {
  background: #328af7;
  color: #FFF;
}

.price-block {
  display: flex;
  align-items: flex-start;
  color: #1E2021;
  justify-content: center;
}

.price-block .price {
  color: #1E2021;
  margin-right: 10px;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
}

.price-block .old_price {
  color: #6F7172;
  font-weight: 500;
  text-decoration: line-through;
  font-size: 12px;
  line-height: 1;
}

/*Tips*/

.tip {
  position: relative;
}

.tip:after {
  content: attr(data-tip);
  position: absolute;
  right: 100%;
  top: 50%;
  background: rgb(0 0 0 / 75%);
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  line-height: 120%;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s opacity;
  width: 140px;
  z-index: 222;
}

.tip:hover:after {
  opacity: 1;
}


/*Count*/

.count_block {
  width: 136px;
  display: flex;
  align-items: center;
}

.count_block input {
  width: 72px;
  padding: 0 10px;
  border: none;
  text-align: center;
  height: 32px;
  line-height: 1;
}

.count_block button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ecebeb;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
  color: #9b9b9b;
  font-family: sans-serif;
  font-size: 18px;
  transition: 0.3s background;
}

.count_block button:hover {
  background: #ecebeb;
}

/*Close*/

.close-btn {
  width: 32px;
  height: 32px;
  background: #ffdfd1;
  border-radius: 100px;
  position: relative;
  border: none;
  pointer-events: none;
}

.close-btn span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 11px;
  height: 2px;
  background: #FF5E1A;
  border-radius: 5px;
}

.close-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*Section Tittle*/

.section-title {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.section-title .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
}

.section-title .controls {
  margin-left: auto;
  display: flex;
  align-items: stretch;
}

.section-title .controls .arrow {
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  border: 1px solid #ECEBEB;
  cursor: pointer;
  transition: .3s background, .3s border-color;
}

.section-title .controls .arrow:not(.slick-disabled):hover {
  background: #ECEBEB;
}

.section-title .controls .arrow:nth-child(1) {
  border-radius: 12px 0 0 12px;
  border-right: 0;
}

.section-title .controls .arrow:nth-child(2) {
  border-radius: 0 12px 12px 0;
  border-left: 0;
  margin-left: 1px;
}

.section-title .controls .arrow.slick-disabled {
    opacity: .5;
    cursor: no-drop;
}

.section-title .controls .arrow svg {
  width: 7px;
  height: 11px;
  fill: #6F7172;
}

.section-title .link {
  margin-left: auto;
}
.section-title .link a {
  display: flex;
  align-items: center;
  transition: .3s color;
  font-size: 18px;
}
.section-title .link a:hover {
  color: #323232;
}
.section-title .link a svg {
  fill: #FF5E1A;
  width: 7px;
  height: 11px;
  margin-left: 17px;
  transition: .3s fill;
}
.section-title .link a:hover svg {
  fill: #323232;
}

/*Specification*/

.specifications ul li {
  margin: 0 0 32px;
  border-bottom: 1px dotted #6f7172;
  position: relative;
  display: flex;
  align-items: center;
}

.specifications ul li:last-child {
  margin-bottom: 0;
}

.specifications ul li:after {
  content: "";
}

.specifications ul li span {
  background: #fff;
  padding: 5px 15px;
  margin-bottom: -10px;
  padding-top: 0;
}

.specifications ul li span:last-child {
  margin-left: auto;
  padding-right: 0;
}

.specifications ul li span:first-child {
  padding-left: 0;
}

.specifications.two ul {
  display: flex;
  flex-wrap: wrap;
}

.specifications.two ul li {
  width: calc(100% / 2 - 32px / 2);
  margin-right: 32px;
}

.specifications.two ul li:nth-child(2n) {
  margin-right: 0;
}

/*Adress Block*/

.adress-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.adress-block .list {
  width: 252px;
  margin-right: 32px;
}

.adress-block .map {
  width: calc(100% - 284px);
  background: #CCC;
  border-radius: 12px;
  min-height: 360px;
}

.adress-block .list ul li {
  position: relative;
  padding-left: 62px;
  margin: 0 0 32px;
}

.adress-block .list ul li:last-child {
  margin-bottom: 0;
}

.adress-block .list ul li svg {
  width: 48px;
  height: 48px;
  background: rgba(255, 94, 26, 0.2);
  border-radius: 100px;
  fill: #ff581a;
  padding: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  min-height: 48px;
}

.adress-block .list ul li b {
  display: block;
  color: #1E2021;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 9px;
}

.adress-block .list ul li span {
  display: block;
  color: #6F7172;
  font-weight: 500;
  font-size: 14px;
}

.adress-block .list ul li span.red {
  color: #FA3333;
}

.adress-block .list ul li small {
  display: block;
  margin: 9px 0 0;
  font-weight: 400;
  font-size: 12px;
  color: #6F7172;
}

/*Colors*/

.colors {
  margin: 0 0 23px;
}

.colors .colors-title {
  margin: 0 0 9px;
  font-size: 16px;
  color: #1E2021;
}

.colors .colors-list {
  display: flex;
  flex-wrap: wrap;
}

.colors .colors-list .item {
  margin-right: 12px;
  margin-bottom: 12px;
}

.colors .colors-list .item input {
  display: none;
}

.colors .colors-list .item label {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  background: #FFFFFF;
  border: 1px solid #ECEBEB;
  border-radius: 6px;
  cursor: pointer;
}

.colors .colors-list .item label img {
  width: 24px;
  height: 24px;
}

.colors .colors-list .item label span {
  color: #6F7172;
  font-size: 14px;
}

.colors .colors-list .item input:checked + label,
.colors .colors-list .item.active label {
  border-color: #ff5a1a;
}

.colors .colors-list .item input:checked + label span,
.colors .colors-list .item.active label span {
  color: #1E2021;
}

/*Items List*/

.items_list_small {
  width: 345px;
  max-width: 100%;
}

.items_list_small .item {
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.items_list_small .item:last-child {
  margin: 0;
}

.items_list_small .item .image {
  width: 84px;
  height: 84px;
  margin-right: 29px;
}

.items_list_small .item .image img {
  max-height: 100%;
  object-fit: cover;
}

.items_list_small .item .info {
  width: calc(100% - 113px);
  text-align: left;
}

.items_list_small .item .info .price-block {
  text-align: left;
  justify-content: flex-start;
}

.items_list_small .item .info .title {
  margin: 0 0 13px;
}

.items_list_small .item .info .title a {
  color: #1E2021;
}

/*Text Block*/

.text-block {
  color: #1e2021;
  font-size: 16px;
  line-height: 1.4;
}

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

.text-block p {
  margin: 0 0 24px;
}

.text-block ul {
  margin: 0 0 24px;
}

.text-block ul:not(.unstyled) li:before {
  content: "-";
  margin-right: 5px;
  color: #1e2021;
  border: none;
  font-weight: 300;
}

.text-block ol {
  margin: 0 0 24px;
  counter-reset: count;
}

.text-block ol li:before {
  counter-increment: count;
  content: counter(count) '.';
  margin-right: 5px;
  color: #1e2021;
  border: none;
  font-weight: 300;
}

.text-block h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
}

.text-block h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.text-block.text-block-white {
  background: #ffffff;
  border: 1px solid #ecebeb;
  border-radius: 12px;
  padding: 15px 20px 15px;
}

/*** MOBILE MENU ***/

.mobile-menu {
  position: fixed;
  top: 0;
  width: 343px;
  max-width: 90%;
  z-index: 355;
  background: #252525;
  height: 100%;
  left: -500px;
  transition: .5s left;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .scroll-box {
  padding: 20px 20px 32px;
  position: relative;
  overflow-y: auto;
  max-height: 100%;
  display: flex;
  flex-flow: column;
  height: 100%;
}

.mobile-menu .logo {
  padding-left: 52px;
  margin: 0 0 33px;
}

.mobile-menu .close {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

.mobile-menu .close span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 11px;
  height: 2px;
  background: #fff;
  border-radius: 5px;
}

.mobile-menu .close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu .menu {
  margin-bottom: 20px;
}

.mobile-menu .menu .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  margin: 0 0 8px;
}

.mobile-menu .menu ul li a {
  padding: 24px 24px 24px 0;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #323131;
  display: block;
  width: 100%;
  position: relative;
}

.mobile-menu .menu ul.submenu {
  margin: 20px 0 0;
  display: none;
}

.mobile-menu .menu ul.submenu li {
  margin: 0 0 20px;
}

.mobile-menu .menu ul.submenu li a {
  color: #9b9b9b;
  font-weight: 500;
  font-size: 16px;
  border: none;
  padding: 0;
  position: relative;
}

.mobile-menu .menu ul.submenu li:last-child {
  margin: 0;
}

.mobile-menu .menu ul li.sub > a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-left: 2px solid #e2dfdf;
  border-bottom: 2px solid #e2dfdf;
  z-index: 4;
}

.mobile-menu .socials {
  margin-top: auto;
}

.mobile-menu .socials ul {
  display: flex;
  align-items: center;
}

.mobile-menu .socials ul li a {
  width: 24px;
  height: 24px;
  display: block;
}

.mobile-menu .socials ul li svg {
  max-width: 100%;
  max-height: 100%;
  fill: #fff;
}

.mobile-menu .socials ul li:last-child {
  margin-right: 0;
}

.mobile-menu .socials ul li {
  margin-right: 32px;
}

/*Slick Arrows*/

.slider-arrow {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  background: linear-gradient(180deg, #ff671a 0%, #ff511a 100%);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.slider-arrow svg {
  fill: #fff;
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 5;
}

.slider-arrow:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s opacity;
  border-radius: 12px;
  background: #ff7714;
}

.slider-arrow:hover:after {
  opacity: 1;
}

/*Form Group*/

.form-group {
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}

.form-group .form-title {
  font-size: 14px;
  margin: 0 0 8px;
  color: #6F7172;
}

.form-group .form-promo-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 8px;
  color: #ff511a;
}

.form-group .form-input input, .form-group .form-input select {
  width: 100%;
  background: #EFF2F4;
  border-radius: 8px;
  color: #1E2021;
  font-weight: 500;
  font-size: 16px;
  border: none;
  padding: 17px 20px 15px;
  transition: .3s background;
}

.form-group .form-input select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 50%;
}

.form-group .form-input input:focus {
  background: #EBEDF0;
}

.form-group .form-input textarea {
  width: 100%;
  background: #EFF2F4;
  border-radius: 8px;
  color: #1E2021;
  font-weight: 500;
  font-size: 16px;
  border: none;
  padding: 17px 20px 15px;
  transition: .3s background;
  resize: vertical;
}

.form-group .form-input textarea:focus {
  background: #EBEDF0;
}

.form-group .form-icon {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 23px;
  bottom: 17px;
}

.form-group .form-icon svg {
  fill: #9B9B9B;
  height: 18px;
  width: 18px;
}

.form-group .form-icon[data-open-password]{
  cursor: pointer;
}

.form-checkbox {
  margin: 0 0 20px;
  position: relative;
}

.form-checkbox input {
  display: none;
}

.form-checkbox label {
  display: inline-block;
  vertical-align: top;
  padding-left: 32px;
  padding-right: 18px;
  position: relative;
  color: #1e2021;
  cursor: pointer;
}

.form-checkbox label mark {
  background: rgb(255 85 26 / 25%);
}

.form-checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 18px;
  height: 18px;
  background: #eff2f4;
  border-radius: 2px;
}

.form-checkbox input:checked + label:before {
  background: url(../img/icons/check.svg) no-repeat center center, linear-gradient(180deg, #FF671A 0%, #FF511A 100%);
}

.form-checkbox.form-radio label:before {
  border-radius: 50%;
  transition: .3s all;
  border: 4px solid #eff2f4;
}

.form-checkbox.form-radio input:checked + label:before {
  background: #eff2f4;
  border: 4px solid #ff611a;
}

.form-checkbox:last-child {
  margin: 0;
}

.form-button {
  text-align: center;
  margin-bottom: 0;
}

.form-button .link {
  display: inline-block;
  vertical-align: top;
  margin: 12px 0 0;
}

.form-link {
  position: absolute;
  right: 0;
  bottom: -30px;
}


/*Btn*/

.btn {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #ff671a 0%, #ff511a 100%);
  border-radius: 62px;
  padding: 9px 20px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  min-height: 50px;
}

.btn:disabled {
  cursor: not-allowed;
  background: linear-gradient(180deg, #686767 0%, #4e4e4e 100%);
}

.btn svg {
  position: relative;
  z-index: 5;
  fill: #fff;
  width: 32px;
  height: 32px;
}

.btn span {
  position: relative;
  z-index: 5;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-left: 5px;
}

.btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s opacity;
  pointer-events: none;
  background: #FF7714;
}

.btn:hover:after {
  opacity: 1;
}

.btn-full {
  width: 100%;
  height: 50px;
}

.btn-cancel {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #292929 0%, #222222 100%);
  border-radius: 62px;
  padding: 9px 20px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  min-height: 50px;
}

.btn-cancel svg {
  position: relative;
  z-index: 5;
  fill: #fff;
  width: 32px;
  height: 32px;
}

.btn-cancel span {
  position: relative;
  z-index: 5;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-left: 5px;
}

.btn-cancel:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s opacity;
  pointer-events: none;
  background: #3f3f3f;
}

.btn-cancel:hover:after {
  opacity: 1;
}

/*Socials*/

.socials_colors .socials_title {
  text-align: center;
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 16px;
  color: #1E2021;
}

.socials_colors ul {
  display: flex;
  align-items: center;
}

.socials_colors ul li {
  margin-right: 14px;
}

.socials_colors ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 57px;
  border-radius: 12px;
  transition: .3s background;
}

.socials_colors ul li:nth-child(1) a {
  background: rgba(0, 119, 255, 0.2);
}

.socials_colors ul li:nth-child(1) a:hover {
  background: rgba(0, 119, 255, 0.3);
}

.socials_colors ul li:nth-child(2) a {
  background: rgba(40, 165, 229, 0.2);
}

.socials_colors ul li:nth-child(2) a:hover {
  background: rgba(40, 165, 229, 0.3);
}

.socials_colors ul li:nth-child(3) a {
  background: rgba(234, 67, 53, 0.2);
}

.socials_colors ul li:nth-child(3) a:hover {
  background: rgba(234, 67, 53, 0.3);
}

.socials_colors ul li a svg {
  width: 32px;
  height: 24px;
}

.socials_colors ul li:nth-child(1) a svg {
  fill: #0077FF;
}

.socials_colors ul li:nth-child(2) a svg {
  fill: #28A5E5;
}

.socials_colors ul li:last-child {
  margin-right: 0;
}

/*Link*/

.link {
  color: #FF5E1A;
  font-weight: 500;
  font-size: 16px;
  transition: .3s color;
}

.link:hover {
  color: #FF7714;
}

/*UI*/

.ui-page {
  background: #FFF;
  padding: 100px 0;
}

.ui-page .item {
  margin-bottom: 50px;
}

/*** HEADER ***/

header .top-line {
  background: #252525;
}

header .top-line .top-line-block {
  display: flex;
  align-items: center;
  padding: 13px 0;
}

header .top-line .top-line-block .socials ul {
  display: flex;
  align-items: center;
}

header .top-line .top-line-block .socials ul li {
  margin-right: 35px;
  width: 24px;
  height: 24px;
}

header .top-line .top-line-block .socials ul li a {
  width: 24px;
  height: 24px;
}

header .top-line .top-line-block .socials ul li svg {
  max-width: 100%;
  max-height: 100%;
  fill: #FFF;
  transition: .3s fill;
}

header .top-line .top-line-block .socials ul li a:hover svg {
  fill: #FF5E1A;
}

header .top-line .top-line-block .socials ul li:last-child {
  margin-right: 0;
}

header .top-line .top-line-block .contacts {
  margin-left: auto;
}

header .top-line .top-line-block .contacts ul {
  display: flex;
  align-items: center;
}

header .top-line .top-line-block .contacts ul li {
  margin-right: 48px;
}

header .top-line .top-line-block .contacts ul li:last-child {
  margin-right: 0;
}

header .top-line .top-line-block .contacts ul li a {
  color: #FFF;
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: .3s color;
}

header .top-line .top-line-block .contacts ul li a:hover {
  color: #FF5E1A;
}

header .top-line .top-line-block .contacts ul li a svg {
  margin-right: 11px;
  width: 24px;
  height: 20px;
  fill: #FFF;
  transition: .3s fill;
}

header .top-line .top-line-block .contacts ul li a:hover svg {
  fill: #FF5E1A;
}

header .bottom-line {
  background: #FFF;
  padding: 24px 0;
}

header .bottom-line-block {
  display: flex;
  align-items: center;
	background: #FFF;
}

header .bottom-line-block .logo {
  margin-right: 32px;
}

header .bottom-line-block .search {
  width: 875px;
  position: relative;
}

header .bottom-line-block .search form {
  position: relative;
}

header .bottom-line-block .search input {
  background: #EFF2F4;
  border-radius: 78px;
  width: 100%;
  border: none;
  padding: 22px 70px 22px 20px;
  font-weight: 400;
  font-size: 16px;
}

header .bottom-line-block .search button {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  cursor: pointer;
}

header .bottom-line-block .search button {
  background: #EFF2F4;
}

header .bottom-line-block .search input::placeholder {
  color: #9B9B9B;
}

header .bottom-line-block .search button svg {
  fill: #9B9B9B;
}

.search-tip {
  background: #FFFFFF;
  border: 1px solid #ECEBEB;
  box-sizing: border-box;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.18), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.136667), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.109333), 0px 20px 13px rgba(0, 0, 0, 0.09), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0706667), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0433333);
  border-radius: 12px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 35;
  padding: 32px 32px 28px;
  margin: 8px 0 0;
  display: none;
}

.search-tip .block {
  margin: 0 0 32px;
}

.search-tip .block .title {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 16px;
  color: #1E2021;
}

.search-tip .block .menu ul li {
  margin: 0 0 20px;
  font-size: 16px;
}

.search-tip .block .menu ul li:last-child {
  margin-bottom: 0;
}

.search-tip .block .menu ul li a {
  color: #1E2021;
}

header .bottom-line-block .controls {
  margin-left: auto;
  display: flex;
  align-items: center;
}

header .bottom-line-block .controls .user {
  margin-right: 20px;
}

header .bottom-line-block .controls svg {
  width: 24px;
  height: 24px;
}

header .bottom-line-block .controls .user a {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: #EFF2F4;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .bottom-line-block .minicart .icon {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: #EFF2F4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 12px;
}

header .bottom-line-block .minicart a {
  display: flex;
  align-items: center;
}

header .bottom-line-block .minicart .icon span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  color: #FFF;
  font-weight: 900;
  background: #FA3333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

header .bottom-line-block .minicart .text u {
  display: flex;
  margin: 0 0 4px;
  color: #6F7172;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

header .bottom-line-block .minicart .text b {
  display: flex;
  color: #1E2021;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
}

header .menu-line {
	background: #FFF;
}

header .menu-line .menu {
  border-top: 1px solid #E2DFDF;
  position: relative;
}

header .menu-line .menu ul {
  display: flex;
  align-items: center;
}

header .menu-line .menu ul li {
  padding: 22px 0;
  margin-right: 38px;
}

header .menu-line .menu ul li > a {
  color: rgb(30 32 33 / 50%);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: .3s color;
}

header .menu-line .menu ul li:last-child {
  margin-right: 0;
}

header .menu-line .menu ul li:hover > a {
  color: #1E2021;
}

header .menu-line .menu .submenu-block {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 101;
  padding: 8px 0 0;
  width: 1150px;
  border-radius: 12px;
  display: none;
}

header .menu-line .menu .sub:hover .submenu-block {
  display: block;
}

header .menu-line .menu .submenu {
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.18), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.136667), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.109333), 0px 20px 13px rgba(0, 0, 0, 0.09), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0706667), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0433333);
  background: #FFF;
  padding: 32px 32px 27px;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

header .menu-line .menu .submenu .left {
  width: calc(100% - 428px);
	padding-right: 32px;
}

header .menu-line .menu .submenu .right {
  width: 428px;
  border-left: 1px solid #E2DFDF;
  padding-left: 32px;
}

header .menu-line .menu .submenu .menu-block {
  display: flex;
  align-items: flex-start;
  margin: 0 0 56px;
}

header .menu-line .menu .submenu .menu-block .block {
  margin-right: 26px;
}

header .menu-line .menu .submenu .menu-block .block .title {
  color: #1E2021;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin: 0 0 20px;
}

header .menu-line .menu .submenu .menu-block .block ul {
  flex-wrap: wrap;
}

header .menu-line .menu .submenu .menu-block .block ul li {
  margin: 0 0 20px;
  padding: 0;
}

header .menu-line .menu .submenu .menu-block .block ul li > a {
  font-weight: normal;
  color: #1E2021;
}

header .menu-line .menu .submenu .menu-block .block ul li > a:hover {
	color: #FF5E1A;
}

header .menu-line .menu .submenu .menu-block .block ul li:last-child {
  margin: 0;
}

header .menu-line .menu .submenu .menu-block .block:last-child {
  margin-right: 0;
}

header .menu-line .menu .submenu .logos-block .title {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #1E2021;
}

header .menu-line .menu .submenu .logos-block .logos {
  margin: 0 0 25px;
  height: 34px;
}

header .menu-line .menu .submenu .labels {
  width: 270px;
  border-top: 1px solid #E2DFDF;
  padding: 32px 0 0;
  max-width: 100%;
}

header .menu-line .menu .submenu .right > .title {
  font-weight: 500;
  font-size: 16px;
  color: #1E2021;
  margin: 0 0 39px;
}

header .menu-line .menu .submenu .right .items {
  display: flex;
  flex-wrap: wrap;
}

header .menu-line .menu .submenu .right .items .item {
  margin-right: 49px;
  width: calc(100%/2 - 49px/2);
  text-align: center;
}

header .menu-line .menu .submenu .right .items .item:last-child {
  margin-right: 0;
}

header .menu-line .menu .submenu .right .items .item .image {
  margin: 0 auto 17px;
  width: 156px;
  height: 156px;
}

header .menu-line .menu .submenu .right .items .item .title {
  margin: 0 0 27px;
}

header .menu-line .menu .submenu .right .items .item .title a {
  color: #1E2021;
  font-weight: 400;
}

header .menu-line .menu .submenu .right .items .item .image a {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

header .menu-line .menu .submenu .right .items .item .image a img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

header .menu-line .menu ul li.sub-small {
  position: relative;
}

header .menu-line .menu ul ul.submenu-small {
  position: absolute;
  left: 0;
  top: 100%;
  background: #FFF;
  display: block;
  z-index: 444;
  width: 270px;
  padding: 25px 20px 25px;
  box-shadow: 0 20px 20px rgb(0 0 0 / 15%);
  border-radius: 0 0 12px 12px;
  border-top: 1px solid #e2dfdf;
  display: none;
}

header .menu-line .menu ul ul.submenu-small li {
  padding: 0;
  margin-right: 0;
  margin-bottom: 20px;
}

header .menu-line .menu ul ul.submenu-small li a {
  color: #1E2021;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  transition: .3s color;
}

header .menu-line .menu ul ul.submenu-small li:last-child {
  margin-bottom: 0;
}

header .menu-line .menu ul ul.submenu-small li a:hover {
  color: #FF5E1A;
}

header .menu-line .menu ul li.sub-small:hover ul.submenu-small {
  display: block;
}

header .logos-block {
  width: 610px;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
}

header .logos-block .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #1e2021;
}

header .logos-block .logos .arrow {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ecebeb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: #fff;
  cursor: pointer;
  transition: .3s background;
}

header .logos-block .logos .arrow:hover {
  background: #ECEBEB;
}

header .logos-block .logos .arrow.prev {
  border-radius: 12px 0 0 12px;
  left: 0;
}

header .logos-block .logos .arrow.next {
  border-radius: 0 12px 12px 0;
  right: 0;
}

header .logos-block .logos .arrow svg {
  fill: #6f7172;
  width: 7px;
  height: 11px;
}

header .logos-block .logos .slick-list {
  margin: 0 74px;
}

header .menu-line .menu .submenu .logos-block .logos .item {
  margin: 0 12px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** MOBILE HEADER ***/

.mobile-header {
  display: none;
  background: #252525;
  padding: 12px 5px;
}

.mobile-header-block {
  display: flex;
  align-items: center;
}

.mobile-header-block svg {
  width: 24px;
  height: 24px;
  fill: #FFF;
}

.mobile-header-block .mobile-toggle {
  margin-right: 30px;
}

.mobile-header-block .mobile-toggle span {
  width: 20px;
  height: 2px;
  background: #FFF;
  border-radius: 2px;
  display: block;
  margin: 0 0 4px;
}

.mobile-header-block .mobile-toggle span:nth-child(3) {
  margin: 0;
}

.mobile-header-block .logo {
  margin-right: auto;
}

.mobile-header-block .adress {
  margin-right: 20px;
}

.mobile-header-block .contact svg {
  padding: 2px;
}

/*** BREADCRUMBS ***/

.breadcrumbs {
  padding: 20px 0;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
  padding: 0 0 10px;
  margin: 0 0 -10px;
}

.breadcrumbs ul li {
  margin-right: 24px;
  position: relative;
  font-size: 12px;
  line-height: 1;
}

.breadcrumbs ul li:last-child {
  margin-right: 0;
}

.breadcrumbs ul li a {
  color: #6f7172;
  font-weight: 500;
}

.breadcrumbs ul li:after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #6f7172;
  border-bottom: 2px solid #6f7172;
  transform: translateY(-50%) rotate(-45deg);
}

.breadcrumbs ul li:last-child:after {
  display: none;
}

/*** MAIN SLIDER ***/

.main {
	padding: 32px 0;
	max-width: 100%;
	overflow-x: hidden;
}

.main-slider .slick-list {
	overflow: visible;
}

.main-slider .item {
	margin: 0 10px;
}

.main-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main-slider .slider-arrow.prev {
  left: -40px;
}

.main-slider .slider-arrow.next {
  right: -40px;
}

/*** CATALOG ***/

.page + .catalog-section {
  margin-top: 60px;
}

.catalog-section {
  margin: 32px 0;
}

.catalog-list .item {
  padding: 15px 20px 185px;
  background: #ffffff;
  border: 1px solid #ecebeb;
  border-radius: 12px;
  margin: 0 12px 12px 0;
  position: relative;
}

.catalog-list .item.brand {
  padding: 15px 20px 20px !important;
}

.catalog-list .item .labels {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
}

.catalog-list .item .image {
  width: 236px;
  height: 236px;
  margin: 0 auto 30px;
  max-width: 100%;
}

.catalog-list .item.brand .image {
  width: 240px;
  height: 120px;
  margin: 0 auto 30px;
}

.catalog-list .item.blur .image {
  position: relative;
}

.catalog-list .item .image img {
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  display: block;
}

.catalog-list .item.blur .image img {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  pointer-events: none;
}

.catalog-list .item.blur .image:after {
  content: 'Войдите для просмотра';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 5;
  background: #000000a3;
  padding: 10px 8px;
  color: #fff;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
  border-radius: 3px;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  font-size: 12px;
  cursor: pointer;
}

.catalog-list.catalog-slider .slick-list {
  margin: 0 -6px;
}

.catalog-list.catalog-slider .item {
  margin-bottom: 0;
  margin-left: 6px;
  margin-right: 6px;
  height: auto;
  padding-bottom: 80px;
}

.catalog-slider .arrow {
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 72px;
  cursor: pointer;
  transition: .3s background, .3s border-color;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.catalog-slider .arrow svg {
  width: 7px;
  height: 8px;
  fill: #6F7172;
}
.catalog-slider .arrow:not(.slick-disabled):hover {
  background: #ECEBEB;
}
.catalog-slider .arrow.prev {
  border-radius: 12px 0 0 12px;
  border-right: 0;
  left: -70px;
}
.catalog-slider .arrow.next {
  border-radius: 0 12px 12px 0;
  border-left: 0;
  margin-left: 1px;
  right: -70px;
}
.catalog-slider .arrow.slick-disabled {
  opacity: .5;
  cursor: no-drop;
}

.catalog-list .item .title {
  color: #1e2021;
  font-size: 18px;
  text-align: center;
  margin: 0 0 12px;
  padding: 0 15px;
}

.catalog-list .item .title a {
  color: #1e2021;
  height: 43px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-list .item .controls {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 20px 25px;
  width: 100%;
}

.catalog-list .item .controls .add {
  margin-left: auto;
}

.catalog-list .item .controls .add button {
  background: linear-gradient(180deg, #ff671a 0%, #ff511a 100%);
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.catalog-list .item .controls .add button:disabled {
  background: linear-gradient(180deg, #c2c2c2 0%, #b0b0b0 100%) !important;
  cursor: not-allowed;
}

.catalog-list .item .controls .add button svg {
  fill: #fff;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 5;
}

.catalog-list .item .controls .add button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff7714;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: 0.3s opacity;
}

.catalog-list .item .controls .add button:disabled:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #adacac;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: 0.3s opacity;
}

.catalog-list .item .controls .add button:hover:after {
  opacity: 1;
}

.catalog-page {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.catalog-block {
  width: calc(100% - 323px);
}

.catalog-block.full {
  width: 100%;
}

.catalog-block .catalog-list {
  display: flex;
  flex-wrap: wrap;
}

.catalog-block .catalog-list .item {
  width: calc(100%/3 - 12px*2/3);
}

.catalog-block .catalog-list:not(.four) .item:nth-child(3n) {
  margin-right: 0;
}

.catalog-block .catalog-list .item .price-block {
  width: 100%;
  margin: 0 0 20px;
}

.catalog-block .catalog-list .item .controls {
  width: 100%;
  flex-wrap: wrap;
}

.catalog-block .catalog-list .item .controls .add {
  width: 100%;
}

.catalog-block .catalog-list .item .controls .add button {
  width: 100%;
}

.catalog-block .catalog-list .item .controls .availability {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}

.catalog-block .catalog-list .item .controls .availability a {
  font-weight: 500;
}

.catalog-block .catalog-list .item .controls .promo {
  width: 100%;
  flex-flow: column;
  font-weight: 500;
  text-align: center;
  padding-bottom: 15px;
}

.catalog-block .catalog-list .item .controls .promo span {
  color: #FF5E1A;
}

.catalog-list.four {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.catalog-list.four .item {
  width: calc(100%/4 - 12px*3/4);
}

.catalog-list.four .item:nth-child(4n) {
  margin-right: 12px;
}

.catalog-list.four .item:nth-child(4n) {
  margin-right: 0;
}

.catalog-list .item .taste {
  margin: 0 0 26px;
}

.catalog-list .item .taste b {
  display: block;
  margin: 0 0 3px;
  text-align: center;
  line-height: 1;
  color: #ff5a1a;
}

.catalog-list .item .taste ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.catalog-list .item .taste ul li {
  margin-right: 5px;
}

.catalog-list .item .taste ul li:last-child {
  margin-right: 0;
}

.catalog-list .item .taste ul li:not(:last-child):after {
  content: ",";
}

.catalog-list .item .size {
  margin: 0 0 18px;
}

.catalog-list .item .size .size-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.catalog-list .item .size .size-title {
  font-weight: bold;
  margin: 0 0 10px;
  text-align: center;
}

.catalog-list .item .size .input-radio {
  margin-right: 10px;
  margin-bottom: 10px;
}

.catalog-list .item .size .input-radio:last-child {
    margin-right: 0;
}

.catalog-list .item .size .input-radio input {
  display: none;
}

.catalog-list .item .size .input-radio label {
  background: #ffffff;
  padding: 5px 7px;
  display: block;
  font-size: 12px;
  border: 1px solid #cdcdcd;
  color: #7a7a7a;
  cursor: pointer;
  transition: .3s border-color, .3s background;
  border-radius: 3px;
}

.catalog-list .item .size .input-radio label:hover, .catalog-list .item .size .input-radio input:checked + label {
  background: #ff6522;
  border-color: #ff6522;
  color: #ffffff;
  font-weight: bold;
}

.info_label {
  position: absolute;
  right: 20px;
  top: 20px;
}

.info_label .tip svg {
  width: 24px;
  height: 24px;
  fill: #fa3333;
}

.info_label .tip {
  display: inline-block;
  vertical-align: top;
  position: absolute;
  right: 0;
  top: 0;
}

.sorting {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ecebeb;
  padding: 14px 15px;
  margin: 0 0 12px;
  border-radius: 12px;
}

.sorting_mobile {
  display: none;
  margin: 0 0 10px;
}

.sorting .title {
  color: #363636;
  margin-right: 30px;
  font-weight: 500;
}

.sorting ul {
  display: flex;
  align-items: center;
}

.sorting ul li {
  margin-right: 20px;
}

.sorting ul li a {
  color: #363636;
  position: relative;
  margin-right: 15px;
}

.sorting ul li a span {
  position: absolute;
  right: -12px;
  top: -2px;
}

.sorting ul li.active a {
  border-bottom: 2px solid #ff5a1a;
  font-weight: bold;
  color: #000;
}


/*** PAGE ***/



/*** FILTERS ***/

.filters-btn {
  border: 1px solid #FF5E1A;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  display: none;
  margin: 0 0 20px;
}

.filters-block {
  width: 311px;
  margin-right: 12px;
}

.filters {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.filters .title {
  font-size: 18px;
  margin: 0 0 17px;
  position: relative;
}

.filters .title .close-btn {
  display: none;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 44;
  pointer-events: inherit;
}

.filters .filter {
  padding: 32px 0;
  border-bottom: 1px solid #e2dfdf;
}

.filters .filter:last-child {
  margin-bottom: 32px;
  border-bottom: 0;
  padding-bottom: 0;
}

.filters .filter .name {
  position: relative;
  padding-right: 32px;
  font-weight: 500;
  font-size: 14px;
  color: #1e2021;
  cursor: pointer;
}

.filters .filter .name:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-left: 2px solid #6f7172;
  border-bottom: 2px solid #6f7172;
  transition: 0.3s transform;
}

.filters .filter .list {
  padding-top: 17px;
  display: none;
}

.filters .filter .list:not(.original-height) {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.filters .filter.no-accordion {
  padding-top: 0;
}

.filters .filter.no-accordion .list {
  padding-top: 0;
  display: block;
}

.filters .filter.open .name:after {
  transform: translateY(-50%) rotate(135deg);
  border-color: #E2DFDF;
}

.filters .controls {
  text-align: center;
}

.filters .controls .btn {
  margin: 0 0 20px;
  width: 100%;
  height: 50px;
  cursor: pointer;
}

.filters #apply_btn {
  position: absolute;
  left: calc(100% - 18px);
  background: #333;
  padding: 14px 47px 12px 20px;
  color: #FFF;
  line-height: 1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  z-index: 777;
  box-shadow: 0 5px 15px rgb(0 0 0 / 24%);
}

.filters #apply_btn:before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12px 10px 0;
  border-color: transparent #333333 transparent transparent;
}

.filters #apply_btn .close {
  background: #3e3e3e;
  width: 36px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  transition: .3s background;
  border-radius: 0 10px 10px 0;
}

.filters #apply_btn .close span {
  width: 24px;
  height: 2px;
  background: #FFF;
  position: absolute;
  left: 6px;
  top: 18px;
}

.filters #apply_btn .close span:nth-child(1) {
  transform: rotate(45deg);
}

.filters #apply_btn .close span:nth-child(2) {
  transform: rotate(-45deg);
}

.filters #apply_btn .close:hover {
  background: #000;
}

.filters .filter .search_input {
  padding: 10px 0;
  display: none;
}

.filters .filter .search_input input {
  border: 1px solid #e2dfdf;
  height: 42px;
  padding: 0 15px;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
}

.sub-filters {
  padding: 20px 0 0 20px;
  display: none;
}

.sub-filters-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.sub-filters-toggle:after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-left: 2px solid #6f7172;
  border-bottom: 2px solid #6f7172;
  transition: 0.3s transform;
}

.sub-filters-toggle.open:after {
  transform: translateY(-50%) rotate(135deg);
  border-color: #E2DFDF;
}

.custom-ui-slider-input {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-ui-slider-input span {
  font-size: 12px;
  display: block;
  margin: 0 0 2px;
}

.custom-ui-slider-input b {
  font-size: 15px;
  font-weight: 500;
}

.custom-ui-slider-input .input {
  width: calc(100%/2 - 20px/2);
  margin-right: 20px;
}

.custom-ui-slider-input .input input {
  width: 100%;
  border: 1px solid #e2dfdf;
  height: 30px;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
}

.custom-ui-slider-input .input:last-child {
  margin-right: 0;
}

.ui-slider-handle.ui-corner-all.ui-state-default {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: none;
  border: 4px solid #ff5a1a;
  background: #FFF;
  top: -6px;
}

.ui-widget.ui-widget-content {
  background: #e2dfdf;
  border: none;
  border-radius: 10px;
  height: 8px;
}

.ui-slider-horizontal .ui-slider-range {
  background: linear-gradient( 
180deg, #ff671a 0%, #ff511a 100%);
}




/*** ADVANTAGES ***/

.advantages {
  margin: 88px 0 0px;
}

.advantages-block {
  background: #FFFFFF;
  border: 1px solid #ECEBEB;
  border-radius: 12px;
  display: flex;
  padding: 40px 56px;
}

.advantages-block .item {
  border-right: 1px solid #E2DFDF;
  display: flex;
  align-items: flex-start;
  width: calc(100%/3 - 20px*2/3);
  padding: 14px 32px 14px 0;
  margin-right: 20px;
}

.advantages-block .item:nth-child(3) {
  margin-right: 0;
  border-right: none;
  padding-right: 12px;
}

.advantages-block .item .icon {
  width: 48px;
  height: 48px;
  padding: 14px;
  background: rgba(255, 94, 26, 0.2);
  border-radius: 50%;
  margin-right: 14px;
}

.advantages-block .item .info {
  width: calc(100% - 62px);
}

.advantages-block .item .icon svg {
  fill: #FF5E1A;
  width: 100%;
  height: 100%;
}

.advantages-block .item .info .title {
  margin: 0 0 12px;
  font-weight: 500;
  font-size: 18px;
  color: #1E2021;
}

.advantages-block .item .info .text {
  font-size: 14px;
  line-height: 1.2;
  color: #6F7172;
}


/*** ITEM PAGE ***/

.item-page {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border: 1px solid #ecebeb;
  padding: 20px 32px 32px;
  border-radius: 12px;
  margin: 0 0 32px;
}

.item-page .images {
  position: relative;
  width: 632px;
  margin-right: 20px;
  display: flex;
  flex-wrap: wrap;
}

.item-page .images  img {
  margin: 0 auto;
  display: block;
}

.item-page .images.blur img {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  point-events: none;
}

.item-page .images.blur a {
  point-events: none;
}

.item-page .images.blur .big .item {
  position: relative;
}

.item-page .images.blur .big .item:after {
  content: 'Войдите для просмотра';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 5;
  color: rgb(255, 255, 255);
  width: auto;
  text-align: center;
  text-shadow: rgb(0, 0, 0) 1px 1px 1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.64);
  padding: 14px 28px;
  border-radius: 3px;
  line-height: 1;
  cursor: pointer;
}

.item-page .images .small {
  width: 107px;
}

.item-page .images .small .item {
  opacity: 0.5;
  margin: 0 0 20px;
  cursor: pointer;
}

.item-page .images .small .item.slick-current {
  opacity: 1;
}

.item-page .images .big {
  width: calc(100% - 107px);
}

.item-page .info {
  width: calc(100% - 652px);
}

.item-page .info .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: #1e2021;
  margin: 12px 0 9px;
  display: flex;
  align-items: flex-start;
}

.item-page .info .title h1 {
  margin-right: 15px;
}

.item-page .info .title .brand {
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid #ECEBEB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  min-width: 92px;
}

.item-page .info .status {
  color: #6f7172;
  font-size: 14px;
  margin: 0 0 40px;
}

.item-page .info .specifications {
  margin: 0 0 66px;
  width: 385px;
  max-width: 100%;
}

.item-page .info .specifications .link-block {
  margin: 32px 0 0;
}

.item-page .info .price-block {
  justify-content: flex-start;
  margin: 0 0 16px;
}

.item-page .info .price-block .price {
  font-size: 32px;
  line-height: 1;
}

.item-page .info .price-block .old_price {
  font-size: 14px;
}

.item-page .info .controls .btn {
  padding: 9px 80px;
  cursor: pointer;
}

.item-tabs {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ecebeb;
  padding: 0 32px 32px;
}

.item-tabs .caption {
  border-bottom: 1px solid #e2dfdf;
}

.item-tabs .caption ul {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

.item-tabs .caption ul li {
  margin-right: 48px;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s opacity;
  color: #1e2021;
  opacity: 0.5;
  cursor: pointer;
}

.item-tabs .caption ul li.active {
  opacity: 1;
}

.item-tabs .caption ul li:last-child {
  margin-right: 0;
}

.item-tabs .tabs {
  padding: 32px 0 0;
}

.item-tabs .tabs .tab {
  display: none;
}

.item-tabs .tabs .tab.active {
  display: block;
}

.item-tabs .tabs .tab .adress-block {
  padding: 0 80px;
}


/*** PROFILE ***/

.profile-page {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.profile-page .userbar {
  width: 346px;
  margin-right: 12px;
  background: #fff;
  border: 1px solid #ecebeb;
  border-radius: 12px;
  padding: 32px;
}

.miniprofile {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0 32px;
  border-bottom: 1px solid #E2DFDF;
  margin: 0 0 30px;
}

.miniprofile .photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #EFF2F4;
  border-radius: 120px;
  width: 60px;
  height: 60px;
  min-width: 60px;
  margin-right: 19px;
}

.miniprofile .photo svg {
  width: 20px;
  height: 20px;
  fill: #1E2021;
}

.miniprofile .name {
  width: calc(100% - 79px);
}

.miniprofile .name b {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 7px;
}

.miniprofile .exit {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: calc(50% - 16px);
  transform: translateY(-50%);
}

.miniprofile .name a {
  font-size: 16px;
  color: #6F7172;
}

.miniprofile .exit svg {
  fill: #9B9B9B;
  width: 100%;
  height: 100%;
}

.profile-page .userbar .menu ul li {
  margin: 0 0 48px;
  font-weight: 500;
  font-size: 18px;
}

.profile-page .userbar .menu ul li:last-child {
  margin-bottom: 0;
}

.profile-page .userbar .menu ul li a {
  color: rgb(30 32 33 / 50%);
  transition: .3s color;
}

.profile-page .userbar .menu ul li.active a, .profile-page .userbar .menu ul li a:hover {
  color: #1E2021;
}

.profile-page .user-block {
  width: calc(100% - 358px);
  background: #FFF;
  border-radius: 12px;
  border: 1px solid #ECEBEB;
  padding: 32px;
}

.profile-page .user-block .title {
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: #1E2021;
  margin: 0 0 24px;
}

.order-list .item {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px 24px 20px;
  background: #FFFFFF;
  border: 1px solid #ECEBEB;
  border-radius: 12px;
}

.order-list .item:last-child {
  margin-bottom: 0;
}

.order-list .item .name b {
  color: #FF5E1A;
  border-bottom: 1px solid #FF5E1A;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1;
}

.order-list .item .name span {
  display: block;
  margin: 7px 0 0;
  color: #6F7172;
  font-weight: 500;
  font-size: 14px;
}

.order-list .item .adress {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-left: auto;
  width: 220px;
  line-height: 1.2;
}

.order-list .item .adress svg {
  width: 20px;
  height: 22px;
  margin-right: 9px;
  fill: #FF5E1A;
}

.order-list .item .sum {
  font-weight: bold;
  font-size: 16px;
  color: #1E2021;
  margin-left: auto;
}

.order-list .item .status {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  margin-left: auto;
  width: 200px;
}

.order-list .item .status svg {
  width: 24px;
  height: 24px;
  margin-right: 9px;
}

.order-list .item .status span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

.order-list .item .status.orange {
  color: #FF5E1A;
}

.order-list .item .status.red {
  color: #FA3333;
}

.order-list .item .status.green {
  color: #3EBE71;
}

.order-list .item .status.gray {
  color: #6F7172;
}

.order-list .item .status.orange svg {
  fill: #FF5E1A;
}

.order-list .item .status.red svg {
  fill: #FA3333;
}

.order-list .item .status.green svg {
  fill: #3EBE71;
}

.order .total {
  background: #ffffff;
  padding: 24px 22px 24px 20px;
  border: 1px solid #ecebeb;
  box-sizing: border-box;
  border-radius: 12px;
  top: 10px;
  margin-bottom: 30px;
}

.order .total ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}

.order .total ul li:last-child {
  margin-bottom: 0;
}

.order .total ul li span:nth-child(1) {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}

.order .total ul li span:nth-child(2) {
  font-weight: bold;
  font-size: 18px;
}


/*** CART ***/

.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.cart .cart-total {
  background: #ffffff;
  border: 1px solid #ecebeb;
  box-sizing: border-box;
  border-radius: 12px;
  width: 346px;
  padding: 32px;
  margin-left: 12px;
  position: sticky;
  top: 10px;
}

.cart .cart-total .title {
  font-weight: 500;
  font-size: 24px;
  color: #1e2021;
  padding: 0 0 27px;
  border-bottom: 1px solid #e2dfdf;
}

.cart .cart-total .block {
  border-bottom: 1px solid #e2dfdf;
  padding: 32px 0;
}

.cart .cart-total .block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cart .cart-total .block .form-group:last-child {
  margin: 0;
}

.cart .cart-total .block .form-group .promocode input, .cart .cart-total .block .form-group .promocode select {
  float: left;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  border-radius:8px 8px 0px 0px;
}
.cart .cart-total .block .form-group .promocode button {
  float: left;
  border: none;
  background: #ffdfd1;
  width: 100%;
  position: relative;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  border-radius:0px 0px 8px 8px;
  height: 50px;
  color: #FF7714;
}
.cart .cart-total .block .form-group .promocode button:disabled {
  background: #eaeaea;
  color: #000000;
}
.cart .cart-total .block .form-group .promocode button.confirmed {
  background: #3EBE71 !important;
  color: #ffffff !important;
}
.cart .cart-total .block .form-group .promocode button.cancel {
  background: #fafafa;
  color: #FF7714;
}

.cart .cart-total .block .form-group .promocode button img {
  fill: #FF5E1A;
  width: 50%;
  height: 50%;
  vertical-align: middle;
}

.cart .cart-total .total {
  margin: 0 0 36px;
}

.cart .cart-total .total ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}

.cart .cart-total .total ul li:last-child {
  margin-bottom: 0;
}

.cart .cart-total .total ul li span:nth-child(1) {
  font-weight: 500;
  font-size: 16px;
  color: #6f7172;
  line-height: 1;
}

.cart .cart-total .total ul li span:nth-child(2) {
  font-weight: 500;
  font-size: 16px;
}

.cart .cart-total .total ul li:last-child span:nth-child(2) {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}

.cart .info {
  width: calc(100% - 358px);
}

.cart .info .block {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #ecebeb;
  border-radius: 12px;
  margin: 0 0 12px;
}

.cart .info .block .title {
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 25px;
}

.cart .info .block:last-child {
  margin-bottom: 0;
}

.cart .info .block .adress-block .list {
  width: 329px;
}

.cart .info .block .adress-block .map {
  width: calc(100% - 361px);
  height: 440px;
}

.cart .info .block .adress-block .list ul li {
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E2DFDF;
  margin: 0;
}

.cart .info .block .adress-block .list ul li:last-child {
  border: none;
}

.cart .info .block .adress-block .list ul li input {
  display: none;
}

.cart .info .block .adress-block .list ul li label {
  opacity: 0.5;
  transition: 0.3s opacity;
  display: block;
  cursor: pointer;
}

.cart .info .block .adress-block .list ul li input:checked + label {
  opacity: 1;
}

.cart .info .block .adress-block .list ul li label:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../img/icons/check_circle.svg) no-repeat center center;
  opacity: 0;
  pointer-events: none;
}

.cart .info .block .adress-block .list ul li input:checked + label:after {
  opacity: 1;
}

.cart_list .item {
  display: flex;
  align-items: center;
  border: 1px solid #ecebeb;
  border-radius: 12px;
  margin: 0 0 12px;
  padding: 17px 12px;
  background: #FFF;
}

.cart_list .item .image {
  width: 50px;
  height: 50px;
}

.cart_list .item .name {
  width: 190px;
  margin-left: 20px;
}

.cart_list .item .name a {
  color: #1e2021;
  font-size: 16px;
  line-height: 1;
}

.cart_list .item:last-child {
  margin-bottom: 0;
}

.cart_list .item .delete {
  margin-left: auto;
}

.cart_list .item .price-block {
  margin-left: auto;
}

.cart_list .item .count_block {
  margin-left: auto;
}

.cart_list .item .delete button {
  cursor: pointer;
  pointer-events: inherit;
}


/*** ORDER ***/

.order {
  padding: 70px 0 32px;
  width: 858px;
  max-width: 100%;
  margin: 0 auto;
}

.order .icon {
  margin: 0 auto 30px;
  width: 64px;
  height: 64px;
}

.order .icon svg {
  width: 100%;
  height: 100%;
  fill: #FF5E1A;
}

.order > .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  color: #1E2021;
  margin: 0 0 56px;
  text-align: center;
}

.order .cart_list {
  margin: 0 0 64px;
}

.order .cart_list .item .price-block .price {
  font-size: 18px;
}

.order .cart_list .item .price-block .old_price {
  font-size: 12px;
}

.order .order_btn .btn {
  height: 50px;
}


/*** SEARCH ***/

.search-page {
  min-height: 370px;
  padding-bottom: 120px;
}


/*** FOOTER ***/

footer {
  background: #1f1f1f;
  margin-top: 120px;
}

footer .top-line-block {
  display: flex;
  align-items: flex-start;
}

footer .top-line-block .block .title {
  margin: 0 0 22px;
  color: #6f7172;
  font-weight: 500;
}

footer .top-line-block .block .phone {
  margin: 0 0 35px;
}

footer .top-line-block .block .phone a {
  display: flex;
  align-items: center;
}

footer .top-line-block .block .phone a svg {
  fill: #fff;
  margin-right: 11px;
  width: 18px;
  height: 18px;
}

footer .top-line-block .block .phone a span {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}

footer .top-line-block .block .socials ul {
  display: flex;
  align-items: center;
}

footer .top-line-block .block .socials ul li {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

footer .top-line-block .block .socials ul li a {
  background: #323131;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  border-radius: 100px;
}

footer .top-line-block .block .socials ul li a svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

footer .top-line-block .block .menu ul {
  column-count: 2;
}

footer .top-line-block .block .menu ul li {
  margin: 0 0 32px;
}

footer .top-line-block .block .menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  transition: .3s color;
}

footer .top-line-block .block .menu ul li a:hover {
  color: #FF5E1A;
}

footer .top-line-block .block:nth-child(2) {
  margin-left: 194px;
}

footer .top-line-block .block:nth-child(3) {
  margin-left: auto;
}

footer .top-line-block .block .payments {
  display: flex;
  align-items: center;
  margin: 0 0 32px;
}

footer .top-line-block .block .payments .item {
  margin-right: 20px;
}

footer .top-line-block .block .age {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #6f7172;
}

footer .top-line-block .block .age:before {
  content: "18+";
  color: #6f7172;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #323131;
  border-radius: 100%;
  margin-right: 12px;
  min-width: 48px;
}

footer .top-line {
  padding: 50px 0;
}

footer .copyright {
  border-top: 1px solid #323131;
  border-top: 1px solid #323131;
  padding: 28px 0;
  text-align: center;
  color: #4e4e4e;
  font-size: 12px;
  font-weight: 500;
}


/*** MODAL ***/

.modal {
  display: none;
  width: 533px;
  max-width: 100%;
  padding: 37px 32px 20px;
  border-radius: 12px;
}

.modal.big {
  width: 835px;
}

.modal .fancybox-close-small {
  background: rgba(255, 94, 26, 0.2);
  border-radius: 100px;
  width: 32px;
  height: 32px;
  padding: 7px !important;
  color: #FF5E1A !important;
  right: 20px;
  top: 20px;
  opacity: 1;
}

.modal.modal_age .fancybox-close-small {
  display: none;
}

.modal .modal-title {
  margin: 0 0 27px;
}

.modal .modal-title .title {
  text-align: center;
  font-size: 24px;
  line-height: 24px;
  color: #1E2021;
}

.modal .modal-title .subtitle {
  margin: 15px 0 0;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #6F7172;
}

.modal .modal-title .subtitle b {
  color: #1E2021;
}

.modal .modal-title.left .title {
  text-align: left;
}

.modal .modal-title.left .subtitle {
  text-align: left;
}

.modal .modal-title svg {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.modal .socials_colors {
  margin: 80px 0 28px;
}

.modal .adress-block {
  margin: 0 0 32px;
}

.modal .items_list_small {
  margin: 0 0 50px;
}

.modal .modal-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal .modal-controls .right {
  width: 58%;
}

.modal .modal-text {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 58px;
}

.modal .modal-text .age {
  font-size: 32px;
  line-height: 32px;
  margin-left: auto;
  padding-right: 40px;
}

.modal .modal-text .text_title {
  width: 100%;
  margin: 40px 0 12px;
  font-weight: 500;
  font-size: 18px;
}

.modal .modal-text .text {
  font-size: 14px;
  line-height: 1.4;
  color: #6F7172;
}

.modal .modal-text + .modal-controls {
  flex-wrap: wrap;
}

.modal .modal-text + .modal-controls .right {
  width: 100%;
}

.modal .modal-text + .modal-controls .left {
  width: 100%;
  margin: 12px 0 0;
  text-align: center;
}

.message-block-error {
  color: #ce2c10;
  border-radius: 8px;
  background: #fae6e5;
  padding: 12px 12px 12px 17px;
  margin-bottom: 20px;
  line-height: 20px;
  font-weight: 400;
}

.message-block-success {
  color: #28a745;
  border-radius: 8px;
  background: #e1fce6;
  padding: 12px 12px 12px 17px;
  margin-bottom: 20px;
  line-height: 20px;
  font-weight: 400;
}

.message-block-warning {
  color: #D6A100;
  border-radius: 8px;
  background: #fff8ec;
  padding: 12px 12px 12px 17px;
  margin-bottom: 20px;
  line-height: 20px;
  font-weight: 400;
}

.message-block-primary {
  color: #007bff;
  border-radius: 8px;
  background: #eaf0ff;
  padding: 12px 12px 12px 17px;
  margin-bottom: 20px;
  line-height: 20px;
  font-weight: 400;
}

.message-block-warning-text {
  color: #D6A100;
  padding: 0px 6px 6px 0px;
  margin-bottom: 20px;
  line-height: 20px;
  font-weight: 400;
}

.button-up {
  bottom: 40px;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 45px;
  position: fixed;
  right: 12px;
  visibility: visible;
  width: 45px;
  z-index: 2147483647;
}

.loading {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.75;
  display: table;
  z-index: 10000000;
}

.spinner {
  display: table-cell;
  vertical-align: middle;
  margin: 0 auto;
  width: 70px;
  text-align: center;
}

.sk-cube-grid {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.sk-cube-grid::after
{
  content: attr(data-waiting);
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #333;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  } 35% {
      -webkit-transform: scale3D(0, 0, 1);
      transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  } 35% {
      -webkit-transform: scale3D(0, 0, 1);
      transform: scale3D(0, 0, 1);
    }
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #838383;
  font-size: 10px;
  margin: 20px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  display: none;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

.clearfix {
  clear: both;
}

.text-section {
  padding: 80px 0 0;
}

.text-block h1 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 500;
}

.hide-text {
  height: 360px;
  overflow: hidden;
  position: relative;
}

.hide-text:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 80px;
  width: 100%;
  background: -webkit-gradient(linear,left top,left bottom,from(hsl(0deg 0% 95%)),color-stop(60%,#f2f2f2));
  background: -o-linear-gradient(top,hsla(0,0%,96.9%,0) 0,#f7f7f7 60%);
  background: linear-gradient(180deg,hsla(0,0%,96.9%,0),#f2f2f2 60%);
  z-index: 5;
  pointer-events: none;
}

.hide-text .hide_show_more {
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: bold;
  font-size: 16px;
  color: #FF5E1A;
  z-index: 8;
  cursor: pointer;
  line-height: 1;
}

.w-100 {
  width: 100% !important;
}

.text-danger {
  color: #FA3333 !important;
}

.text-success {
  color: #3EBE71 !important;
}

.text-warning {
  color: #ff7714 !important;
}

.text-bold {
  font-weight: bold;
}

.font-18 {
  font-size: 18px;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #ff7714;
  background-color: #ff7714;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 119, 20, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ffbe8e;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #ffd0ad;
  border-color: #ffd0ad;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #ff7714;
  background-color: #ff7714;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 119, 20, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(255, 119, 20, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 119, 20, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 119, 20, 0.5);
}

.text-large {
  font-size: 18px;
}

li.ql-indent-1 {
  padding-left: 2em;
}

li.ql-indent-2 {
  padding-left: 4em;
}

li.ql-indent-3 {
  padding-left: 6em;
}

.hidden {
  display: none !important;
}

.mt-20 {
  margin-top: 20px !important;
}

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

.mini_catalog {
  margin: 0 0 12px;
}

.mini_catalog .item {
  margin-right: 12px;
}

.mini_catalog a {
  border-radius: 10px;
  vertical-align: top;
  padding: 13px 20px;
  font-weight: 500;
  font-size: 18px;
  transition: .3s color;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.mini_catalog a:hover {
  color: #252525 !important;
}

.mini_catalog .item .close {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
    background: #6F7172;
    margin-left: 10px;
    cursor: pointer;
}

.mini_catalog .item .close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 2px;
    background: #F2F2F2;
    display: block;
}

.mini_catalog .item .close span:nth-child(1) {transform: translate(-50%, -50%) rotate(45deg);}

.mini_catalog .item .close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mini_catalog .item:last-child {
  margin-right: 0;
}

.color-1 {
  background: #7F00FF;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #E100FF, #7F00FF);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #E100FF, #7F00FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-2 {
  background: #ee0979;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #ff6a00, #ee0979);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #ff6a00, #ee0979); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-3 {
  background: #396afc;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #2948ff, #396afc);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #2948ff, #396afc); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-4 {
  background: #f953c6;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #b91d73, #f953c6);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #b91d73, #f953c6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-5 {
  background: #00B4DB;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #0083B0, #00B4DB);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #0083B0, #00B4DB); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-6 {
  background: #fc4a1a;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #f7b733, #fc4a1a);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #f7b733, #fc4a1a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-7 {
  background: #00b09b;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #96c93d, #00b09b);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #96c93d, #00b09b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-8 {
  background: #000046;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #1CB5E0, #000046);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #1CB5E0, #000046); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-9 {
  background: #8A2387;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #F27121, #E94057, #8A2387);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #F27121, #E94057, #8A2387); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-10 {background: linear-gradient(90deg, #FF3E49 0%, #FF6C3E 100%);}
.color-11 {background: linear-gradient(90deg, #2FD0B3 0%, #1AACFF 100%);}
.color-12 {background: linear-gradient(90deg, #2FD03F 0%, #46AC3D 100%);}
.color-12 {background: linear-gradient(90deg, #2FD03F 0%, #46AC3D 100%);}
.color-13 {
    background: #FF0099;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #493240, #FF0099);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #493240, #FF0099); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-14 {
    background: #8E2DE2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-15 {
    background: #f12711;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f5af19, #f12711);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f5af19, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-16 {
    background: #009FFF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ec2F4B, #009FFF);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ec2F4B, #009FFF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-17 {
    background: #FF416C;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FF4B2B, #FF416C); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-18 {
    background: #00B4DB;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0083B0, #00B4DB);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0083B0, #00B4DB); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-19 {
    background: #4e54c8;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #8f94fb, #4e54c8);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #8f94fb, #4e54c8); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.color-20 {
    background: #00b09b;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #96c93d, #00b09b);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #96c93d, #00b09b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.mini_catalog .slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.mini_catalog .slider-arrow.prev {
  left: -6px;
}

.mini_catalog .slider-arrow.next {
  right: -6px;
}

.mini_catalog .slider-arrow:after {
  border-radius: 50%;
}

.mini_catalog .slider-arrow.slick-disabled {
  opacity: .4;
  pointer-events: none;
}

@media (max-width: 991px){
  .mini_catalog a {
    padding: 18px 20px;
  }
}

.catalog-page .slick-slider .slick-arrow{
  opacity: 0;
}

.catalog-page .slick-slider:hover .slick-arrow{
  opacity: 1;
}

.promo-list {
  display: flex;
  flex-wrap: wrap;
}

.promo-list .item {
  width: calc(100%/4 - 12px*3/4);
  margin-right: 12px;
  margin-bottom: 12px;
  background: #FFF;
  border-radius: 10px;
  padding: 22px 21px 26px;
  display: flex;
  flex-flow: column;
}

.promo-list .item:nth-child(4n) {
  margin-right: 0;
}

.promo-list .item .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #1E2021;
  margin: 0 0 14px;
}

.promo-list .item .text {
  font-size: 16px;
  line-height: 22px;
  color: #6F7172;
  margin: 0 0 32px;
}

.promo-list .item .small_title {
  text-align: center;
  margin: 0 0 9px;
}

.promo-list .item .promo_products {
  margin: auto 0 30px;
}

.promo-list .item .promo_products ul {
  display: flex;
  flex-wrap: wrap;
}

.promo-list .item .promo_products ul li {
  border: 1px solid #EBEBEB;
  width: calc(100%/5 - 12px*4/5);
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  margin-right: 12px;
}

.promo-list .item .promo_products ul li a {
  display: block;
  text-align: center;
}

.promo-list .item .promo_products ul li:last-child {
  margin-right: 0;
  border: none;
}

.promo-list .item .promo_products ul li.last a {
  background: linear-gradient(180deg, #FF671B 0%, #FF521A 100%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-list .item .promo_products ul li.last a svg {
  fill: #FFF;
  width: 12px;
  height: 12px;
}

.promo-list .item .code-block {
  position: relative;
  margin: 0 0 12px;
}

.promo-list .item .code-block .code {
  width: 100%;
  border: 1px dashed #6F7172;
  border-radius: 25px;
  height: 50px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.02em;
  color: #1E2021;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-list .item .code-block button {
  background: transparent;
  border: none;
  padding: 0;
  width: 16px;
  height: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
}

.promo-list .item .code-block button svg {
  width: 100%;
  height: 100%;
  fill: #FF671B;
}

@media(max-width: 1199px) {
  .promo-list .item {
    width: calc(100%/3 - 12px*2/3);
  }

  .promo-list .item:nth-child(4n) {
    margin-right: 12px;
  }

  .promo-list .item:nth-child(3n) {
    margin-right: 0;
  }

}

@media(max-width: 991px) {
  .promo-list .item {
    width: calc(100%/2 - 12px/2);
  }

  .promo-list .item:nth-child(3n) {
    margin-right: 12px;
  }

  .promo-list .item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .promo-list .item {
    width: 100%;
    margin: 0 0 12px !important;
  }
}