html {
  -webkit-text-size-adjust: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

body {
  min-height: 100vh;
  background-color: #ffffff;
  margin: 0;
  font-family: "TT Commons", sans-serif;
}

main {
  padding: 143px 0 0 0;
  min-height: 100vh;
}
@media (max-width: 1200px) {
  main {
    padding: 139px 0 0 0;
  }
}
@media (max-width: 960px) {
  main {
    padding: 59px 0 0 0;
  }
}
@media (max-width: 840px) {
  main {
    padding: 110px 0 0 0;
  }
}
@media (max-width: 375px) {
  main {
    padding: 96px 0 0 0;
  }
}
@media (max-width: 840px) {
  main.small-padding {
    padding: 60px 0 0 0;
  }
}
@media (max-width: 425px) {
  main.small-padding {
    padding: 46px 0 0 0;
  }
}

.container {
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 640px;
  }
}
@media (max-width: 640px) {
  .container {
    max-width: 100%;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-word;
}

img {
  display: block;
  max-width: 100%;
}

input, select, textarea, button {
  outline: none !important;
}

a {
  text-decoration: none;
}

.messages {
  height: 33px;
  width: 100%;
  background: #FF7C02;
  position: fixed;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  opacity: 0;
  top: -33px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.messages.active {
  visibility: visible;
  opacity: 1;
  top: 142px;
}
@media (max-width: 1200px) {
  .messages.active {
    top: 139px;
  }
}
@media (max-width: 960px) {
  .messages.active {
    top: 59px;
  }
}
@media (max-width: 840px) {
  .messages.active {
    top: 105px;
  }
}
@media (max-width: 425px) {
  .messages.active {
    top: 96px;
  }
}
.messages.success {
  background: #0AC006;
}
.messages.danger {
  background: #FF103B;
}
.messages .text {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
}

.grid-global {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grid-global .left-side-global {
  min-width: 236px;
  width: 236px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.grid-global .left-side-global .category-global {
  min-width: 236px;
  width: 236px;
  position: fixed;
  z-index: 22;
  background: white;
  top: 141px;
  border: 1px solid transparent;
}
@media (max-width: 840px) {
  .grid-global .left-side-global .category-global {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 109px !important;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 50;
    margin: 0 auto;
    width: 100%;
    min-width: 100%;
    height: calc(100vh - 109px);
    padding: 0 16px;
    overflow-y: auto;
  }
}
@media (max-width: 840px) and (max-width: 425px) {
  .grid-global .left-side-global .category-global {
    top: 96px !important;
    height: calc(100vh - 96px);
  }
}
@media (max-width: 840px) {
  .grid-global .left-side-global .category-global.active {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 840px) {
  .grid-global .left-side-global .category-global .accordionjs {
    max-width: 640px;
    margin: 0 auto;
  }
}
.grid-global .left-side-global .category-global.category-fixed {
  position: fixed;
  margin: 0 0 0 -16px;
  top: 141px;
  padding: 0 0 24px 16px;
  width: 100%;
  max-width: 670px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #EEEEEE;
  -webkit-box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 2px 2px;
}
@media (max-width: 960px) {
  .grid-global .left-side-global .category-global.category-fixed {
    max-width: 617px;
  }
}
.grid-global .left-side-global .category-global.category-fixed .new-category .new-category-inner .new-category-first {
  border-right: 1px solid #EEEEEE;
}
.grid-global .right-side-global {
  overflow: hidden;
  width: 100%;
  margin: 24px -18px 0 -18px;
  padding: 0 18px;
}

.category-mobile {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  background: #FF103B;
  visibility: hidden;
  color: #ffffff;
  opacity: 0;
  top: 142px;
}
@media (max-width: 1200px) {
  .category-mobile {
    top: 117px;
  }
}
@media (max-width: 960px) {
  .category-mobile {
    top: 63px;
  }
}
@media (max-width: 840px) {
  .category-mobile {
    top: 55px;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 425px) {
  .category-mobile {
    top: 46px;
  }
}

.activeModal {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 10000;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.35);
}
.modal.show {
  visibility: visible;
  opacity: 1;
}
.modal.show .modal-container {
  opacity: 1;
}
.modal.password-changed .modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 90px 54px 64px 54px;
}
.modal form {
  margin: 0;
}
.modal .modal-container {
  background: #FFFFFF;
  margin: 135px auto 115px auto;
  max-width: 508px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
  position: relative;
  -webkit-box-shadow: 0 24px 32px rgba(0, 0, 0, 0.25);
          box-shadow: 0 24px 32px rgba(0, 0, 0, 0.25);
  padding: 36px 54px;
}
@media (max-width: 540px) {
  .modal .modal-container {
    margin: 100px 16px;
    padding: 36px;
  }
}
.modal .modal-container .text-center {
  text-align: center;
}
.modal .modal-container .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.modal .modal-container h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #181818;
}
.modal .modal-container .reb-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  background: #FF103B;
  border-radius: 2px;
  width: 100%;
  line-height: 16px;
  color: #FFFFFF;
  height: 44px;
  border: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal .close-one-click-modal {
  border-radius: 2px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FF9A02;
  background: transparent;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal .close-one-click-modal:hover {
  -webkit-box-shadow: 0 4px 12px rgba(47, 44, 44, 0.05);
          box-shadow: 0 4px 12px rgba(47, 44, 44, 0.05);
}

.category-title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #181818;
  z-index: 16;
  position: relative;
  padding: 24px 0 0 0;
  background: #ffffff;
  margin: 0 0 18px 0;
}
@media (max-width: 840px) {
  .category-title {
    display: none;
  }
}

.whats-app {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 3000;
  -webkit-animation: scale 10s ease-in-out infinite;
          animation: scale 10s ease-in-out infinite;
}
@-webkit-keyframes scale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  94% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  97% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  94% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  97% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (max-width: 840px) {
  .whats-app {
    right: 40px;
    bottom: 50px;
  }
}
@media (max-width: 640px) {
  .whats-app {
    right: -8px;
    bottom: 120px;
  }
}
.whats-app img {
  -webkit-filter: drop-shadow(0 4px 36px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 4px 36px rgba(0, 0, 0, 0.15));
}
@media (max-width: 640px) {
  .whats-app img {
    width: 75%;
  }
}

.body-hidden {
  overflow: hidden;
  padding: 0 17px 0 0;
}
@media (max-width: 1024px) {
  .body-hidden {
    padding: 0;
  }
}

.body-hidden-mac {
  overflow: hidden;
  padding: 0 15px 0 0;
}
@media (max-width: 1024px) {
  .body-hidden-mac {
    padding: 0;
  }
}

.watsapp-hidden {
  padding: 0 17px 0 0;
}
@media (max-width: 1024px) {
  .watsapp-hidden {
    padding: 0;
  }
}

.watsapp-hidden-mac {
  padding: 0 15px 0 0;
}
@media (max-width: 1024px) {
  .watsapp-hidden-mac {
    padding: 0;
  }
}

.icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.icon.icon-add {
  background-image: url(../svg/add.svg);
}
.icon.icon-login {
  background-image: url(../svg/log-in.svg);
}
.icon.icon-add-shop {
  background-image: url(../svg/add-shop.svg);
}
.icon.icon-user {
  background-image: url(../svg/icon-user.svg);
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-cart {
  background-image: url(../svg/icon-cart.svg);
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-menu {
  background-image: url(../svg/menu.svg);
  background-size: contain;
}
.icon.icon-search {
  background-image: url(../svg/search.svg);
}
.icon.icon-vk {
  background-image: url(../svg/icon-vk.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-fb {
  background-image: url(../svg/icon-fb.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-ok {
  background-image: url(../svg/icon-ok.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-insta {
  background-image: url(../svg/icon-insta.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-mail {
  background-image: url(../svg/message.svg);
}
.icon.icon-phone {
  background-image: url(../svg/phone-2.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-black-arrow {
  background-image: url(../svg/icon-black-arrow.svg);
}
.icon.icon-red-arrow {
  background-image: url(../svg/icon-red-arrow.svg);
}
.icon.icon-favorite {
  background-image: url(../svg/favorite.svg);
}
.icon.icon-favorite-active {
  background-image: url(../svg/favorite-active.svg);
}
.icon.icon-rating {
  background-image: url(../svg/star.svg);
}
.icon.icon-category {
  background-image: url(../svg/star.svg);
}
.icon.icon-location {
  background-image: url(../svg/map-location-2.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-clock {
  background-image: url(../svg/clock-2.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-favorite-dark {
  background-image: url(../svg/fav-dark.svg);
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-cart-dark {
  background-image: url(../svg/icon-cart-dark.svg);
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.icon.icon-like {
  background-image: url(../svg/like.svg);
}
.icon.icon-dislike {
  background-image: url(../svg/dislike.svg);
}
.icon.icon-like-active {
  background-image: url(../svg/like-active.svg);
}
.icon.icon-dislike-active {
  background-image: url(../svg/like-active.svg);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.icon.icon-plus {
  background-image: url(../svg/icon-plus.svg);
}
.icon.icon-remove {
  background-image: url(../svg/remove.svg);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.icon.icon-remove-cart {
  background-image: url(../svg/remove-cart.svg);
  width: 32px;
  height: 32px;
  min-width: 32px;
}
.icon.icon-show-pass {
  background-image: url(../svg/eye-close.svg);
}
.icon.icon-edit {
  background-image: url(../svg/edit.svg);
}
.icon.icon-not-edit {
  background-image: url(../svg/not-edit.svg);
}
.icon.icon-orange-plus {
  background-image: url(../svg/orange-add.svg);
}
.icon.icon-remove-red {
  background-image: url(../svg/remove-red.svg);
}
.icon.icon-close-modal {
  background-image: url(../svg/dark-remove.svg);
}

header {
  width: 100%;
  position: absolute;
  z-index: 56;
  height: 142px;
  background: transparent;
}
@media (max-width: 960px) {
  header {
    overflow-x: hidden;
  }
}
header.show-category .header, header.show-category .dark-header {
  padding: 0 17px 0 0;
}
@media (max-width: 1024px) {
  header.show-category .header, header.show-category .dark-header {
    padding: 0;
  }
}
header.show-category-mac .header, header.show-category-mac .dark-header {
  padding: 0 15px 0 0;
}
@media (max-width: 1024px) {
  header.show-category-mac .header, header.show-category-mac .dark-header {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  header {
    height: 138px;
  }
}
@media (max-width: 960px) {
  header {
    height: 60px;
  }
}
@media (max-width: 840px) {
  header {
    height: 55px;
  }
}
@media (max-width: 425px) {
  header {
    height: 46px;
  }
}

.header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #F3F3F3;
}
.header .container {
  width: 100%;
}
@media (max-width: 1200px) {
  .header {
    display: none;
  }
}
.header .light-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 86px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .header .light-header {
    height: 58px !important;
  }
}
.header .flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  margin: 0 23px 0 0;
  position: relative;
}
.header .logo img {
  width: 100% !important;
  max-height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .logo a {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.header .create-shop-btn {
  background: #FFC702;
  border-radius: 2px;
  margin: 0 48px 0 0;
}
.header .create-shop-btn a {
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  width: 186px;
  font-size: 14px;
  color: #FFFFFF;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .create-shop-btn a .text {
  margin-top: 3px;
}
.header .header-links {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
}
.header .header-links .header-links-item:hover .text {
  color: #FF9A02;
}
.header .header-links .header-links-item:hover .icon.icon-favorite-dark {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
.header .header-links .header-links-item:hover .icon.icon-cart-dark {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
.header .header-links .header-links-item a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
  color: #181818;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.header .header-links .header-links-item a img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 12px;
}
.header .header-links .header-links-item a .icon {
  margin: 0 12px 0 0;
}
.header .header-links .header-links-item a .text {
  margin-top: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}
.header .header-links .header-links-item.cart {
  position: relative;
}
.header .header-links .header-links-item.cart .quantity {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  background: #FF103B;
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1px 0 0;
  z-index: 1;
}

.dark-header {
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #181818;
}
@media (max-width: 1200px) {
  .dark-header {
    height: 80px;
  }
}
@media (max-width: 960px) {
  .dark-header {
    display: none;
  }
}
.dark-header .container {
  width: 100%;
}
.dark-header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dark-header .flex .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .dark-header .flex .left {
    margin: 0 0 12px;
    width: 100%;
  }
}
.dark-header .flex .left ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
@media (max-width: 1200px) {
  .dark-header .flex .left ul {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1200px) {
  .dark-header .flex .left ul li:last-child {
    margin: 0;
  }
}
.dark-header .flex .left ul li a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.dark-header .flex .left ul li a:hover {
  color: #FFC702;
}
.dark-header .flex .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .dark-header .flex .right {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.dark-header .flex .right .work-time {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-align: right;
  color: #FFFFFF;
}

.tel-dropdown {
  position: relative;
}
.tel-dropdown .tel-but, .tel-dropdown .tel {
  font-size: 16px;
  line-height: 18px;
  color: #FFC702;
}
.tel-dropdown .tel-but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  cursor: pointer;
}
@media (max-width: 960px) {
  .tel-dropdown .tel-but {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 0 12px;
  }
}
.tel-dropdown .tel-but.active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.tel-dropdown .tel-but span {
  margin: 3px 0 0 0;
}
.tel-dropdown .tel-but .icon_tel_arrow {
  width: 11px;
  height: 11px;
  min-width: 11px;
  margin: 0 0 0 7px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  stroke: #FFC702;
}
.tel-dropdown .tel-content {
  position: absolute;
  z-index: 10;
  top: 38px;
  left: 0;
  right: 0;
  display: none;
  background: #181818;
  border-radius: 0 0 4px 4px;
}
@media (max-width: 960px) {
  .tel-dropdown .tel-content {
    position: static;
  }
}
.tel-dropdown .tel-content .tel-content__inner {
  padding: 16px;
  margin: -15px 0 0 0;
}
@media (max-width: 960px) {
  .tel-dropdown .tel-content .tel-content__inner {
    border-radius: 4px;
  }
}
.tel-dropdown .tel-content .tel {
  color: #FFFFFF;
  display: block;
  margin: 0 0 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.tel-dropdown .tel-content .tel:hover {
  color: #FFC702;
}
.tel-dropdown .tel-content .tel:last-child {
  margin: 0;
}

.callback {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #181818;
  background-color: #FFC702;
  border-radius: 2px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  padding: 7px 21px 5px;
}
.callback:hover {
  background-color: #ffffff;
}

.mobile-header {
  position: relative;
  display: none;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #F3F3F3;
  z-index: 56;
}
@media (max-width: 960px) {
  .mobile-header {
    position: fixed;
    top: 0;
  }
}
.mobile-header .mobile-light-header {
  padding: 10px 0;
}
@media (max-width: 960px) {
  .mobile-header .mobile-light-header .container {
    max-width: 100%;
  }
}
.mobile-header .mobile-light-header .mobile-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-header .mobile-light-header .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-height: 38px;
}
@media (max-width: 425px) {
  .mobile-header .mobile-light-header .logo img {
    max-height: 25px;
  }
}
.mobile-header .mobile-menu {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  position: absolute;
  z-index: 15;
  top: 0;
  right: 0;
  padding: 64px 20px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  display: none;
}
@media (max-width: 960px) {
  .mobile-header .mobile-menu {
    display: block;
  }
}
.mobile-header .mobile-menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-header .mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-header .mobile-menu ul li a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
}
.mobile-header .mobile-menu ul li .work-time {
  color: #767676;
}
@media (max-width: 1200px) {
  .mobile-header {
    display: block;
  }
}
.mobile-header .flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-header .flex .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 425px) {
  .mobile-header .flex .navigation .ml-24 {
    margin: 0 0 0 16px;
  }
}
@media (max-width: 375px) {
  .mobile-header .flex .navigation .ml-24 {
    margin: 0 0 0 13px;
  }
}
.mobile-header .flex .navigation > div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.mobile-header .flex .navigation a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.mobile-header .flex .navigation .cart {
  position: relative;
}
.mobile-header .flex .navigation .cart .quantity {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  background: #FF103B;
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1px 0 0;
}
.mobile-header .flex .navigation .burger-menu {
  position: relative;
  display: none;
}
@media (max-width: 960px) {
  .mobile-header .flex .navigation .burger-menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.mobile-header .flex .navigation .burger-menu .menu-hamburger {
  position: relative;
  z-index: 120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.mobile-header .flex .navigation .burger-menu .menu-hamburger .icon-hamburger {
  display: inline-block;
  margin: 0;
}
.mobile-header .flex .navigation .burger-menu .menu-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #BFBFBF;
  border-radius: 50px;
  margin: 0 0 5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mobile-header .flex .navigation .burger-menu .menu-hamburger span:nth-child(2) {
  position: absolute;
}
.mobile-header .flex .navigation .burger-menu .menu-hamburger span:last-child {
  margin: 0;
}
.mobile-header .flex .navigation .burger-menu .menu-hamburger.active span {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mobile-header .flex .navigation .burger-menu .menu-hamburger.active span:nth-child(2) {
  opacity: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-header .flex .navigation .burger-menu .menu-hamburger.active span:nth-child(3) {
  opacity: 1;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  min-width: 230px;
  padding: 24px;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #FFFFFF;
  -webkit-box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  left: -20px;
  top: 36px;
}
@media (max-width: 1200px) {
  .dropdown .dropdown-content {
    left: -85px;
  }
}
@media (max-width: 640px) {
  .dropdown .dropdown-content {
    left: -46px;
    min-width: 190px;
  }
}
.dropdown .dropdown-content a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
  display: block !important;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.dropdown .dropdown-content a.exit {
  padding: 24px 0 0;
  border-top: 1px solid #F3F3F3;
}
.dropdown .dropdown-content a:hover {
  color: #FF9A02;
}
.dropdown.desktop-drop:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.dropdown.mobile-drop.show .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.dropdown.mobile-drop.show .icon {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
.dropdown.desktop-drop:hover .text {
  color: #FF9A02;
}
.dropdown.desktop-drop:hover .icon {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

.cart-dropdown {
  position: relative;
  display: inline-block;
}
.cart-dropdown .cart-dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  min-width: 367px;
  padding: 16px;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #FFFFFF;
  -webkit-box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  right: 0;
  top: 36px;
}
@media (max-width: 960px) {
  .cart-dropdown .cart-dropdown-content {
    right: -50px;
  }
}
.cart-dropdown .cart-dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 435px;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 1440px) {
  .cart-dropdown .cart-dropdown-content ul {
    max-height: 280px;
  }
}
.cart-dropdown .cart-dropdown-content ul li {
  border-bottom: 1px solid #BFBFBF;
  padding: 16px 0 24px;
  max-height: 145px;
}
.cart-dropdown .cart-dropdown-content ul li:first-child {
  padding: 0 0 24px;
}
.cart-dropdown .cart-dropdown-content ul li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.cart-dropdown .cart-dropdown-content ul li .flex .cart-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.cart-dropdown .cart-dropdown-content ul li .flex .left {
  padding: 0;
  max-width: 82px;
  width: 100%;
}
.cart-dropdown .cart-dropdown-content ul li .flex .left img {
  width: 100%;
  height: auto;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right h3 {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  color: #181818;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .category {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #767676;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .price .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #ADADAD;
  margin-right: 4px;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .price .new-price {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #FF103B;
  margin-right: 4px;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .price .static-price {
  margin-right: 4px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .price .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #ADADAD;
}
.cart-dropdown .cart-dropdown-content .total p {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  text-align: center;
  color: #181818;
}
.cart-dropdown .cart-dropdown-content .total p span {
  color: #FF103B;
}
.cart-dropdown .cart-dropdown-content .total .red-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  margin: 0;
}
.cart-dropdown .cart-dropdown-content .total .red-btn:hover {
  -webkit-box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
          box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
}
.cart-dropdown:hover .cart-dropdown-content {
  visibility: visible;
  opacity: 1;
}

.form-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.form-lang input {
  background: rgba(125, 125, 125, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 2px;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 9px 5px 8px;
}

.lang-name {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  margin: 0 16px 0 0;
}

.select_lang-all {
  position: relative;
  z-index: 100;
  width: 85px;
  border-radius: 2px;
  margin-left: 48px !important;
}
.select_lang-all .select-lang-but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 12px 0 0;
  cursor: pointer;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  padding: 3px 10px 3px 8px;
  width: 100%;
  border-radius: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.select_lang-all .select-lang-but:hover {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 3px 10px 3px 8px;
  background: rgba(125, 125, 125, 0.5);
}
.select_lang-all .select-lang-but.active {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 3px 10px 3px 8px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(125, 125, 125, 0.3)), to(rgba(125, 125, 125, 0.3))), #343434;
  background: linear-gradient(0deg, rgba(125, 125, 125, 0.3), rgba(125, 125, 125, 0.3)), #343434;
}
.select_lang-all .select-lang-but img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin: 0 4px 0 0;
}
.select_lang-all .select-lang-but:after {
  content: "";
  width: 8px;
  min-width: 8px;
  height: 4px;
  margin: 0 0 0 4px;
  background: url("../img/triangle-lang.svg") center no-repeat;
}
.select_lang-all .select-lang-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 27px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(125, 125, 125, 0.3)), to(rgba(125, 125, 125, 0.3))), #343434;
  background: linear-gradient(0deg, rgba(125, 125, 125, 0.3), rgba(125, 125, 125, 0.3)), #343434;
  border-radius: 2px;
  display: none;
}
.select_lang-all .select-lang-content .select-lang-content-inner {
  margin: 3px 0 0 0;
}
.select_lang-all .select-lang-content .select-lang {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  padding: 7px 10px 7px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.select_lang-all .select-lang-content .select-lang:first-child {
  padding: 10px 10px 7px 8px;
}
.select_lang-all .select-lang-content .select-lang.active {
  display: none;
}
.select_lang-all .select-lang-content .select-lang img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin: 0 4px 0 0;
}

.footer {
  background: #FFFFFF;
  border-top: 1px solid #BFBFBF;
  padding: 48px 0 0;
}
.footer .footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 52px;
}
@media (max-width: 840px) {
  .footer .footer-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
}
.footer .footer-flex .footer-item {
  width: 25%;
}
@media (max-width: 840px) {
  .footer .footer-flex .footer-item {
    width: 50%;
    margin-bottom: 36px;
  }
}
@media (max-width: 460px) {
  .footer .footer-flex .footer-item {
    width: 100%;
    margin-bottom: 36px;
  }
}
.footer .footer-flex .footer-item h5 {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  margin: 0;
  padding: 0;
  color: #181818;
}
.footer .footer-flex .footer-item .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .footer-flex .footer-item .footer-nav a {
  width: 100%;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #333333;
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-flex .footer-item .footer-nav a.social-footer {
  color: #181818;
}
.footer .footer-flex .footer-item .footer-nav a .icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 10px 0 0;
}
.footer .footer-flex .footer-item .footer-nav a .text {
  margin-top: 3px;
}
.footer .footer-flex .footer-item .footer-nav .footer-link {
  margin: 36px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer-flex .footer-item .footer-nav .footer-link a {
  margin: 0 8px 0 0;
  background: #FFFFFF;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.footer .footer-flex .footer-item .footer-nav .footer-link a:last-child {
  margin: 0;
}
.footer .dev {
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 840px) {
  .footer .dev {
    margin-bottom: 50px;
  }
}
.footer .dev .dev-link {
  min-height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 640px) {
  .footer .dev .dev-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 640px) {
  .footer .dev .dev-link > div {
    margin: 12px 0 0 0;
    text-align: center;
  }
}
.footer .dev .dev-link .expire-date__info {
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  margin: 0 0 0 20px;
}
@media (max-width: 640px) {
  .footer .dev .dev-link .expire-date__info {
    margin: 12px 0 0 0;
  }
}
.footer .dev .dev-link p {
  display: inline-block;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  color: #333333;
  margin: 0;
  padding: 0;
}
@media (max-width: 475px) {
  .footer .dev .dev-link p {
    margin: 8px 0 0;
  }
}
.footer .dev .dev-link a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  margin: 0 0 0 16px;
  padding: 0;
}
@media (max-width: 960px) {
  .footer .dev .dev-link a {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .footer .dev .dev-link a {
    margin: 0 0 0 16px;
  }
}
@media (max-width: 425px) {
  .footer .dev .dev-link a {
    margin: 0;
  }
}

form {
  margin: 0 32px 0 0;
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  position: relative;
}
form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
form .form-group input {
  width: 100%;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  padding: 0 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}
form .form-group input::-webkit-input-placeholder {
  color: #BFBFBF;
}
form .form-group input::-moz-placeholder {
  color: #BFBFBF;
}
form .form-group input:-ms-input-placeholder {
  color: #BFBFBF;
}
form .form-group input::-ms-input-placeholder {
  color: #BFBFBF;
}
form .form-group input::placeholder {
  color: #BFBFBF;
}
form .form-group input::-webkit-input-placeholder {
  color: #BFBFBF;
}
form .form-group input::-moz-placeholder {
  color: #BFBFBF;
}
form .form-group input:-moz-placeholder {
  color: #BFBFBF;
}
form .form-group input:-ms-input-placeholder {
  color: #BFBFBF;
}
form .form-group .form-btn {
  background: #FF103B;
  border-radius: 2px;
  width: 141px;
  min-width: 141px;
  height: 44px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 12px;
  color: #FFFFFF;
  border: none;
  margin: 0 0 0 -5px;
  cursor: pointer;
}

.search-result {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 24px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 24px 24px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  max-height: 280px;
  overflow-y: auto;
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
}
.search-result .flex-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-result a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #2D2727;
  padding: 24px;
  width: 100%;
  text-decoration: none;
  position: relative;
}
.search-result a:after {
  border-bottom: 1px solid #EEEEEE;
  left: 24px;
  right: 24px;
  bottom: 0;
  content: "";
  position: absolute;
}
.search-result a:last-child:after {
  display: none;
}

.mobile-search {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: #ffffff;
}
.mobile-search form {
  margin: 0;
}
.mobile-search form .form-group {
  width: 100%;
}
.mobile-search form .form-group .form-btn {
  width: 80px;
  min-width: 80px;
  font-size: 14px;
}
.mobile-search.show {
  visibility: visible;
  opacity: 1;
}

.accordionjs {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.accordionjs li.acc_active h2 {
  color: #FF9A02;
}
.accordionjs li.acc_active img {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
.accordionjs li.acc_active .second-parent {
  display: block;
}
.accordionjs li h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #181818;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordionjs li h2:hover {
  color: #FF9A02;
}
.accordionjs li h2 img {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 10px 0 0;
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}
.accordionjs li .second-parent {
  display: none;
}
.accordionjs li .flex-category {
  margin: 0 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.accordionjs li .flex-category .second-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordionjs li .flex-category .second-item:hover {
  color: #FF9A02;
}
.accordionjs li .flex-category .second-item + .category-container {
  display: none;
}
.accordionjs li .flex-category .second-item.parent_active + .category-container {
  display: block;
}
.accordionjs li .flex-category .third-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordionjs li .flex-category .third-item:hover {
  color: #FF9A02;
}
.accordionjs li .flex-category .second-block {
  display: block;
  width: 100%;
}
.accordionjs li .flex-category a {
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  color: #767676;
  display: block;
}
.accordionjs li .flex-category a.active {
  color: #181818;
}

@media (max-width: 840px) {
  .new-category {
    height: 100%;
  }
}
.new-category .new-category-inner {
  position: relative;
}
.new-category .new-category-inner ul {
  margin: 0;
  padding: 0;
}
.new-category .new-category-inner .come-back-category {
  display: none;
}
@media (max-width: 840px) {
  .new-category .new-category-inner .come-back-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: normal;
    font-size: 14px;
    line-height: 100%;
    color: #FF103B;
    padding: 16px 0;
    border-top: 1px solid #EEEEEE;
    margin: 16px 0 0 0;
  }
  .new-category .new-category-inner .come-back-category:before {
    content: "";
    width: 8px;
    min-width: 8px;
    height: 6px;
    margin: 0 8px 0 0;
    background: url(../svg/icon-red.svg) center no-repeat;
  }
}
.new-category .new-category-inner .new-category-first {
  max-width: 236px;
  border-right: 1px solid transparent;
  overflow-y: auto;
  max-height: calc(100vh - 208px);
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}
.new-category .new-category-inner .new-category-first::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 960px) {
  .new-category .new-category-inner .new-category-first {
    max-height: calc(100vh - 123px);
  }
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first {
    max-height: calc(100vh - 110px);
    height: 100%;
    max-width: 100%;
    padding: 16px 0 0 0;
  }
}
.new-category .new-category-inner .new-category-first li {
  list-style: none;
}
.new-category .new-category-inner .new-category-first li.first-item:hover > a, .new-category .new-category-inner .new-category-first li .second-item:hover > a {
  color: #FF9A02;
}
.new-category .new-category-inner .new-category-first li.first-item:hover > a:after, .new-category .new-category-inner .new-category-first li .second-item:hover > a:after {
  opacity: 1;
}
.new-category .new-category-inner .new-category-first li.last-item:hover a {
  color: #FF9A02;
}
.new-category .new-category-inner .new-category-first li.last-item a:after {
  display: none;
}
.new-category .new-category-inner .new-category-first li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: normal;
  font-size: 18px;
  line-height: 100%;
  color: #181818;
  padding: 11px 16px 11px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  background: white;
}
.new-category .new-category-inner .new-category-first li a.active {
  color: #FF9A02;
}
.new-category .new-category-inner .new-category-first li a.active:after {
  opacity: 1;
}
.new-category .new-category-inner .new-category-first li a.none_link {
  pointer-events: none;
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first li a {
    border-top: 1px solid #EEEEEE;
  }
}
.new-category .new-category-inner .new-category-first li a.none_after:after {
  display: none;
}
.new-category .new-category-inner .new-category-first li a:after {
  content: "";
  width: 12px;
  min-width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #FF9A02;
  background-image: url(../svg/icon-arrow.svg);
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first li a:after {
    opacity: 1;
  }
}
.new-category .new-category-inner .new-category-first .new-category-second-inner {
  overflow-y: auto;
  max-height: calc(100vh - 208px);
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}
.new-category .new-category-inner .new-category-first .new-category-second-inner::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 960px) {
  .new-category .new-category-inner .new-category-first .new-category-second-inner {
    max-height: calc(100vh - 123px);
  }
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first .new-category-second-inner {
    max-height: calc(100vh - 110px);
  }
}
.new-category .new-category-inner .new-category-first .new-category-second-inner .second-item:first-child {
  display: none;
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first .new-category-second-inner .second-item:first-child {
    display: block;
  }
}
.new-category .new-category-inner .new-category-first .new-category-last-inner {
  overflow-y: auto;
  max-height: calc(100vh - 208px);
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}
.new-category .new-category-inner .new-category-first .new-category-last-inner::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 960px) {
  .new-category .new-category-inner .new-category-first .new-category-last-inner {
    max-height: calc(100vh - 123px);
  }
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first .new-category-last-inner {
    height: calc(100vh - 110px);
    background: white;
  }
}
.new-category .new-category-inner .new-category-first .new-category-last-inner .last-item:first-child {
  display: none;
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first .new-category-last-inner .last-item:first-child {
    display: block;
  }
}
.new-category .new-category-inner .new-category-first .new-category-second {
  display: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 236px;
  width: 200px;
  padding: 0 0 0 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}
@media (max-width: 960px) {
  .new-category .new-category-inner .new-category-first .new-category-second {
    width: 180px;
    padding: 0 0 0 16px;
  }
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first .new-category-second {
    left: 0;
    width: 100%;
    padding: 0;
    bottom: 0;
    background: #ffffff;
  }
}
.new-category .new-category-inner .new-category-first .new-category-second.show {
  display: block;
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first .new-category-second.show {
    height: calc(100vh - 110px);
  }
}
.new-category .new-category-inner .new-category-first .new-category-last {
  display: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 200px;
  width: 200px;
  padding: 0 0 0 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}
@media (max-width: 960px) {
  .new-category .new-category-inner .new-category-first .new-category-last {
    left: 180px;
    width: 180px;
    padding: 0 0 0 16px;
  }
}
@media (max-width: 840px) {
  .new-category .new-category-inner .new-category-first .new-category-last {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0;
    background: #ffffff;
  }
}
.new-category .new-category-inner .new-category-first .new-category-last.show {
  display: block;
}

.accordionjs2 {
  position: relative;
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 840px) {
  .accordionjs2 {
    display: none;
  }
}
.accordionjs2 .main-category:first-child {
  margin: 22px 0 22px;
}
.accordionjs2 a {
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  color: #767676;
  display: block;
}
.accordionjs2 a.active {
  color: #181818;
}
.accordionjs2 h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0 16px 0 0;
}
.accordionjs2 .category-modal {
  display: none;
  position: absolute;
  left: -17px;
  top: -65px;
  z-index: 15;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 2px 2px;
  width: 1200px;
  height: auto;
  padding: 0 0 0 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .accordionjs2 .category-modal {
    width: 100%;
    min-width: 960px;
  }
}
@media (max-width: 960px) {
  .accordionjs2 .category-modal {
    min-width: 640px;
  }
}
.accordionjs2 .category-modal a {
  padding: 11px 0;
}
.accordionjs2 .category-modal .all-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow-y: auto;
  height: calc(100vh - 100px);
}
.accordionjs2 .category-modal .all-category::-webkit-scrollbar {
  width: 2px;
}
.accordionjs2 .category-modal .all-category::-webkit-scrollbar-thumb {
  background-color: #767676;
}
.accordionjs2 .category-modal h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #BFBFBF;
}
.accordionjs2 .category-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .accordionjs2 .category-modal img {
    display: none;
  }
}
.accordionjs2 .category-modal ul {
  list-style: none;
  margin: 45px 0 36px;
  width: 100%;
  max-width: 252px;
}
.accordionjs2 .category-modal ul li {
  height: 38px;
}
@media (max-width: 960px) {
  .accordionjs2 .category-modal ul {
    max-width: 200px;
  }
}
.accordionjs2 .category-modal ul.first-category {
  padding: 0;
  border-right: 1px solid #EEEEEE;
  position: relative;
}
.accordionjs2 .category-modal ul.first-category .first-parent:first-child {
  margin: 15px 0 0 0;
}
.accordionjs2 .category-modal ul.first-category .first-parent:hover .second-category {
  visibility: visible;
  opacity: 1;
}
.accordionjs2 .category-modal ul.first-category .first-parent:hover > a h2 {
  color: #FF9A02;
}
.accordionjs2 .category-modal ul.first-category .first-parent:hover > a h2:after {
  content: "";
  width: 12px;
  min-width: 12px;
  height: 12px;
  margin-left: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #FF9A02;
  background-image: url(../svg/icon-arrow.svg);
}
.accordionjs2 .category-modal ul.first-category .first-parent:hover > a h2.none_after:after {
  display: none;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category {
  position: absolute;
  right: -100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 15px 0 0 40px;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent > a h2:after {
  width: 12px;
  min-width: 12px;
  height: 12px;
  content: "";
  background-color: #FF9A02;
  background-image: url(../svg/icon-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: auto;
  opacity: 0;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent > a h2.none_after:after {
  display: none;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent:hover .third-category {
  visibility: visible;
  opacity: 1;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent:hover > a h2 {
  color: #FF9A02;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent:hover > a h2:after {
  width: 12px;
  min-width: 12px;
  height: 12px;
  content: "";
  background-color: #FF9A02;
  background-image: url(../svg/icon-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: auto;
  opacity: 1;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent .third-category {
  position: absolute;
  right: -100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 15px 0 0 40px;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent .third-category.active {
  display: block;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent .third-category h2 {
  color: #767676;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category .second-parent .third-category h2:hover {
  color: #FF9A02;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category h2 {
  color: #767676;
}
.accordionjs2 .category-modal ul.first-category .first-parent .second-category h2:hover {
  color: #FF9A02;
}

.mobile-category-block {
  border-top: 1px solid #EEEEEE;
  display: none;
}
@media (max-width: 840px) {
  .mobile-category-block {
    display: block;
  }
}
.mobile-category-block ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-category-block ul li {
  border-bottom: 1px solid #EEEEEE;
  padding: 16px 0;
}
.mobile-category-block ul li .back {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #FF103B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-category-block ul li .back:before {
  width: 8px;
  min-width: 8px;
  height: 8px;
  content: "";
  background-image: url(../svg/icon-red.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 8px;
  margin-top: 2px;
}
.mobile-category-block ul li.active h2 {
  color: #FF9A02;
}
.mobile-category-block ul li.active h2:after {
  width: 12px;
  min-width: 12px;
  height: 12px;
  content: "";
  background-image: url(../svg/icon-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: auto;
}
.mobile-category-block ul li h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #181818;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-category-block ul li h2:after {
  width: 8px;
  height: 8px;
  min-width: 8px;
  content: "";
  background-image: url(../svg/icon-black.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-top: 2px;
}
.mobile-category-block ul li a {
  text-decoration: none;
}

.filter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 -12px;
}
@media (max-width: 960px) {
  .filter form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.filter form .toggle-filter-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 6px 12px;
}
.filter form .toggle-filter-style .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #767676;
}
.filter form .toggle-filter-style .icon {
  width: 15px;
  height: 15px;
}
.filter form .relative {
  position: relative;
}
.filter form .color-filter {
  position: relative;
  border-radius: 2px 2px 0px 0px;
  z-index: 55;
}
.filter form .color-filter.active {
  background-color: #ffffff;
}
.filter form .color-filter.active + .drop {
  visibility: visible;
  opacity: 1;
}
.filter form .color-filter .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FF103B;
}
.filter form .color-filter .icon {
  width: 15px;
  height: 15px;
}
.filter form .drop {
  position: absolute;
  background: #FFFFFF;
  border-radius: 0px 2px 2px 2px;
  max-height: 224px;
  overflow-y: auto;
  max-width: 150px;
  min-width: 123px;
  top: 28px;
  z-index: 50;
  left: 0;
  -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  padding: 14px 12px;
}
.filter form .drop .drop-item label {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.filter form .drop .drop-item .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #767676;
}
.filter form .drop .drop-item input {
  display: none;
}
.filter form .drop .drop-item input:checked + .indicator {
  background-image: url(../svg/check.svg);
}
.filter form .drop .drop-item .indicator {
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  width: 15px;
  height: 15px;
  min-width: 15px;
  background-position: center;
  background-repeat: no-repeat;
}

.product-item {
  position: relative;
  padding: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 425px) {
  .product-item {
    padding: 3px;
  }
}
.product-item a {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.product-item:hover {
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 24px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 24px 24px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.product-item:hover .image .preview_button {
  opacity: 1;
}
.product-item .product-link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.product-item .info h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
}
.product-item .info h2 span {
  color: #333333;
}
.product-item .info h2 span:before {
  content: "/";
  margin: 0 4px;
  color: #181818;
}
.product-item .info .price {
  padding: 0 0 8px;
  border-bottom: 1px dashed #BFBFBF;
}
.product-item .info .price .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-item .info .price .flex .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-item .info .price .flex .left .static-price {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  margin: 0;
}
.product-item .info .price .flex .left .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #333333;
  margin: 0 6px 0 0;
}
.product-item .info .price .flex .left .new-price {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #FF103B;
  margin: 0;
}
.product-item .info .price .flex .right .rating {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ADADAD;
}
.product-item .info .price .flex .right .rating .icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 0 6px 6px;
}
.product-item .btn-cart {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #767676;
  background: #FFFFFF;
  border-radius: 2px;
  height: 36px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1024px) {
  .product-item .btn-cart {
    color: #ffffff;
  }
}
.product-item .btn-cart:hover {
  color: #FFFFFF;
  background: #FF103B;
  border-radius: 2px;
}
@media (max-width: 960px) {
  .product-item .btn-cart {
    color: #FFFFFF;
    background: #FF103B;
    border-radius: 2px;
  }
}

.image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 202px;
}
@media (max-width: 960px) {
  .image {
    height: 153px;
  }
}
@media (max-width: 840px) {
  .image {
    height: 184px;
  }
}
@media (max-width: 600px) {
  .image {
    height: 250px;
  }
}
@media (max-width: 500px) {
  .image {
    height: 200px;
  }
}
@media (max-width: 425px) {
  .image {
    height: 187px;
  }
}
@media (max-width: 375px) {
  .image {
    height: 160px;
  }
}
@media (max-width: 320px) {
  .image {
    height: 140px;
  }
}
.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image .preview_button {
  position: absolute;
  z-index: 10;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  color: #181818;
  padding: 11px 10px 9px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
@media (max-width: 1024px) {
  .image .preview_button {
    opacity: 1;
  }
}
@media (max-width: 960px) {
  .image .preview_button {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 375px) {
  .image .preview_button {
    font-size: 12px;
    padding: 8px 5px 6px;
  }
}
.image .labels {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 2px 0;
  overflow: hidden;
  z-index: 10;
}
.image .labels .discount {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
  background: #FF103B;
  width: 35px;
  height: 16px;
  min-width: 35px;
  text-align: center;
  padding-top: 3px;
}
.image .labels .new {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 12px;
  color: #FFFFFF;
  background: #0AC006;
  width: 35px;
  height: 16px;
  min-width: 35px;
  text-align: center;
  padding-top: 3px;
}
.image .favorite {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 6px 10px 10px;
  z-index: 10;
}
.image .favorite .icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.crumb a {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #767676;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.crumb a:after {
  content: "/";
  margin: 0 4px;
  color: #BFBFBF;
}
.crumb a:hover {
  color: #181818;
}
.crumb span {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #BFBFBF;
}

.rating-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rating-flex .rating {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #FF9A02;
  margin: 0 8px 0 16px;
  padding: 0;
}
.rating-flex .total-voice {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #BFBFBF;
  margin: 0;
  padding: 0;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pagination .arrow {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 2px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #FF103B;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.pagination .arrow:hover {
  -webkit-box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
          box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.pagination .arrow.prev {
  background-image: url(../svg/prev.svg);
}
.pagination .arrow.next {
  background-image: url(../svg/next.svg);
}
.pagination.black .arrow.prev {
  background-image: url(../svg/prev-black.svg);
}
.pagination.black .arrow.next {
  background-image: url(../svg/next-black.svg);
}
.pagination .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #2D2727;
  padding: 0;
}
.pagination input {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #FF103B;
  border: 0;
  border-bottom: 1px solid #E4E4E4;
  width: 30px;
  height: 22px;
  margin: 0 12px 2px 0;
}
.pagination input::-webkit-outer-spin-button, .pagination input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pagination input[type=number] {
  -moz-appearance: textfield;
}

.global-input {
  width: 100%;
}
.global-input .check-label .text-input {
  position: relative;
}
.global-input .check-label .text-input textarea {
  border: 1px solid #BFBFBF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  padding: 6px;
  color: #767676;
}
.global-input .check-label .text-input textarea::-webkit-input-placeholder {
  color: #A9A9A9;
  font-family: "TT Commons";
}
.global-input .check-label .text-input textarea::-moz-placeholder {
  color: #A9A9A9;
  font-family: "TT Commons";
}
.global-input .check-label .text-input textarea:-ms-input-placeholder {
  color: #A9A9A9;
  font-family: "TT Commons";
}
.global-input .check-label .text-input textarea::-ms-input-placeholder {
  color: #A9A9A9;
  font-family: "TT Commons";
}
.global-input .check-label .text-input textarea::placeholder {
  color: #A9A9A9;
  font-family: "TT Commons";
}
.global-input .check-label .text-input input {
  border: 0;
  border-bottom: 1px solid #EEEEEE;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #181818;
}
.global-input .check-label .text-input input:required:valid + .emul-label {
  top: -12px;
}
.global-input .check-label .text-input input:focus + .emul-label {
  top: -12px;
}
.global-input .check-label .text-input input[value]:not([value=""]) + .emul-label {
  top: -12px;
}
.global-input .check-label .text-input select {
  border: 0;
  border-bottom: 1px solid #EEEEEE;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #181818;
  background-color: #ffffff;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  background-image: url(../svg/arrow.svg);
  background-repeat: no-repeat;
  background-position: right;
}
.global-input .check-label .text-input select:focus + .emul-label {
  top: -12px;
}
.global-input .check-label .text-input .emul-label {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 120%;
  color: #A9A9A9;
  position: absolute;
  left: 0;
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.global-input .check-label .text-input .error-message {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: #D81B1B;
  position: absolute;
  left: 0;
  bottom: -18px;
  display: contents;
}
.global-input .check-label .text-input .quantity-text {
  position: absolute;
  right: 0;
  bottom: -18px;
}
.global-input .check-label .text-input .quantity-text span {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: #767676;
}
.global-input .check-label.value-exists .emul-label {
  top: -12px;
}
.global-input .phone-label .text-input .emul-label {
  top: -13px !important;
  font-size: 12px !important;
  line-height: 120% !important;
  color: #A9A9A9 !important;
}

.global-checkbox label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.global-checkbox label .text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 90%;
  color: #181818;
  margin: 3px 12px 0 0;
}
.global-checkbox label input {
  display: none;
}
.global-checkbox label input:checked + .indicator:before {
  background-image: url(../svg/checked.svg);
  width: 16px;
  height: 16px;
  min-width: 16px;
  top: 1px;
  bottom: 1px;
  left: 29px;
}
.global-checkbox label .indicator {
  border: 1px solid #FF9A02;
  border-radius: 13px;
  width: 48px;
  height: 20px;
  min-width: 48px;
  display: inline-block;
  position: relative;
}
.global-checkbox label .indicator:before {
  content: "";
  background-image: url(../svg/unchecked.svg);
  position: absolute;
  left: 3px;
  top: 3px;
  bottom: 3px;
  width: 12px;
  min-width: 12px;
  height: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: all 5000s ease-in-out 0s;
  transition: all 5000s ease-in-out 0s;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
}

.global-other-checkbox {
  width: 100%;
}
.global-other-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.global-other-checkbox label .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #181818;
}
.global-other-checkbox label .text.link {
  font-size: 16px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  margin: 3px 0 0 10px;
}
.global-other-checkbox label input {
  display: none;
}
.global-other-checkbox label input:checked + .indicator:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#FF103B), to(#FF103B)), #EEEEEE;
  background: linear-gradient(0deg, #FF103B, #FF103B), #EEEEEE;
}
.global-other-checkbox label .indicator {
  border: 1px solid #FF9A02;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: inline-block;
  position: relative;
}
.global-other-checkbox label .indicator:before {
  content: "";
  background: #EEEEEE;
  border-radius: 1px;
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 10px;
  min-width: 10px;
  height: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.global-input {
  position: relative;
}
.global-input .phone-add {
  position: absolute;
  right: 0;
  top: -3px;
  z-index: 5;
  cursor: pointer;
}

.cart-item {
  border-bottom: 2px solid #ADADAD;
  padding: 0 0 48px;
  position: relative;
}
.cart-item .remove-cart {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.cart-item:first-child {
  padding: 0 0 48px;
}
.cart-item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .cart-item .flex {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
}
@media (max-width: 500px) {
  .cart-item .flex {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
}
.cart-item .flex .left {
  width: 204px;
  min-width: 204px;
}
.cart-item .flex .right {
  width: 100%;
}
.cart-item .flex .right h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  padding: 0 48px 0 0;
}
@media (max-width: 500px) {
  .cart-item .flex .right h2 {
    margin: 16px 0 0;
  }
}
.cart-item .flex .right .category {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #767676;
  padding: 0 0 16px;
  border-bottom: 1px solid #BFBFBF;
}
.cart-item .flex .right .price-rating-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cart-item .flex .right .price-rating-block .price-block .new-price {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #FF103B;
}
.cart-item .flex .right .price-rating-block .price-block .static-price {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.cart-item .flex .right .price-rating-block .price-block .text {
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 37px;
  color: #ADADAD;
}
.cart-item .flex .right .price-rating-block .price-block .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #ADADAD;
}
.cart-item .flex .right .price-rating-block .rating-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-item .flex .right .price-rating-block .rating-block .text {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #ADADAD;
  margin: 3px 6px 0 0;
}
.cart-item .flex .right .quantity-block p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ADADAD;
}
.cart-item .flex .right .quantity-block .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cart-item .flex .right .quantity-block .form .change-quantity {
  display: inline;
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  width: 40px;
  height: 40px;
  min-width: 40px;
  cursor: pointer;
}
.cart-item .flex .right .quantity-block .form .change-quantity.plus {
  background-image: url(../svg/plus.svg);
}
.cart-item .flex .right .quantity-block .form .change-quantity.minus {
  background-image: url(../svg/minus.svg);
}
.cart-item .flex .right .quantity-block .form input {
  border: 1px solid #E4E4E4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  width: 52px;
  height: 40px;
  min-width: 52px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #2D2727;
  margin: 0 6px;
}
.cart-item .flex .right .quantity-block .form input::-webkit-outer-spin-button, .cart-item .flex .right .quantity-block .form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.cart-item .flex .right .quantity-block .form input[type=number] {
  -moz-appearance: textfield;
}

.product-card_modal {
  position: fixed;
  z-index: 500;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.product-card_modal.show {
  visibility: visible;
  opacity: 1;
}
.product-card_modal.show .product-detail {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.product-card_modal .product-card_modal-inner {
  margin: 0 16px;
}
.product-card_modal .product-detail {
  position: relative;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 36px 40px;
  margin: 100px auto 50px auto;
  max-width: 888px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
@media (max-width: 960px) {
  .product-card_modal .product-detail {
    padding: 36px 16px;
  }
}
@media (max-width: 640px) {
  .product-card_modal .product-detail {
    padding: 50px 16px 36px;
  }
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .product-info .btn-cart {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .product-info .one-click-btn {
    max-width: 100%;
  }
}
.product-card_modal .product-detail .close-modal-card {
  width: 24px;
  height: 24px;
  background: url("../img/close-modal-card.svg") center no-repeat;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .close-modal-card {
    width: 32px;
    height: 32px;
    background-size: contain;
  }
}
.product-card_modal .product-detail .favorites-mobile {
  display: none;
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .favorites-mobile {
    display: block;
    position: absolute;
    top: 60px;
    right: 16px;
    width: 48px;
    height: 42px;
  }
  .product-card_modal .product-detail .favorites-mobile .favorite {
    padding: 10px;
  }
  .product-card_modal .product-detail .favorites-mobile .favorite .icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background-size: contain;
  }
}
.product-card_modal .product-detail .flex {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product-card_modal .product-detail .left {
  width: 100%;
}
@media (max-width: 960px) {
  .product-card_modal .product-detail .left {
    margin: 0 16px 0 0;
  }
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .left {
    margin: 0;
  }
}
.product-card_modal .product-detail .left .product-item {
  max-width: 400px;
  min-width: auto;
  width: 100%;
}
@media (max-width: 960px) {
  .product-card_modal .product-detail .left .product-item {
    max-width: 100%;
  }
}
.product-card_modal .product-detail .left .product-item .image {
  height: auto;
}
.product-card_modal .product-detail .left .product-item .image .slider-item {
  height: 400px;
}
@media (max-width: 960px) {
  .product-card_modal .product-detail .left .product-item .image .slider-item {
    height: 473px;
  }
}
@media (max-width: 840px) {
  .product-card_modal .product-detail .left .product-item .image .slider-item {
    height: 393px;
  }
}
@media (max-width: 740px) {
  .product-card_modal .product-detail .left .product-item .image .slider-item {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .left .product-item .image .slider-item {
    height: 564px;
  }
}
@media (max-width: 540px) {
  .product-card_modal .product-detail .left .product-item .image .slider-item {
    height: 476px;
  }
}
@media (max-width: 425px) {
  .product-card_modal .product-detail .left .product-item .image .slider-item {
    height: 361px;
  }
}
@media (max-width: 375px) {
  .product-card_modal .product-detail .left .product-item .image .slider-item {
    height: 311px;
  }
}
@media (max-width: 320px) {
  .product-card_modal .product-detail .left .product-item .image .slider-item {
    height: 256px;
  }
}
.product-card_modal .product-detail .left .product-item .image .labels .new {
  font-size: 17px;
  line-height: 19px;
  width: 62px;
  height: 30px;
  min-width: 62px;
  padding-top: 9px;
}
.product-card_modal .product-detail .left .product-item .image .labels .discount {
  font-size: 17px;
  line-height: 19px;
  width: 62px;
  height: 30px;
  min-width: 62px;
  padding-top: 8px;
}
.product-card_modal .product-detail .left .product-item .image .favorite {
  right: 16px;
  top: 16px;
  padding: 10px;
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .left .product-item .image .favorite {
    display: none;
  }
}
.product-card_modal .product-detail .left .product-item .image .favorite .icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-size: cover;
}
.product-card_modal .product-detail .left .product-slider .owl-dots {
  bottom: 16px;
  width: 176px;
  min-width: 176px;
  height: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
.product-card_modal .product-detail .left .product-slider .owl-dots.disabled {
  display: none;
}
.product-card_modal .product-detail .left .product-slider .owl-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 176px;
  min-width: 176px;
  height: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  z-index: 10;
}
.product-card_modal .product-detail .left .product-slider .owl-nav.disabled {
  display: none;
}
.product-card_modal .product-detail .right {
  max-width: 367px;
}
@media (max-width: 768px) {
  .product-card_modal .product-detail .right {
    max-width: 300px;
  }
}
@media (max-width: 640px) {
  .product-card_modal .product-detail .right {
    max-width: 100%;
  }
}
.product-card_modal .product-detail .right .product-description h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.product-card_modal .product-detail .right .product-description p {
  position: relative;
  font-weight: 300;
  font-size: 12px;
  line-height: 150%;
  color: #181818;
  margin: 0;
  padding: 0 0 15px;
}
.product-card_modal .product-detail .right .product-description p:after {
  content: "";
  height: 34px;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40.76%, #FFFFFF), color-stop(100.95%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #FFFFFF 40.76%, rgba(255, 255, 255, 0) 100.95%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.product-card_modal .product-detail .full-information {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #FF103B;
  border: 1px solid #FF103B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  width: 100%;
  padding: 12px;
  margin: 5px 0 0 0;
}

.overflow-hidden {
  overflow: hidden;
  padding: 0 15px 0 0;
}
@media (max-width: 960px) {
  .overflow-hidden {
    padding: 0;
  }
}

.warning__modal-wrapper {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
}
.warning__modal-wrapper.show {
  visibility: visible;
  opacity: 1;
}

.warning__modal {
  font-family: "TT Commons", sans-serif;
  max-width: 685px;
  width: 100%;
  position: relative;
  background: #fff;
  z-index: 10;
  margin: 50px auto;
}
@media (max-width: 717px) {
  .warning__modal {
    margin: 50px 16px;
    width: auto;
  }
}
.warning__modal .warning__modal-inner {
  padding: 160px 0 60px 60px;
  position: relative;
  z-index: 10;
  max-width: 258px;
}
@media (max-width: 425px) {
  .warning__modal .warning__modal-inner {
    padding: 65px 30px 30px 30px;
    max-width: 100%;
    text-align: center;
  }
}
.warning__modal .warning__modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 26px;
  height: 26px;
  z-index: 20;
  border: 0;
  padding: 0;
  cursor: pointer;
  background-image: url("../svg/warning__modal-close.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 425px) {
  .warning__modal .warning__modal-close {
    background-image: url("../svg/warning__modal-close2.svg");
    right: 12px;
    top: 12px;
  }
}
.warning__modal .warning__inner1 {
  margin-bottom: 68px;
}
.warning__modal .warning__demi-bold {
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  color: #181818;
  font-size: 14px;
}
.warning__modal .warning__modal-ttl {
  font-size: 18px;
  margin-bottom: 11px;
}
.warning__modal .warning__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}
.warning__modal .warning__modal-subtitle {
  margin-bottom: 24px;
  color: #B7B7B7;
}
.warning__modal .warning__pay {
  display: inline-block;
  padding: 10px 60px;
  background: #FF103B;
  border-radius: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.warning__modal .warning__pay:hover {
  -webkit-box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
          box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.warning__modal .warning__inner2-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 28px;
}
@media (max-width: 425px) {
  .warning__modal .warning__inner2-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.warning__modal .warning__inner2-text {
  color: #767676;
  max-width: 135px;
  margin: 0 11px 0 0;
}
.warning__modal .warning__sun-text {
  color: #ADADAD;
  margin-bottom: 2px;
}
.warning__modal .warning__sunrise {
  color: #181818;
}
.warning__modal .warning__modal-pic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 330px;
}
@media (max-width: 640px) {
  .warning__modal .warning__modal-pic:after {
    content: "";
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
  }
}
.warning__modal .warning__modal-pic img {
  height: 100%;
}

.main-page {
  background-color: #ffffff;
  min-height: 500px;
}
@media (max-width: 840px) {
  .main-page .grid-global .left-side-global.left-side-hidden {
    width: 0;
    min-width: 0;
    margin: 0;
  }
}
.main-page .grid-global .left-side-global.left-side-hidden h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #181818;
}
@media (max-width: 840px) {
  .main-page .grid-global .right-side-global {
    margin: 24px 0;
    padding: 0;
  }
}
.main-page .grid-global .right-side-global .slider-row-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 960px) {
  .main-page .grid-global .right-side-global .slider-row-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 840px) {
  .main-page .grid-global .right-side-global .slider-row-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 640px) {
  .main-page .grid-global .right-side-global .slider-row-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-page .grid-global .right-side-global .slider-row-block .owl-carousel-box {
  overflow: hidden;
  width: 100%;
}
.main-page .grid-global .right-side-global .slider-row-block .slider-for-shares {
  margin: 0 0 0 18px;
}
@media (max-width: 960px) {
  .main-page .grid-global .right-side-global .slider-row-block .slider-for-shares {
    margin: 12px 0 0 0;
  }
}
@media (max-width: 840px) {
  .main-page .grid-global .right-side-global .slider-row-block .slider-for-shares {
    margin: 0 0 0 12px;
  }
}
@media (max-width: 640px) {
  .main-page .grid-global .right-side-global .slider-row-block .slider-for-shares {
    margin: 12px 0 0 0;
  }
}
.main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container {
  width: 286px;
  height: 448px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container {
    width: 200px;
    height: 350px;
  }
}
@media (max-width: 960px) {
  .main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container {
    width: 100%;
    height: 120px;
  }
}
@media (max-width: 840px) {
  .main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container {
    width: 200px;
    height: 350px;
  }
}
@media (max-width: 640px) {
  .main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container {
    width: 100%;
    height: 150px;
  }
}
@media (max-width: 375px) {
  .main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container {
    width: 100%;
    height: 120px;
  }
}
.main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container .img-slider-shares {
  height: 100%;
  position: relative;
}
.main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container .img-slider-shares a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-container .img-slider-shares img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-page .grid-global .right-side-global .slider-row-block .slider-for-shares .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-page .grid-global .right-side-global .main-slider .owl-item img {
  height: 448px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .main-page .grid-global .right-side-global .main-slider .owl-item img {
    height: 350px;
  }
}
@media (max-width: 425px) {
  .main-page .grid-global .right-side-global .main-slider .owl-item img {
    height: 250px;
  }
}
.main-page .grid-global .right-side-global .main-slider .slider-item {
  position: relative;
}
.main-page .grid-global .right-side-global .main-slider .slider-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.main-page .grid-global .right-side-global .main-slider .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 12px 0 0;
}
.main-page .grid-global .right-side-global .main-slider .owl-dots .owl-dot {
  background: #BFBFBF;
  border-radius: 2px;
  width: 8px;
  height: 4px;
  margin-right: 12px;
}
.main-page .grid-global .right-side-global .main-slider .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.main-page .grid-global .right-side-global .main-slider .owl-dots .owl-dot.active {
  background: #FF103B;
}
.main-page .grid-global .right-side-global .sub-title-sorting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
}
@media (max-width: 960px) {
  .main-page .grid-global .right-side-global .sub-title-sorting {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 16px;
  }
}
.main-page .grid-global .right-side-global .sub-title-sorting h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
  margin: 0;
}
.main-page .grid-global .right-side-global .sub-title-sorting .sorting-box {
  position: relative;
}
@media (max-width: 960px) {
  .main-page .grid-global .right-side-global .sub-title-sorting .sorting-box {
    margin-top: 10px;
  }
}
.main-page .grid-global .right-side-global .sub-title-sorting .sorting-box .sorting {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #2A2A2A;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.main-page .grid-global .right-side-global .sub-title-sorting .sorting-box .sorting:after {
  content: "";
  width: 10px;
  height: 14px;
  background: url(../svg/black-arrow.svg) no-repeat center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-size: contain;
  margin-left: 10px;
}
.main-page .grid-global .right-side-global .sub-title-sorting .sorting-box .drop-sort {
  display: none;
  position: absolute;
  top: 24px;
  right: -18px;
  width: 230px;
  text-align: end;
  padding: 6px 18px 11px 30px;
  border: 1px solid #E4E4E4;
  z-index: 22;
  background: white;
}
@media (max-width: 960px) {
  .main-page .grid-global .right-side-global .sub-title-sorting .sorting-box .drop-sort {
    left: 0;
    right: inherit;
    text-align: start;
    padding: 6px 14px 10px;
  }
}
.main-page .grid-global .right-side-global .sub-title-sorting .sorting-box .drop-sort a {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: right;
  color: #7C7C7C;
  margin: 9px 0;
}
@media (max-width: 960px) {
  .main-page .grid-global .right-side-global .sub-title-sorting .sorting-box .drop-sort a {
    text-align: left;
  }
}
.main-page .grid-global .right-side-global .sub-title-sorting .sorting-box .drop-sort a.active {
  color: #181818;
  line-height: 18px;
}
.main-page .shares-block {
  margin: 0 0 48px;
}
.main-page .shares-block h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
  margin: 0 0 10px;
}
.main-page .shares-block .shares-block-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 28px;
}
@media (max-width: 960px) {
  .main-page .shares-block .shares-block-inner {
    grid-gap: 12px;
  }
}
.main-page .shares-block .shares-block-inner .shares-block__img {
  position: relative;
}
.main-page .shares-block .shares-block-inner .shares-block__img a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.main-page .shares-block .shares-block-inner .shares-block__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-page .new-products h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.main-page .new-products .products-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 12px;
}
@media (max-width: 1200px) {
  .main-page .new-products .products-list {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .main-page .new-products .products-list {
    -ms-grid-columns: 1fr 6px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6px;
  }
}
@media (max-width: 840px) {
  .main-page .new-products .products-list {
    -ms-grid-columns: 1fr 6px 1fr 6px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .main-page .new-products .products-list {
    -ms-grid-columns: 1fr 6px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 425px) {
  .main-page .new-products .products-list {
    grid-gap: 3px;
  }
}
.main-page .our-markets h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.main-page .our-markets .markets-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 12px;
}
@media (max-width: 1200px) {
  .main-page .our-markets .markets-list {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .main-page .our-markets .markets-list {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .main-page .our-markets .markets-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}
.main-page .our-markets .markets-list .market-item {
  position: relative;
}
.main-page .our-markets .markets-list .market-item img {
  width: 100%;
}
.main-page .our-markets .markets-list .market-item a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.main-page .about-marketplace h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.main-page .about-marketplace .ck-editor-text p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
  margin: 0;
}
.main-page .about-marketplace .ck-editor-text img {
  width: 100%;
  height: auto;
}

.about-us {
  padding: 24px 0 64px;
}

.info-shop {
  border-bottom: 1px solid #BFBFBF;
  padding: 0 0 36px;
}
@media (max-width: 840px) {
  .info-shop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .info-shop {
    display: block;
    width: 100%;
  }
}
.info-shop .shop-logo {
  border-radius: 2px;
  overflow: hidden;
}

.info-shop-items .info-shop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 840px) {
  .info-shop-items .info-shop-item {
    margin: 0 0 12px 50px;
  }
}
@media (max-width: 500px) {
  .info-shop-items .info-shop-item {
    margin: 22px 0 0;
  }
}
.info-shop-items .info-shop-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-shop-items .info-shop-item a:hover .text {
  color: #FF9A02;
}
.info-shop-items .info-shop-item a:hover .icon {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
.info-shop-items .info-shop-item .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #181818;
  margin: 3px 0 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main-info-shop {
  border-bottom: 1px solid #BFBFBF;
}
.main-info-shop .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1100px) {
  .main-info-shop .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.main-info-shop .flex .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main-info-shop .flex .left h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
.main-info-shop .flex .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main-info-shop .flex .right form {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media (max-width: 392px) {
  .main-info-shop .flex .right form {
    margin: 0 0 10px;
  }
}
.main-info-shop .flex .right .subscribes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.main-info-shop .flex .right .subscribes .text {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #181818;
  margin: 0 0 0 10px;
}
.main-info-shop .flex .right .likes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-info-shop .flex .right .likes .text {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #BFBFBF;
  margin: 0 10px 0 0;
}
.main-info-shop .flex .right .likes .icon-rectangle {
  background: #FFFFFF;
  border: 1.5px solid #EEEEEE;
  border-radius: 2px 0px 0px 2px;
  cursor: pointer;
}
.main-info-shop .flex .right .likes .icon-rectangle:last-child {
  border-radius: 0px 2px 2px 0px;
  margin: 0 0 0 -1.5px;
}
.main-info-shop .flex .right .likes .icon-rectangle .icon {
  margin: 8px 14px;
}
.main-info-shop .category-shop {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  margin: 0;
  color: #BFBFBF;
}
.main-info-shop .shop-description * {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 175%;
  margin: 0;
  color: #000000;
}
.main-info-shop .shop-description .my-button-css {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 175%;
  margin: 0;
  color: #FF9A02;
  cursor: pointer;
}

.shop-nav .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.shop-nav .flex a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  padding: 0;
  color: #767676;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 960px) {
  .shop-nav .flex a {
    margin: 0 36px 16px 0;
  }
}
.shop-nav .flex a:hover {
  color: #FF103B;
}
.shop-nav .flex a.shop-products {
  color: #181818;
}
.shop-nav .flex a.shop-products:hover {
  color: #FF103B;
}
.shop-nav .flex a.shop-products span {
  color: #767676;
}

@media (max-width: 840px) {
  .grid-shop {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .grid-shop .left-side-global {
    width: 100%;
    min-width: 100%;
  }
}
.product-detail .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .product-detail .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 960px) {
  .product-detail .left {
    margin: 0;
    overflow: hidden;
  }
}
.product-detail .left .product-item {
  width: 500px;
  min-width: 500px;
  border: 0;
  padding: 0;
}
@media (max-width: 960px) {
  .product-detail .left .product-item {
    width: 100%;
    min-width: 100%;
  }
}
.product-detail .left .product-item:hover {
  background: transparent;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.product-detail .left .product-item .image {
  height: 500px;
}
@media (max-width: 960px) {
  .product-detail .left .product-item .image {
    height: 340px;
  }
}
@media (max-width: 840px) {
  .product-detail .left .product-item .image {
    height: 608px;
  }
}
@media (max-width: 640px) {
  .product-detail .left .product-item .image {
    height: 508px;
  }
}
@media (max-width: 425px) {
  .product-detail .left .product-item .image {
    height: 393px;
  }
}
@media (max-width: 375px) {
  .product-detail .left .product-item .image {
    height: 343px;
  }
}
@media (max-width: 320px) {
  .product-detail .left .product-item .image {
    height: 288px;
  }
}
.product-detail .left .product-slider {
  position: relative;
  height: 100%;
}
@media (max-width: 425px) {
  .product-detail .left .product-slider .slider-item img {
    height: 393px;
    width: 393px;
  }
}
@media (max-width: 375px) {
  .product-detail .left .product-slider .slider-item img {
    height: 343px;
    width: 343px;
  }
}
@media (max-width: 320px) {
  .product-detail .left .product-slider .slider-item img {
    height: 288px;
    width: 288px;
  }
}
.product-detail .left .product-slider .owl-item img {
  border-radius: 2px;
}
.product-detail .left .product-slider .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 176px;
  min-width: 176px;
  height: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 6px;
  z-index: 10;
}
.product-detail .left .product-slider .owl-nav .owl-prev {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.product-detail .left .product-slider .owl-nav .owl-prev:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-image: url(../svg/left-arrow.svg);
}
.product-detail .left .product-slider .owl-nav .owl-next {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.product-detail .left .product-slider .owl-nav .owl-next:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-image: url(../svg/right-arrow.svg);
}
.product-detail .left .product-slider .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px 2px 0px 0px;
  width: 176px;
  min-width: 176px;
  height: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
.product-detail .left .product-slider .owl-dots .owl-dot {
  background: rgba(24, 24, 24, 0.4);
  border-radius: 2px;
  width: 8px;
  height: 4px;
  margin-right: 12px;
  z-index: 11;
}
.product-detail .left .product-slider .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.product-detail .left .product-slider .owl-dots .owl-dot.active {
  background: #FF103B;
}
.product-detail .right {
  width: 100%;
}
.product-detail .product-info h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
  padding: 0;
  word-wrap: break-word;
}
.product-detail .product-info .category {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #767676;
  border-bottom: 1px solid #BFBFBF;
  padding: 0 0 16px;
}
.product-detail .product-info .price {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.product-detail .product-info .price span {
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 37px;
  color: #333333;
}
.product-detail .product-info .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 21px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #333333;
}
.product-detail .product-info .btn-cart {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-detail .product-info .btn-cart.active {
  color: #FF103B;
  background: #ffffff;
  border: 1px solid #FF103B;
}
.product-detail .product-info .btn-cart:hover {
  -webkit-box-shadow: 0 18px 14px rgba(0, 0, 0, 0.09);
          box-shadow: 0 18px 14px rgba(0, 0, 0, 0.09);
}
@media (max-width: 1200px) {
  .product-detail .product-info .btn-cart {
    max-width: 368px;
  }
}
.product-detail .product-info .one-click-btn {
  border-radius: 2px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FF9A02;
  background: transparent;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-detail .product-info .one-click-btn:hover {
  -webkit-box-shadow: 0 24px 24px rgba(0, 0, 0, 0.09);
          box-shadow: 0 24px 24px rgba(0, 0, 0, 0.09);
}
@media (max-width: 1200px) {
  .product-detail .product-info .one-click-btn {
    max-width: 368px;
  }
}
.product-detail .product-info .to-share {
  margin: 24px 0 0 0;
}
.product-detail .product-info .to-share h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #181818;
  margin: 0 0 8px;
}
.product-detail .product-info .to-share .to-share_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-detail .product-info .to-share .to-share_link a {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin: 0 16px 16px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.product-detail .product-info .to-share .to-share_link a:last-child {
  margin: 0 0 16px;
}
.product-detail .product-info .to-share .to-share_link a.vk {
  background-image: url("../img/vk-icon.svg");
}
.product-detail .product-info .to-share .to-share_link a.vk:hover {
  background-image: url("../img/vk-icon2.svg");
}
.product-detail .product-info .to-share .to-share_link a.facebook {
  background-image: url("../img/facebook-icon.svg");
}
.product-detail .product-info .to-share .to-share_link a.facebook:hover {
  background-image: url("../img/facebook-icon2.svg");
}
.product-detail .product-info .to-share .to-share_link a.telegram {
  background-image: url("../img/telegram-icon.svg");
}
.product-detail .product-info .to-share .to-share_link a.telegram:hover {
  background-image: url("../img/telegram-icon2.svg");
}
.product-detail .product-info .to-share .to-share_link a.instagram {
  background-image: url("../img/instagram-icon.svg");
}
.product-detail .product-info .to-share .to-share_link a.instagram:hover {
  background-image: url("../img/instagram-icon2.svg");
}
.product-detail .product-info .to-share .to-share_link a.whatsapp {
  background-image: url("../img/whatsapp-icon.svg");
}
.product-detail .product-info .to-share .to-share_link a.whatsapp:hover {
  background-image: url("../img/whatsapp-icon2.svg");
}
.product-detail .product-info .product-description .ck-editor-text {
  position: relative;
  padding: 0 0 20px;
}
.product-detail .product-info .product-description .ck-editor-text:after {
  content: "";
  height: 34px;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40.76%, #FFFFFF), color-stop(100.95%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #FFFFFF 40.76%, rgba(255, 255, 255, 0) 100.95%);
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}
.product-detail .product-info .product-description .ck-editor-text h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #181818;
  padding: 0 0 20px 0;
}
.product-detail .product-info .product-description .ck-editor-text > * {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 175%;
  color: #181818;
  margin: 0;
  padding: 0;
}
.product-detail .product-info .product-description .my-button-css {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 175%;
  margin: 0;
  color: #FF9A02;
  cursor: pointer;
}

.product-info-block .block-item .title {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ADADAD;
  width: 100px;
  display: inline-block;
}
.product-info-block .block-item .value {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.product-info-block .block-item a.value {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #FF9A02;
}

.search-head .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-head .flex h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
  margin: 0;
}
@media (max-width: 1056px) {
  .search-head .flex h1 {
    margin: 0 0 12px;
  }
}

.shop-create-page {
  background-color: #ffffff;
  padding: 24px 0 100px;
}
.shop-create-page .create-shop-main h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main h1 {
    font-size: 36px;
    line-height: normal;
  }
}
.shop-create-page .create-shop-main form {
  margin: 0;
}
.shop-create-page .create-shop-main .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .shop-create-page .create-shop-main .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.shop-create-page .create-shop-main .flex .right {
  width: 100%;
}
@media (max-width: 1200px) {
  .shop-create-page .create-shop-main .flex .right {
    margin: 36px 0 0;
  }
}
@media (max-width: 1200px) {
  .shop-create-page .create-shop-main .flex .right .flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .flex .right .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shop-create-page .create-shop-main .flex .right .flex .central-info-shop {
    margin: 0;
  }
}
.shop-create-page .create-shop-main .flex .central-info-shop {
  width: 100%;
  max-width: 432px;
}
.shop-create-page .create-shop-main .flex .central-info-shop .main-info-item:first-child {
  margin: 9px 0 0;
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .flex .other-info-shop {
    margin: 36px 0 0;
  }
}
.shop-create-page .create-shop-main .flex .other-info-shop .working-time .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 382px) {
  .shop-create-page .create-shop-main .flex .other-info-shop .working-time .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shop-create-page .create-shop-main .flex .other-info-shop .working-time .flex .text {
    margin: 0 24px 16px 0;
  }
}
.shop-create-page .create-shop-main .flex .other-info-shop .working-time .flex .text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #767676;
}
.shop-create-page .create-shop-main .flex .other-info-shop .working-time .flex .input-date {
  border: 1px solid #BFBFBF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  width: 94px;
  height: 44px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #181818;
}
.shop-create-page .create-shop-main .flex .other-info-shop .map p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #ADADAD;
}
.shop-create-page .create-shop-main .flex .other-info-shop .map .map-container {
  border-radius: 2px;
  overflow: hidden;
  max-height: 296px;
  height: 100%;
}
.shop-create-page .create-shop-main .flex .other-info-shop .shop-description {
  width: 100%;
}
.shop-create-page .create-shop-main .flex .other-info-shop .shop-description textarea {
  border: 1px solid #BFBFBF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  padding: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
  width: 100%;
}
.shop-create-page .create-shop-main .flex .other-info-shop .shop-description textarea::-webkit-input-placeholder {
  color: #767676;
}
.shop-create-page .create-shop-main .flex .other-info-shop .shop-description textarea::-moz-placeholder {
  color: #767676;
}
.shop-create-page .create-shop-main .flex .other-info-shop .shop-description textarea:-ms-input-placeholder {
  color: #767676;
}
.shop-create-page .create-shop-main .flex .other-info-shop .shop-description textarea::-ms-input-placeholder {
  color: #767676;
}
.shop-create-page .create-shop-main .flex .other-info-shop .shop-description textarea::placeholder {
  color: #767676;
}
.shop-create-page .create-shop-main .down-block {
  max-width: 540px;
  margin: 48px auto 0;
  text-align: center;
}
.shop-create-page .create-shop-main .down-block .checkbox-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 590px) {
  .shop-create-page .create-shop-main .down-block .checkbox-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 590px) {
  .shop-create-page .create-shop-main .down-block .checkbox-block .checkbox-item {
    margin: 0 0 16px 0;
  }
}
.shop-create-page .create-shop-main .down-block .create-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 292px;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop-create-page .create-shop-main .down-block .create-btn:hover {
  -webkit-box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
          box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}

.load-image .image-container {
  position: relative;
}
.load-image .image-container.active .delete-img {
  display: block;
}
.load-image .image-container .delete-img {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 5;
  cursor: pointer;
  display: none;
}
.load-image .image-container label {
  text-align: center;
  cursor: pointer;
}
.load-image .image-container label img {
  width: 236px;
  height: 236px;
  max-width: 236px;
}
.load-image .image-container label input {
  display: none;
}
.load-image .image-container label .load-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.load-image .image-container label .load-flex .text {
  margin: 3px 0 0;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FF9A02;
}

.cart-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
  min-height: 500px;
}
.cart-page .cart-main-block form {
  margin: 0;
}
.cart-page .cart-main-block h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.flex .main-left {
  min-width: 668px;
  width: 668px;
}
@media (max-width: 1200px) {
  .flex .main-left {
    width: 100%;
    min-width: 100%;
  }
}
.flex .main-right {
  width: 100%;
  max-width: 368px;
}
@media (max-width: 1200px) {
  .flex .main-right {
    margin: 36px auto 0;
  }
}

.total-cart {
  position: sticky;
  top: 170px;
}
.total-cart .inner {
  padding: 24px;
  border: 1px solid #EEEEEE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
}
.total-cart h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.total-cart .cart-info-items {
  padding: 0 0 36px;
  border-bottom: 1px solid #BFBFBF;
}
.total-cart .cart-info-items .cart-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.total-cart .cart-info-items .cart-info-item .title {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ADADAD;
}
.total-cart .cart-info-items .cart-info-item .value {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.total-cart .total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.total-cart .total .text {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.total-cart .total .total-price {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #181818;
}
.total-cart .button-basket {
  position: relative;
}
.total-cart .button-basket a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.total-cart .shop-btn {
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
}

.promokod .promokod-accordion {
  cursor: pointer;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #181818;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.promokod .promokod-accordion:hover:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.promokod .promokod-accordion:after {
  content: "";
  width: 20px;
  height: 12px;
  background: url("../svg/black-arrow.svg") no-repeat center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.promokod .promokod-accordion.toggle:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.promokod .promokod-accordion.toggle:hover:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.promokod .panel {
  display: none;
  background-color: white;
  overflow: hidden;
}
.promokod .panel form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 600px) {
  .promokod .panel form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .promokod .panel form input, .promokod .panel form button {
    width: 100%;
  }
  .promokod .panel form input {
    margin-bottom: 16px;
  }
}
.promokod .panel input {
  border: 1px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  width: 70%;
  padding: 13px 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}
.promokod .panel input::-webkit-input-placeholder {
  color: #ADADAD;
}
.promokod .panel input::-moz-placeholder {
  color: #ADADAD;
}
.promokod .panel input:-ms-input-placeholder {
  color: #ADADAD;
}
.promokod .panel input::-ms-input-placeholder {
  color: #ADADAD;
}
.promokod .panel input::placeholder {
  color: #ADADAD;
}
.promokod .panel button {
  float: right;
  min-width: 168px;
  width: 168px;
  background: #FF103B;
  border-radius: 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  padding: 13px 0;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.promokod .panel button:hover {
  -webkit-box-shadow: 0 24px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 24px 24px rgba(0, 0, 0, 0.1);
}

.order-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
}
.order-page h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
@media (max-width: 960px) {
  .order-page h1 {
    font-size: 36px;
    line-height: normal;
  }
}
.order-page .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 960px) {
  .order-page .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.order-page .flex .left {
  min-width: 432px;
  width: 432px;
}
@media (max-width: 960px) {
  .order-page .flex .left {
    min-width: 100%;
    width: 100%;
  }
}
.order-page .flex .left form {
  margin: 0;
}
.order-page .flex .left form button {
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
}
.order-page .flex .right {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 960px) {
  .order-page .flex .right {
    margin: 36px 0 0;
    max-width: 100%;
  }
}
.order-page .flex .right h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.order-page .flex .right p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
}

.cart-history-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
}
.cart-history-page .history-main-block h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
@media (max-width: 960px) {
  .cart-history-page .history-main-block h1 {
    font-size: 36px;
    line-height: normal;
  }
}
.cart-history-page .history-main-block .show-more {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 292px;
  margin: 0 auto;
  cursor: pointer;
}
.cart-history-page .history-main-block .show-more.active {
  background: #FF9A02;
}
@media (max-width: 1200px) {
  .cart-history-page .history-main-block .show-more {
    margin: 36px auto 0;
  }
}
.cart-history-page .history-main-block .history-main-item .date-block .date {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #FF9A02;
}
.cart-history-page .history-main-block .history-main-item .date-block .time {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  margin: 0 0 0 8px;
}
.cart-history-page .history-main-block .history-main-item .history-item {
  display: none;
}
.cart-history-page .history-main-block .history-main-item .history-item.show {
  display: block;
}
.cart-history-page .history-main-block .pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login-page {
  background-color: #fff;
  padding: 24px 0 135px;
}
.login-page h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.login-page form {
  margin: 0;
}
.login-page form .check-label input:focus + .emul-label {
  top: -13px !important;
  font-size: 12px !important;
  line-height: 120% !important;
  color: #A9A9A9 !important;
}
.login-page form .check-label input:required:valid + .emul-label {
  top: -13px !important;
  font-size: 12px !important;
  line-height: 120% !important;
  color: #A9A9A9 !important;
}
.login-page form .check-label input[value]:not([value=""]) + .emul-label {
  top: -13px !important;
  font-size: 12px !important;
  line-height: 120% !important;
  color: #A9A9A9 !important;
}
.login-page form .check-label .emul-label {
  font-size: 16px !important;
  line-height: 130% !important;
  color: #767676 !important;
  top: 0 !important;
}
.login-page form .check-label.value-exists .emul-label {
  top: -13px !important;
  font-size: 12px !important;
  line-height: 120% !important;
  color: #A9A9A9 !important;
}
.login-page form .phone-label .emul-label {
  top: -13px !important;
  font-size: 12px !important;
  line-height: 120% !important;
  color: #A9A9A9 !important;
}
.login-page form .not-login {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #4368EC;
  display: block;
}
.login-page form .sign-in-btn {
  background: #FFFFFF;
  border-radius: 2px;
  height: 44px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FF9A02;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.login-page form .sign-in-btn:hover {
  -webkit-box-shadow: 0 4px 12px rgba(47, 44, 44, 0.05);
          box-shadow: 0 4px 12px rgba(47, 44, 44, 0.05);
}
.login-page .login-with-social p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  margin: 0;
  color: #BFBFBF;
}
.login-page .login-with-social .socials-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
@media (max-width: 435px) {
  .login-page .login-with-social .socials-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.login-page .login-with-social .socials-list .social-items {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.login-page .login-with-social .socials-list .social-items:last-child {
  margin: 0;
}
@media (max-width: 435px) {
  .login-page .login-with-social .socials-list .social-items {
    margin: 0;
  }
}
.login-page .login-with-social .socials-list .social-items:after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.login-page .login-with-social .socials-list .social-items:hover:after {
  content: "";
  background: #FF103B;
  border-radius: 8px;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  width: 32px;
  height: 4px;
}
.login-page .user-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-page .user-login .avatar {
  display: inline-block;
}
.login-page .user-login .avatar img {
  width: 48px;
  height: 48px;
  min-width: 48px;
}
.login-page .user-login span {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  color: #181818;
}
.login-page.phone-change h1 {
  text-align: center;
}
.login-page.phone-change .phone-change {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #7C7C7C;
}
.login-page.phone-change .message-counting .counting-button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login-page.phone-change .message-counting .counting-button #timer {
  display: none;
}
.login-page.phone-change .message-counting .counting-button.pointer-none {
  background: #767676 !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.login-page.phone-change .message-counting .counting-button.pointer-none:hover {
  cursor: not-allowed;
}
.login-page.phone-change .message-counting .counting-button.pointer-none #timer {
  display: block;
}
.login-page.phone-change .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 460px) {
  .login-page.phone-change .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .login-page.phone-change .buttons .red-btn {
    min-width: 100%;
    margin: 10px 0 30px 0;
  }
}
.login-page.phone-change .buttons .btn {
  width: 45%;
  border-radius: 2px;
  padding: 16px 0 12px 0;
}
.login-page.phone-change .buttons .btn button {
  width: 100%;
  height: 100%;
  outline: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}
.login-page.phone-change .buttons .btn.cancel {
  color: #181818;
}

.dark-gray .check-label .emul-label {
  color: #767676 !important;
}

.light-gray .check-label .emul-label {
  color: #BFBFBF !important;
}

.mini-container {
  width: 403px;
  min-width: 403px;
  margin: 0 auto;
}
@media (max-width: 435px) {
  .mini-container {
    width: 100%;
    min-width: 100%;
  }
}

.login-recovery p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #BFBFBF;
}
.login-recovery .message-counting p {
  text-align: center;
  margin: 0 0 6px 0;
}
.login-recovery .message-counting .counting-button {
  background: #ADADAD;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 24px;
}
.login-recovery .message-counting .counting-button:hover {
  -webkit-box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
          box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
}
.login-recovery .message-counting .counting-button.orange {
  background: #FF9A02;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login-recovery .message-counting .counting-button span {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}

.orange-btn {
  background: #FF9A02;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.orange-btn:hover {
  -webkit-box-shadow: 0 4px 12px rgba(47, 44, 44, 0.1);
          box-shadow: 0 4px 12px rgba(47, 44, 44, 0.1);
}

.not-active-btn {
  background: #adadad !important;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.not-active-btn:hover {
  -webkit-box-shadow: 0 4px 12px rgba(47, 44, 44, 0.1);
          box-shadow: 0 4px 12px rgba(47, 44, 44, 0.1);
}

.password-input {
  position: relative;
}
.password-input .show-pass {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 5;
}
.password-input .text-input {
  position: relative;
}

.red-btn {
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.red-btn:hover {
  -webkit-box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
          box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}

.product-create-page {
  background-color: #ffffff;
  padding: 24px 0 0;
}
.product-create-page .create-product-main h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.product-create-page .create-product-main form {
  margin: 0;
}
.product-create-page .create-product-main .main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.product-create-page .create-product-main .main-flex .main-left {
  width: 700px;
  min-width: 700px;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex .main-left {
    width: 100%;
    min-width: 100%;
  }
}
.product-create-page .create-product-main .main-flex .main-left .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left {
  width: 236px;
  min-width: 236px;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .load-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .load-flex .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FF9A02;
  margin: 0 0 0 4px;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .filepond--drop-label {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .filepond--panel {
  background-color: #ffffff;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right {
  width: 100%;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex .main-left .flex .right {
    margin: 36px 0 0;
  }
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .about-product textarea {
  border: 1px solid #BFBFBF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  padding: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
  width: 100%;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .about-product textarea::-webkit-input-placeholder {
  color: #767676;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .about-product textarea::-moz-placeholder {
  color: #767676;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .about-product textarea:-ms-input-placeholder {
  color: #767676;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .about-product textarea::-ms-input-placeholder {
  color: #767676;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .about-product textarea::placeholder {
  color: #767676;
}
.product-create-page .create-product-main .main-flex .main-left .category-block h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li.acc_active {
  border: 1px solid #FFC702;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li.acc_active .title {
  border: 0;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li.acc_active .title:after {
  background-image: url(../svg/acc-minus.svg);
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li .title {
  border: 1px solid #EEEEEE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  height: 52px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 16px 0;
  cursor: pointer;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  position: relative;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li .title:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: 18px;
  background-image: url(../svg/acc-plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li .body .flex-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 16px 32px;
}
.product-create-page .create-product-main .main-flex .main-left .red-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 292px;
  border: 0;
  cursor: pointer;
  margin: 48px auto;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-create-page .create-product-main .main-flex .main-left .red-btn:hover {
  -webkit-box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
          box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.product-create-page .create-product-main .main-flex .main-right {
  width: 100%;
}
.product-create-page .create-product-main .main-flex .main-right h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.product-create-page .create-product-main .main-flex .main-right p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
}

.artikul p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  color: #A9A9A9;
}
.artikul .artikul-choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.artikul .artikul-choice .radiobutton-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.artikul .artikul-choice .radiobutton-item label .text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 90%;
  color: #181818;
}
.artikul .artikul-choice .radiobutton-item label input {
  display: none;
}
.artikul .artikul-choice .radiobutton-item label input:checked + .indicator:after {
  background: #FF103B;
}
.artikul .artikul-choice .radiobutton-item label .indicator {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #FF9A02;
  border-radius: 13px;
  margin: 0 0 3px;
}
.artikul .artikul-choice .radiobutton-item label .indicator:after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background: #BFBFBF;
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.profile-page {
  padding: 24px 0 64px;
  background-color: #ffffff;
}
.profile-page h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
@media (max-width: 960px) {
  .profile-page h1 {
    font-size: 36px;
    line-height: normal;
  }
}
.profile-page form {
  margin: 0;
}
.profile-page .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile-page .flex .left {
  width: 403px;
  min-width: 403px;
}
@media (max-width: 430px) {
  .profile-page .flex .left {
    width: 100%;
    min-width: 100%;
  }
}
.profile-page .flex .left .change-password-block h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.profile-page .flex .left button {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #FF9A02;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  border: 0;
  cursor: pointer;
}
.profile-page .flex .left .btn-password {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #FF9A02;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  border: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.profile-page .flex .left .btn-password a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.profile-page .flex .right {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 960px) {
  .profile-page .flex .right {
    margin: 36px 0 0;
  }
}
.profile-page .flex .right h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.profile-page .flex .right p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
}
.profile-page.centered .container h1 {
  text-align: center;
}
.profile-page.centered .container .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.global-input {
  position: relative;
}
.global-input .input-text.readonly + .emul-label {
  top: -12px;
}
.global-input .edit-input {
  position: absolute;
  right: 0;
  top: -4px;
  z-index: 5;
}
.global-input .text-input {
  position: relative;
}

.contacts-page {
  background-color: #ffffff;
  padding: 24px 0 48px;
}
.contacts-page .contacts-main h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.contacts-page .contacts-main form {
  margin: 0;
  width: 100%;
}
.contacts-page .contacts-main .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 960px) {
  .contacts-page .contacts-main .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contacts-page .contacts-main .flex .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .contacts-page .contacts-main .flex .right {
    margin: 48px 0 0;
  }
}
@media (max-width: 840px) {
  .contacts-page .contacts-main .flex .right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contacts-page .contacts-main .flex .left {
  width: 50%;
  padding: 0 32px 0 0;
}
@media (max-width: 1200px) {
  .contacts-page .contacts-main .flex .left {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .contacts-page .contacts-main .flex .left {
    padding: 0;
  }
}
.contacts-page .contacts-main .flex .second-block {
  width: 568px;
  min-width: 538px;
}
@media (max-width: 1200px) {
  .contacts-page .contacts-main .flex .second-block {
    width: 468px;
    min-width: 438px;
  }
}
@media (max-width: 960px) {
  .contacts-page .contacts-main .flex .second-block {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 840px) {
  .contacts-page .contacts-main .flex .second-block {
    margin: 0;
  }
}
@media (max-width: 500px) {
  .contacts-page .contacts-main .flex .second-block {
    width: 100%;
    min-width: 100%;
  }
}
.contacts-page .contacts-main .flex .second-block #map {
  height: 400px;
}
.contacts-page .contacts-main .flex .second-block .map-block p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  margin: 0 0 6px;
  color: #ADADAD;
}
.contacts-page .contacts-main .flex .second-block .map-block .map-container {
  max-height: 373px;
  height: 100%;
  width: 100%;
}
.contacts-page .contacts-main .flex .third-block {
  width: 100%;
}
.contacts-page .contacts-main .flex .third-block .info-shop-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -32px;
}
.contacts-page .contacts-main .flex .third-block .info-shop-items .info-shop-item__wrapper {
  width: calc(50% - 32px);
  margin: 0 0 27px 32px;
}
@media (max-width: 375px) {
  .contacts-page .contacts-main .flex .third-block .info-shop-items .info-shop-item__wrapper {
    width: 100%;
  }
}
.contacts-page .contacts-main .flex .third-block .info-shop-items .info-shop-item__wrapper h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  margin: 0 0 4px;
}
.contacts-page .contacts-main .flex .third-block .info-shop-items .info-shop-item {
  margin: 0 0 12px;
}
@media (max-width: 840px) {
  .contacts-page .contacts-main .flex .third-block .info-shop-items .info-shop-item {
    margin: 0 0 22px;
  }
}
.contacts-page .contacts-main .flex .third-block .contact-ckeditor {
  margin: 0 0 42px;
  font-size: 14px;
  line-height: 140%;
  color: #181818;
}

.mb-50 {
  margin: 0 0 50px 0;
}

.mr-32 {
  margin: 0 32px 0 0;
}

.mt-10 {
  margin: 10px 0 0 0;
}

.mt-32 {
  margin: 32px 0 0 0;
}

.mb-22 {
  margin: 0 0 22px;
}

.mt-22 {
  margin: 22px 0 0;
}

.mb-24 {
  margin: 0 0 24px;
}

.mt-16 {
  margin: 16px 0 0;
}

.mt-24 {
  margin: 24px 0 0;
}

.mt-12 {
  margin: 12px 0 0;
}

.mr-24 {
  margin: 0 24px 0 0;
}

.mb-12 {
  margin: 0 0 12px;
}

.mb-10 {
  margin: 0 0 10px;
}

.mb-8 {
  margin: 0 0 8px;
}

.mb-64 {
  margin: 0 0 64px;
}

.mr-20 {
  margin: 0 20px 0 0;
}

.mr-48 {
  margin: 0 48px 0 0;
}

.mb-16 {
  margin: 0 0 16px;
}

.mb-36 {
  margin: 0 0 36px;
}

.mr-36 {
  margin: 0 36px 0 0;
}

.mb-55 {
  margin: 0 0 55px 0;
}

.mt-36 {
  margin: 36px 0 0;
}

.ml-8 {
  margin: 0 0 0 8px;
}

.mr-12 {
  margin: 0 12px 0 0;
}

.mt-54 {
  margin: 54px 0 0;
}

.mrl-16 {
  margin: 0 16px;
}

.mb-6 {
  margin: 0 0 6px;
}

.mr-56 {
  margin: 0 56px 0 0;
}

.mt-48 {
  margin: 48px 0 0;
}

.mt-60 {
  margin: 60px 0 0;
}

.mt-8 {
  margin: 8px 0 0;
}

.mr-110 {
  margin: 0 110px 0 0;
}

.mt-50 {
  margin: 50px 0 0;
}

.mt-56 {
  margin: 56px 0 0;
}

.mt-95 {
  margin: 95px 0 0;
}

.mt-70 {
  margin: 70px 0 0;
}

.mt-24 {
  margin: 24px 0 0;
}

.mr-42 {
  margin: 0 42px 0 0;
}

.mr-22 {
  margin: 0 22px 0 0;
}

.mr-68 {
  margin: 0 68px 0 0;
}

.mt-44 {
  margin: 44px 0 0;
}

.ml-10 {
  margin: 0 0 0 10px;
}

.mb-20 {
  margin: 0 0 20px;
}

.mt-68 {
  margin: 68px 0 0;
}

.ml-24 {
  margin: 0 0 0 24px;
}

.mt-28 {
  margin: 28px 0 0;
}

.mr-16 {
  margin: 0 16px 0 0;
}

.mr-30 {
  margin: 0 30px 0 0;
}

@media (max-width: 840px) {
  .site-is-paused {
    padding: 55px 0 0 0;
  }
}
@media (max-width: 425px) {
  .site-is-paused {
    padding: 46px 0 0 0;
  }
}
.site-is-paused .site-is-paused__wrapper {
  position: relative;
}
.site-is-paused .site-is-paused__wrapper .wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  height: 100vh;
}
@media (max-width: 840px) {
  .site-is-paused .site-is-paused__wrapper .wrapper {
    background: rgba(255, 255, 255, 0.75);
    z-index: 4;
  }
}
.site-is-paused .site-is-paused__wrapper .wrapper .wrapper__inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 20px;
}
.site-is-paused .site-is-paused__wrapper .site__error-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.site-is-paused .site-is-paused__wrapper .site__error-wrap .site__error-pic {
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-is-paused .site-is-paused__wrapper .site__error {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  color: #181818;
  margin-bottom: 16px;
}
@media (max-width: 620px) {
  .site-is-paused .site-is-paused__wrapper .site__error {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .site-is-paused .site-is-paused__wrapper .site__error {
    font-size: 24px;
    line-height: 1.3;
  }
}
.site-is-paused .site-is-paused__wrapper .sub__site-error {
  font-size: 28px;
  line-height: 35px;
  display: block;
  color: #989898;
  margin-bottom: 8px;
}
@media (max-width: 620px) {
  .site-is-paused .site-is-paused__wrapper .sub__site-error {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .site-is-paused .site-is-paused__wrapper .sub__site-error {
    font-size: 20px;
    line-height: 1.1;
  }
}
.site-is-paused .site-is-paused__wrapper .site__error-tel {
  text-decoration: none;
  font-weight: bold;
  font-size: 28px;
  line-height: 35px;
  color: #181818;
  display: inline-block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.site-is-paused .site-is-paused__wrapper .site__error-tel:focus {
  outline: none;
}
.site-is-paused .site-is-paused__wrapper .site__error-tel:hover {
  color: #FF103B;
}
@media (max-width: 620px) {
  .site-is-paused .site-is-paused__wrapper .site__error-tel {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .site-is-paused .site-is-paused__wrapper .site__error-tel {
    font-size: 20px;
  }
}




.classTexta{
    display: flex;
    align-items: center;

}

.classTexta:before{
        width: 20px;
        height: 28px;
        margin: 0 8px 0 0;
        background-position: center;
        background-size: contain;
        content: '';
        background-image: url("../img/delivery2.png");
}