@charset "UTF-8";
.container {
  padding-right: 1rem;
  padding-left: 1rem;
}
.container.container-article {
  margin-top: 4rem;
}

.container-sm {
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .container-sm {
    max-width: 570px;
  }
}
@media only screen and (min-width: 900px) {
  .container-sm {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1410px) {
  .container-sm {
    max-width: 1360px;
  }
}
@media only screen and (min-width: ) {
  .container-sm {
    max-width: -400px;
  }
}

.container-md {
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .container-md {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1410px) {
  .container-md {
    max-width: 1360px;
  }
}
@media only screen and (min-width: ) {
  .container-md {
    max-width: -400px;
  }
}

.container-lg {
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
  width: 100%;
}
@media only screen and (min-width: 1410px) {
  .container-lg {
    max-width: 1360px;
  }
}
@media only screen and (min-width: ) {
  .container-lg {
    max-width: -400px;
  }
}

.container-xl {
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
  width: 100%;
}
@media only screen and (min-width: ) {
  .container-xl {
    max-width: -400px;
  }
}

.button {
  text-transform: uppercase;
  border: none;
  border-radius: 0.3rem;
  display: flex;
  justify-content: center;
  align-content: center;
  font-weight: bold;
  font-size: 1.4rem;
}
.button--common {
  border-radius: 3px;
  font-family: "Montserrat Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.button--malina {
  background-color: #dd1552;
  color: #fff;
}
.button--gray {
  background-color: #e0e0e0;
  color: #18181b;
}
.button--white {
  background-color: #fff;
  color: #828282;
  border: 1px solid #d3d3d3;
}
.button--blue {
  background-color: #5790f0;
  color: #fff;
}
.button--orange-grad {
  background: linear-gradient(118.78deg, #FF004E 3%, rgba(255, 153, 0, 0.8) 100.47%);
  box-shadow: 0px 0px 2px rgba(242, 37, 37, 0.25);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5rem;
  padding: 0.6rem 2.4rem;
  border-radius: 5px;
}
.button--red-grad {
  background: linear-gradient(122.58deg, rgba(223, 24, 85, 0.87) 12.96%, #DF3018 83.94%);
  border-radius: 3px;
  font-family: "Montserrat Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}
.button-status {
  border-radius: 3px;
  padding: 12px 20px;
  color: #fff;
  font-family: "Montserrat Medium";
  font-size: 16px;
  margin-top: 8px;
  text-transform: initial;
}
.button-change-paysystem {
  padding: 12px 20px;
  border: 1px solid rgba(221, 221, 221, 0.33);
  margin-top: 8px;
  cursor: pointer;
}
.button-product-more {
  padding: 15px 0;
  width: 100%;
}
.button-product-buy {
  padding: 15px 0;
  width: 100%;
}
.button-submit-comment {
  padding: 1rem;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .button-submit-comment {
    font-size: 16px;
    padding: 1.5rem 2rem;
  }
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: -36px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: -36px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-webkit-keyframes ripple-effect {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}
@keyframes ripple-effect {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}
@-webkit-keyframes ripple-effect-reverse {
  0% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
  to {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes ripple-effect-reverse {
  0% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
  to {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    transform: rotate(180deg);
    animation-timing-function: ease-out;
  }
  7% {
    opacity: 1;
    transform: rotate(300deg);
    animation-timing-function: linear;
    origin: 0%;
  }
  30% {
    opacity: 1;
    transform: rotate(410deg);
    animation-timing-function: ease-in-out;
    origin: 7%;
  }
  39% {
    opacity: 1;
    transform: rotate(645deg);
    animation-timing-function: linear;
    origin: 30%;
  }
  70% {
    opacity: 1;
    transform: rotate(770deg);
    animation-timing-function: ease-out;
    origin: 39%;
  }
  75% {
    opacity: 1;
    transform: rotate(900deg);
    animation-timing-function: ease-out;
    origin: 70%;
  }
  76%, to {
    opacity: 0;
    transform: rotate(900deg);
  }
}
@-o-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -o-transform: rotate(180deg);
    -o-animation-timing-function: ease-out;
  }
  7% {
    opacity: 1;
    -o-transform: rotate(300deg);
    -o-animation-timing-function: linear;
    -o-origin: 0%;
  }
  30% {
    opacity: 1;
    -o-transform: rotate(410deg);
    -o-animation-timing-function: ease-in-out;
    -o-origin: 7%;
  }
  39% {
    opacity: 1;
    -o-transform: rotate(645deg);
    -o-animation-timing-function: linear;
    -o-origin: 30%;
  }
  70% {
    opacity: 1;
    -o-transform: rotate(770deg);
    -o-animation-timing-function: ease-out;
    -o-origin: 39%;
  }
  75% {
    opacity: 1;
    -o-transform: rotate(900deg);
    -o-animation-timing-function: ease-out;
    -o-origin: 70%;
  }
  76%, to {
    opacity: 0;
    -o-transform: rotate(900deg);
  }
}
@-ms-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -ms-transform: rotate(180deg);
    -ms-animation-timing-function: ease-out;
  }
  7% {
    opacity: 1;
    -ms-transform: rotate(300deg);
    -ms-animation-timing-function: linear;
    -ms-origin: 0%;
  }
  30% {
    opacity: 1;
    -ms-transform: rotate(410deg);
    -ms-animation-timing-function: ease-in-out;
    -ms-origin: 7%;
  }
  39% {
    opacity: 1;
    -ms-transform: rotate(645deg);
    -ms-animation-timing-function: linear;
    -ms-origin: 30%;
  }
  70% {
    opacity: 1;
    -ms-transform: rotate(770deg);
    -ms-animation-timing-function: ease-out;
    -ms-origin: 39%;
  }
  75% {
    opacity: 1;
    -ms-transform: rotate(900deg);
    -ms-animation-timing-function: ease-out;
    -ms-origin: 70%;
  }
  76%, to {
    opacity: 0;
    -ms-transform: rotate(900deg);
  }
}
@-webkit-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
  }
  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 0%;
  }
  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    -webkit-origin: 7%;
  }
  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 30%;
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 39%;
  }
  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 70%;
  }
  76%, to {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }
}
@-moz-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -moz-transform: rotate(180deg);
    -moz-animation-timing-function: ease-out;
  }
  7% {
    opacity: 1;
    -moz-transform: rotate(300deg);
    -moz-animation-timing-function: linear;
    -moz-origin: 0%;
  }
  30% {
    opacity: 1;
    -moz-transform: rotate(410deg);
    -moz-animation-timing-function: ease-in-out;
    -moz-origin: 7%;
  }
  39% {
    opacity: 1;
    -moz-transform: rotate(645deg);
    -moz-animation-timing-function: linear;
    -moz-origin: 30%;
  }
  70% {
    opacity: 1;
    -moz-transform: rotate(770deg);
    -moz-animation-timing-function: ease-out;
    -moz-origin: 39%;
  }
  75% {
    opacity: 1;
    -moz-transform: rotate(900deg);
    -moz-animation-timing-function: ease-out;
    -moz-origin: 70%;
  }
  76%, to {
    opacity: 0;
    -moz-transform: rotate(900deg);
  }
}
.error {
  width: 100%;
  display: flex;
  padding: 12px 35px 12px 18px;
  background-color: #fae5e8;
  border-radius: 5px;
  font-size: 16px;
  color: #656565;
  margin-bottom: 20px;
}

body::before {
  display: none !important;
  content: "" !important;
}

.subscribe-form--wide {
  height: 100%;
  display: flex;
  width: 100%;
}

.subscribe-form--wide .subscribe-button {
  width: 100%;
  margin: 0;
}

.loader-animation {
  background: #f5f6f7;
  min-height: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  outline: 1px solid #ffffff;
}

.loader-animation svg {
  position: absolute;
  fill: #fff;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
}

.bx-core-waitwindow {
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  justify-content: center;
  align-items: center;
  height: 100vh;
  z-index: 1000;
  font-size: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.0784313725);
  display: flex;
}

.bx-core-waitwindow:before {
  content: url(../img/spin.svg) !important;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 1001;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-animation::before {
  background-color: #f5f6f7;
  background-image: url(https://i.postimg.cc/VLC3WF9t/3pk-Fb-IT7-rn.gif);
  background-repeat: repeat-y;
  background-size: 100% 1px;
  content: " ";
  display: block;
  height: 100%;
}

.container_policy p {
  margin: 10px 0;
}

#panel {
  position: absolute;
}

.select-lang-trigger {
  display: flex;
  align-items: end;
  cursor: pointer;
}

.popup_4 {
  display: none;
}

.select-lang_text {
  font-size: 15px;
  color: #7e7e80;
  padding-left: 8px;
  line-height: 1em;
}

ol, ul {
  list-style: none;
  padding: 0;
}

* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

a, body, h1, h2, h4, ol, p, ul {
  margin: 0;
}

.bx-soa-location-input-container:not(:first-child) {
  margin-top: 30px;
}

#bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company {
  margin-top: 15px;
}

#bx-soa-properties .bx-soa-customer-field:not(:first-child) {
  margin-top: 30px;
}

#bx-soa-properties .col-sm-12 + .col-sm-12 {
  margin-top: 30px;
}

.ns-bitrix.c-sale-order-ajax.c-sale-order-ajax-simple-1 div.bx-soa-item-td-title {
  font-size: 14px;
}

.ns-bitrix.c-sale-order-ajax.c-sale-order-ajax-simple-1 #bx-soa-basket.bx-soa-section .bx-soa-editstep, .ns-bitrix.c-sale-order-ajax.c-sale-order-ajax-simple-1 .bx-soa-cart-total-button-container {
  display: none !important;
}

img {
  vertical-align: unset !important;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:focus, input[type=number]:hover {
  -moz-appearance: number-input;
}

.cars-nav li span, a, button {
  cursor: pointer;
}

html {
  overflow-x: hidden;
}

.btn, a {
  text-decoration: none;
}

.fall {
  align-items: center;
  justify-content: center;
}

.fall, .less, header nav {
  display: flex;
}

.less {
  border-radius: 5px;
  background: #000;
  background: -moz-linear-gradient(top, #000 0, #fff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(100%, #fff));
  background: -webkit-linear-gradient(top, #000 0, #fff 100%);
  background: -o-linear-gradient(top, #000 0, #fff 100%);
  background: -ms-linear-gradient(top, #000 0, #fff 100%);
  background: linear-gradient(to bottom, #000 0, #fff 100%);
  -webkit-transform: rotate(0) scale(1) skew(0) translate(0);
  -moz-transform: rotate(0) scale(1) skew(0) translate(0);
  -o-transform: rotate(0) scale(1) skew(0) translate(0);
  -ms-transform: rotate(0) scale(1) skew(0) translate(0);
  transform: rotate(0) scale(1) skew(0) translate(0);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0.5;
}

.slick-next.product-item-detail-slider-right:before, .slick-next:before, .slick-prev.product-item-detail-slider-left:before, .slick-prev:before {
  content: "" !important;
  background: url(../img/arrow_svg.svg) center center no-repeat;
  background-size: 100%;
  width: 22px;
  height: 16px;
  display: block;
}

.slick-next.product-item-detail-slider-right:before, .slick-prev.product-item-detail-slider-left:before {
  width: 14px;
  height: 10px;
}

.slick-prev:before {
  transform: rotateX(-180deg);
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Montserrat Regular";
  font-size: 1.4rem;
  line-height: 1em;
}

.slick-next:before, .slick-prev:before {
  font-family: none !important;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sections {
  background-color: #18181b;
}

.sections_list {
  display: flex;
  position: relative;
  justify-content: space-between;
  min-height: 62px;
}

.card {
  margin-top: 44px;
  transition: all 0.3s;
}

.card.shadow {
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 4 !important;
}

.brd {
  padding: 15px;
  position: relative;
  background-color: #fff;
}

.plaha-akc {
  left: 15px;
  background: #dd1552;
}

.plaha-new {
  left: 65px;
  background: #3aa82b;
}

.plaha-hit {
  left: 115px;
  background: #7569d9;
}

.plaha, .stars-rat {
  align-items: center;
}

.plaha {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  width: 45px;
  height: 20px;
  position: absolute;
  top: 15px;
  display: flex;
  justify-content: center;
  border-radius: 3px;
}

.stars-rat {
  -ms-justify-content: flex-start;
}

.total-review a {
  margin-left: 15px;
  color: #5790f0;
  border-bottom: 1px solid #5790f0;
  font-size: 14px;
}

.stars-rat, .starses {
  display: flex;
}

.starses svg {
  margin-right: 2px;
}

.description-card {
  text-align: left;
  margin: 14px 0 11px;
  font-size: 14px;
}

.true_sklad {
  text-align: left;
  position: relative;
  font-size: 14px;
  color: #7e7e80;
}

.true_sklad :after, .true_sklad :before {
  content: url(../img/checked.png);
  position: absolute;
  left: -20px;
}

.true_sklad :after {
  content: url(../img/cancel.png);
  display: none;
}

.total-price {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.total-price .tp {
  font-size: 18px;
  color: #dd1552;
  font-family: "Montserrat Bold";
}

.total-price .old-price {
  font-size: 14px;
  text-decoration: line-through;
  margin-left: 15px;
}

.article-title, article .usefull-art {
  font-size: 28px;
  margin-bottom: 40px;
  font-family: "Montserrat Bold";
  color: #18181b;
}

.footer-title-w {
  margin-bottom: 30px;
  color: #fff;
}

.footer-title-w:not(:first-child) {
  margin-top: 40px;
}

.footer-title-r, .footer-title-w, h3 {
  font-size: 20px;
  font-family: "Montserrat Bold";
}

h3 {
  margin: 0 0 30px;
  color: #fff;
}

.footer-title-r {
  margin-bottom: 30px;
  color: #d21751;
}

.block-art > div:first-child {
  width: 50%;
}

.block-art > div:first-child img {
  height: auto;
  width: auto;
}

.popular-brand {
  max-width: 1170px;
  margin: 70px auto 90px;
}

.item-pop {
  height: 110px;
  align-items: center;
  margin-left: 1px;
}

footer {
  width: 100%;
  background: #2d2d33;
  padding: 70px 0 40px;
  margin-top: 80px;
}

footer .cont-footer {
  max-width: 1320px;
  margin: 0 auto;
}

.item-pop, footer .cont-footer .row-foot, footer .cont-footer .row-foot .colu-up-f {
  display: flex;
}

footer .cont-footer .row-foot {
  justify-content: space-between;
  padding-bottom: 55px;
}

footer .cont-footer .row-foot .colu-up-f {
  flex-direction: column;
}

.row-foot .colu-up-f:nth-child(1) h3, .row-foot .colu-up-f:nth-child(2) h3 {
  color: rgba(221, 21, 82, 0.6);
  color: #d21751;
}

footer .mal-href a {
  color: #9797a9;
  width: max-content;
  margin-bottom: 20px;
  font-size: 15px;
  transition: 0.3s ease;
  border-bottom: 1px solid transparent;
}

footer .mal-href a:hover {
  color: rgba(221, 21, 82, 0.6);
}

.foot-icon-soc {
  margin-bottom: 35px;
  display: flex;
}

.foot-icon-soc a {
  padding: 0 !important;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #dd1552;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.foot-icon-soc a + a, .use-body .date-art p span {
  margin-left: 10px;
}

.time-work-f {
  color: #fff;
  font-size: 14px;
}

.email-foot div, .hover-product .compare-div label, .phone-foot, .phone-foot div {
  display: flex;
}

.phone-foot {
  margin-top: 10px;
  font-size: 22px;
  color: #fff;
  align-items: flex-start;
  flex-direction: column;
}

.email-foot div, .hover-product .compare-div label, .phone-foot div {
  align-items: center;
}

.phone-foot div a {
  color: #fff;
  margin-left: 10px;
  margin-top: 5px;
}

.phone-foot div .viber {
  top: 3px;
}

.slick-dots li:not(.slick-active) button:before {
  top: 0;
}

.email-foot {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.email-foot div a {
  color: #5790f0;
  margin-left: 10px;
  font-size: 16px;
  font-family: "Montserrat Light";
  width: max-content;
  border-bottom: 1px solid #5790f0;
}

.payment-foot {
  margin-top: 40px;
}

.payment-foot .payment-cont {
  display: flex;
  flex-wrap: wrap;
  width: 248px;
  justify-content: space-between;
  margin: -10px 0;
}

.col-bottom-f {
  color: #9797a9;
}

.col-bottom-f p {
  margin-bottom: 10px;
  font-size: 14px;
}

.cont-footer .row-foot:first-child {
  border-bottom: 1px solid #9797a9;
}

.cont-footer .row-foot:last-child {
  padding-top: 30px;
}

.col-bottom-f:nth-child(1) {
  width: 60%;
}

.col-bottom-f:nth-child(2) select {
  outline: 0;
  background: #3d3d45;
  padding: 10px 80px 10px 10px;
  color: #9292a3;
  border: 0;
}

@font-face {
  font-family: icomoon;
  src: url(../fonts/icomoon/icomoon.eot);
  src: url(../fonts/icomoon/icomoon.eot?#iefix) format("embedded-opentype"), url(../fonts/icomoon/icomoon.woff) format("woff"), url(../fonts/icomoon/icomoon.ttf) format("truetype"), url(../fonts/icomoon/icomoon.svg#icomoon) format("svg");
  font-weight: 400;
  font-style: normal;
}
.sb-search {
  position: relative;
  width: 0;
  min-width: 60px;
  height: 55px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-backface-visibility: hidden;
}

.sb-search-input {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  border: 0;
  outline: 0;
  border-radius: 20px;
  width: 100%;
  height: 40px;
  margin: 0;
  z-index: 10;
  font-family: inherit;
  font-size: 20px;
  color: #fff;
}

.sb-search .sb-search-input {
  background: #000;
}

.sb-search-open .sb-search-input {
  background: #2f2f35;
}

.sb-search-input::-webkit-input-placeholder {
  color: #7e7e80;
  font-size: 15px;
  opacity: 0;
  padding: 0 0 0 20px;
}

.sb-search-open .sb-search-input::-webkit-input-placeholder {
  color: #7e7e80;
  font-size: 15px;
  opacity: 1;
  padding: 0 0 0 20px;
}

.sb-search-input:-moz-placeholder {
  color: #7e7e80;
  font-size: 15px;
  padding: 0 0 0 20px;
}

.sb-search-input::-moz-placeholder {
  color: #7e7e80;
  font-size: 15px;
  padding: 0 0 0 20px;
}

.sb-search-input:-ms-input-placeholder {
  color: #7e7e80;
  font-size: 15px;
  padding: 0 0 0 20px;
}

.sb-icon-search, .sb-search-submit {
  width: 60px;
  height: 55px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
}

.sb-search-submit {
  background: #fff;
  opacity: 0;
  color: transparent;
  border: 0;
  outline: 0;
  z-index: -1;
}

.sb-icon-search {
  color: #eee;
  z-index: 90;
  font-size: 18px;
  font-family: icomoon;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

.sb-icon-search:before {
  content: "\e000";
}

.catalog .container .card .brd img, .no-js .sb-search, .sb-search.sb-search-open {
  width: 100%;
}

.no-js .sb-search .sb-icon-search, .sb-search.sb-search-open .sb-icon-search {
  color: #eee;
  z-index: 11;
}

.no-js .sb-search .sb-search-submit, .sb-search.sb-search-open .sb-search-submit {
  z-index: 90;
}

.container-s > header, .main {
  margin: 0 auto;
}

.container-s > header {
  text-align: center;
  background: rgba(0, 0, 0, 0.01);
}

.container-s > header h1 {
  font-size: 2.625em;
  line-height: 1.3;
  margin: 0;
  font-family: "Montserrat Light";
}

.container-s > header span {
  display: block;
  font-size: 60%;
  color: #e67e22;
  padding: 0 0 0.6em 0.1em;
}

.main {
  max-width: 69em;
}

.column-s {
  float: left;
  width: 240px;
  position: relative;
}

.column-s:nth-child(2) {
  box-shadow: -1px 0 0 rgba(0, 0, 0, 0.1);
}

.column-s p {
  font-family: "Montserrat Light";
  font-size: 2em;
  padding: 0;
  margin: 0;
  text-align: right;
  line-height: 1.5;
}

.column-s a {
  border: 3px solid #b4c7da;
  padding: 0 15px;
  display: inline-block;
  margin: 20px 0;
}

.column-s a:hover {
  border-color: #fff;
}

.block-courz {
  background: #dd1552;
  width: 80px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-fade, .tabs__content {
  display: none;
}

.popup-fade:before {
  content: "";
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 8;
}

.fa-close:before, .fa-remove:before, .fa-times:before {
  content: "\f00d";
  font-size: 28px;
  color: #fff;
}

.tabs__content.active {
  flex-direction: column;
}

.tabs__content.active input {
  height: 60px;
  padding: 0 10px;
  border: 1px solid #f9f9f9;
  margin: 0 0 15px;
}

.tabs__content.active button {
  height: 60px;
  background: rgba(221, 21, 82, 0.6);
  border-radius: 50px;
  color: #fff;
}

.tabs {
  position: relative;
}

.tabs__caption, .tabs__caption li, .tabs__content.active {
  display: flex;
}

.tabs__caption {
  margin-bottom: 30px;
  justify-content: space-between;
}

.tabs__caption li {
  width: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
  font-family: "Montserrat Bold";
}

.tabs__caption li.active {
  border-bottom: 2px solid rgba(221, 21, 82, 0.6);
  color: rgba(221, 21, 82, 0.6);
}

.hide-tab {
  position: absolute;
  bottom: -30px;
  right: -20px;
}

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

.checkbox label:before {
  border-radius: 3px;
}

.checkbox input[type=checkbox]:checked + label:before {
  content: "✓";
  font-size: 15px;
  color: red;
  text-align: center;
  line-height: 15px;
}

p.high {
  font-size: 26px;
  font-family: "Montserrat Bold";
  margin: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text {
  font-size: 14px;
  color: #656565;
  text-align: center;
}

.top-head-selectors {
  display: flex;
}

.top-head-selectors-item {
  padding: 45px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #18181b;
  font-size: 16px;
  text-decoration-style: dashed;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  font-family: "Montserrat Bold";
  cursor: pointer;
}

.top-head-selectors-item.active {
  background-color: rgba(243, 243, 243, 0.231372549);
  position: relative;
}

.top-head-selectors-item.active:after {
  content: "";
  position: absolute; /* Абсолютное позиционирование */
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px; /* Положение треугольника */
  border: 14px solid transparent;
  border-bottom: 14px solid #18181b;
}

.navigation {
  float: left;
  position: relative;
  z-index: 2;
}

.navigation ul li {
  float: left;
  list-style: none;
  margin: 0 10px;
}

.card {
  position: relative;
  cursor: pointer;
  outline: 0;
}

.what-do-we-do .slider-container .slick-list {
  overflow: visible !important;
}

.slick-slide:not(.slick-active) {
  opacity: 0;
}

.card .hover-product {
  display: none;
  flex-direction: column;
  width: 100%;
  position: absolute;
  background: #fff;
}

.hover-product .compare-div {
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background: #f5f5f5;
  border-top: #ececec;
  padding: 10px 0;
}

.hover-product .compare-div input {
  width: 19px;
  height: 19px;
  margin-left: 13px;
}

.hover-product hr {
  background: #ececec;
  width: 100%;
  margin-top: 20px;
}

.hover-product p {
  font-size: 12px;
  width: 88%;
  margin: 10px auto 0;
  text-align: left;
}

.hover-product .compare-div, .hover-product .numb-row, .hover-product .numb-row .number {
  display: flex;
}

.hover-product .numb-row {
  justify-content: space-between;
  width: 87.2%;
}

.hover-product .numb-row .number {
  background: #eee;
  width: 69.5%;
  border-radius: 3px;
  align-items: center;
}

.hover-product .numb-row .number .minus, .hover-product .numb-row .number .plus {
  width: 28.16%;
  -moz-user-select: none;
  -khtml-user-select: none;
  text-align: center;
  user-select: none;
  font-family: "Montserrat Bold";
  color: #545460;
}

.hover-product .numb-row .number .minus {
  transform: scale(2.45, 0.8);
  font-family: "Montserrat Regular";
}

.hover-product .numb-row .number .plus {
  font-family: "Montserrat Thin";
}

.product-page .numb-row .number input {
  background: #fff;
  padding: 10px;
  border: 0;
  text-align: center;
}

.hover-product .numb-row .block-courz {
  background: #dd1552;
  position: relative;
  width: 52px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.hover-product .numb-row .block-courz:before {
  content: url(../img/courz.png);
  position: absolute;
}

.hover-product .color-paint, .hover-product .color-paint .activeq:before, .hover-product .numb-row .block-courz {
  display: flex;
}

.hover-product .color-paint {
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}

.hover-product .color-paint .quadr, .hover-product .color-paint .quadr-n {
  width: 25px;
  height: 25px;
  background: orange;
  border-radius: 5px;
  position: relative;
  margin: 5px 3px 0 0;
  border: 2px solid #eee;
}

.hover-product .color-paint .quadr-n {
  border: 2px solid transparent;
}

.hover-product .color-paint .activeq {
  border: 2px solid #fff;
  outline: #000 solid 2px;
}

.hover-product .color-paint .activeq:before {
  content: url(../img/checked.svg);
  color: #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  transform: translate(4px, 7px);
}

.hover-product .color-paint .none-color {
  opacity: 0.3;
}

.hover-product .color-paint .none-color:before {
  content: url(../img/cancel.svg) !important;
  position: absolute;
  width: 10px;
  height: 10px;
  left: -1px;
  top: -2px;
  transform: translate(7px, 3px);
  z-index: 2;
}

.hover-product .color-paint .none-color:after {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  opacity: 1;
  border-radius: 50%;
  z-index: -1;
}

.hover-product .line-row-q, .hover-product .line-row-q .quadr-line {
  display: flex;
}

.hover-product .line-row-q {
  flex-wrap: wrap;
  width: 88%;
  margin: 0 auto 20px;
}

.hover-product .line-row-q .quadr-line {
  height: 25px;
  background: #fff;
  align-items: center;
  justify-content: center;
}

.hover-product .line-row-q .activeql {
  border: 2px solid #000;
}

.hover-product .line-row-q .none-ql {
  width: 25px;
  height: 25px;
  background: #fff;
  border: 1px solid #000;
  margin: 5px 3px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: transparent;
}

.hover-product .line-row-q .none-ql:before {
  content: url(../img/cancel.svg);
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: -1px;
  transform: translate(7px, 3px);
  z-index: 2;
}

.hover-product .line-row-q .none-ql:after {
  content: "";
  width: 17px;
  height: 17px;
  background: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  opacity: 1;
  border-radius: 50%;
  z-index: 0;
}

.what-do-we-do .slick-prev {
  transform: translate(0, 50%) rotate(180deg);
}

.what-do-we-do .slick-next {
  transform: translate(0, 50%);
}

.fancybox-content {
  overflow: visible;
  padding: 0 !important;
  outline: 0 !important;
}

.fancybox-content form, a, body, button, div, form, input, p {
  outline: 0;
}

.popup {
  width: 345px !important;
  position: relative;
  border-radius: 20px;
  padding-top: 35px !important;
  overflow: unset !important;
  background-color: #f2f2f2 !important;
  padding-bottom: 35px !important;
}

.popup--no-p {
  padding-top: 0px !important;
}

.popup--done {
  overflow: hidden !important;
  background-color: #ffffff !important;
}

.popup--done:after {
  background: url("../img/done.svg") center center no-repeat;
  background-size: cover;
  width: 158px;
  height: 158px;
  content: "";
  position: absolute;
  top: 6%;
  left: -9%;
}

.popup--no-br {
  border-radius: 0;
}

.popup--done .fancybox-button.fancybox-close-small {
  color: #c0c0c0 !important;
  right: 4% !important;
  top: 4% !important;
  padding: 5px !important;
}

.popup-title_red {
  font-size: 18px;
  color: #dd1553;
  line-height: 1em;
  font-family: "Montserrat SemiBold";
  z-index: 2;
  text-transform: uppercase;
}

.popup-title_common {
  font-size: 18px;
  color: #19181d;
  z-index: 2;
  line-height: 1em;
}

.popup-title_common--mt {
  margin-top: 15px;
}

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

.popup-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popup-inner--p {
  padding: 0 50px;
}

.popup-inner-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.popup-inner-header-tab, .popup-inner-header-title {
  font-size: 16px;
  color: #18181b;
  font-family: "Montserrat Bold";
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.025em;
  position: relative;
}

.popup-inner-header-tab.active, .popup-inner-header-tab:hover {
  color: #dd1552;
  transition: all 0.3s;
}

.popup-inner-header-tab.active:after, .popup-inner-header-tab:hover:after {
  width: 100%;
  transition: all 0.3s;
}

.popup-inner-header-tab:after {
  width: 0;
  position: absolute;
  height: 5px;
  border-radius: 3px;
  background-color: #dd1552;
  bottom: -25px;
  content: "";
  left: 50%;
  transform: translateX(-50%);
}

.popup-inner-tabs {
  margin-top: 15px;
}

.popup-inner-tabs-item {
  display: flex;
  flex-direction: column;
  padding: 0 35px;
}

.popup-inner-tabs-item_val_wrapper {
  margin: -10px 0;
  display: flex;
  flex-direction: column;
}

.popup-inner-tabs-item_val {
  margin: 10px 0;
  padding: 16px;
  background-color: #fff;
  border-radius: 5px;
  outline: 0;
  border: 1px solid #fff;
  font-size: 16px;
  transition: all 0.3s;
  width: 100%;
}

.popup-inner-tabs-item_val:focus {
  border: 1px solid rgba(221, 21, 82, 0.6);
  transition: all 0.3s;
}

.popup-inner-tabs-item_val:hover {
  border: 1px solid rgba(221, 21, 82, 0.6);
  transition: all 0.3s;
  cursor: pointer;
}

.popup-inner-tabs-item_val:-moz-placeholder {
  color: #656565;
}

.popup-inner-tabs-item_val:-ms-input-placeholder {
  color: #656565;
}

.popup-inner-tabs-item_val::-webkit-input-placeholder {
  color: #656565;
}

.popup-inner-tabs-item_submit {
  background-color: #dd1552;
  border: 0;
  color: #fff;
  margin-top: 10px;
  text-align: center;
  border-radius: 33px;
  padding: 16px 0;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.popup-inner-tabs-item_submit:hover {
  background-color: #c11549;
  transition: all 0.3s;
}

.customRadio_radio {
  display: none;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

.filtr .submenuItems-f, input[type=checkbox], input[type=radio] {
  display: none;
}

.customRadio_label-check {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.popup-inner-tabs-item-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.popup-inner-tabs-item-footer--m25 {
  margin: 25px 0;
}

.dashed-description {
  color: #fff;
  font-size: 11px;
  padding: 12px;
  border-radius: 24px;
  background-color: #dd1552;
  cursor: pointer;
}

.timeout {
  width: 100%;
  text-align: center;
  border-bottom: 0;
  margin-top: 15px;
}

.popup-inner-header_back {
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  color: #18181b;
  font-size: 16px;
  font-family: "Montserrat Bold";
  margin-left: 35px;
  cursor: pointer;
}

.popup-inner-header_back:hover:after {
  transition: all 0.3s;
  left: -3px;
}

.popup-inner-header_back:after {
  position: absolute;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  left: 0;
  content: "";
  background: url("../img/angle-arrow-down копия 3.png") center center no-repeat;
  background-size: 100% 100%;
  width: 6px;
  height: 10px;
}

.popup-inner-header--back {
  justify-content: start;
}

.forgot-password-content_title {
  font-size: 26px;
  color: #18181b;
  font-family: "Montserrat Bold";
}

.forgot-password-content {
  padding: 25px 28px 0 25px;
}

.forgot-password-content_text {
  font-size: 14px;
  line-height: 20px;
  color: #656565;
  margin-top: 10px;
}

.compensate-for-scrollbar {
  margin: 0 !important;
}

.slick-dots {
  bottom: 50px !important;
}

.block-pay {
  width: 76px;
  height: 40px;
  background-size: 90% !important;
  border-radius: 3px;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 10px;
}

.sdek_pvzLair {
  display: flex;
  flex-direction: column;
  padding-left: 35px;
}

.sdek_pvzAddr {
  text-align: center;
}

.sdek_pvzLair .btn-default {
  background-color: #dd1552;
  color: #fff;
  margin: 10px auto 0;
  padding: 14px 27px;
  border-radius: 3px;
  border: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Montserrat Bold";
  display: flex;
  justify-content: center;
  white-space: nowrap;
  align-items: center;
}

.option-row_title {
  font-family: "Montserrat Bold";
}

.option-row_sub {
  color: #999;
  font-size: 12px;
}

.site-label-wrap {
  width: 100%;
  background: #2d2d33;
}

.site-label {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  align-content: center;
}

.site-label_text {
  color: #ffffff;
  font-size: 16px;
}

.site-label-button {
  margin: 0 14px;
  padding: 5px 10px;
  cursor: pointer;
}

.site-label-buttons {
  margin: 0 -24px 0 -14px;
}

.needInfoTitle {
  text-align: center;
  font-size: 24px;
  color: #999;
  margin-top: 15px;
}

.fancybox-container {
  z-index: 1000 !important;
}

.autolight-desc, .pickupDeliveryDate {
  transition: all 0.3s;
}

@-webkit-keyframes seconds {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes seconds {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.zoom-overlay {
  -webkit-animation: seconds 1s forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-delay: 5s;
  animation: seconds 1s forwards;
  animation-iteration-count: 1;
  animation-delay: 5s;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4705882353);
  position: absolute;
  justify-content: center;
  align-items: center;
  display: none;
}

.zoom-overlay-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zoom-overlay_text {
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 10px;
  font-family: "Montserrat SemiBold";
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.clock {
  animation: rotate 5s linear infinite;
  transform-origin: 71px 19px;
}

.instagram_link .block_aside_more_input_field-input {
  cursor: pointer !important;
  background-color: #f0f8ff;
}

.tab-article-text a {
  color: #5790f0;
  text-decoration: underline;
}

.buttons-wrapper {
  margin: 0 -5px;
}

@media screen and (max-width: 1170px) {
  .owl-nav button.owl-prev {
    left: 0 !important;
    height: 50px !important;
    width: 50px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
    border-bottom-left-radius: 0 !important;
  }
  .owl-nav button.owl-next {
    right: 0 !important;
    width: 50px !important;
    height: 50px !important;
    border-top-left-radius: 50% !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 50% !important;
  }
  .container {
    max-width: 1024px;
  }
  .catalog {
    width: 95% !important;
  }
  h2 {
    width: 90%;
    margin: 0 auto 40px 0;
  }
  .title-catalog {
    width: 95%;
  }
  .top-head, header nav {
    width: 100%;
  }
}
.buy_it {
  width: 90%;
  background-color: #dd1552;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  align-items: center;
  margin-top: 20px;
}

.buy_it_text {
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.025em;
  font-family: "Montserrat Bold";
  padding-left: 9px;
}

.card {
  z-index: 9;
}

.card .buy_it {
  display: none;
  width: 100%;
}

.card.hovered {
  z-index: 10;
  filter: drop-shadow(3px 9px 9px rgba(0, 0, 0, 0.3));
}

.mobile-nav-elements {
  width: 100%;
  display: flex;
  align-items: center;
  height: 42px;
  justify-content: center;
}

.mobile-nav-elements_item {
  display: flex;
}

.mobile-nav-elements_item:not(:first-child) {
  margin-left: 14%;
}

.mobile-nav-basket {
  position: relative;
  margin-left: 10% !important;
}

.mobile-nav-basket_count {
  position: absolute;
  width: 20px;
  height: 20px;
  color: #4d4d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  bottom: -10%;
  right: -22%;
  background: #fff;
  font-size: 12px;
  font-family: "Montserrat Bold";
}

@media screen and (max-width: 769px) {
  .sections {
    display: none;
  }
  .card .buy_it {
    display: flex;
  }
  .product-page .line-row-q .none-ql:before {
    content: url(../img/cancel.svg);
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0;
    top: -1px;
    transform: translate(7px, 3px);
    z-index: 2;
  }
  .card.slick-slide {
    padding: 15px;
  }
  .container {
    max-width: 768px;
    padding: 0 10px;
  }
  h2 {
    font-size: 18px;
    line-height: 22px;
    font-family: "Montserrat Bold";
  }
  .slick-dots {
    bottom: 5px !important;
  }
  .advant, footer .cont-footer .row-foot .colu-up-f.mal-href {
    display: none;
  }
  .slider-container__tab-item {
    margin-top: 15px !important;
  }
  .what-do-we-do {
    margin-top: 15px;
  }
  .card {
    margin-top: 20px;
  }
  .colu-up-f:nth-child(4) {
    width: 100%;
    margin: 0 15px;
  }
  .cont-footer .row-foot:last-child {
    flex-direction: column;
    padding: 30px 20px 0;
  }
  .col-bottom-f:nth-child(1), .col-bottom-f:nth-child(2) {
    width: 100%;
  }
  .col-bottom-f:nth-child(2) select {
    width: 180px;
  }
  .popup_3 .hover-product {
    display: block;
  }
  .more-proposal {
    z-index: 3;
  }
}
@media screen and (max-width: 481px) {
  .block-art > div:first-child {
    width: 70%;
    margin-bottom: 20px;
  }
  .phone-foot {
    font-size: 18px;
    letter-spacing: 0.025em;
    line-height: 1em;
  }
  .foot-icon-soc {
    margin-bottom: 15px;
  }
  footer {
    padding: 30px 0;
  }
  .slider-container {
    padding: 0 10px;
  }
  .container {
    max-width: 480px;
  }
}
@media screen and (max-width: 321px) {
  .container {
    max-width: 320px;
  }
  .popup {
    width: 300px !important;
  }
}
.plate {
  height: 50px;
  min-width: 50px;
  position: relative;
  z-index: 2;
}

.x {
  transform: scale(0);
  transition: transform 0.4s;
}

.line {
  fill: none;
  stroke: #fff;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: 50%;
  transition: stroke-dasharray 0.5s 0.2s, stroke-dashoffset 0.5s 0.2s, transform 0.5s 0.2s;
}

.x .line {
  stroke-width: 5.5px;
}

.plate1 .line2, .plate1 .line3 {
  stroke-dasharray: 40 200;
  stroke-dashoffset: 0;
}

.plate1 .line3 {
  stroke-dasharray: 40 179;
}

.active .line {
  transition: stroke-dasharray 0.5s, stroke-dashoffset 0.5s, transform 0.5s;
}

.active .x {
  transform: scale(1);
  transition: transform 0.4s 350ms;
}

.plate5 .line {
  transition: stroke-dasharray 0.4s 0.1s, stroke-dashoffset 0.4s 0.1s, transform 0.4s 0.1s;
}

.plate5 .line1 {
  stroke-dasharray: 40 40;
}

.plate5 .line2, .plate5 .line3 {
  stroke-dasharray: 21 39;
}

.plate5 .line4 {
  stroke-dasharray: 40 40;
}

.plate5 .x {
  transition: transform 0.4s 50ms;
}

.active.plate5 .line {
  transition: stroke-dasharray 0.4s, stroke-dashoffset 0.4s, transform 0.4s;
}

.active.plate5 .line1 {
  stroke-dasharray: 1 40;
  stroke-dashoffset: -33px;
}

.active.plate5 .line2, .active.plate5 .line3 {
  stroke-dasharray: 5 39;
  stroke-dashoffset: -37px;
}

.active.plate5 .line4 {
  stroke-dasharray: 1 40;
  stroke-dashoffset: -33px;
}

.active.plate5 .x {
  transition: transform 0.4s 50ms;
}

.mobile-nav-search, .mobile-nav_head {
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav_head {
  width: 100%;
}

.mobile-nav_head.mobile-nav_head--padded {
  padding: 0 20px;
}

.mobile-nav-search {
  height: 100%;
  margin: 2px 3px 0 0;
}

.mobile-nav-search_close {
  display: none;
  position: absolute;
  padding: 15px;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-nav-search_centered .mobile-nav-search_close {
  display: block;
}

.mobile-nav-search_centered {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.mobile-nav-search_input {
  position: absolute;
  border: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: none;
  background-color: #2f2f35;
  left: 0;
  border-radius: 20px;
  color: #727276;
  font-size: 15px;
  letter-spacing: 0.025em;
  padding: 14px 17px 14px 44px;
}

.mobile-nav-search_input::-webkit-input-placeholder {
  color: #727276;
  font-size: 15px;
  letter-spacing: 0.025em;
}

.mobile-nav-search_trigger.mobile-nav-search_trigger--active {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.mobile-nav-search_trigger {
  outline: 0;
  border: 0;
  background-color: unset;
}

.mobile-nav-search_input:-moz-placeholder {
  color: #727276;
  font-size: 15px;
  letter-spacing: 0.025em;
}

.mobile-nav-search_input::-moz-placeholder {
  color: #727276;
  font-size: 15px;
  letter-spacing: 0.025em;
}

.mobile-nav-search_input:-ms-input-placeholder {
  color: #727276;
  font-size: 15px;
  letter-spacing: 0.025em;
}

.plates {
  display: flex;
  flex-wrap: wrap;
  max-height: 160px;
  width: 640px;
}

.popup_3 .hover-product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup_1, .popup_2 {
  display: none;
}

.card .remember-me {
  padding: 15px;
  justify-content: flex-start;
  background-color: #f5f5f5;
}

.title-aside, .title-catalog, .use-more .rowsd, .use-more .rowsd .date-art {
  display: flex;
}

.wdwd-catalog {
  margin-top: 0;
  width: 78%;
}

.wdwd-catalog .card {
  margin-top: 0;
}

hr.w-under {
  max-width: 1170px;
  margin: 60px auto;
  width: 100%;
  background: #eee;
  height: 1px;
  border: 0;
}

.flex-el-tab-js {
  display: flex;
  justify-content: space-between;
}

.si-flex-inp {
  display: none !important;
}

.open .si-flex-inp, .open ul {
  display: flex !important;
  justify-content: center;
}

.open .si-flex-inp {
  transition: 0.5s ease;
  padding: 0 0 20px;
  flex-direction: row !important;
}

.open .si-flex-inp input {
  width: 50%;
  max-width: 100px;
  height: 30px;
  border: 1px solid #ddd;
  padding-left: 10px;
}

.open ul {
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

.open .dropdownlink-f {
  border: 0;
}

.customRadio_label {
  position: relative;
  color: #545460;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customRadio_radio:checked ~ .customRadio_label span {
  color: #212121;
}

.remember-me {
  display: flex;
  justify-content: center;
}

.checkbox-item ~ span {
  color: #545460;
  font-size: 11px;
}

.customRadio_radio:checked ~ .customRadio_label .checkbox-item, .customRadio_radio:checked ~ .customRadio_label .customRadio_label-cirkle {
  border: 2px solid #f54436;
}

.checkbox-item, .checkbox-item:after {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.checkbox-item {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  display: inline-block;
  margin-right: 5px;
  flex-shrink: 0;
}

.checkbox-item:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 10px;
  background: url(../img/Approved.svg) center no-repeat;
  background-size: 100% 100%;
  border-radius: 100%;
}

.customRadio_radio:checked ~ .customRadio_label .checkbox-item:after, .customRadio_radio:checked ~ .customRadio_label .customRadio_label-cirkle:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.what-do-we-do .slick-list {
  overflow: visible !important;
}

.use-art-main .row-art-block {
  flex-wrap: wrap;
}

.use-art-main .row-art-block .block-art {
  width: 49.15%;
  margin: 10px 0;
  padding: 15px;
}

.courzina-page h1 {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ececec;
}

.courzina-page .row__fc_title {
  display: flex;
  justify-content: space-between;
}

.courzina-page .row__fc_title .block_courz:first-child {
  width: 25%;
}

.courzina-page .row__fc_title .block_courz {
  width: 12.5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.courzina-page .row__fc_title .flex-mob-wp1, .courzina-page .row__fc_title .flex-mob-wp2 {
  width: 37.5%;
  display: flex;
}

.courzina-page .row__fc_title .flex-mob-wp1 .block_courz, .courzina-page .row__fc_title .flex-mob-wp2 .block_courz {
  width: 33.33%;
  display: flex;
}

.courzina-page .clear__all {
  border: 0;
  background: 0 0;
  outline: 0;
}

.courzina-page .flex-courz .block_courz .descrip__product {
  font-size: 14px;
  width: 100%;
  font-family: "Montserrat SemiBold";
}

.courzina-page .odd-gray {
  padding: 20px 0;
}

#basket_quantity_control a {
  height: 40px;
  width: 40px;
  position: relative;
}

#basket_quantity_control a:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#basket_quantity_control a.plus:after {
  background: url(../img/+.png) center center no-repeat;
  width: 10px;
  height: 10px;
}

.number, li.more-three-level {
  margin-left: 10px;
}

#basket_quantity_control a.minus:after {
  background: url(../img/-.png) center center no-repeat;
  width: 10px;
  height: 10px;
}

#basket_items .odd-gray:nth-child(odd) {
  background-color: #f5f5f5;
}

.courzina-page .odd-gray p {
  font-size: 14px;
  margin-left: 10px;
}

.courzina-page .odd-gray .block_courz:first-child div {
  min-width: 110px;
  display: flex;
  min-height: 110px;
  justify-content: center;
}

.courzina-page .odd-gray .block_courz:first-child div img {
  width: 100%;
  object-fit: contain;
}

.courzina-page .action__product {
  background: #dd1552;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}

.courzina-page .through__product {
  font-size: 14px;
  color: #b6b6b6;
  text-decoration: line-through;
}

.courzina-page .bc-pr {
  display: flex;
  flex-direction: column;
}

.courzina-page .odd-gray .product__price {
  font-family: "Montserrat Bold";
  color: #dd1552;
  font-size: 16px;
}

.courzina-page .total__product__cost {
  font-family: "Montserrat Bold";
}

.courzina-page .block_courz input {
  padding: 11px;
  text-align: center;
  border: 1px solid #f0f0f0;
  width: 62px;
  font-family: "Montserrat Bold";
  color: #18181b;
  border-radius: 3px;
}

#basket_items {
  border-bottom: 1px solid #f5f5f5;
}

.courzina-page button.clear-product {
  border: 0;
  outline: 0;
  background: 0 0;
}

.courzina-page button.clear-product i:before {
  font-size: 24px;
  color: #8a8684;
}

.courzina-page .row__fc_title:first-child .block_courz:last-child p {
  background: #eee;
  background: 0 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: max-content;
}

.courzina-page .row__fc_title p {
  font-size: 15px;
}

.courzina-page .send__courz__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}

.courzina-page .cupon__scr {
  width: 25%;
}

.courzina-page .cupon__scr input {
  height: 40px;
  width: 100%;
  padding-left: 15px;
  border: 1px solid #e7eaf0;
}

.courzina-page .descript__and__send, .courzina-page .total__count_pr {
  display: flex;
}

.courzina-page .descript__and__send {
  width: 50%;
  justify-content: space-between;
}

.courzina-page .total__count_pr {
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.title-circle + p, .total__count_pr p, .total__price__produ p {
  font-size: 14px;
  color: #656565;
}

.courzina-page .total_price__count {
  font-size: 20px;
  font-family: "Montserrat Bold";
  color: #18181b;
}

.courzina-page .push__courz, .courzina-page .total__price__produ {
  display: flex;
  justify-content: center;
}

.courzina-page .total__price__produ {
  flex-direction: column;
  align-items: flex-start;
}

.courzina-page .push__courz {
  background: #dd1552;
  color: #fff;
  align-items: center;
  border: 0;
  outline: 0;
  text-transform: uppercase;
  padding: 0 70px;
  border-radius: 3px;
}

#col_NAME {
  justify-content: flex-start;
}

#col_NAME p {
  margin-left: 18px;
}

.courzina-page .total__weight__count {
  font-size: 20px;
}

.courzina-page .clear-product:before {
  content: "×";
  font-size: 42px;
  color: #8a8684;
}

.main-title-page {
  width: 95%;
  max-width: 1170px;
  margin: 0 auto 20px;
  font-size: 30px;
  line-height: 1em;
}

section.personal .tabs_menu_personal li {
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Montserrat Bold";
  padding: 20px;
  position: relative;
  white-space: nowrap;
}

section.personal .tabs_menu_personal li.active_personal:after {
  width: 110%;
  background-color: #dd1552;
  height: 5px;
  border-radius: 10px;
  top: calc(100% - 2px);
  left: 50%;
  content: "";
  position: absolute;
  transform: translateX(-50%);
}

section.personal .tabs_menu_personal {
  position: relative;
  padding-bottom: 5px;
}

.underline {
  width: 100%;
  height: 1px;
  background-color: #ebebeb;
  margin-bottom: -5px;
  top: -5px;
  position: relative;
  z-index: -1;
}

section.personal .tabs_personal {
  margin-top: 30px;
}

section.personal .tabs_personal .info_personal {
  display: none;
  width: 100%;
  margin: 0 auto;
}

.info_personal h3 {
  color: #18181b;
}

section.personal .tabs_personal .info_personal.active_personal {
  display: block;
}

section.personal .row-fft1 {
  display: flex;
  justify-content: space-between;
}

section.personal .row-fft1 input {
  height: 50px;
  padding-left: 15px;
  width: 48%;
  border: 1px solid #e4e4e4;
  outline: 0;
  -webkit-box-shadow: inset 0 0 0 50px #fff;
  -webkit-text-fill-color: #000;
}

section.personal .row-fft1 input:nth-child(2), section.personal .row-fft1 input:nth-child(3) {
  color: #000;
}

section.personal .row-fft2 {
  display: flex;
  margin: 20px 0;
}

section.personal .row-fft2 button {
  border-radius: 50px;
  padding: 15px 50px;
  color: #fff;
  outline: 0;
  border: 0;
}

section.personal .row-fft2 button:nth-child(1) {
  background: #dd1552;
}

section.personal .row-fft2 button:nth-child(2) {
  background: silver;
  margin-left: 15px;
}

section.personal .row-fft2 .post-script {
  margin-left: 40px;
  display: flex;
  align-items: center;
}

section.personal .row-fft2 .post-script p {
  margin-left: 10px;
  font-size: 14px;
  color: #aeaeae;
}

section.personal .back-info-gray {
  background: #ebebeb;
  padding: 35px;
}

section.personal .row-info-perso, section.personal form.profile, section.personal form.profile .gflex-column-profile .column-form-profile .block_profile {
  display: flex;
  flex-direction: column;
}

section.personal .row-info-perso:nth-child(odd) {
  background: #f5f5f5;
}

section.personal .row-fb-perso2 {
  width: 95%;
  margin: 0 auto;
  padding: 15px 0;
}

section.personal .row-fb-perso2 button {
  background: 0 0;
  outline: 0;
  border: 0;
  margin-right: 40px;
}

section.personal .row-fb-perso2 button i {
  color: #8a8684;
  width: 10px;
}

section.personal .row-fb-perso2 button .fa-angle-down:before {
  content: "\f107";
  left: 7px;
  position: absolute;
  top: -8px;
  font-size: 16px;
}

section.personal .row-fb-perso2 button .fa-repeat:before, section.personal .row-fb-perso2 button .fa-rotate-right:before {
  content: "\f01e";
  left: -7px;
  position: relative;
  top: -1px;
}

a.row-fb-perso2-detail-button, section.personal .row-fb-perso, section.personal .row-fb-perso2, section.personal .row-fb-perso2 button {
  display: flex;
  align-items: center;
}

section.personal .row-fb-perso {
  justify-content: space-between;
  padding: 20px 0;
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid #e0e0e0;
}

section.personal .row-fb-perso p {
  text-align: left;
  width: 100%;
}

section.personal .row-fb-perso .plash-ip {
  height: 20px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 15px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

section.personal .row-fb-perso .plash_orange {
  background: #e48436;
}

section.personal .row-fb-perso .plash_green {
  background: #1dae32;
}

section.personal .row-fb-perso .plash_fiol {
  background: #c136e4;
}

section.personal .row-fb-perso .block-ip1 {
  width: 25%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

section.personal .row-fb-perso .block-ip1 p:nth-child(1) {
  margin-top: 5px;
  font-size: 14px;
}

section.personal .row-fb-perso .block-ip1 p:nth-child(2) {
  font-family: "Montserrat Bold";
  margin-top: 5px;
  font-size: 15px;
}

section.personal .row-fb-perso .block-ip2 {
  width: 10%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

section.personal .row-fb-perso .block-ip2 p:nth-child(1) {
  font-size: 14px;
  font-family: "Montserrat Bold";
}

section.personal .row-fb-perso .block-ip2 p:nth-child(2) {
  font-size: 15px;
  margin-top: 5px;
  color: #656565;
}

section.personal .row-fb-perso .block-ip3, section.personal .row-fb-perso .block-ip4 {
  width: 20%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

section.personal .row-fb-perso .block-ip3 p:nth-child(1) {
  font-size: 14px;
  font-family: "Montserrat Bold";
}

section.personal .row-fb-perso .block-ip3 p:nth-child(2) {
  font-size: 15px;
  margin-top: 5px;
  color: #656565;
}

section.personal .row-fb-perso .block-ip4 p:nth-child(1) {
  font-size: 14px;
  font-family: "Montserrat Bold";
}

section.personal .row-fb-perso .block-ip4 p:nth-child(2) {
  font-size: 15px;
  margin-top: 5px;
  color: #656565;
}

section.personal .row-fb-perso .block-ip5 {
  width: 15%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

section.personal .row-fb-perso .block-ip5 p:nth-child(1) {
  font-size: 14px;
  font-family: "Montserrat Bold";
}

section.personal .row-fb-perso .block-ip5 p:nth-child(2) {
  font-size: 15px;
  margin-top: 5px;
  color: #656565;
}

section.personal .row-fb-perso .block-ip5 button {
  outline: 0;
  border: 0;
  width: 130px;
  height: 50px;
  font-family: "Montserrat Bold";
  text-transform: uppercase;
}

section.personal .row-fb-perso .block-ip5 .ok-tranz {
  color: #000;
  background: #e0e0e0;
}

section.personal .row-fb-perso .block-ip5 .no-tranz {
  color: #fff;
  background: #dd1552;
}

section.personal form.profile .gflex-column-profile {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

section.personal form.profile .gflex-column-profile .column-form-profile {
  display: flex;
  width: 49%;
  flex-direction: column;
}

section.personal form.profile .gflex-column-profile .column-form-profile input {
  height: 45px;
  padding-left: 15px;
  border: 1px solid #e7eaf0;
  border-radius: 4px;
}

.column-form-profile input:not(:first-child) {
  margin-top: 10px;
}

section.personal form.profile .gflex-column-profile h3 {
  font-size: 22px;
  font-family: "Montserrat Bold";
  color: #000;
  margin: 20px 0 8px;
}

section.personal form.profile .flex-end-class {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

section.personal form.profile .flex-end-class button {
  background: 0 0;
  outline: 0;
  border: 0;
  padding: 16px 32px;
  border-radius: 4px;
}

section.personal form.profile .flex-end-class button:nth-child(1) {
  background: #e0e0e0;
  text-transform: uppercase;
  color: #000;
  font-family: "Montserrat Bold";
  margin-right: 15px;
}

section.personal form.profile .flex-end-class button:nth-child(2) {
  background: #dd1552;
  text-transform: uppercase;
  color: #fff;
  font-family: "Montserrat Bold";
}

section.personal .profile-row-zakaz .blockk_zakaz {
  display: flex;
}

section.personal .profile-row-zakaz .blockk_zakaz p:nth-child(2) {
  margin-top: 10px;
  font-family: "Montserrat Bold";
}

.title-circle {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.5em;
}

section.personal .profile-row-zakaz .bz-no-before .circle-gray {
  margin-top: 50px;
}

section.personal .profile-row-zakaz .bz-no-before .circle-gray:after, section.personal .profile-row-zakaz .bz-no-before .circle-gray:before {
  content: "";
  width: 0;
}

section.personal .circle-gray, section.personal .circle-gray:after, section.personal .circle-gray:before {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.personal .circle-gray {
  background: #ececec;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  position: relative;
}

section.personal .circle-gray svg {
  width: 35px;
  height: 45px;
}

section.personal .circle-gray:after, section.personal .circle-gray:before {
  position: absolute;
  right: 0;
  pointer-events: none;
}

section.personal .circle-gray:before {
  content: url(../img/pencil-edit-button.svg);
  z-index: 9;
  left: 87px;
  top: 11px;
}

section.personal .circle-gray:after {
  content: "";
  width: 40px;
  height: 40px;
  background: #dd1552;
  color: #fff;
  border-radius: 50%;
  top: 0;
}

.open ul, section.personal .tabs_personal .personal-catalog {
  width: 100%;
}

section.personal .tabs_personal .personal-catalog .container {
  display: flex;
  flex-wrap: wrap;
}

section.personal .tabs_personal .personal-catalog .container .card {
  width: 20%;
}

.sale-personal-profile-list-close-button {
  align-self: flex-end;
}

.nav-widgets {
  height: 100%;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  position: relative;
  margin-left: auto;
}

.nav-widgets-list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 38px 0 20px;
}

.nav-widgets-wrap {
  height: 100%;
}

.nav-widgets_item {
  position: relative;
  height: 19px;
  cursor: pointer;
}

.nav-widgets_item--lang {
  width: 27px;
  border: 1px solid #e8e8e8;
}

.nav-widgets_item--currency {
  width: 29px;
}

.nav-widgets_item--lang[data-id=BY] {
  background: url(../img/belarus.svg) center center no-repeat;
  background-size: cover;
}

.nav-widgets_item--lang[data-id=RU] {
  background: url(../img/russia.svg) center center no-repeat;
  background-size: cover;
}

.nav-widgets_item--lang[data-id=EN] {
  background: url(../img/english.svg) center center no-repeat;
  background-size: cover;
}

.nav-widgets-more {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 2;
  width: 250px;
  padding: 22px 17px 18px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
}

.nav-widgets-more .course_edit_section_row:not(:first-child) {
  margin-top: 15px;
}

@media (max-width: 1170px) {
  .catalog, .fancy-img img, .product-page {
    width: 100%;
  }
  .use-more {
    width: 90%;
  }
  .use-more .ru1 {
    width: 60%;
  }
  .popular-brand {
    width: 100%;
    margin: 40px auto;
  }
  .use-art-main .row-art-block .block-art {
    width: 50%;
  }
  .flex-el-tab-js {
    flex-direction: column;
  }
}
@media (min-width: 1170px) {
  .more-cat .popular-brand {
    max-width: 1170px;
    margin: 100px auto 90px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    z-index: -1;
  }
  .more-cat footer {
    margin-top: 430px;
  }
}
@media (max-width: 769px) {
  .nav-widgets {
    height: 100%;
    border: 0;
    background-color: unset;
    margin-left: 0;
  }
  .nav-widgets-more {
    top: unset;
    left: unset;
    padding: 22px 17px 18px !important;
    overflow: unset !important;
  }
  .nav-widgets_item--currency {
    margin-left: 6px;
    width: auto;
  }
  .nav-widgets-more .course_edit_section_row {
    flex-direction: unset;
  }
  .nav-widgets_item--lang {
    width: 20px;
    height: 15px;
  }
  .nav-widgets .filter-inputs_item_ico--toggler, .nav-widgets_item--currency:before {
    display: none;
  }
  .nav-widgets_item--currency:after {
    font-size: 12px;
  }
  .nav-widgets-list {
    padding: 0;
  }
  .nav-widgets_item {
    color: #fff;
    margin-bottom: 2px;
  }
  .courzina-page .odd-gray {
    padding: 10px 0 0;
  }
  .catalog .container .card .brd .buy_it img {
    width: auto;
  }
  .ru1 .main-div .dashed .rules-dost {
    margin-top: 60px;
  }
  .main-title-page {
    margin: 0 auto 10px;
    font-size: 20px;
    width: 90%;
  }
  .dostavka .panel-collapse {
    padding-bottom: 0;
  }
  .dashed .panel:nth-child(7) {
    margin-top: -30px;
  }
  .dashed p.two-thr:nth-child(5) {
    margin-top: 10px;
  }
  .dashed .panel:nth-child(3) .panel-heading {
    top: 30px;
  }
  .use-more .main-div {
    margin-top: 0;
  }
  .ru1 .usefull-art {
    width: 100%;
    font-size: 18px;
  }
  section.dostavka .in, section.dostavka .panel-heading {
    right: unset;
    top: unset;
  }
  .ru2 h2 {
    margin: 20px auto 5px;
  }
  section.dostavka .dashed h2 {
    margin: 15px 0 5px;
  }
  .ru2 h2, section.dostavka .ru1 {
    width: 100%;
  }
  section.dostavka .ru1 .panel-collapse {
    margin-top: 45px;
  }
  section.dostavka .two-thr {
    margin: 45px 0 15px;
    font-size: 18px;
  }
  .courzina-page {
    width: 90%;
  }
  .through__product {
    display: none;
  }
  .descrip__product {
    margin-left: 30px;
  }
  .courzina-page .odd-gray .block_courz:first-child div {
    max-width: 50px;
    width: 100%;
    height: 50px;
    padding: 0;
    min-width: auto;
    max-height: 50px;
    min-height: unset;
  }
  .courzina-page .odd-gray .block_courz:first-child div img {
    object-fit: contain;
    width: 100%;
  }
  .send__courz__row {
    flex-wrap: wrap;
  }
  .send__courz__row .cupon__scr {
    width: 100%;
    margin: 10px 0 20px;
  }
  .send__courz__row .descript__and__send {
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
  }
  .send__courz__row .descript__and__send .total__count_pr {
    width: 50%;
  }
  .send__courz__row .descript__and__send .total__weight__count {
    color: #656565;
    font-family: "Montserrat Bold";
  }
  .send__courz__row .descript__and__send .total__price__produ {
    width: 50%;
  }
  .send__courz__row .descript__and__send .push__courz {
    width: 100%;
    margin: 20px 0;
    padding: 0 70px;
    height: 50px;
    font-family: "Montserrat Bold";
  }
  .flex-courz .row__fc_title:first-child {
    display: none;
  }
  .flex-courz .row__fc_title .block_courz {
    align-items: flex-start;
  }
  .flex-courz .row__fc_title .block_courz:first-child {
    width: 90%;
    margin: 0 auto;
  }
  .flex-courz .row__fc_title .flex-mob-wp1 {
    width: max-content;
    margin: 0 auto;
    justify-content: flex-end;
    padding-bottom: 15px;
  }
  .all-des .stars-rat div, .flex-courz .row__fc_title .flex-mob-wp1, .flex-courz .row__fc_title .flex-mob-wp1 .block_courz, .flex-courz .row__fc_title .flex-mob-wp2 .block_courz {
    align-items: center;
  }
  .flex-courz .row__fc_title .flex-mob-wp1 .block_courz:first-child {
    width: max-content;
  }
  .flex-courz .row__fc_title .flex-mob-wp1 .block_courz:nth-child(2), .flex-courz .row__fc_title .flex-mob-wp1 .block_courz:nth-child(3) {
    width: max-content;
  }
  .flex-courz .row__fc_title .flex-mob-wp1 .block_courz:nth-child(2):before {
    content: "/";
    color: #9b9896;
    position: relative;
    left: 5px;
  }
  .flex-courz .row__fc_title .flex-mob-wp1 .block_courz:nth-child(2):after {
    content: "/";
    color: #9b9896;
    position: relative;
    right: -5px;
  }
  .flex-courz .row__fc_title .flex-mob-wp1 p {
    color: #9b9896;
    font-size: 13px;
  }
  .flex-courz .row__fc_title .flex-mob-wp2 {
    width: 90%;
    margin: 0 auto;
    padding-top: 10px;
    border-top: 1px solid #e9e9e9;
    align-items: center;
  }
  .flex-courz .row__fc_title .flex-mob-wp2 .block_courz:nth-child(2) {
    width: 55%;
  }
  .courzina-page .flex-courz .odd-gray {
    background: #f5f5f5;
    margin: 0 0 10px;
  }
  .courzina-page .action__product {
    background: 0 0;
  }
  .courzina-page .row__fc_title {
    flex-wrap: wrap;
  }
  .contacts-page h1 {
    margin: 0 auto 40px;
    width: 95%;
  }
  .contacts-page-block {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .block_cpb {
    margin: 20px 0;
  }
  .use-art-main .row-art-block .block-art {
    margin: 10px 0;
    width: 100%;
    align-items: center;
  }
  .product-page .row-rsi, .row-art-block {
    flex-direction: column;
  }
  .buy_it img {
    width: auto;
  }
  .product-page .row-rsi {
    align-items: flex-start;
  }
  .push-review {
    margin: 40px auto 0;
  }
  .total-review a {
    margin-left: 0;
  }
  .catalog .container .card {
    width: 50%;
  }
  .catalog, .stars-rat {
    flex-direction: column;
  }
  .wdwd-catalog {
    width: 90%;
    margin: 0 auto;
  }
  .product-page .all-des, .product-page .slider-prod, .title-catalog, .total-price div {
    width: 100%;
  }
  .title-catalog h1 {
    font-size: 20px;
    width: 90%;
    margin: 20px auto 0;
  }
  .filtr-right {
    display: none;
  }
  .catalog aside .f-block-aside, .catalog aside .s-block-aside {
    width: 90%;
    margin: 0 auto 20px;
  }
  .product-page, .total-price, section.personal form.profile .gflex-column-profile {
    flex-direction: column;
  }
  .product-page {
    width: 90%;
    margin: 0 auto;
  }
  .product-page .tab-header__item {
    font-size: 15px;
    padding: 10px 0;
  }
  .product-page .numb-row .number input {
    padding: 10px 0;
  }
  .product-page .numb-row .block-courz:before {
    content: url(../img/courz.png);
    position: absolute;
    left: 15px;
  }
  .all-des, .all-des .stars-rat {
    display: flex;
  }
  .all-des {
    flex-direction: column;
  }
  .all-des .stars-rat {
    order: 2;
    flex-direction: row;
  }
  .all-des h1 {
    order: 1;
  }
  .all-des .cost-prod {
    order: 3;
  }
  .all-des .numb-row {
    order: 4;
  }
  .all-des .color-paint, .all-des .title-main-charact {
    order: 7;
  }
  .all-des .line-row-q {
    order: 8;
  }
  .all-des .tabs-prod {
    order: 9;
  }
  .product-page .total-review a {
    margin-left: 15px;
  }
  .product-page .cost-prod {
    align-items: center;
    margin-top: 20px;
  }
  .use-more {
    width: 90%;
  }
  .fancy-img img, .use-more .row-um, section.personal .profile-row-zakaz .blockk_zakaz, section.personal .tabs_personal .personal-catalog .container .card, section.personal form.profile .gflex-column-profile .column-form-profile {
    width: 100%;
  }
  .use-more, section.personal .profile-row-zakaz {
    flex-direction: column;
  }
  section.personal .row-fb-perso .block-ip3 p:nth-child(2) {
    margin-top: 0;
  }
  section.personal .tabs_menu_personal {
    display: flex;
    overflow-y: scroll;
  }
  section.personal .tabs_menu_personal::-webkit-scrollbar {
    display: none;
  }
  section.personal .row-fft1 {
    flex-direction: column;
  }
  section.personal .row-fft1 input {
    width: 100%;
    margin: 10px 0;
  }
  section.personal .row-fft2 {
    flex-wrap: wrap;
  }
  section.personal .row-fft2 .post-script {
    margin-left: 0;
    margin-bottom: 15px;
  }
  section.personal .row-fft2 button {
    padding: 15px 35px;
  }
  section.personal .row-fft2 button:nth-child(1) {
    order: 2;
  }
  section.personal .row-fft2 button:nth-child(2) {
    order: 3;
  }
  section.personal .row-fft2 button:nth-child(3) {
    order: 1;
  }
  section.personal .row-info-perso {
    background: #f5f5f5;
    margin: 10px 0;
    padding: 10px 0;
  }
  section.personal .row-fb-perso {
    flex-direction: column;
    position: relative;
    width: 90%;
  }
  section.personal .row-fb-perso .block-ip1 {
    width: 100%;
  }
  section.personal .row-fb-perso .block-ip2, section.personal .row-fb-perso .block-ip3, section.personal .row-fb-perso .block-ip4, section.personal .row-fb-perso .block-ip5 {
    width: 100%;
    flex-direction: row;
  }
  section.personal .row-fb-perso .block-ip2 {
    position: absolute;
    top: 10px;
  }
  section.personal .row-fb-perso .block-ip5 button {
    width: 100%;
    margin-top: 20px;
  }
  section.personal .row-fb-perso .block-ip1 {
    flex-direction: column;
    margin: 25px 0 15px;
  }
  section.personal .row-fb-perso .block-ip3, section.personal .row-fb-perso .block-ip4 {
    margin: 5px 0 0;
  }
  section.personal .row-fb-perso2 {
    flex-wrap: wrap;
    width: 90%;
    -webkit-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
  }
  section.personal .row-fb-perso2 button {
    margin-right: 0;
  }
  section.personal .row-fb-perso2 button:nth-child(1) {
    order: 1;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
  }
}
@media (max-width: 480px) {
  .slider-container__tab-item {
    border: 0;
  }
  .slider-container__tab-item p {
    font-family: "Montserrat Bold";
  }
  section.personal .tabs_menu_personal li {
    font-size: 13px;
    padding: 13px;
    text-align: center;
  }
  .tabs_menu_personal {
    padding: 0 5px;
    margin: 0;
  }
  section.personal .tabs_personal {
    margin-top: 20px;
  }
}
@media (max-width: 425px) {
  .slider-container__tab-list .slider-container__tab-item:nth-child(2) {
    margin: 0;
  }
  .slider-container__tab-list .slider-container__tab-item:not(:first-child) {
    padding: 0 18px;
  }
}
@media (max-width: 395px) {
  .slider-container__tab-list .slider-container__tab-item:not(:first-child) {
    padding: 0 14px;
  }
  .slider-container__tab-list .slider-container__tab-item p {
    white-space: nowrap;
  }
  section.personal .tabs_menu_personal li {
    font-size: 13px;
    padding: 13px;
  }
  .catalog-sort__study {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .catalog-sort__study .catalog-sort_item {
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  section.personal .tabs_menu_personal li {
    font-size: 14px;
    padding: 16px;
  }
}
@media (max-width: 320px) {
  section.personal .tabs_menu_personal li {
    font-size: 12px;
    padding: 13px;
  }
  .catalog-sort__study .catalog-sort_item {
    font-size: 11px;
  }
}
.catalog aside .f-block-aside .tags-aside li:hover {
  border: 1px solid #dd1552;
}

.brd {
  min-height: 401px;
}

.catalog .pagi-long ul li:hover, .hover-product .numb-row .block-courz, .pagi-long .bx-active {
  border-radius: 3px;
}

.filtr-right .price {
  position: relative;
}

.filtr-right .price:before {
  content: "🞃";
  position: absolute;
  font-size: 13px;
  right: -20px;
  top: -1px;
}

.card .remember-me, .hover-product hr {
  display: none;
}

.hover-product {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hover-product .numb-row {
  margin: 10px auto;
}

.colu-up-f:nth-child(1) {
  width: 25%;
}

.colu-up-f:nth-child(2) {
  width: 20%;
}

.colu-up-f:nth-child(3) {
  width: 30%;
}

.colu-up-f:nth-child(4) {
  width: 27%;
}

.phone-foot div .viber {
  position: relative;
  left: 17px;
  z-index: 3;
}

.phone-foot div .whats {
  position: relative;
  left: -2px;
  top: 2px;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.owl-next, .owl-prev {
  position: absolute;
  width: 40px !important;
  height: 40px !important;
  background-color: #e5e5e5 !important;
  border-radius: 40px !important;
  top: 50%;
  transform: translateY(-50%);
}

.owl-next {
  right: -75px !important;
}

.owl-prev {
  left: -75px !important;
}

.product-preview .owl-prev {
  left: 20px !important;
}

.product-preview .owl-next {
  right: 20px !important;
}

.slick-slide {
  height: unset;
}

.owl-nav span {
  width: 14px;
  height: 10px;
  background: url(../img/arrow_svg.svg) center center no-repeat;
  background-size: 100%;
}

.owl-nav button:hover span, .slick-next:hover:before, .slick-prev:hover:before {
  background: url(../img/right_svg_white.svg) center center no-repeat;
  background-size: 100%;
}

.owl-next:hover, .owl-prev:hover, .slick-next:hover, .slick-prev:hover {
  background: #dd1552 !important;
}

.slick-next:hover:before, .slick-prev:hover:before {
  color: #fff;
}

.owl-next:hover span, .owl-prev:hover span {
  color: #fff !important;
}

.owl-nav button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}

.item-pop {
  border: 1px solid #f2f0f0;
}

.item-pop img {
  width: auto !important;
  height: 100%;
  margin: 0 auto;
}

.slider-container__tab-item p {
  font-size: 15px;
  border-bottom: 1px dashed #ccc;
  color: #18181b;
  font-family: "Montserrat Bold";
}

.slider-container__tab-item.active {
  border-radius: 315px;
  z-index: 2;
}

.product-item-detail-slider-images-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-item-container .plaha-hit {
  left: 15px;
}

.card:first-child .brd {
  border-left: 1px solid #ececec;
}

.row-art-block .descr-art {
  line-height: 1.5;
  margin-top: -10px;
}

footer .mal-href a:hover {
  border-bottom: 1px solid rgb(210, 23, 81);
  color: #d21751;
}

.cont-footer .row-foot:first-child {
  border-bottom: 1px solid rgba(255, 253, 253, 0.1);
}

.cont-footer .row-foot:last-child {
  margin-top: 5px;
}

.average-assessment {
  margin: 0 0 3px;
}

.col-bottom-f:nth-child(2) select {
  border-radius: 2px;
}

.use-more .panel-heading a::after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  transition: 0.3s;
  transform: rotate(-90deg);
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 3px;
  border-radius: 50%;
  border: 2px solid #dd1552;
  color: #dd1552;
  font-size: 16px;
}

.use-more .panel .in a, section.dostavka .panel-heading a {
  font-size: 18px;
}

section.dostavka .table-door {
  margin-top: 25px;
}

.descr-vozv p {
  line-height: 1.667;
}

.date-art {
  width: max-content;
}

.date-art, .date-art p {
  display: flex;
  align-items: center;
}

.date-art p span {
  margin-left: 5px;
}

.date-art p:last-child {
  margin-left: 10px;
}

.true_sklad {
  margin-left: 23px;
}

.catalog aside .f-block-aside .tags-aside {
  margin: 7px auto;
}

.catalog aside .f-block-aside .tags-aside li {
  padding: 3px 6px;
  border-radius: 2px;
}

.product-page .tab-header__item {
  text-transform: uppercase;
  font-family: "Montserrat SemiBold";
}

.product-page .tabs-prod {
  margin-top: 35px;
}

.product-page .numb-row .block-courz {
  padding-left: 20px;
  border-radius: 3px;
}

.product-page .numb-row .block-courz:before {
  content: url(../img/courz.png);
  position: absolute;
  left: 50px;
}

.product-page .numb-row {
  pading-bottom: 25px;
}

.product-page .line-row-q .quadr-line {
  margin: 5px 6px 0 0;
}

.brd {
  border: 0;
  outline: 1px solid #ececec;
}

.seo-txt-cat {
  margin-top: 50px;
}

.hover-product .line-row-q .notallowed:before, .line-row-q .notallowed:before {
  left: 0 !important;
  top: -1.5px !important;
}

.fa-search:before {
  content: url(../img/glass-ti.png) !important;
}

header nav ul:nth-child(2) li a {
  margin-left: 15px;
  font-size: 15px;
}

.hover-product .line-row-q .quadr-line {
  margin: 5px 6px 0 0;
  border-radius: 3px !important;
}

.bx-catalog-subscribe-button span {
  width: 88%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  border-radius: 3px;
  align-items: center;
  background: #dd1552;
  color: #fff;
}

.col-bottom-f:nth-child(2) {
  width: 27%;
}

.blockk_zakaz.bz-before .sale-personal-profile-list-change-button {
  top: 30%;
}

header nav ul li.active a {
  color: #dd1552;
  border-bottom: 1px solid #dd1552;
  color: rgba(221, 21, 82, 0.6);
}

.more-proposal:hover {
  background: #000;
  color: #fff;
  cursor: pointer;
  border: 2px solid #000;
}

.description-card {
  min-height: 50px;
}

.no-reviews {
  color: #949494;
  margin-left: 0;
  border-bottom: 1px solid #949494;
}

.seo-txt-cat h2 {
  margin: 25px 0;
}

li.product-item-scu-item-text-container.quadr-line.notallowed {
  text-decoration: line-through;
  color: #e1e1e3;
  background: #f8f8f8;
  -webkit-box-shadow: 0 0 0 1px #dfdfdf;
  -moz-box-shadow: 0 0 0 1px #dfdfdf;
  box-shadow: 0 0 0 1px #dfdfdf;
}

.card .hover-product .line-row-q .notallowed:before {
  content: "";
}

.card .hover-product .line-row-q .notallowed:after {
  content: "";
  background: 0 0;
}

.line-row-q .notallowed:after {
  background: 0 0;
}

.product-item-detail-info-section .hover-product .line-row-q .notallowed:before, .product-item-detail-info-section .line-row-q .notallowed:before {
  content: "";
}

.product-item-detail-info-section .hover-product .line-row-q .notallowed:after, .product-item-detail-info-section .line-row-q .notallowed:after {
  content: "";
  background: 0 0;
}

.product-page .line-row-q .quadr-line {
  border-radius: 3px;
}

.hover-product .line-row-q .quadr-line {
  -webkit-box-shadow: 0 0 0 1px #949494;
  -moz-box-shadow: 0 0 0 1px #949494;
  box-shadow: 0 0 0 1px #949494;
}

.card .hover-product .line-row-q .notallowed {
  width: auto;
}

section.personal .profile-row-zakaz .blockk_zakaz {
  min-height: 256px;
}

section.personal .profile-row-zakaz .blockk_zakaz:not(:first-child) {
  left: 1px;
}

.btn.disabled span {
  background: #828187;
  color: #fff;
}

.product-item-detail-info-section .product-item-detail-info-container .line-row-q .notallowed {
  min-width: 25px;
  width: auto;
}

.profile-row-zakaz .blockk_zakaz.bz-before .sale-personal-profile-list-change-button {
  display: flex;
  position: absolute;
  top: 0;
}

.main-block-sale-sl.slick-initialized.slick-slider .hover-product .numb-row .number input {
  padding: 10px;
}

.stars-rat {
  justify-content: space-between;
}

.container .hover-product .line-row-q .quadr-line.selected {
  -webkit-box-shadow: 0 0 0 1.5px #525252;
  -moz-box-shadow: 0 0 0 1.5px #525252;
  box-shadow: 0 0 0 1.5px #525252;
}

.order-list-button {
  font-size: 14px;
  color: #656565;
  display: flex;
  align-items: center;
}

.order-list-button.active img {
  transform: scaleY(-1);
}

.order-list-button img {
  margin: 0 5px;
  transition: all 0.3s;
}

.order-list-button:not(:first-child) {
  margin-left: 50px;
}

@media (max-width: 767px) {
  .owl-nav {
    width: 100vw;
  }
  .colu-up-f:nth-child(4) {
    width: 100%;
  }
  .item-pop img {
    width: auto;
    height: 100%;
    margin: 0 auto;
  }
  body section.personal .profile-row-zakaz .blockk_zakaz {
    margin: 10px 0;
    text-align: center;
    width: 100%;
    position: static;
  }
  body section.personal .profile-row-zakaz {
    flex-direction: column;
    display: flex;
    position: static;
  }
  .col-bottom-f:nth-child(2) {
    width: auto;
  }
  section.what-do-we-do.wdwd-catalog .brd {
    min-height: 585px;
  }
  section.what-do-we-do.wdwd-catalog .description-card {
    min-height: 100px;
  }
  .product-item-price-container.total-price {
    position: relative;
  }
  .total-price .old-price {
    position: absolute;
    bottom: 0;
  }
  .product-page .numb-row .block-courz {
    width: 170px;
  }
  .product-page .numb-row .block-courz:before {
    content: url(../img/courz.png);
    position: absolute;
    left: 20px;
  }
  .product-page .block-rlt {
    justify-content: space-between;
  }
  .steps-item__text {
    width: 60%;
  }
}
.catalog-cards2 {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 100%;
}

.catalog-next-page {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.section-tags-item_text_more-list_item a {
  font-family: "Montserrat SemiBold";
  color: #7e7e80;
  cursor: pointer;
  transition: all 0.2s;
}

.section-tags-item_text_more-list_item:hover a {
  color: #dd1552;
  transition: all 0.2s;
}

.product-preview-slide:not(.active) {
  display: none;
}

.product-preview-slide.active {
  display: block;
}

.body_admin_class #panel {
  position: relative;
  width: 100%;
  z-index: 10000;
  margin-bottom: 0;
}

.body_admin_class #menu {
  top: 244px;
}

.main-slider-img {
  height: 214px;
  margin: 0 auto;
}

.buy_it a {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.025em;
  font-family: "Montserrat Bold";
  padding: 3px 0;
}

.buy_it a, .buy_it:hover a {
  color: #fff;
  cursor: pointer;
}

.product-item-image-wrapper div {
  width: 100%;
  height: 214px;
  text-align: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.product-main-conteiner {
  display: flex;
}

.catalog-pagination a.bx-active {
  background-color: #dd1552;
  color: #fff;
  transition: all 0.2s;
}

.catalog-pagination a.bx-active span {
  color: #fff;
}

.hover-product .numb-row .number input {
  background: #fff;
  padding: 10px;
  border: 0;
  text-align: center;
  width: 43.66%;
  display: inline-block;
  border-radius: 3px;
  font-family: "Montserrat Regular";
  font-family: "Montserrat Bold";
  color: #18181b;
}

.hover-product .line-row-q .quadr-line {
  width: auto;
  padding: 2px 3px;
  min-height: 25px;
  line-height: 15px;
  font-size: 15px;
  min-width: 25px;
}

.true_sklad .no-avail {
  color: #dd1552;
  margin-left: 0;
}

.true_sklad .no-avail:before {
  content: "";
}

.catalog aside .f-block-aside .tags-aside li.actived, .info_personal .bx-active, .pagi-long .bx-active {
  background: #dd1552;
  color: #fff;
}

.total-review {
  font-size: 14px;
}

.hover-product p, .product-item-detail-info-container .block-courz {
  text-transform: uppercase;
}

.personal-catalog .pagi-long {
  display: block;
  width: 100%;
  margin: 20px auto;
  text-align: center;
}

.bx-filter-param-label.disabled {
  opacity: 0.3;
}

.filter-section-body.active {
  display: block;
}

.popup-window-buttons .btn.btn-default {
  outline: 0;
  background-color: #dd1552 !important;
  border-color: #dd1552 !important;
  color: #fff !important;
}

.catalog-filter .filter-section-body:not(.filter-section-body--visible) {
  display: none;
}

.catalog-filter .bx-active .filter-section-body {
  display: flex;
}

#basket_quantity, #basket_quantity_control {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.courzina-page #warning_message {
  padding: 11px 5px;
  color: #dd1552;
}

.courzina-page .clear__all {
  background: #eee;
  border-radius: 50px;
  padding: 13px 15px;
  width: max-content;
}

.courzina-page .clear__all p {
  margin-left: 0;
}

.img-basket-item {
  margin: 0 auto;
}

.card .hover-product {
  z-index: 200;
}

.popup-window-titlebar-text, .popup-window-titlebar-text-version {
  color: #dd1552 !important;
  text-transform: uppercase;
  font-size: 14px !important;
  font-family: "Montserrat Bold" !important;
}

.popup-window-with-titlebar .popup-window-content {
  padding: 20px !important;
  max-width: 400px !important;
}

.product-page .line-row-q .quadr-line {
  width: auto;
  min-width: 25px;
  cursor: pointer;
  padding: 0 6px;
}

.product-page .line-row-q .quadr-line.selected {
  border: 2px solid #000;
}

.product-page .color-paint .quadr {
  border: 2px solid #eee;
}

.product-page .color-paint .notallowed {
  opacity: 0.3;
}

.product-page .color-paint .notallowed:before {
  content: url(../img/cancel.svg) !important;
  position: absolute;
  width: 9px;
  height: 9px;
  z-index: 2;
  display: flex;
  align-items: center;
}

.product-page .color-paint .notallowed:after {
  content: "";
  width: 17px;
  height: 17px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  border-radius: 50%;
  z-index: -1;
}

.popup-inner-tabs .popup-inner-tabs-item {
  display: none;
}

.card.shadow .hover-product, .popup-inner-tabs .popup-inner-tabs-item.navigation-item-wrap--active {
  display: block;
}

.aut-page {
  max-width: 100%;
  margin: 0 auto;
  background: #eee;
  padding: 20px;
}

.popup-window-buttons span {
  background: #dd1552;
  color: #fff;
  padding: 9px 10px;
  cursor: pointer;
  margin-right: 2px;
}

.brd {
  z-index: 30 !important;
}

.hover-product .line-row-q .notallowed, .line-row-q .notallowed {
  width: 25px;
  height: 25px;
  background: #fff;
  margin: 5px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: transparent;
}

.hover-product .line-row-q .notallowed:before, .line-row-q .notallowed:before {
  content: url(../img/cancel.svg);
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(7px, 3px);
  z-index: 2;
}

.hover-product .line-row-q .notallowed:after, .line-row-q .notallowed:after {
  content: "";
  width: 17px;
  height: 17px;
  background: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
  opacity: 1;
  border-radius: 50%;
  z-index: 0;
}

.product-item-detail-info-container .line-row-q .notallowed {
  width: 25px;
}

.catalog aside .f-block-aside .tags-aside li.actived a, .filter-body_item:hover a, .mobile-nav-drop-row-slide-sub-subslide_item a, .mobile-nav-drop-row-slide-sub-trigger a {
  color: #fff;
}

.popular-brand {
  position: relative;
  z-index: 0;
}

.search-form {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 30px auto;
}

.search-form input[name=q] {
  font-size: 16px;
  line-height: 17px;
  border-right: none;
  width: 100%;
  display: inline-block;
  padding-right: 40px;
}

.search-form input {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10.5px 20px;
  background: 0 0;
  display: inline-block;
  border: 1px solid #ebebeb;
  border-radius: 3px 0 0 3px;
}

.search-form input[type=submit] {
  border-left: none;
  height: 42px;
  cursor: pointer;
  background-color: #dc1b53;
  z-index: 3;
  border: 1px solid #dc1b53;
  font-size: 16px;
  padding: 0 60px;
  color: #ffffff;
  border-radius: 0;
}

.search-section .product {
  width: 20%;
}

.popup-window-content img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  padding: 10px;
}

.product-page .numb-row .number .minus, .product-page .numb-row .number .plus {
  cursor: pointer;
}

.product-page .numb-row .number .minus.product-item-amount-field-btn-disabled, .product-page .numb-row .number .plus.product-item-amount-field-btn-disabled {
  opacity: 0.1;
  cursor: default;
}

.product-page .numb-row .block-courz.bx-catalog-subscribe-button {
  margin-top: 0;
  margin-bottom: 0;
}

.preload-img-detail {
  background: #fff;
  opacity: 0.2;
}

.product-page .numb-row .block-courz.bx-catalog-subscribe-button:before {
  background: 0 0;
  content: " ";
}

.product-item-detail-slider-image {
  text-align: center;
}

.product-item-detail-slider-image img {
  width: 100%;
  object-fit: contain;
}

.error-block {
  color: #dd1552;
  font-size: 12px;
}

.form-auth-block {
  max-width: 500px;
  margin: 0 auto;
}

.col-bottom-f a, .col-bottom-f p {
  color: #9797a9 !important;
}

.filtr .accordion-menu-f li.open .dropdownlink-f .fa-chevron-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filtr .accordion-menu-f li.bx-active {
  border-bottom: 1px solid #b6b6b6;
  padding-bottom: 20px;
}

.bx-active ul {
  width: 90%;
  margin: 0 auto;
}

.block-courz-basket, .bx-active .si-flex-inp {
  justify-content: center;
}

.bx-active .si-flex-inp {
  display: flex !important;
  transition: 0.5s ease;
  padding: 0 0 20px;
  flex-direction: row !important;
}

.bx-active .si-flex-inp input {
  width: 50%;
  max-width: 100px;
  height: 30px;
  border: 1px solid #ddd;
  padding-left: 10px;
}

.bx-active .dropdownlink-f {
  border: 0;
}

section.personal .row-fb-perso .plash_red {
  background: #dd1552;
}

.bx_my_order_cancel {
  margin-top: 20px;
  font-size: 15px;
  margin-bottom: 20px;
}

.bx_my_order_cancel input[type=submit] {
  background: #dd1552 !important;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #dd1552));
  background: -webkit-linear-gradient(top, #dd1552 0, #dd1552 100%);
  background: -moz-linear-gradient(top, #dd1552 0, #dd1552 100%);
  background: -ms-linear-gradient(top, #dd1552 0%, #dd1552 100%);
  background: -o-linear-gradient(top, #dd1552 0, #dd1552 100%);
  background: linear-gradient(to bottom, #dd1552 0, #dd1552 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dd1552", endColorstr="#dd1552", GradientType=0);
  color: #fff !important;
  text-shadow: aqua;
  font-size: smaller;
  cursor: pointer;
  outline: 0;
  border: 0;
  width: auto;
  height: 50px !important;
  font-family: "Montserrat Bold" !important;
  text-transform: uppercase !important;
}

.row-fb-perso-detail, .wdwd-catalog.personal-catalog .container > div[id*=comp_], section.personal .profile-row-zakaz {
  display: flex;
}

.row-fb-perso-detail {
  justify-content: space-between;
  padding: 20px 0;
  width: 95%;
  margin: 0 auto;
  align-items: center;
}

.row-fb-perso2-detail {
  display: none;
  background: #fff;
  border: 1px solid #ebebeb;
}

.row-fb-perso-detail .block-ip1 {
  text-align: center;
  width: 5%;
}

.row-fb-perso-detail .block-ip2 {
  width: 25%;
  text-align: left;
}

.row-fb-perso-detail .block-ip3, .row-fb-perso-detail .block-ip4, .row-fb-perso-detail .block-ip5, .row-fb-perso-detail .block-ip6 {
  width: 10%;
  text-align: center;
}

section.personal .profile-row-zakaz {
  width: 100%;
}

section.personal .profile-row-zakaz .blockk_zakaz {
  width: 24.7%;
  outline: #ececec solid 1px;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px 30px;
  vertical-align: top;
  position: relative;
}

.profile-form-conteiner, .title-search-result a img {
  display: none;
}

.blockk_zakaz.bz-before .title-circle {
  margin-top: 10px;
  font-family: "Montserrat Bold";
  text-align: center;
}

.add-new-profile-user {
  cursor: pointer;
}

section.personal .profile-row-zakaz .bz-before:before {
  content: "";
  font-size: 42px;
  color: #8a8684;
  position: relative;
  right: 0;
  top: 0;
}

.blockk_zakaz.bz-before .sale-personal-profile-list-close-button:before {
  content: "×";
  font-size: 42px;
  color: #8a8684;
  position: relative;
  right: 0;
  top: 0;
}

.blockk_zakaz.bz-before .sale-personal-profile-list-change-button {
  display: flow-root;
  width: 100%;
  text-align: center;
  height: 125px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  position: relative;
}

.api-field.api_field_error, textarea.error {
  border: 1px solid #dd1552;
}

.RATING_BLOCK_ANS {
  display: none;
  padding: 10px;
  color: green;
}

.product-item-scu-item-text-container {
  cursor: pointer;
  display: inline-block;
}

.true_sklad .not-available {
  color: #dd1552;
}

.true_sklad .not-available:before {
  content: url(../img/checked-no-avail.png);
  position: absolute;
  left: -20px;
}

.product-offer__buy__conteiner {
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1em;
  color: #fff;
  font-family: "Montserrat Bold";
  background-color: #dd1552;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  border: 0;
}

.bx-catalog-subscribe-button span {
  padding: 0;
  font-size: 14px;
}

.wdwd-catalog.personal-catalog .container > div[id*=comp_] {
  flex-wrap: wrap;
}

.wdwd-catalog.personal-catalog .hover-product li {
  display: inline-block;
  cursor: pointer;
  text-transform: initial;
  font-family: "Montserrat Light";
}

header .active.first a.bef:before {
  color: rgba(221, 21, 82, 0.6);
}

.arelrating-color-orange1 .api-stars-full {
  background-position: 0 -34px !important;
}

.notallowed .product-filter-text {
  position: relative;
  background-color: #f8f8f8;
  border: 1px solid #dfdfdf;
  color: #545460;
  text-decoration: line-through;
}

.selected .product-filter-text {
  border: 1px solid #18171c;
}

.product-block-popup .product {
  width: 100%;
}

.info_personal.active_personal #auth_form_popup, .popup_3, .product-block-popup .buy-mobile, .product-block-popup .product-less .product-tags, .product-block-popup .buy-mobile, .product-block-popup .product-item .product-tags, .product-block-popup .product-less .product-under .product-review, .product-block-popup .product-less .product_img, .product-block-popup .product-item .product-under .product-review, .product-block-popup .product-item .product_img {
  display: none;
}

.product-block-popup .product-more {
  visibility: visible;
  display: block;
  margin-top: 0;
  flex-direction: unset;
  padding: 0 15px 15px;
  width: 100%;
  background-color: #fff;
  position: relative;
  top: auto;
  left: auto;
}

.popup_3 {
  width: auto !important;
  background-color: #fff !important;
  overflow: visible;
}

.popup_3 .popup-inner {
  display: block !important;
  flex-direction: inherit !important;
  justify-content: space-between;
}

.popup_3 .product:hover .product-more {
  z-index: 2000;
  visibility: visible;
}

.popup_3 .product-offer {
  max-width: 204px;
}

.popup_3 .product-counter {
  display: flex;
}

.popup_3 .product-description {
  font-size: 14px;
  color: #545460;
  line-height: 20px;
  min-height: auto;
  max-height: auto;
  margin-top: 0;
  text-transform: uppercase;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: all 0.3s;
}

.product-item-amount-field-btn-disabled {
  opacity: 0.3;
}

.popup_3 .product {
  display: block;
  outline: 0 solid #ececec !important;
  width: 98%;
  margin: 0 auto;
}

.popup_3 .product-filters:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
}

.product-item .product_img span, .product-less .product_img span, .product-less .product_img img, .product_img {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.product-less .product_img span, .product-item .product_img span, .product-less .product_img img, .product-item .product_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: contain;
}

.product-less .product_img span[style*=preloader], .product-item .product_img span[style*=preloader] {
  background-size: 50%;
}

.catalog-list-search-new-style .catalog-cards {
  width: 100%;
}

.filter-body_item.actived {
  background-color: #dd1552;
  border-color: #dd1552;
  color: #fff;
  transition: all 0.2s;
}

.lazy.product-item-image-alternative {
  opacity: 0;
}

.errortext {
  color: #dd1552 !important;
}

.register-tab {
  color: #dd1552;
  text-decoration: underline;
}

.exit-button img, .exit-button svg {
  color: #dd1552;
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}

.exit-button img {
  width: 26px;
  height: 24px;
  top: 2px;
}

@media screen and (max-width: 480px) {
  .master-gallery_img.active:nth-child(4):after, .master-gallery_img.active:nth-child(4):before {
    opacity: 1;
  }
  .master-gallery_img.active:nth-child(4):after {
    content: "Ещё фото";
    position: absolute;
    transition: all 0.3s;
    color: #fff;
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    height: 34px;
    justify-content: center;
    width: 30%;
    align-items: flex-end;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: cover;
    background: url(../img/dots.svg) top center no-repeat;
  }
}
.master-gallery_img.hide:after {
  content: "" !important;
  background: 0 0 !important;
}

.master-gallery_img.hide:before {
  opacity: 0 !important;
}

.error-block-master-comment {
  color: #dd1552;
}

.pagin-all-block {
  display: contents;
}

span.section-header_title {
  font-size: 30px;
  color: #18181b;
  line-height: 36px;
  margin-bottom: 0;
  font-family: "Montserrat Bold";
}

.tabs-header_item_h2 {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Montserrat Bold";
  color: #18181b;
  position: relative;
  padding: 0 30px;
  cursor: pointer;
  letter-spacing: 0.025em;
  margin-left: 8px;
  margin-bottom: 0;
}

.product-item-scu-item-color-container {
  font-family: arial;
  margin: 0 5px 31px 0;
  display: inline-block;
  position: relative;
  padding-left: 26px;
  padding-top: 0;
  cursor: pointer;
  font-size: 14px;
  vertical-align: bottom;
}

.product-item-scu-item-color-container.selected .color_indicator:after {
  display: block;
}

.product-item-scu-item-color-container.notallowed .color_indicator:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  background: url(../img/close_color_gray.svg) center center no-repeat;
  background-size: cover;
}

.product-item-scu-item-color-container.notallowed.selected .color_indicator:after {
  background: 0 0;
  left: 10px;
  top: 6px;
  width: 4px;
  height: 9px;
  transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.product-item-scu-item-color-container.selected .color_indicator:after {
  left: 10px;
  top: 6px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  mix-blend-mode: difference;
}

.setBorder {
  border: 1px solid #dcd8d8;
}

#win8_wrapper {
  display: none;
  background: #fff;
  height: 100%;
  opacity: 0.7;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}

.windows8 {
  width: 50px;
  height: 50px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.windows8 .wBall {
  position: absolute;
  width: 47px;
  height: 47px;
  opacity: 0;
  transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  animation: orbit 3.3225s infinite;
  -o-animation: orbit 3.3225s infinite;
  -ms-animation: orbit 3.3225s infinite;
  -webkit-animation: orbit 3.3225s infinite;
  -moz-animation: orbit 3.3225s infinite;
}

.windows8 .wBall .wInnerBall {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #dd1552;
  left: 0;
  top: 0;
  border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

.windows8 #wBall_1 {
  animation-delay: 0.726s;
  -o-animation-delay: 0.726s;
  -ms-animation-delay: 0.726s;
  -webkit-animation-delay: 0.726s;
  -moz-animation-delay: 0.726s;
}

.windows8 #wBall_2 {
  animation-delay: 0.143s;
  -o-animation-delay: 0.143s;
  -ms-animation-delay: 0.143s;
  -webkit-animation-delay: 0.143s;
  -moz-animation-delay: 0.143s;
}

.windows8 #wBall_3 {
  animation-delay: 0.2865s;
  -o-animation-delay: 0.2865s;
  -ms-animation-delay: 0.2865s;
  -webkit-animation-delay: 0.2865s;
  -moz-animation-delay: 0.2865s;
}

.windows8 #wBall_4 {
  animation-delay: 0.4295s;
  -o-animation-delay: 0.4295s;
  -ms-animation-delay: 0.4295s;
  -webkit-animation-delay: 0.4295s;
  -moz-animation-delay: 0.4295s;
}

.windows8 #wBall_5 {
  animation-delay: 0.583s;
  -o-animation-delay: 0.583s;
  -ms-animation-delay: 0.583s;
  -webkit-animation-delay: 0.583s;
  -moz-animation-delay: 0.583s;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  width: auto;
}

textarea {
  resize: vertical;
}

.section-header {
  display: flex;
  flex-direction: column;
}

.average-score {
  font-size: 14px;
  color: #9292a3;
  font-family: "Montserrat Light";
  margin-top: 10px;
}

.delivery-title {
  color: #18181b;
  font-size: 20px;
  font-family: "Montserrat SemiBold";
  line-height: 1em;
}

.payment-text-col {
  margin-left: 32px;
}

.delivery-subtitle {
  font-size: 13px;
  color: #8B8B8B;
  font-family: "Montserrat SemiBold";
  text-transform: uppercase;
}

.delivery-text {
  font-size: 16px;
  line-height: 19px;
}

.delivery-title--red {
  font-family: "Montserrat Bold";
  color: #DC1B53;
}

.delivery-desk-list {
  margin-top: 10px;
}

.delivery-desk-list_subtitle {
  font-size: 18px;
  line-height: 24px;
  font-family: "Montserrat SemiBold";
  color: #18181b;
  margin-top: 20px;
}

.delivery-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.delivery-icon-list {
  margin: 15px -10px 0;
  display: flex;
  width: 50%;
  align-items: center;
}

.offer-agreement {
  margin-top: 25px;
  color: #5790f0;
  font-size: 14px;
  line-height: 1em;
  border-bottom: 1px dashed #5790f0;
}

.delivery-icon {
  margin: 0 10px;
}

.delivery-page, .payment-methods {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.delivery-faq {
  display: flex;
  flex-direction: column;
}

.payment-block_title + .payment-methods {
  margin-top: 10px;
}

.payment-methods-item_icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #F0EFF2;
  position: relative;
  transition: all 0.2s;
}

.payment-methods-item_icon_label {
  position: absolute;
  top: 0;
  right: 0;
}

#webpay {
  width: 700px;
}

.payment-methods--single {
  justify-content: center;
}

.delivery-page {
  margin-top: 7px;
}

.delivery-page_title {
  color: #dd1552;
  font-size: 24px;
  font-family: "Montserrat Bold";
  padding-bottom: 5px;
  line-height: 1.15em;
}

.delivery-column_del {
  width: 68.4%;
}

.delivery-column_pay {
  width: 29.4%;
  overflow: hidden;
}

.payment-block_description {
  color: #656565;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.delivery-column_pay_wrapper {
  display: flex;
  flex-direction: column;
}

.delivery-column_pay_wrapper + .delivery-page_title {
  margin-top: 45px;
}

.delivery-column_pay_block {
  display: flex;
  flex-direction: column;
  padding: 8px 35px 40px;
  border: 1px solid #E4E4E4;
  overflow: hidden;
}

.delivery-column_pay_block_padding {
  padding: 35px 40px;
}

.delivery-column_pay_block:not(:first-child) {
  margin-top: 25px;
}

.check-block-img {
  display: flex;
  position: relative;
  cursor: pointer;
}

.check-block-img_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #DC1B53;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery-red-text {
  font-size: 15px;
  text-decoration-line: underline;
  color: #DC1B53;
}

.props {
  margin-top: 25px;
}

.props_title {
  color: #dd1552;
  font-size: 20px;
  line-height: 1em;
  font-family: "Montserrat Bold";
}

.props_body {
  margin-top: 22px;
  color: #18181b;
  font-size: 16px;
  line-height: 24px;
}

.delivery-desk_item--bold {
  font-family: "Montserrat Bold";
}

.delivery-desk_item--link {
  color: #5790f0;
  border-bottom: 1px dashed #5790f0;
}

.payment-block_title {
  font-family: "Montserrat Bold";
  font-size: 24px;
  line-height: 1em;
  color: #18181b;
  margin-top: 30px;
  text-align: center;
}

.payment-methods-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin: 10px 0;
}

.payment-methods-item_row {
  flex-direction: row;
  width: 100%;
}

.payment-methods-item_icon:hover .payment-methods-item_icon_label {
  transition: all 0.2s;
  filter: invert(1) brightness(1.5);
}

.pay-block:not(:first-child) {
  border-top: 1px solid #E4E4E4;
  margin-top: 26px;
}

.wave {
  width: 200%;
  left: 50%;
  height: 8px;
  position: relative;
  transform: translateX(-50%);
  margin-top: 20px;
  background: url(../img/volna.png) center center;
}

.check-block {
  margin-top: 25px;
  display: flex;
  align-items: center;
}

.check-title, .payment-methods-item_title {
  color: #18181b;
  font-size: 20px;
  line-height: 1em;
  font-family: "Montserrat Bold";
}

.check-block-text {
  margin-left: 22px;
}

.payment-methods-item_title {
  margin-top: 10px;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

.delivery-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.delivery-block--mt {
  margin-top: 25px;
}

.delivery-item_col {
  display: flex;
  flex-direction: column;
  width: 28%;
}

.delivery-logo {
  width: 100%;
}

.delivery-item_col p + p {
  margin-top: 9px;
}

.delivery-icon img {
  width: 100%;
}

.delivery-block {
  padding: 27px 0 19px;
  width: 100%;
}

.delivery-block:not(:first-child) {
  border-top: 1px solid #E4E4E4;
}

.delivery-block--no-border {
  border: 0;
}

.delivery-block--logo {
  padding: 55px 0 15px;
}

.average-score_count {
  color: #fff;
}

.delivery-desk_item {
  font-size: 16px;
  color: #656565;
  line-height: 24px;
}

.delivery-desk_item:not(:first-child) {
  margin-top: 3px;
}

.more-delivery {
  font-size: 16px;
  color: #dd1552;
  font-family: "Montserrat SemiBold";
  position: relative;
  padding-right: 30px;
  margin-left: 10px;
  cursor: pointer;
}

.more-delivery.active .more-delivery_arrow {
  transform: translateY(-50%) scaleY(-1);
  transition: all 0.3s;
}

.more-delivery_arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid #dd1552;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.more-delivery_arrow:after {
  position: absolute;
  border: solid #dd1552;
  content: "";
  border-width: 0 2px 2px 0;
  top: 45%;
  transform-origin: initial;
  transform: translate(-50%, -50%) rotate(45deg);
  left: 50%;
  padding: 3px;
}

.modal_background {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 999;
}

.bx_my_order_cancel, .cancel_form {
  display: flex;
  flex-direction: column;
}

.cancel_form {
  align-items: center;
}

.cancel_form .course_profile_article-button {
  width: auto;
}

.bx_my_order_cancel {
  padding: 15px;
  background-color: #fff;
  border-radius: 3px;
}

.section-tags-item:hover .section-tags-item_text:after, [data-property-id-row="67"] {
  display: none;
}

.section-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.block-title, .section-header_title {
  font-size: 30px;
  color: #18181b;
  line-height: 1em;
  font-family: "Montserrat Bold";
}

.block-title {
  font-size: 24px;
}

.block-subtitle {
  font-size: 16px;
  line-height: 22px;
  color: #656565;
  margin-top: 15px;
}

.block-subtitle span {
  color: #dd1552;
  font-family: "Montserrat Bold";
}

.section-header_title--s {
  font-size: 24px;
  line-height: 30px;
}

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

.section-header_title--mt {
  margin-top: 21px;
}

.section-tags {
  display: flex;
  margin-left: -15px;
  margin-top: 20px;
}

.trumbowyg-editor, .trumbowyg-textarea {
  background-color: #fff;
}

.trumbowyg-button-pane.autoupdate-active:before {
  content: "cохранение";
  position: absolute;
  height: 15px;
  align-items: center;
  display: flex;
  font-size: 12px;
  line-height: 1em;
  padding-right: 20px;
  color: #656565;
  z-index: 11;
  background: url(../img/preloader_malina.svg) right center no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-size: contain;
}

.section-tags-item {
  padding: 10px 14px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}

.section-tags-item_text {
  font-size: 14px;
  font-family: "Montserrat Bold";
  color: #18181b;
  transition: all 0.2s;
  position: relative;
  line-height: 1em;
}

.section-tags-item_text_more-list {
  display: none;
  position: absolute;
  z-index: 3;
  background-color: #fff;
  top: calc(100% + 20px);
  left: 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.section-tags-item_text_more-list:after, .section-tags-item_text_more-list:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  border-style: solid;
  transition: all 0s;
}

.section-tags-item_text_more-list:before {
  left: 20px;
  border-width: 0 10px 10px;
  border-color: rgba(0, 0, 0, 0.1) transparent;
}

.section-tags-item_text_more-list:after {
  left: 22px;
  border-width: 0 8px 8px;
  border-color: #fff transparent;
}

.section-tags-item_text_more-list_item {
  padding: 10px 25px;
  font-size: 15px;
  font-family: "Montserrat SemiBold";
  color: #7e7e80;
  cursor: pointer;
  transition: all 0.2s;
}

.section-tags-item_text_more-list_item:hover {
  color: #dd1552;
  transition: all 0.2s;
}

.section-tags-item_text_more-list_item:not(:first-child) {
  border-top: 1px solid #eee;
}

.section-tags-item_text:after {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #18181b;
}

.section-tags-item:hover {
  background-color: #dd1552;
  border-radius: 3px;
  transition: all 0.2s;
}

.section-tags-item:hover .section-tags-item_text {
  color: #fff;
  transition: all 0.2s;
}

.catalog-sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog-sort__study {
  width: 40%;
}

.section-tags-item_text--more {
  padding-right: 25px;
  position: relative;
}

.section-tags-item_text--more:after {
  top: 100%;
  content: "";
  width: 120%;
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  position: absolute;
}

.section-tags-item_text--more .section-tags-item_text:before {
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3px 0;
  border-color: #18181b transparent transparent;
}

.catalog-sort_item {
  color: #18181b;
  font-size: 16px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.catalog-sort_item:not(:first-child) {
  margin-left: 15px;
}

.section-tags-item:hover .section-tags-item_text:before {
  border-color: #fff transparent transparent;
}

.catalog-sort_item:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0%;
  bottom: -1px;
  background-color: #dd1552;
  transition: all 0.3s;
  left: 0;
}

.catalog-sort_item.active, .catalog-sort_item:hover {
  color: #dd1552;
  transition: all 0.3s;
}

.catalog-sort_item:hover:after {
  width: 100%;
  transition: all 0.3s;
}

.catalog-sort_item:last-child {
  margin-right: 16px;
}

.catalog-sort_item:last-child:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  transform: translateY(-50%);
  right: -14px;
  border-style: solid;
  border-width: 4px 3px 0;
  border-color: #18181b transparent transparent;
}

.catalog-sort_item.active.asc:last-child:before {
  transition: all 0.3s;
  border-width: 0 3px 4px;
  border-color: transparent transparent #18181b;
}

.catalog-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 25px;
  flex-wrap: wrap;
}

.catalog-filter, .catalog-filters {
  display: flex;
  flex-direction: column;
}

.catalog-filters {
  position: relative;
  width: 18%;
}

.catalog-filter {
  border: 1px solid #ddd;
}

.catalog-filter:not(:first-child) {
  margin-top: 20px;
}

.catalog-filter.catalog-filter--sticky {
  position: sticky;
  bottom: 0;
  transform: translateY(-1px);
  width: 100%;
  background-color: #ffffff;
  margin-top: 0;
  z-index: 1;
}

.catalog-filter-wrapper {
  overflow: unset !important;
}

.filter-head {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background-color: #f3f3f3;
}

.filter-head_icon {
  width: 20px;
  height: 20px;
}

.filter-head_title {
  color: #18181b;
  font-size: 18px;
  margin-left: 11px;
}

.filter-body {
  padding: 20px 16px;
  display: flex;
  flex-wrap: wrap;
}

.filter-body_item {
  color: #18181b;
  font-size: 14px;
  line-height: 1em;
  padding: 7px 9px 6px;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin: 0 4px 4px 0;
  transition: all 0.3s;
  cursor: pointer;
  font-family: "Montserrat Medium";
}

.filter-body_item a {
  color: #18181b;
}

.filter-body_item:hover {
  background-color: #dd1552;
  color: #fff;
  border: 1px solid #dd1552;
  transition: all 0.3s;
}

.filter-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 16px 19px;
}

.filter-remover {
  width: 100%;
  padding: 11px 16px;
  border-top: 1px solid #e2e2e2;
}

.filter-section + .filter-section {
  border-top: 1px solid #e2e2e2;
}

.cupertino-pane-wrapper .pane {
  padding-top: 0;
  overflow: hidden;
  box-shadow: var(--cupertino-pane-shadow, 0 17px 37px rgb(0, 0, 0));
}

.filter-body__section {
  padding: 0;
  width: 100%;
}

.filter-section_title {
  position: relative;
  color: #18181b;
  font-size: 17px;
  line-height: 1em;
  font-family: "Montserrat SemiBold";
  width: 100%;
  cursor: pointer;
}

.filter-section_title--no_toggle:after {
  display: none;
}

.filter-section_title:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  background: url(../img/arrow.svg) center center no-repeat;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.3s;
}

.filter-section_title.open:after {
  transform: translateY(-50%) scaleY(-1);
  transition: all 0.3s;
}

.filter-section-body {
  width: 100%;
  margin-top: 16px;
  flex-wrap: wrap;
}

.filter-section-body + .filter-section_title {
  margin-top: 16px;
}

.filter-section-body--visible {
  display: flex;
}

.filter-checkboxes {
  padding: 0 16px;
  width: 99%;
  margin-bottom: 19px;
}

.filter-inputs_item {
  width: 50%;
  color: #18181b;
  font-size: 14px;
  line-height: 1em;
  padding: 9px 0 9px 10px;
  border: 1px solid #ddd;
  background-color: transparent;
}

[class*=select2]:focus {
  outline: 0;
}

.popup-body [alt=check] {
  max-width: 450px;
  width: 100%;
}

.evropochta-opt-conteiner {
  padding-left: 35px;
  margin-top: 10px;
}

.filter-inputs_item_row .filter-inputs_item {
  width: 100%;
}

.filter-inputs_item::-webkit-input-placeholder {
  color: #9f9f9f;
}

.filter-inputs_item:-moz-placeholder {
  color: #9f9f9f;
}

.filter-inputs_item::-moz-placeholder {
  color: #9f9f9f;
}

.filter-inputs_item:-ms-input-placeholder {
  color: #9f9f9f;
}

.filter-inputs_item_row {
  width: 100%;
  position: relative;
}

.filter-inputs_item_ico {
  position: absolute;
  right: 11px;
}

.filter-inputs_item_ico--search {
  width: 26px;
  height: 26px;
  top: 5px;
  padding: 5px;
  cursor: pointer;
}

.filter-inputs_item-toggle.shadow {
  -webkit-box-shadow: inset 0 0 29px 12px rgba(255, 255, 255, 0.1);
  -moz-box-shadow: inset 0 0 29px 12px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 29px 12px rgba(255, 255, 255, 0.1);
}

.filter-inputs_item_ico--toggler {
  width: 22px;
  height: 18px;
  top: 50%;
  padding: 5px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s;
  transform-origin: center;
}

.filter-inputs_item_ico--toggler.active {
  transform: translateY(-50%) scaleY(-1);
  transition: all 0.3s;
}

.filter-inputs_item:nth-child(even) {
  border-left: none;
}

.filter-inputs_item_row:not(:first-child) {
  margin-top: 10px;
}

.filter-inputs_item-toggle {
  position: relative;
}

.filter-inputs_item-toggle.open:after {
  transform: translateY(-50%) scaleY(1);
  transition: all 0.3s;
}

.filter-inputs_item--result {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 100%;
  border-right: 1px solid #dadada;
  border-left: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  z-index: 12;
  display: none;
  -webkit-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}

.filter-inputs_item--result_inner {
  margin: 8px 7px 6px 11px;
  max-height: 255px;
  overflow-y: scroll;
}

.filter-inputs_item--result_inner-currency {
  max-height: 100px;
}

.control, .filter-inputs_item--result_item {
  display: block;
  cursor: pointer;
  font-size: 14px;
}

.filter-inputs_item--result_item {
  padding: 9px 0;
  color: #18181b;
  line-height: 1em;
  width: 100%;
}

.control {
  font-family: arial;
  position: relative;
  padding-left: 30px;
  padding-top: 3px;
}

.control-group .control:not(:first-child) {
  margin-top: 8px;
}

.color input, .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control_indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
  border: 1px solid #b9b9ba;
  border-radius: 4px;
}

.control input:focus ~ .control_indicator, .control:hover input ~ .control_indicator {
  background: #fff;
}

.control input:checked ~ .control_indicator {
  background: #dd1552;
  border: 1px solid #dd1552;
}

.control input:checked:focus ~ .control_indicator, .control:hover input:not([disabled]):checked ~ .control_indicator {
  background: #dd1552;
}

.control input:disabled ~ .control_indicator {
  background: #fffefe;
  opacity: 0;
  pointer-events: none;
}

.control_indicator:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
}

.control input:checked ~ .control_indicator:after {
  display: block;
}

.control-checkbox .control_indicator:after {
  left: 7px;
  top: 3px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.control-checkbox input:disabled ~ .control_indicator:after {
  border-color: #fff;
}

.course_edit_field-item-input::-webkit-scrollbar, .filter-checkboxes::-webkit-scrollbar, .filter-inputs_item--result_inner::-webkit-scrollbar, .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 6px;
  border-radius: 25px;
}

.course_edit_field-item-input::-webkit-scrollbar-track, .filter-checkboxes::-webkit-scrollbar-track, .filter-inputs_item--result_inner::-webkit-scrollbar-track, .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  border-radius: 25px;
  background-color: #ddd;
}

.course_edit_field-item-input::-webkit-scrollbar-thumb, .filter-checkboxes::-webkit-scrollbar-thumb, .filter-inputs_item--result_inner::-webkit-scrollbar-thumb, .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #18181b;
}

.filter-remover {
  display: flex;
  flex-wrap: wrap;
}

.filter-remover_item {
  padding: 4px 8px 5px 9px;
  margin: 0 4px 4px 0;
  border-radius: 3px;
  border: 1px solid #ddd;
  display: flex;
  align-items: baseline;
  cursor: pointer;
}

.filter-remover_item_text {
  font-size: 14px;
  color: #18181b;
  position: relative;
}

.filter-remover_item:hover .filter-remover_item_text:after {
  width: 100%;
  transition: all 0.2s;
}

.filter-remover_item:hover {
  background-color: #f8f8f8;
}

.delete-filter path {
  color: #ddd;
  transition: all 0.2s;
}

.filter-remover_item:hover .delete-filter path {
  fill: #29292b;
  transition-delay: 0.2s;
  transition: all 0.2s;
}

.filter-remover_item_text:after {
  transition: all 0.2s;
  width: 0%;
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  background-color: #282b3b;
  top: 50%;
  transform: translateY(-50%);
}

.filter-total_found {
  font-size: 14px;
  line-height: 1em;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #18181b;
}

.delete-filter {
  margin-left: 8px;
}

.filter-total {
  background-color: #ddd;
  display: flex;
  width: 100%;
  height: 52px;
}

.filter-total_clear {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 53px;
  cursor: pointer;
  border-left: 1px solid #cacaca;
}

.filter-total_clear_new {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 53px;
  cursor: pointer;
  border-left: 1px solid #cacaca;
}

.catalog-col {
  width: 80%;
  display: flex;
  flex-direction: column;
}

.catalog-cards {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.catalog-cards--mt20 {
  margin-top: 20px;
}

.section-header_title {
  margin-top: 25px;
}

.product {
  width: 20%;
  outline: 1px solid #ececec;
  background-color: #fff;
  position: relative;
  transition: filter 0.3s;
  cursor: pointer;
}

.w100 {
  width: 100%;
  height: 100% !important;
}

.w20 {
  width: 20%;
}

.w16 {
  width: 16.666666%;
}

.product:not(.master-full):hover, .instagram_link:hover {
  filter: drop-shadow(3px 9px 9px rgba(0, 0, 0, 0.3));
  z-index: 2;
  transition: all 0.3s;
  outline: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.instagram_link:hover .block_aside_more_input_field-input {
  width: auto;
  transition: all 0.3s;
}

.product:not(.master-full):hover .product-more {
  z-index: 2;
  visibility: visible;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.product-less, .product-more, .product-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-less, .product-item {
  padding: 11px;
  height: 100%;
}

.product-more {
  visibility: hidden;
  margin-top: -10px;
  padding: 0 15px 15px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
}

.product_img {
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 100%;
}

.product-review {
  display: flex;
}

.master-full {
  width: 100%;
  cursor: default;
}

.master-column {
  margin-top: 22px;
}

.product-review--centered {
  justify-content: center;
}

.product-under {
  padding: 13px 6px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-stars {
  display: flex;
}

.stars_row {
  display: flex;
}

.product-stars_item {
  width: 15px !important;
  height: 15px !important;
}

.product-stars_item:not(:first-child) {
  margin-left: 3px;
}

.product-stars_item--rated path {
  fill: #edae28;
}

.reviews-count {
  color: #5790f0;
  font-size: 12px;
  line-height: 16px;
  margin-left: 9px;
  border-bottom: 1px solid #5790f0;
  cursor: pointer;
}

.reviews-count--no-reviews {
  color: #949494;
  border-bottom: 1px solid #949494;
}

.product-description {
  font-size: 14px;
  color: #545460;
  line-height: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 13px 0 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  transition: all 0.3s;
  text-underline-position: under;
}

.product-description:hover {
  color: #dd1552;
  text-decoration: underline;
  transition: 0.3s;
}

.product-stock {
  padding-left: 20px;
  font-size: 14px;
  margin-top: auto;
  padding-top: 13px;
  color: #949494;
  position: relative;
  line-height: 14px;
}

.card_subtitle {
  color: #949494;
}

.product-stock:before {
  content: url(../img/checkboxGreen.svg);
  position: absolute;
  left: 2px;
  top: calc(50% + 6px);
  width: 14px;
  transform: translateY(-50%);
}

.product-stock--out:before {
  content: url(../img/out.png);
}

.product-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  margin-top: 13px;
  align-items: flex-end;
  padding-left: 2px;
}

.modal-data-row:not(:first-child) {
  margin-top: 15px;
}

.modal-data-row .product-counter {
  width: 48.22%;
}

.modal-col-title + .product-price {
  margin-top: 0;
}

.product-price_item {
  color: #18181b;
  font-size: 18px;
  line-height: 1em;
  font-family: "Montserrat SemiBold";
}

.product-price_item--discount {
  color: #dd1552;
}

.product-price_item-no-discount {
  font-size: 14px;
  text-decoration: line-through;
  color: #2d2d33;
  line-height: 1em;
  margin-left: 9px;
}

.product-offer {
  height: 48px;
}

.modal-col-title {
  font-size: 13px;
  text-transform: uppercase;
  color: #545460;
  align-self: center;
}

.product-counter {
  width: 70.22%;
  border-radius: 3px;
  background-color: #f5f5f5;
  max-width: 142px;
}

.product-counter_switch {
  width: 28.16%;
  cursor: pointer;
}

.product-counter_switch--minus {
  background: url(../img/minus.png) center center no-repeat;
}

.product-counter_switch--plus {
  background: url(../img/plus.png) center center no-repeat;
}

.product-counter_input {
  font-family: "Montserrat Bold";
  font-size: 14px;
  line-height: 1em;
  margin: 5px 0;
  color: #18181b;
  text-align: center;
  background-color: #fff;
  width: 43.6619%;
  border-radius: 3px;
  border: 0;
}

.product-offer {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.product-counter {
  display: flex;
}

.product-offer__buy {
  min-width: 52px;
  border-radius: 3px;
  background-color: #dd1552;
  position: relative;
}

.product-button, .product-offer__buy:after {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-offer__buy:after {
  content: "";
  background: url(../img/shoppingbag.svg) center center no-repeat;
  background-size: 22px;
  position: absolute;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-button {
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
  line-height: 1em;
  min-height: 48px;
  cursor: pointer;
}

.product-button.pending {
  color: #000000;
}

.product-button:not(:first-child) {
  margin-top: auto;
}

.product-button--active {
  background-color: #dd1552;
  color: #fff;
}

.product-button--transparent {
  background-color: transparent;
  border: 2px solid #18181b;
  color: #18181b;
}

.product-button--transparent-red {
  background-color: transparent;
  border: 2px solid #dd1552;
  color: #dd1552;
}

.product-button--disabled {
  background-color: #727277;
  transition: background-color 0.3s;
}

.product-button--disabled:hover {
  background-color: #919199;
  transition: background-color 0.3s;
}

.product-filters {
  margin-top: 15px;
  position: relative;
  padding: 15px 0 10px;
}

.product-filters:after {
  position: absolute;
  content: "";
  width: calc(100% + 22px);
  height: 1px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ececec;
}

.product-filter-item, .product-filters {
  display: flex;
  flex-direction: column;
}

.product-filter-item:not(:first-child) {
  margin-top: 15px;
}

.product-filter-item_title {
  color: #545460;
  font-size: 12px;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.product-filter-item_body {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
}

.color {
  font-family: arial;
  margin: 0 5px 31px 0;
  display: block;
  position: relative;
  padding-left: 26px;
  padding-top: 0;
  cursor: pointer;
  font-size: 14px;
}

.color_indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  background: red;
  border-radius: 3px;
}

.color input:checked ~ .color_indicator {
  background: red;
}

.color input:disabled ~ .color_indicator {
  pointer-events: none;
}

.color_indicator:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
}

.color input:checked ~ .color_indicator:after {
  display: block;
}

.color-checkbox .color_indicator.white:after, .color-checkbox .color_indicator:after {
  left: 10px;
  top: 6px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.color-checkbox .color_indicator.white:after {
  top: 5px;
}

.color input:disabled ~ .color_indicator.white:after, .color input:disabled ~ .color_indicator:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  background-size: cover;
}

.color input:disabled ~ .color_indicator:after {
  background: url(../img/close_color_white.svg) center center no-repeat;
}

.color input:disabled ~ .color_indicator.white:after {
  background: url(../img/close_color_gray.svg) center center no-repeat;
}

.catalog-navigation {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.catalog-next-page {
  background-color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
  color: #545460;
  font-size: 15px;
  border: 1px solid #ddd;
  margin-top: 20px;
  cursor: pointer;
}

.catalog-pagination {
  display: flex;
  margin-top: 16px;
  justify-content: center;
  width: 100%;
}

.catalog-pagination a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #18181b;
  border-radius: 3px;
  transition: all 0.2s;
}

.catalog-pagination a:hover {
  background-color: #dd1552;
  transition: all 0.2s;
}

.catalog-pagination a:hover span {
  color: #fff;
}

.catalog-description {
  margin-top: 42px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-description p {
  color: #949494;
  font-size: 14px;
  line-height: 1.42em;
}

.catalog-description p:not(:first-child) {
  margin-top: 23px;
}

.catalog-description h2 + p {
  margin-top: 0 !important;
}

.catalog-description h2 {
  margin: 23px 0;
}

.product-wrapper {
  padding-bottom: 60px;
  border-bottom: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.often-buy-wrapper {
  margin-top: 65px;
}

.often-buy-wrapper h2 {
  margin-bottom: 0;
}

.product-filter-text {
  color: #18181b;
  font-size: 14px;
  line-height: 1em;
  padding: 0 8px;
  height: 26px;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin: 0 4px 4px 0;
  cursor: pointer;
  font-family: "Montserrat Medium";
}

.product-filter-text--disabled {
  position: relative;
  background-color: #f8f8f8;
  border: 1px solid #dfdfdf;
  color: #545460;
  text-decoration: line-through;
}

.product-filter-text--active {
  -webkit-box-shadow: 0 0 0 1px #18171c;
  -moz-box-shadow: 0 0 0 1px #18171c;
  box-shadow: 0 0 0 1px #18171c;
}

.product-preview-wrapper {
  width: 440px;
}

.product-preview {
  width: 100%;
  padding-top: 100%;
  border: 1px solid #e2e2e2;
  overflow: visible;
  position: relative;
}

.product-preview-slide {
  width: 100%;
  height: 100%;
  justify-content: center;
  cursor: zoom-in;
}

.product-preview-slide[data-id="0"] {
  pointer-events: none;
}

.product-preview-slide img {
  height: 100%;
}

.product-preview-thumbs {
  margin: 13px 0 0;
  display: flex;
  gap: 2%;
}

.slick-initialized {
  transition: opacity 0.3s ease-out;
  opacity: 1 !important;
}

.product-preview-thumbs-item {
  border: 1px solid #e2e2e2;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 23%;
}

.product-preview-thumbs-item_inner {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.product-preview-thumbs-item.active:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 3px);
  border: 2px solid #8e8e97;
}

.product-preview-thumbs-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-info {
  width: 57.2649%;
  display: flex;
  flex-direction: column;
}

.slick-next, .slick-prev {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5e5e5 !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
  opacity: 1 !important;
}

.slick-prev {
  transform: translateY(-50%) scaleX(-1);
  left: 20px;
}

.slick-next {
  right: 20px;
}

.product-info-pre {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 31px;
  border-bottom: 1px solid #ececec;
}

.product-info-tabs {
  margin-top: 26px;
}

.product-review--column {
  flex-direction: column;
  align-items: flex-start;
}

.product-review-space {
  align-items: flex-end;
}

.product-review-space .reviews-count {
  margin-left: 20px;
  font-size: 16px;
}

.product-review-space .product-stock {
  margin: 0 0 0 auto;
}

.product-info-price {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.product-info-price_current {
  color: #dd1552;
  font-size: 24px;
  font-family: "Montserrat Bold";
  line-height: 1em;
}

.product-info-price_current span {
  color: #969696;
  font-size: 18px;
  line-height: 1em;
  display: none;
}

.product-info-price_old {
  color: #18181b;
  font-size: 14px;
  line-height: 1em;
  text-decoration: line-through;
  padding: 7px 11px 5px;
  background-color: #dadada;
  border-radius: 20px;
  margin-left: 19px;
}

.product-offer__buy--more {
  height: 100%;
  padding: 0 58px 0 56px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1em;
  color: #fff;
  font-family: "Montserrat Bold";
  background-color: #dd1552;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
}

.product-offer__buy--more img {
  margin-right: 15px;
}

.product-offer--more {
  justify-content: flex-start;
  margin-top: 30px;
}

.product-info-filters {
  margin-top: 16px;
}

.product-info-filters .product-filter-item_title {
  font-size: 14px;
}

.product-tags {
  position: absolute;
  display: flex;
  top: 9px;
  left: 16px;
  z-index: 1;
}

.product-tags_item {
  width: 48px;
  padding: 6px 0;
  text-align: center;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1em;
  color: #fff;
  font-family: "Montserrat Bold";
}

.tabs-header {
  display: flex;
  position: relative;
  padding: 22px 0 17px;
  border-bottom: 1px solid #ececec;
}

.tabs-header_item {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1em;
  font-family: "Montserrat Bold";
  color: #18181b;
  width: auto;
  position: relative;
  padding: 0 30px;
  cursor: pointer;
  letter-spacing: 0.025em;
}

.tabs-header_item--master {
  padding: 0 44px;
}

.tabs-header_item--master .tab-reviews-count {
  right: 16px;
}

.tabs-header_item:not(:first-child) {
  margin-left: 8px;
}

.tab-reviews-count {
  border-radius: 8px;
  border-bottom-left-radius: 0;
  padding: 3px 8px 2px;
  right: 0;
  color: #fff;
  font-size: 12px;
  font-family: "Montserrat SemiBold";
  letter-spacing: 0.025em;
  line-height: 1em;
  bottom: 100%;
}

.tabs-body {
  margin-top: 38px;
}

.tabs-body--master {
  margin-top: 20px;
}

.tabs-body--master .tabs_content_item {
  display: none;
}

.tabs-body--master .tabs_content_item.active {
  display: block;
}

.tab-item-textblock {
  display: flex;
  flex-direction: column;
}

.faq-block {
  margin-top: 70px;
}

.tab-item_faq {
  margin-top: 18px;
  flex-direction: column;
}

.tab-item-textblock {
  color: #656565;
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
  max-height: initial;
  transition: max-height 0.3s;
}

.tab-item-textblock.overflow {
  max-height: 100px !important;
  transition: max-height 0.3s;
}

.tab-item-textblock a {
  text-decoration: underline;
  color: #7b94f0;
}

.tab-item-textblock_title {
  font-family: "Montserrat SemiBold";
  font-size: 18px;
  color: #18181b;
  line-height: 1em;
}

.tab-item-textblock-content {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.tab-item-textblock *:not(:first-child) {
  margin-top: 12px;
}

.tab-item-textblock li {
  color: #656565;
  font-size: 15px;
  line-height: 21px;
  padding-left: 20px;
  position: relative;
}

.tab-item-textblock li:after {
  width: 4px;
  background-color: #18181b;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  position: absolute;
}

.tab-item-textblock li:not(:first-child) {
  margin-top: 7px;
}

.tab-item-textblock-content_body {
  color: #656565;
  font-size: 15px;
  line-height: 20px;
  margin-top: 42px;
}

.tab-item-table {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  width: 100%;
}

.tab-item-table-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.tab-item-table-row:not(:first-child) {
  margin-top: 16px;
}

.tab-item-table-row_title {
  color: #18181b;
  font-size: 14px;
  width: 23.88%;
  text-transform: uppercase;
  font-family: "Montserrat SemiBold";
  line-height: 1.6em;
}

.tab-item-table-row_body {
  width: 70.15%;
  display: flex;
  flex-direction: column;
}

.show-more, .table-text {
  color: #656565;
  font-size: 14px;
  line-height: 1.6em;
}

.show-more {
  padding: 4px 13px 4px 12px;
  display: none;
  font-size: 12px;
  line-height: 1em;
  font-family: "Montserrat SemiBold";
  cursor: pointer;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 100%;
  -webkit-box-shadow: 0 -6px 26px 14px #fff;
  -moz-box-shadow: 0 -6px 26px 14px #fff;
  box-shadow: 0 -6px 26px 14px #fff;
}

.show-more.visible {
  display: flex;
}

.show-more img {
  height: 10px;
  margin-left: 5px;
  transition: all 0.2s;
}

.product-tags_item--discount {
  background-color: #dd1552;
}

.product-tags_item--counter {
  background-color: #ecd464;
}

.product-tags_item--new {
  background-color: #3aa82b;
}

.product-tags_item--hit {
  background-color: #7569d9;
}

.scrollup {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.scrollup img {
  transition: all 0.2s;
  transform: scaleY(-1);
}

.tab-item-textblock_order {
  color: #656565;
  font-size: 15px;
  line-height: 20px;
  margin-top: 24px;
}

.tab-item-textblock:not(:first-child) {
  margin-top: 30px;
}

.video {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}

.video embed, .video iframe, .video object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.element-video {
  width: 100%;
  height: 100%;
}

.mobile-show {
  display: none;
}

.tab-item-certs {
  display: flex;
}

.tab-item-certs_item {
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  display: block;
}

.product-slide-item.product {
  width: 100%;
}

.catalog-sort--mobile, .product-button--mobile {
  display: none;
}

.master-photo {
  padding: 10px 26px 0;
  position: relative;
  width: 100%;
}

.master-photo_image {
  margin-left: auto;
  margin-right: auto;
  padding-top: 50%;
  padding-bottom: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  position: relative;
  height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.master-photo-label {
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 93px;
  text-align: center;
  padding: 11px 0 9px;
  transform: translate(-50%, 10px);
  border-radius: 15px;
  -webkit-box-shadow: 0 2px 73px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 73px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 73px 10px rgba(0, 0, 0, 0.1);
  color: #18181b;
  display: block;
  font-size: 13px;
  line-height: 1em;
}

.master-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 13px;
}

.master-info_name {
  font-size: 17px;
  line-height: 1em;
  font-family: "Montserrat Bold";
  color: #18181b;
  text-align: center;
}

.master-info_geo {
  margin-top: 9px;
  position: relative;
  font-size: 13px;
  line-height: 1em;
  color: #6d6d6d;
  padding-left: 15px;
}

.master-info_geo:after {
  content: "";
  position: absolute;
  left: 0;
  background: url(../img/pin.svg) center center no-repeat;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 14px;
}

.product-records {
  margin: 14px 0;
}

.product-records, .product-records-list {
  display: flex;
  flex-direction: column;
}

.product-records-list_item {
  font-size: 14px;
  line-height: 1em;
  color: #545460;
  padding-left: 23px;
  position: relative;
}

.product-records-list_item:not(:first-child) {
  margin-top: 4px;
}

.product-records-list_item:after {
  position: absolute;
  content: "";
  left: 8px;
  top: 25%;
  width: 4px;
  height: 4px;
  background-color: #545460;
}

.product-records-more {
  margin-left: 23px;
  font-size: 14px;
  line-height: 1em;
  color: #18181b;
  margin-top: 4px;
}

.column-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contacts-map_semi {
  display: flex;
  gap: 1rem;
}

.contacts-map_semi iframe {
  width: 50%;
}

.contacts-map_photo {
  width: 50%;
  display: flex;
}

.contacts-map_photo img {
  display: block;
  width: 100%;
}

.contacts-info {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contacts-block {
  display: flex;
  flex-direction: column;
}

.contacts-block_title {
  font-size: 16px;
  line-height: 1em;
  color: #18181b;
  font-family: "Montserrat Bold";
  text-transform: uppercase;
}

.contacts-item {
  display: flex;
  align-items: center;
}

.contacts-item:not(:first-child) {
  margin-top: 6px;
}

/*.contacts-item:not(:first-child),.tab-article p:not(:first-child),.trumbowyg-editor p:not(:first-child) {
margin-top: 15px
}*/
.contacts-item_content {
  font-size: 20px;
  line-height: 1em;
  color: #18181b;
  position: relative;
  padding-left: 26px;
}

.contacts-item_content:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.contact-block {
  display: flex;
  flex-direction: column;
}

.contact-block_title--footer {
  font-size: 20px;
  font-family: "Montserrat Bold";
  color: #fff;
  margin-bottom: 30px;
}

.contact-block_title--header {
  font-size: 16px;
  color: #656565;
  margin-bottom: 10px;
}

.contact-block--footer:not(:first-child) {
  margin-top: 40px;
}

.contact-block--header:not(:first-child) {
  margin-top: 20px;
}

.contacts-item_content--mts_black:before {
  content: url(../img/Social/phoneBlack.svg);
}

.contacts-item_content--mts_white:before {
  content: url(../img/Social/phoneWhite.svg);
}

.contacts-item_content--mts:before {
  content: url(../img/phone-call.svg);
}

.contacts-item_content--white:before {
  filter: invert(1);
}

.contacts-item_content--white:before {
  filter: invert(0);
}

.contacts-item_content--a1:before {
  content: url(../img/Phone/A1SVG.svg);
}

.contacts-item_content--mail {
  font-size: 16px;
  text-decoration: underline;
}

.contacts-item_content--mail:before {
  content: url(../img/MailSVG.svg);
  top: 58%;
  transform: translateY(-50%);
  width: 16px;
}

.contacts-item_content--address {
  flex-direction: column;
  display: flex;
  padding-left: 32px;
}

.contacts-item_content_row {
  font-size: 16px;
  line-height: 1em;
}

.contacts-item_content_row:not(:first-child) {
  margin-top: 6px;
}

.contacts-item_content_row--line {
  line-height: 1.375em;
}

.contacts-item_content_row--bold {
  font-family: "Montserrat Bold";
}

.contacts-item_content_row--gray {
  color: #656565;
}

.contacts-item_content--malina:before {
  content: "";
  background: url(../img/location_malina.svg) center center no-repeat;
  background-size: cover;
  top: 25%;
  width: 16px;
  height: 23px;
}

.contacts-item_content--gray:before {
  content: "";
  background: url(../img/location_gray.svg) center center no-repeat;
  background-size: cover;
  top: 25%;
  width: 16px;
  height: 23px;
}

.contacts-item_content_item--no-ico {
  padding-left: 0;
}

.working-time {
  margin-top: 15px;
}

.working-time_text {
  color: #656565;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.025em;
}

.contacts-block-content {
  display: flex;
  flex-direction: column;
}

.contacts-block-content--contacts {
  margin-top: 15px;
}

.contacts-block-content--footer {
  margin-top: 20px;
}

.contacts-widgets {
  display: flex;
  flex-direction: row-reverse;
  margin-left: 11px;
  align-items: center;
}

.contacts-widgets_item {
  width: 24px;
  height: 24px;
  box-sizing: content-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-color: #fff;
}

.contacts-item_content--white {
  color: #fff;
}

.contacts-item_content--blue {
  color: #5790f0;
}

.contacts-item_content--blue:before {
  content: url(../img/MailSVG_blue.svg);
}

.working-time_text--white {
  color: #fff;
}

.contacts-widgets_item:not(:last-child) {
  margin-left: -7px;
}

.contacts-widgets_item:not(:first-child) {
  border: 2px solid #fff;
}

.contacts-widgets_item--black-round:not(:first-child) {
  border-color: #2d2d33;
  background-color: #2d2d33;
}

.socials-block {
  display: flex;
}

.socials--contacts {
  margin-top: 20px;
}

.socials_item {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dd1552;
  border-radius: 100%;
}

.socials_item:not(:first-child), .contact-us-item:not(:first-child) {
  margin-left: 10px;
}

.ulogin_panel {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.ulogin_panel > div {
  margin-right: 0 !important;
}

.catalog-col--s {
  width: 19.24%;
}

.catalog-col--b {
  width: 78.21%;
}

.catalog-col--border {
  border: 1px solid #e2e2e2;
}

.catalog-col--padding {
  padding: 10px 50px 50px;
}

.accordion-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e2e2;
}

.accordion-item:not(:first-child) {
  border-top: 0;
}

.accordion-item_faq:not(:first-child) {
  margin-top: 20px;
  border-top: 1px solid #e2e2e2;
}

.accordion-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 105px 20px 44px;
  position: relative;
  cursor: pointer;
}

.accordion-head_faq {
  background-color: #F9F9F9;
  padding: 17px 23px 18px;
}

.accordion-head:hover, .accordion-head.active {
  background-color: #dd1552;
  transition: all 0.3s;
}

.accordion-head:hover .accordion-label, .accordion-head:hover .accordion-title, .accordion-head.active .accordion-label, .accordion-head.active .accordion-title {
  color: #fff;
  transition: all 0.3s;
}

.accordion-head:after {
  background: url(../img/arrow-toggler.svg) center center no-repeat;
  transform: translateY(-50%);
  transform-origin: top;
}

.accordion-head.active:after, .accordion-head:after, .accordion-head:hover:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background-size: cover;
  top: 50%;
  right: 50px;
  transition: all 0.3s;
}

.accordion-head.active:after {
  transform: scaleY(-1) translateY(-50%);
}

.accordion-head:hover:after, .accordion-head.active:after {
  filter: invert(1);
  transform: translateY(-50%);
}

.accordion-head.active:hover:after, .accordion-head.active:after {
  transform: scaleY(-1) translateY(-50%);
}

.tabs-header_item--master:not(:first-child) {
  margin-left: 0;
}

.accordion-head_faq:after, .accordion-head_faq.active:after, .accordion-head_faq:hover:after {
  right: 25px;
}

.accordion-title {
  font-size: 18px;
  font-family: "Montserrat SemiBold";
  flex-grow: 3;
}

.accordion-title_faq {
  font-size: 17px;
  margin: 0;
  color: #18181b;
}

.empty-basket {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 70px;
}

.subtitle-g, .title-b {
  line-height: 1em;
  text-align: center;
}

.title-b {
  font-size: 30px;
  color: #18181b;
  font-family: "Montserrat Bold";
  margin-top: 30px;
}

.subtitle-g {
  color: #656565;
  font-size: 16px;
  margin-top: 10px;
}

.accordion-label {
  color: #656565;
  font-family: "Montserrat SemiBold";
  line-height: 1em;
  word-break: break-all;
}

.accordion-label:not(:first-child) {
  margin-left: 35px;
  white-space: nowrap;
}

.accordion-body {
  padding: 30px 48px 60px;
}

.accordion-body_faq {
  padding: 22px 61px 22px 22px;
}

.accordion-head + .accordion-body {
  border-top: 1px solid #e2e2e2;
}

.accordion-body, .tab-article {
  display: flex;
  flex-direction: column;
}

.trumbowyg-editor span, .tab-article span {
  color: #656565 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  word-break: break-word !important;
  font-weight: 400 !important;
}

.tab-article h1, .trumbowyg-editor h1, .tab-article h1 span, .trumbowyg-editor h1 span, .tab-article h2 h1, .trumbowyg-editor h2 h1 {
  font-family: "Montserrat SemiBold" !important;
  font-size: 18px !important;
  line-height: 22px !important;
  word-break: break-word !important;
  color: #18181b !important;
}

.tab-article h2, .trumbowyg-editor h2, .tab-article h2 span, .trumbowyg-editor h2 span, .tab-article h1 h2, .trumbowyg-editor h1 h2 {
  font-family: "Montserrat SemiBold" !important;
  font-size: 14px !important;
  line-height: 18px !important;
  margin-bottom: 0 !important;
  word-break: break-word !important;
  color: #18181b !important;
}

.tab-article ul, .trumbowyg-editor ul {
  display: flex !important;
  flex-direction: column !important;
  list-style-type: none !important;
}

.tab-article p, .trumbowyg-editor p, .tab-article h1 p, .trumbowyg-editor h1 p, .tab-article h2 p, .trumbowyg-editor h2 p, .tab-article p span, .trumbowyg-editor p span {
  color: #656565 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  word-break: break-word !important;
  font-weight: 400 !important;
}

.tab-article li, .trumbowyg-editor li, .tab-article li *, .trumbowyg-editor li * {
  position: relative !important;
  padding-left: 20px !important;
  font-size: 16px !important;
  line-height: 18px !important;
  color: #656565 !important;
  font-weight: 400 !important;
}

.tab-article a {
  color: #5790f0 !important;
  text-decoration: underline;
}

.tab-item.tab-item_faq ul {
  padding: 6px 0 !important;
}

.tab-item_faq li {
  margin: 3px 0 0 2px !important;
  padding: 0 !important;
}

.tab-article li:after, .trumbowyg-editor li:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #656565;
  left: 0;
  top: 7px;
  border-radius: 50%;
}

.buttons-wrap-c {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.buttons-wrap-r {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}

.buttons-wrap-semi {
  width: 58%;
}

.buttons-wrap-r .product-button:not(:first-child) {
  margin-top: 0;
  margin-left: 10px;
}

.master-gallery-wrap {
  margin-top: 42px;
}

.master-gallery_title {
  font-size: 18px;
  font-family: "Montserrat SemiBold";
}

.master-gallery {
  margin-top: 25px;
}

.master-gallery .owl-next {
  right: 0 !important;
  transform: translateX(50%) translateY(-50%);
}

.master-gallery .owl-prev {
  left: 0 !important;
  transform: translateX(-50%) translateY(-50%);
}

.master-gallery_img {
  position: relative;
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.master-gallery_img:after, .master-gallery_img:before {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
}

.master-gallery_img:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-position: center;
  background: rgba(0, 0, 0, 0.6);
}

.master-gallery_img:after {
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background: url(../img/search.png) center center no-repeat;
}

.master-gallery_img:hover:after, .master-gallery_img:hover:before {
  opacity: 1;
  transition: all 0.3s;
  z-index: 2;
}

.course_profile {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}

.block_aside, .block_aside_info {
  display: flex;
  flex-direction: column;
}

.block_aside {
  width: 22.7%;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.block_aside_info {
  padding: 15% 21% 13%;
}

.block_aside_info_photo, .block_aside_info_photo-widget {
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block_aside_info_photo {
  margin-left: auto;
  margin-right: auto;
  padding-top: 50%;
  padding-bottom: 50%;
  width: 100%;
  background-color: #ececec;
  position: relative;
  height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.block_aside_info_photo[style*=user_profile] {
  background-size: 50%;
}

.master-photo_image[style*=user_profile] {
  background-size: 50%;
  background-color: #ececec;
}

.block_aside_info_photo:not(.photo-added) {
  background-size: 50%;
}

.block_aside_info_photo.photo-pending {
  background-size: 100%;
}

.block_aside_info_photo-widget {
  position: absolute;
  width: 42px;
  height: 42px;
  top: -1px;
  right: 5px;
  transition: all 0.2s;
}

.block_aside_info_photo-widget-tooltip {
  position: absolute;
  display: flex;
  padding: 10px 15px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  border-bottom-right-radius: 0;
  background-color: #ffffff;
  z-index: 2;
  left: 0;
  transition: all 0.5s;
  top: -100%;
  transform: translateX(-100%) scale(0);
  text-transform: none;
}

.block_aside_info_photo-widget-tooltip--inside {
  bottom: 75%;
  left: 20px;
  top: unset;
}

.block_aside_info_photo-widget-tooltip.active {
  transform: translateX(-100%) scale(1);
  transition: all 0.5s;
}

.block_aside_info_photo-widget-tooltip_text {
  font-size: 11px;
  width: max-content;
  color: #999;
}

.photo-pending {
  background: url(../img/preloader_malina.svg) center center no-repeat !important;
  background-size: 100% !important;
}

.block_aside_info_photo-widget--edit {
  background-color: #dd1552;
  z-index: 1;
}

.block_aside_info_photo-widget--remove {
  background-color: #e0e0e0;
  border: 1px solid #d8d6d6;
  opacity: 0;
}

.block_aside_info_photo-widget--instagram {
  background-color: #dd1552;
  opacity: 0;
}

.block_aside_info_photo-widget-link {
  display: flex;
}

.block_aside_info_photo > img {
  width: 100%;
  border-radius: 100%;
}

.photo-added:hover .block_aside_info_photo-widget--remove {
  top: -1px;
  right: calc(100% - 5px);
  transform: translateX(100%);
  transition: all 0.2s;
  transition-timing-function: ease;
  opacity: 1;
}

.instagram-added:hover .block_aside_info_photo-widget--instagram, .block_aside_info_photo-widget--force-show {
  right: 5px;
  top: calc(100% - 5px);
  transform: translateY(-100%);
  transition: all 0.2s;
  transition-timing-function: ease;
  opacity: 1;
}

.block_aside_info_description {
  margin-top: 17px;
  display: flex;
  justify-content: center;
}

.block_aside_info-label {
  font-size: 14px;
  line-height: 21px;
  font-family: "Montserrat Bold";
  text-align: center;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.block_aside_more {
  width: 100%;
  padding: 22px 18px 18px;
  border-top: 1px solid #ddd;
}

.block_aside_more_input {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.block_aside_more_input-label {
  font-size: 14px;
  line-height: 17px;
  font-family: "Montserrat Bold";
  text-transform: uppercase;
}

.block_aside_more_input_wrap {
  margin-top: 10px;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 3px;
  height: 48px;
  width: 100%;
}

.block_aside_more_input-icon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px 2px;
  color: #dd1552;
}

.block_aside_more_input_field-input {
  border-left: 1px solid #ddd;
  border-width: 0 0 0 1px;
  width: 100%;
  padding-left: 19px;
  color: #000;
  font-size: 14px;
}

.filter-inputs_item_wrap .bx-sls .bx-ui-sls-container {
  min-height: 45px !important;
}

.filter-inputs_item_wrap .bx-sls .dropdown-block {
  border: 1px solid #ddd;
}

.filter-inputs_item_wrap .bx-sls .bx-ui-sls-fake, .filter-inputs_item_wrap .bx-sls .bx-ui-sls-route {
  height: 45px !important;
  font-family: "Montserrat Regular" !important;
  color: #18181b;
}

#location-master .filter-inputs_item_ico--toggler {
  visibility: hidden;
}

.filter-inputs_item_wrap .bx-sls .bx-ui-sls-clear {
  top: 6px;
}

.block_aside_more_input_field-input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}

.block_aside_more_input_field-input:-moz-placeholder {
  color: #999;
  font-size: 14px;
}

.block_aside_more_input_field-input::-moz-placeholder {
  color: #999;
  font-size: 14px;
}

.block_aside_more_input_field-input:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}

.block_aside_more_input-desc {
  color: #999;
  font-size: 13px;
  line-height: 17px;
  margin-top: 10px;
}

.block_aside_submit {
  padding: 10px 18px;
  position: relative;
  margin: -5px;
  flex-direction: column;
  display: none;
}

.block_aside_submit button {
  min-height: 47px;
}

.block_aside_submit:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 10px);
  height: 1px;
  background-color: #ddd;
}

.block_aside_submit-button {
  width: 100%;
  border: 0;
  border-radius: 3px;
  background-color: #dd1552;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 18px;
  font-family: "Montserrat Bold";
}

.block_course_profile {
  width: 74.8%;
}

.block_course_profile, .course_profile_article {
  display: flex;
  flex-direction: column;
}

.course_profile-title {
  font-size: 22px;
  font-family: "Montserrat Bold";
  color: #18181b;
}

.course_profile_head-label {
  font-size: 12px;
  padding: 7px 9px;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: default;
  font-family: "Montserrat Bold";
  display: none;
  transition: all 0.3s;
}

.course_profile_head-label--mobile {
  display: none;
  justify-content: flex-start;
  padding-top: 11px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

.course_profile_head-label--publish {
  color: #fff;
  background-color: #5790f0;
}

.course_profile_head-label--hidden {
  color: #fff;
  background-color: #18181b;
}

.course_profile_head-label--moderation {
  background-color: #edae28;
  color: #fff;
}

.course_profile_head_description {
  color: #999;
  font-size: 16px;
  margin-top: 8px;
  width: 100%;
}

.course_profile_head_description-link {
  color: #5790f0;
  text-decoration: underline;
}

.course_edit_section {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
  padding-bottom: 51px;
}

.course_edit_section--gray {
  padding: 30px 40px 45px;
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  border-width: 1px 1px 0;
}

.course_edit_section_row {
  display: flex;
  margin: -5px;
  justify-content: flex-end;
}

.course_edit_section_row:not(:first-child) {
  margin-top: 10px;
}

.course_edit_section--gray .course_edit_section_row:not(:first-child) {
  margin-top: 23px;
}

.course_edit_section_col {
  margin: 0 5px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.course_edit_section_col--sm {
  width: calc(33.3333333333% - 10px);
}

.course_edit_section_col--xsm {
  width: calc(25% - 10px);
}

.course_edit_section_col--xxsm {
  width: calc(33.3333333333% - 10px);
}

.course_edit_section_col--bg {
  width: calc(100% - 10px);
}

.not-valid {
  border: 1px solid #dd1552 !important;
}

.not-valid + .select2 .select2-selection {
  border: 1px solid #dd1552 !important;
}

.course_edit_section-input {
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #18181b;
  font-size: 14px;
  line-height: 1em;
  padding: 14px 18px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
}

.popup-window-content-white .popup-window-content {
  padding: 0 !important;
}

.course_edit_section-input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}

.popup-window-titlebar-text, .popup-window-titlebar-text-version {
  line-height: 52px !important;
  padding: 0 30px 0 0 !important;
}

.course_edit_section-input:-moz-placeholder {
  color: #999;
  font-size: 14px;
}

.course_edit_section-input::-moz-placeholder {
  color: #999;
  font-size: 14px;
}

.course_edit_section-input:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}

.course_edit_widgets {
  display: flex;
  border: 1px solid #ddd;
  background-color: #fff;
}

.course_edit_widgets_item.active, .course_edit_widgets_item:hover {
  background-color: #f4f4f4;
  transition: all 0.3s;
}

.course_edit_widgets_item {
  border-right: 1px solid #ddd;
}

.course_edit_widgets_item-label {
  font-size: 14px;
  color: #18181b;
  margin-left: 8px;
}

.course_edit_field-item-input {
  width: 100%;
  border: solid #ddd;
  border-width: 0 1px 1px;
  padding: 15px 20px;
  color: #18181b;
  font-size: 14px;
  line-height: 17px;
  max-height: 200px;
  overflow-y: scroll;
}

.course_edit_field-item-input--H1 {
  font-family: "Montserrat SemiBold";
  font-size: 18px;
  line-height: 22px;
}

.course_edit_field-item-input--Aa, .course_edit_field-item-input--H2 {
  color: #656565;
  font-size: 16px;
  line-height: 22px;
}

.course_edit_field-item-input--List {
  font-size: 16px;
  line-height: 18px;
  color: #656565;
}

.course_edit_field-item-input:focus {
  outline: 0;
}

.course_edit_field-item-input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
  line-height: 14px;
  font-family: "Montserrat Medium";
}

.course_edit_field-item-input:-moz-placeholder {
  color: #999;
  font-size: 14px;
  line-height: 14px;
  font-family: "Montserrat Medium";
}

.course_edit_field-item-input::-moz-placeholder {
  color: #999;
  font-size: 14px;
  line-height: 14px;
  font-family: "Montserrat Medium";
}

.course_edit_field-item-input:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
  line-height: 14px;
  font-family: "Montserrat Medium";
}

.course_profile_article-button {
  text-align: center;
  position: relative;
  padding: 14px 27px;
  border-radius: 3px;
  margin: 5px;
  border: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Montserrat Bold";
  display: flex;
  justify-content: center;
  white-space: nowrap;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.pending {
  background-image: linear-gradient(117deg, #d4d4d4 25%, #eeeeee 25%, #eeeeee 50%, #d4d4d4 50%, #d4d4d4 75%, #eeeeee 75%, #eeeeee 100%);
  background-size: 35.91px 70.49px;
  background-repeat: repeat;
  background-position: -32%;
  -webkit-animation: progress-bar-stripes 1.3s linear infinite;
  -o-animation: progress-bar-stripes 1.3s linear infinite;
  animation: progress-bar-stripes 1.3s linear infinite;
}

.pending .course_edit_bar {
  background-color: unset;
}

.button--blue.pending {
  color: #18181b;
}

.button--malina.pending {
  color: #18181b;
}

.course_profile_article-button.w-100 {
  width: 100%;
}

.course_profile_article-button-icon {
  margin-right: 10px;
}

.course_profile_article-button--sub {
  margin: 0 !important;
}

.course_profile_article-button-semi {
  width: 50%;
}

.course_profile_article-button--regular {
  text-transform: none;
}

.button--malina {
  background-color: #dd1552;
  color: #fff;
}

.button--rounded {
  border-radius: 23px;
}

.button-master-confirm {
  display: flex;
  justify-content: center;
  margin-top: 13px;
}

.master-block-kurs-item-add-hide, .master-block-kurs-item-add-active {
  display: none;
}

.button--gray {
  background-color: #e0e0e0;
  color: #18181b;
}

.button--blue {
  background-color: #5790f0;
  color: #fff;
}

.course_edit_section-label {
  color: #18181b;
  font-size: 15px;
  font-family: "Montserrat SemiBold";
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  cursor: pointer;
}

.course_edit_section-label--removed {
  justify-content: center;
  color: #999;
}

.course_edit_section-label + :not(.course_profile_head-label) {
  margin-top: 8px;
}

.course_profile_head {
  flex-wrap: wrap;
  flex-direction: row;
}

.course_edit_bar, .course_edit_buttons, .course_profile_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course_edit_bar {
  padding: 18px 44px 18px 40px;
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  border-width: 1px 1px 0;
}

.course_edit_buttons {
  margin-left: 20px;
}

.course_edit-button:not(:first-child) {
  margin-left: 20px;
}

.course_edit-button {
  cursor: pointer;
}

.course_edit_gallery_wrap {
  padding: 34px;
}

.course_edit_gallery {
  margin: -12px;
  position: relative;
}

.course_edit_gallery:after {
  content: "";
  display: block;
  clear: both;
}

.course_edit_gallery_item {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: calc(25% - 24px);
  margin: 12px;
}

.course_edit_gallery_item_img {
  border-radius: 3px;
  overflow: hidden;
  transform: rotate(0deg) scale(1) !important;
  transition: all 0.3s;
}

.muuri-item-dragging {
  z-index: 2;
}

.muuri-item-dragging .course_edit_gallery_item_img {
  transform: rotate(2deg) scale(1.02) !important;
  transition: all 0.3s;
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  transition: none !important;
}

.gutter-sizer {
  width: 2.6666666667%;
}

.ui-sortable-helper {
  transform: rotate(3deg);
  transition: transform 0.3s;
}

.course_edit_gallery_item--placeholder {
  outline: 3px dashed #444;
  outline-offset: -6px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  margin: 12px;
  display: flex;
  flex-direction: column;
  width: calc(25% - 24px);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.course_edit_gallery_item:hover img {
  transform: scale(1.03);
  transition: all 0.3s;
}

.entity_remover {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-size: cover;
  cursor: pointer;
}

.entity_remover, .w-close-shadow {
  background: url(../img/close-shadow.png) center center no-repeat;
}

.g-close {
  background: url(../img/close_color_gray.svg) center center no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
}

.course_edit_gallery_item--add {
  border: 1px solid #ddd;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.course_edit_gallery_item-label {
  font-size: 15px;
  line-height: 1em;
  color: #999;
  font-family: "Montserrat Bold";
  margin-top: 16px;
}

.grid {
  position: relative;
}

.item {
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  margin: 5px;
  z-index: 1;
  background: #000;
  color: #fff;
}

.item.muuri-item-dragging {
  z-index: 3;
}

.item.muuri-item-releasing {
  z-index: 2;
}

.item.muuri-item-hidden {
  z-index: 0;
}

.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.course_edit_gallery_item_icon {
  width: 44%;
  height: 44%;
  border-radius: 100%;
  border: 1px solid #ddd;
  position: relative;
  margin-top: 20%;
  background-color: #fff;
}

.course_edit_gallery_item_icon:after, .course_edit_gallery_item_icon:before {
  height: 40%;
  width: 4px;
  background-color: #999;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.course_edit_gallery_item_icon:after {
  width: 40%;
  height: 4px;
}

.course_edit_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.popup-content {
  width: 100%;
  padding: 20px 15px;
  border-radius: 3px;
  background-color: #fff;
}

.popup-item {
  display: none;
  border-radius: 3px;
  overflow: visible !important;
}

.popup-item--product {
  max-width: 400px !important;
}

.popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-header-title {
  font-size: 20px;
  line-height: 1em;
  font-family: "Montserrat Bold";
  text-align: center;
  color: #18181b;
}

.popup-header-title--product {
  font-size: 18px;
  text-align: left;
}

.popup-header-title--mt {
  margin-top: 12px;
}

.popup-header-description {
  color: #999;
  font-size: 15px;
  margin-top: 8px;
}

.popup-body {
  width: 100%;
  margin-top: 18px;
  max-width: 700px;
}

.popup-image-product {
  min-width: 270px;
  width: 100%;
  position: relative;
  display: flex;
  border: 1px solid #e2e2e2;
  padding-bottom: 100%;
}

.popup-image-product img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: contain;
}

.fancybox-slide--html {
  padding: 0 !important;
}

.fancybox-slide--html .fancybox-close-small {
  color: #fff !important;
  right: -12% !important;
  top: -10% !important;
  padding: 5px !important;
}

.to-top {
  position: fixed;
  width: 70px;
  height: 70px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  cursor: pointer;
  top: calc(100vh - 40px);
  transform: translateY(-100%);
  right: 13vw;
  z-index: 2;
}

.to-top img {
  transform: rotate(180deg);
  transform-origin: center;
  opacity: 0.5;
}

.select2-container {
  height: 100%;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  color: #18181b;
  font-size: 14px;
  line-height: 1em;
  border: 1px solid #ddd;
}

.select2-container .select2-selection--single {
  height: 37px;
}

.course_edit_section_col .select2-container .select2-selection--single {
  height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 37px;
}

.course_edit_section_col .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 14px;
}

.course_edit_section_col .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px;
  width: 35px;
}

.course_edit_section_col .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
  width: 35px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  height: 35px;
}

.course_edit_section_col .select2-container--default .select2-selection--single .select2-selection__clear {
  height: 45px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: url(../img/271210.svg) center center no-repeat;
  width: 22px;
  background-size: 12px 18px;
  height: 18px;
  top: 56%;
  padding: 5px;
  transform: translateY(-50%) translateX(-50%);
  cursor: pointer;
  transition: all 0.3s;
  transform-origin: center;
  border: 0;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #dd1552;
  font-family: "Montserrat Regular";
  color: #fff;
  font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted .option-row_sub {
  color: #ffffff;
}

.select2-results__option--selectable {
  font-size: 14px;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 230px;
  overflow-x: hidden;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  margin-right: 37px;
}

.select2-container--default .select2-search--dropdown .select2-search__field, .select2-dropdown {
  border: 1px solid #ddd;
}

.select2-dropdown {
  -webkit-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: translateY(-50%) translateX(-50%) scaleY(-1);
  transition: all 0.3s;
}

.bx-authform-social ul {
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
}

.bx-authform {
  margin-top: 12px;
}

.discounts-wrap {
  display: flex;
  flex-direction: column;
}

.discounts-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 25px;
  gap: 30px;
}

.discounts-col {
  width: 50%;
}

.discounts-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.discounts-grid-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 15px;
}

.discounts-grid-row:nth-child(odd) {
  background-color: #f5f5f5;
}

.discounts-grid-col {
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 1em;
  color: #18181b;
  white-space: nowrap;
}

.discounts-grid-col:nth-child(2) {
  font-family: "Montserrat Bold";
  text-align: center;
}

.discount-master-wrap {
  padding: 30px;
  border: 1px solid #e4e4e4;
}

.section-header_subtitle {
  color: #656565;
  font-size: 16px;
  line-height: 22px;
}

.section-header_subtitle--mt {
  margin-top: 18px;
}

.product-button.zapis2-master-detail {
  margin-top: 10px;
}

.bx-soa-page-payment-addition h3 input {
  margin: 5px auto;
}

.product-tags {
  position: absolute;
  display: flex;
  top: 9px;
  left: 16px;
  z-index: 1;
}

.product-tags_item {
  width: 48px;
  padding: 6px 0;
  text-align: center;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1em;
  color: #fff;
}

.product-tags_item--discount {
  background-color: #dd1552;
}

.product-tags_item--hit {
  background-color: #7569d9;
}

.product-tags_item + .product-tags_item {
  margin-left: 5px;
}

@media screen and (max-width: 1170px) {
  .product {
    width: 33.33%;
  }
  .w100 {
    width: 100%;
  }
  .master-full {
    width: 100% !important;
  }
  .catalog-col {
    width: 71.6666%;
  }
  .catalog-filters {
    width: 25.367%;
  }
  .owl-next {
    right: -11px !important;
  }
  .owl-prev {
    left: -11px !important;
  }
}
.course_edit_section_body {
  margin-top: 23px;
  transition: height 0.3s;
}

.course_edit_section-title {
  font-size: 22px;
  font-family: "Montserrat Bold";
  color: #18181b;
}

.course_edit_section_wrap {
  margin-top: 23px;
}

.course_edit_section_wrap--gallery {
  border: 1px solid #ddd;
}

.course_edit_section_block:not(:first-child) {
  margin-top: 32px;
}

.course_edit_section_list-item:not(:first-child) {
  margin-top: 20px;
}

.course_edit_section_list-item {
  border-bottom: 1px solid #ddd;
}

.popup-body .popup-buttons {
  margin-top: 20px;
  display: flex;
}

.discounts-grid-col:nth-child(3) {
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .catalog-sort__study {
    width: 47%;
  }
  .search-section .product {
    width: 25%;
  }
  .catalog-col--b {
    width: 75.21%;
  }
  .catalog-col--s {
    width: 22.24%;
  }
  .catalog-col--padding {
    padding: 10px 30px 50px;
  }
  .course_edit_bar {
    padding: 10px 34px 10px 30px;
  }
  .course_edit_section--gray {
    padding: 20px 30px 35px;
  }
  .course_edit_buttons {
    margin-left: 30px;
  }
  .course_edit-button:not(:first-child) {
    margin-left: 30px;
  }
  .block_aside {
    width: 26.7%;
  }
  .block_course_profile {
    width: 70.8%;
  }
}
@media screen and (max-width: 991px) {
  .section-tags {
    display: none;
  }
  .catalog-sort {
    width: 33.814%;
  }
  .product-info {
    width: 100%;
  }
  .product-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .owl-next, .owl-prev {
    background-color: rgba(0, 0, 0, 0.5) !important;
    width: 50px !important;
    height: 50px !important;
  }
  .owl-next span, .owl-prev span {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .owl-nav span {
    background: url(../img/right_svg_white.svg) center center no-repeat;
    background-size: 100%;
  }
  .popular-brand {
    padding: 0 10px;
  }
  .container-card {
    width: 100%;
    padding: 0 10px;
  }
  .accordion-body {
    padding: 30px 48px;
  }
  .block_aside_submit {
    padding: 10px 13px;
  }
  .block_aside_more {
    padding: 22px 13px 18px;
  }
}
@media screen and (max-width: 768px) {
  .filter-body {
    display: none;
  }
  .catalog-filter--sticky {
    display: none;
  }
  .zoom-overlay {
    display: flex;
  }
  .contacts-map_semi {
    flex-direction: column;
    margin: 0;
  }
  .contacts-map_semi iframe {
    height: 300px;
    width: 100%;
    margin: 0;
  }
  .contacts-map_photo {
    width: 100%;
    margin: 20px 0 0 0;
  }
  .course_edit_section_row {
    flex-wrap: wrap;
  }
  .course_edit_section_col--xxsm {
    width: calc(33.3333333333% - 10px);
  }
  .course_edit_section_col--xxmd {
    margin-top: 10px;
    width: calc(50% - 10px);
  }
  .search-section .product {
    width: 33%;
  }
  .product:hover .product-more {
    z-index: 2;
    visibility: hidden;
  }
  .course_edit_section .course_edit_section_row:not(:first-child) {
    margin-top: 0;
  }
  .discounts-grid-col.discounts-grid-col--desc {
    word-wrap: break-word;
    white-space: normal;
  }
  .product-tags_item--discount {
    color: #fff !important;
  }
  .nav-widgets_item--lang {
    border: 0;
    display: none;
  }
  .to-top {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .to-top img {
    opacity: 1;
    -webkit-filter: brightness(0%) invert(100%);
  }
  .contacts-item_content_row--malina {
    color: #dd1552;
  }
  .contacts-item_content {
    font-size: 18px;
  }
  .contacts-item:not(:first-child) {
    margin-top: 10px;
  }
  .contacts-block-content {
    margin-top: 10px;
  }
  .contacts-info {
    margin-top: 20px;
  }
  .contacts-block--r {
    width: 100%;
    margin-top: 30px;
  }
  .container--p {
    padding: 0 20px;
  }
  .catalog-description {
    margin-top: 32px;
  }
  .product-button--buy {
    text-transform: uppercase;
  }
  .product-button--buy img {
    margin-right: 11px;
    width: 16px;
    margin-bottom: 2px;
  }
  .product-button--mobile {
    display: flex;
  }
  .catalog-filters {
    width: 32.367%;
  }
  .catalog-col {
    width: 63.6666%;
  }
  .product {
    width: 50%;
  }
  .w100 {
    width: 100%;
  }
  .catalog-sort {
    width: 43.814%;
  }
  .section-header_title {
    font-size: 27px;
  }
  .catalog-wrapper {
    margin-top: 14px;
    flex-wrap: wrap;
  }
  .catalog-col--b, .catalog-col--s {
    width: 100%;
  }
  .master-full .master-photo_image img {
    width: 300px;
  }
  .master-photo_image {
    justify-content: center;
  }
  .catalog-col--border {
    border: 0;
  }
  .catalog-col--padding {
    padding: 10px 0 50px;
  }
  .block_aside_info {
    padding: 4% 36%;
  }
  .course_profile {
    flex-direction: column;
  }
  .block_aside {
    width: 100%;
  }
  .block_course_profile {
    width: 100%;
    margin-top: 20px;
  }
  .course_edit_gallery_item {
    width: calc(25% - 14px);
    margin: 7px;
  }
  .block_aside_info_photo-widget {
    right: 10%;
  }
  .block_aside_info_photo-widget--edit {
    top: 0;
  }
  .photo-added .block_aside_info_photo-widget.block_aside_info_photo-widget--remove {
    opacity: 1;
    top: 0px;
    right: 90%;
    transform: translateX(100%);
  }
  .block_aside_info_photo-widget--instagram, .instagram-added:hover .block_aside_info_photo-widget--instagram {
    right: 10%;
    opacity: 1;
    top: 100%;
    transform: translateY(-100%);
  }
  .course_edit_section_body {
    margin-top: 14px;
  }
  .course_edit_section_block:not(:first-child) {
    margin-top: 14px;
  }
  .course_profile_head_description {
    margin-top: 2px;
  }
  .course_edit_section_wrap {
    margin-top: 14px;
  }
  .course_edit_section--gray {
    padding: 10px 20px 20px;
  }
  .course_edit_gallery {
    margin: -14px;
  }
  .discounts-col {
    width: 100%;
    margin: 0;
  }
  .discounts-wrap {
    padding: 0 10px;
  }
  .discounts-section {
    flex-direction: column;
    margin: 0;
  }
  .delivery-page {
    flex-direction: column;
  }
  .delivery-faq {
    padding: 0 10px;
  }
  .delivery-column {
    width: 100%;
  }
  .delivery-column:not(:first-child) {
    margin-top: 20px;
  }
  .delivery-column_pay_wrapper {
    flex-direction: row;
    margin-top: 10px;
  }
  .delivery-column_pay_block {
    width: 50%;
  }
  .delivery-column_pay_block:not(:first-child) {
    margin-top: 0;
    border-left: 0;
  }
  .catalog-sort__study {
    width: 56%;
  }
  .site-label {
    flex-direction: column;
    align-items: center;
  }
  .site-label_text {
    text-align: center;
    font-size: 12px;
  }
  .order-list-button:not(:first-child) {
    margin: 0;
  }
  .order-list-button.sale-order-list-cancel-payment {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
  .product:not(.master-full):hover .product-more {
    visibility: hidden !important;
  }
}
@media screen and (max-width: 480px) {
  #webpay {
    width: 300px;
  }
  .photo-added .block_aside_info_photo-widget.block_aside_info_photo-widget--remove {
    right: 100%;
    transform: translateX(0);
  }
  .course_edit_section_col--xxsm {
    width: calc(100% - 10px);
  }
  .course_edit_section_col--xxmd {
    width: calc(100% - 10px);
  }
  .search-section .product {
    width: 50%;
  }
  .delivery-title {
    font-size: 18px;
  }
  .discounts-grid-col.discounts-grid-col--desc {
    word-wrap: break-word;
    white-space: normal;
  }
  .delivery-desk-list_subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
  }
  .delivery-desk_item {
    font-size: 14px;
    line-height: 22px;
  }
  .delivery-desk_item:not(:first-child) {
    margin-top: 0;
  }
  .discounts-grid--times .discounts-grid-col:nth-child(2) {
    text-align: right;
  }
  .more-delivery {
    margin-left: 0;
    display: flex;
    width: max-content;
  }
  .pay-form-new h3 {
    margin: 10px 0;
  }
  .pay-form-new input[type=submit] {
    margin: 5px auto 0;
  }
  .photo-added:hover .block_aside_info_photo-widget--remove {
    transform: translateX(0);
  }
  .course_edit_section_col--xsm {
    width: calc(100% - 10px);
  }
  .fancybox-slide--html .fancybox-close-small {
    color: #18181b !important;
    right: -2% !important;
    top: -1% !important;
    padding: 7px !important;
  }
  .slick-next.product-item-detail-slider-right:before, .slick-prev.product-item-detail-slider-left:before {
    background: url(../img/right_svg_white.svg) center center no-repeat;
    background-size: 100%;
  }
  .contacts-map iframe {
    height: 300px;
  }
  .contacts-block:not(:first-child) {
    margin-top: 35px;
  }
  .contacts-block--address {
    order: 0;
    margin-top: 0;
  }
  .contacts-block--socials {
    order: 1;
  }
  .contacts-block--phones {
    order: 2;
  }
  .contacts-block--credits {
    order: 3;
  }
  .socials--contacts {
    margin-top: 12px;
  }
  .contacts-info {
    margin-top: 24px;
  }
  .your-score {
    flex-direction: column;
  }
  .your-score .rating {
    margin: 3px 0 0;
  }
  .tab-reviews-count {
    right: auto;
  }
  .tab-item-table-row {
    flex-direction: column;
  }
  .tab-item-table-row_body, .tab-item-table-row_title {
    width: 100%;
  }
  .popular-brand h2 {
    font-size: 24px;
    width: 100%;
    margin: 0;
  }
  .tabs-header {
    overflow-y: scroll;
    padding: 22px 0;
    position: relative;
    border-bottom: 0;
  }
  .product-wrapper {
    padding-bottom: 0;
    border: 0;
  }
  .often-buy-wrapper {
    margin-top: 35px;
  }
  .tabs-header:after {
    width: 125%;
    height: 1px;
    content: "";
    z-index: -1;
    bottom: 3px;
    background-color: #ececec;
    position: absolute;
    left: 0;
  }
  .tabs-header_item:not(:first-child) {
    margin-left: 0;
  }
  .tabs-header_item {
    padding: 0 23px;
  }
  .tabs-header::-webkit-scrollbar {
    display: none;
  }
  .product-review-space {
    margin-bottom: 0;
    margin-top: 20px;
    order: 2;
  }
  .product-info-price {
    order: 2;
    margin-top: 13px;
  }
  .product-offer--more {
    order: 3;
    margin-top: 13px;
  }
  .product-info-pre {
    margin-top: 20px;
  }
  .slick-next, .slick-prev {
    height: 50px;
    width: 50px;
  }
  .product:hover {
    filter: unset;
    z-index: 1;
    transition: unset;
    outline: 1px solid #ececec;
  }
  .slick-prev {
    left: -50px !important;
  }
  .slick-next, .slick-prev {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-top-left-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 0;
  }
  .slick-next {
    right: -50px !important;
  }
  .section-header .catalog-sort {
    display: none;
  }
  .section-header_title {
    margin: 0;
    font-family: "Montserrat Bold";
  }
  .catalog-wrapper {
    flex-direction: column;
  }
  .catalog-filters {
    width: 100%;
  }
  .filter-head--trigger {
    position: relative;
  }
  .filter-head--trigger:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: url(https://image.flaticon.com/icons/svg/271/271210.svg) center center no-repeat;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
    right: 21px;
    transition: all 0.3s;
  }
  .filter-head--trigger.open:after {
    transform: translateY(-50%) scaleY(-1);
    transition: all 0.3s;
  }
  .catalog-sort--mobile {
    display: flex;
    width: 100%;
    margin-top: 2rem;
  }
  .catalog-col {
    margin-top: 17px;
    width: 100%;
  }
  /*.catalog-filter:not(:first-child) {*/
  /*    width: calc(100% + 2px);*/
  /*    margin-left: -1px;*/
  /*    position: relative*/
  /*}*/
  .tabs_sliders_item .owl-stage-outer {
    padding: 20px 2px 30px;
    margin: 0 -2px -30px;
  }
  .often-buy-wrapper {
    padding: 0;
  }
  .accordion-title, .block_aside_submit button, .master-gallery_img img {
    width: 100%;
  }
  .accordion-head {
    padding: 15px 55px 15px 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .accordion-label:not(:first-child) {
    margin: 8px 0 0;
  }
  .accordion-label:last-child {
    margin-left: 20px;
  }
  .accordion-body {
    padding: 20px;
  }
  .tabs-header_item--master .tab-reviews-count {
    right: 0;
  }
  .catalog-col--padding {
    padding: 10px 0 20px;
  }
  .master-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .master-gallery_img {
    width: 50%;
  }
  .block_aside_info_photo-widget {
    right: 0;
  }
  .block_aside_info_photo-widget--remove {
    left: 0;
    right: unset;
    transform: translateX(0);
  }
  .course_edit_widgets_item-label {
    display: none;
  }
  .course_profile_article-button {
    width: calc(50% - 10px);
    margin: 5px;
  }
  .course_profile_article-button-removeTmp:not([style*="display: none"]) ~ .master-block-kurs-item-add-update {
    width: calc(100% - 10px);
  }
  .course_edit_gallery_item {
    width: calc(33.3333333333% - 14px);
  }
  .course_edit_section_row {
    flex-direction: column;
  }
  .course_edit_section_row--buttons {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .course_edit_section_col--sm {
    width: calc(100% - 10px);
  }
  .course_edit_section_col {
    margin: 5px;
  }
  .course_profile_head-label-wrap {
    display: none;
  }
  .course_profile_head-label--mobile {
    display: flex;
  }
  .course_edit_section {
    padding-bottom: 24px;
  }
  .course_edit_bar {
    padding: 10px 20px;
  }
  .section-header_title {
    font-size: 22px;
    margin-top: 10px;
    line-height: 24px;
  }
  .discount-master-wrap {
    padding: 15px;
  }
  .section-header_subtitle--mt {
    margin-top: 14px;
  }
  .delivery-column_pay_wrapper {
    flex-direction: column;
  }
  .delivery-column_pay_block:not(:first-child) {
    margin-top: 25px;
    border-left: 1px solid #e4e4e4;
  }
  .delivery-page {
    margin-top: 15px;
  }
  .delivery-faq {
    margin-top: 15px;
  }
  .delivery-wrapper {
    margin-top: 0;
  }
  .delivery-page_title {
    color: #000000;
    font-size: 20px;
  }
  .delivery-block--mt {
    margin-top: 10px;
  }
  .delivery-item_col {
    width: 47%;
  }
  .delivery-item_col p + p {
    margin-top: 0;
  }
  .delivery-block {
    padding: 14px 0;
  }
  .delivery-item_price {
    align-items: flex-start;
  }
  .delivery-item {
    align-items: flex-start;
  }
  .delivery-block--no-border .course_profile_article-button {
    width: 100%;
  }
  .delivery-column_pay_block {
    padding: 0 25px 25px;
    width: 100%;
  }
  .delivery-column_pay_block_padding {
    padding: 25px;
  }
  .mobile-show {
    display: block;
  }
  .delivery-text {
    font-size: 14px;
  }
  .delivery-text_price {
    font-size: 16px;
  }
  .mobile-hide {
    display: none;
  }
  .check-block-img_overlay {
    display: none;
  }
  .block_aside_info_photo-widget--instagram .block_aside_info_photo-widget-tooltip {
    transform: translateX(0) scale(0);
    left: 100%;
    top: unset;
    bottom: 85%;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 0;
    transition: all 0.5s;
  }
  .block_aside_info_photo-widget--instagram .block_aside_info_photo-widget-tooltip.active {
    transform: translateX(0) scale(1);
  }
  .block_aside_info_photo-widget-scroll {
    bottom: calc(100% + 10px);
    left: 100%;
    border-bottom-right-radius: 10px;
    top: unset;
    transform: translateX(-50%) scale(0);
  }
  .block_aside_info_photo-widget-scroll:before {
    content: "";
    top: 100%;
    left: 30px;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ddd;
    clear: both;
  }
  .block_aside_info_photo-widget-tooltip.active {
    transform: translateX(-50%) scale(1);
    transition: all 0.5s;
  }
  .product-preview-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .section-header_title {
    font-size: 20px;
    line-height: 24px;
  }
  .product-review-space .product-stock {
    display: none;
  }
  .product-tags_item {
    padding: 6px 0;
    text-align: center;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1em;
    color: #fff;
  }
  .slider-single > div:nth-child(n+2) {
    display: none;
  }
  .tabs-header_item {
    padding: 0 10px;
  }
  .tabs-header_item:not(:first-child) {
    margin-left: 17px;
  }
  .product {
    display: flex;
  }
  .master, .master-full .master-photo_image img {
    width: 100%;
  }
  .master-info_name {
    font-size: 16px;
  }
  .master-photo {
    padding: 0;
    display: flex;
    align-items: flex-start;
  }
  .master-photo-label {
    min-width: 76px;
    background-color: #dd1552;
    color: #fff;
    padding: 8px 0;
    transform: unset;
    left: calc(100% + 10px);
  }
  .master .product-less, .master .product-item {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product-button {
    margin-top: auto;
  }
  .catalog-cards .product-review, .product-price {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-price_item-no-discount {
    margin-left: 0;
  }
  .catalog-cards .product-review {
    -moz-flex-direction: column;
    -o-flex-direction: column;
  }
  .catalog-cards .product-review--centered {
    flex-direction: row;
    justify-content: flex-start;
  }
  .catalog-cards .reviews-count {
    margin-left: 0;
    margin-top: 5px;
  }
  .product-review--centered .reviews-count {
    margin-top: 0;
    margin-left: 8px;
  }
  .master-photo {
    width: 30.384%;
  }
  .master-info {
    align-items: flex-start;
    margin-top: 13px;
  }
  .master-column {
    margin-left: 10px;
    margin-top: 4px;
  }
  .master-info_geo {
    margin-top: 10px;
  }
  .buttons-wrap-semi {
    width: 100%;
  }
  .tabs-header_item--master .tab-reviews-count {
    right: -13px;
  }
  .catalog-col--padding {
    padding: 0;
  }
  .course_edit_bar {
    flex-wrap: wrap;
  }
  .course_edit_bar .course_edit_section-label {
    flex: unset;
    width: 100%;
    order: 2;
    margin-top: 7px;
  }
  .course_edit_gallery_item {
    width: calc(50% - 14px);
  }
  .course_edit_gallery_wrap {
    padding: 20px;
  }
  .course_edit_section {
    padding-bottom: 10px;
  }
  .course_edit_section--gray .course_edit_section_row:not(:first-child) {
    margin-top: 0;
    display: flex;
  }
  .product-offer + .popup-buttons {
    margin-top: 15px;
  }
  .block_aside_info {
    flex-direction: row;
    padding: 20px;
  }
  .block_aside_info_photo {
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0;
  }
  .block_aside_info_photo-widget {
    width: 24px;
    height: 24px;
    right: 1px !important;
  }
  .block_aside_info_photo-widget img {
    width: 10px;
  }
  .block_aside_info-label {
    margin-left: 18px;
    text-align: left;
  }
  .block_aside_more {
    padding: 16px 17px 15px;
  }
  .block_aside_submit {
    padding: 10px 17px;
  }
  .course_profile_head_description {
    width: 70%;
  }
  .block-subtitle, .button-master-confirm {
    margin-top: 10px;
  }
  .product-records {
    width: 100%;
  }
  .discounts-grid-row {
    padding: 15px 10px;
  }
  .catalog-sort_item {
    font-size: 1.6rem;
    margin-left: 0;
  }
  .popup-item {
    width: 95%;
  }
}
@media screen and (max-width: 411px) {
  .section-header_title {
    font-size: 18px;
    line-height: 24px;
  }
  .section-header_subtitle {
    font-size: 14px;
    line-height: 20px;
  }
  .section-header_subtitle--mt {
    margin-top: 10px;
  }
  .button-master-confirm {
    margin-top: 7px;
  }
  .fancybox-slide--html .fancybox-close-small {
    color: #18181b !important;
    right: -2% !important;
    top: -1% !important;
    padding: 10px !important;
  }
  .tab-article-title {
    font-size: 14px;
    line-height: 20px;
  }
  .accordion-label, .accordion-title {
    font-size: 14px;
  }
  .tab-article-text {
    font-size: 14px;
    line-height: 20px;
  }
  .tab-article-list_item {
    font-size: 14px;
    line-height: 16px;
  }
  .tabs-header_item {
    font-size: 13px;
  }
}
@media screen and (max-width: 395px) {
  .discounts-grid-col {
    white-space: nowrap;
  }
  .discounts-grid-col.discounts-grid-col--desc {
    word-wrap: break-word;
    white-space: normal;
  }
  .empty-basket {
    margin-top: 30px;
  }
  .title-b {
    font-size: 28px;
  }
  .master-info {
    margin-top: 7px;
  }
  .master-info_geo {
    margin-top: 8px;
  }
  .props, .props_body {
    margin-top: 15px;
  }
  .props_body {
    font-size: 14px;
    line-height: 24px;
  }
  .payment-block_title {
    margin-top: 20px;
  }
}
@media screen and (max-width: 375px) {
  .discounts-grid-col {
    font-size: 15px;
  }
  .discounts-section {
    margin-top: 20px;
  }
  .section-header_title {
    font-size: 22px;
    line-height: 24px;
  }
  .product-info .product-offer__buy--more {
    padding: 0 44px 0 45px;
  }
  .product-info .product-review {
    flex-direction: row;
    align-items: center;
  }
  .tab-item-table-row {
    flex-direction: column;
  }
  .tab-item-table-row_title {
    width: 100%;
  }
  .product-info .product-info-price {
    margin-top: 18px;
  }
  .product-less, .product-item {
    padding: 10px 10px 20px;
  }
}
@media screen and (max-width: 320px) {
  .catalog-sort_item {
    font-size: 1.4rem;
    margin-left: 0;
  }
  .discounts-grid-col {
    font-size: 13px;
  }
  .master-info, .master-info_geo {
    margin-top: 5px;
  }
  .master-photo-label {
    padding: 4px 0;
  }
  .product-info .product-offer__buy--more {
    padding: 0 23px 0 32px;
    white-space: nowrap;
  }
  .tabs-header_item {
    padding: 0;
  }
  .tabs-header_item:not(:first-child) {
    margin-left: 19px;
  }
  .tabs-header_item--master .tab-reviews-count {
    right: -23px;
  }
  .accordion-head.active:after, .accordion-head:after {
    right: 25px;
  }
  .course_profile_head_description {
    font-size: 14px;
  }
  .course_profile-title {
    font-size: 16px;
  }
  .course_profile_head-label {
    font-family: "Montserrat Medium";
  }
  .block-subtitle {
    font-size: 14px;
  }
  .block-title {
    font-size: 20px;
  }
  .block-subtitle, .button-master-confirm {
    margin-top: 5px;
  }
  .section-header_title {
    font-size: 18px;
  }
}
.orig-item:after {
  content: url(../img/checked.png);
  position: absolute;
  right: 4px;
  top: 6px;
  transform: translateY(-50%);
}

.pay {
  background: linear-gradient(122.58deg, rgba(223, 24, 85, 0.87) 12.96%, #DF3018 83.94%);
  border-radius: 3px;
  font-family: "Montserrat Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 12px 20px;
  border: 0;
  cursor: pointer;
  display: block;
}

/*# sourceMappingURL=style.css.map */
