@charset "UTF-8";
html {
  -webkit-text-size-adjust: none;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  background-color: #f4f4f4;
}

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

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "TT Commons";
}

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

a {
  text-decoration: none;
}

.messages {
  height: 33px;
  width: 100%;
  background: #FF7C02;
  position: fixed;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  top: -33px;
  transition: 0.3s;
}
.messages.active {
  visibility: visible;
  opacity: 1;
  top: 86px;
}
@media (max-width: 1200px) {
  .messages.active {
    top: 61px;
  }
}
.messages.success {
  background: #0AC006;
}
.messages.danger {
  background: #FF103B;
}
.messages .text {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
}

.grid-global {
  display: flex;
}
.grid-global .left-side-global {
  min-width: 236px;
  width: 236px;
  transition: 0.3s;
}
.grid-global .left-side-global .category-global {
  transition: 0.3s;
  min-width: 236px;
  width: 236px;
  position: sticky;
  top: 120px;
  margin: 0 0 40px;
}
@media (max-width: 840px) {
  .grid-global .left-side-global .category-global {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 60;
    margin: 0;
    width: 100%;
    min-width: 100%;
    height: calc(100vh - 50px);
    padding: 24px;
    overflow-y: auto;
  }
  .grid-global .left-side-global .category-global.active {
    visibility: visible;
    opacity: 1;
  }
}
.grid-global .right-side-global {
  overflow: hidden;
  width: 100%;
  margin: 24px -18px 0 -18px;
  padding: 0 18px;
}
@media (max-width: 960px) {
  .grid-global.product-detail-page {
    flex-direction: column;
  }
  .grid-global.product-detail-page .left-side-global {
    width: 100%;
    min-width: 100%;
  }
}

.category-mobile {
  position: fixed;
  z-index: 550;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #FF103B;
  visibility: hidden;
  color: #ffffff;
  opacity: 0;
}
@media (max-width: 840px) {
  .category-mobile {
    visibility: visible;
    opacity: 1;
  }
}

.modal-ok .modal-container {
  padding: 90px 54px 64px !important;
}

.modal {
  position: fixed;
  z-index: 10000;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  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: flex;
  flex-direction: column;
  align-items: 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;
  transition: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
  position: relative;
  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 img {
  margin: 0 auto;
  display: block;
}
.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: flex;
  align-items: 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: flex;
  align-items: center;
  justify-content: center;
  color: #FF9A02;
  background: transparent;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close-one-click-modal:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.05);
}

.sorting {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.sorting li {
  list-style: none;
}
.sorting li a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #767676;
  display: flex;
  align-items: start;
  margin-right: 24px;
  margin-bottom: 16px;
  cursor: pointer;
}
.sorting li a:after {
  content: "";
  width: 14px;
  height: 14px;
  background-size: contain;
  background: url("../svg/arrow.svg") no-repeat center;
  margin-left: 6px;
}
.sorting li.active a {
  color: #FF103B;
}
.sorting li.active a:after {
  background: url("../svg/arrow-red.svg") no-repeat center;
  transform: rotate(180deg);
}

.likes .unable {
  pointer-events: none !important;
}

.shop-order-item .grid .right-side a.title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #FF103B;
  margin-right: 32px;
}

.shop-order-item .grid .right-side a.title.is_read {
  color: #FF103B;
}

.sorting li.active a.active-up:after {
  transform: rotate(0deg);
}

.icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  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);
}
.icon.icon-cart {
  background-image: url(../svg/icon-cart.svg);
}
.icon.icon-search {
  background-image: url(../svg/search.svg);
}
.icon.icon-pen {
  background-image: url(../svg/pen.svg);
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.icon.icon-del {
  background-image: url(../svg/del.svg);
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.icon.icon-plus-gray {
  background-image: url(../svg/plus-gray.svg);
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.icon.icon-vk {
  background-image: url(../svg/icon-vk.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-fb {
  background-image: url(../svg/icon-fb.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}

.icon.icon-wa {
  background-image: url(../svg/icon-wa.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-ok {
  background-image: url(../svg/icon-ok.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-insta {
  background-image: url(../svg/icon-insta.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  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;
  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;
  filter: opacity(0.3);
}
.icon.icon-clock {
  background-image: url(../svg/clock-2.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  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);
  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-orange-plus {
  background-image: url(../svg/orange-add.svg);
}
.icon.icon-remove-red {
  background-image: url(../svg/remove-red.svg);
}
.icon.icon-owl-left {
  background-image: url(../svg/left-arrow.svg);
}
.icon.icon-owl-right {
  background-image: url(../svg/right-arrow.svg);
}
.icon.icon-close-modal {
  background-image: url(../svg/dark-remove.svg);
}
.icon.icon-cart-dark {
  background-image: url(../svg/icon-cart-dark.svg);
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-content {
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  position: absolute;
  min-width: 230px;
  padding: 24px;
  z-index: 1;
  transition: 0.3s;
  background: #FFFFFF;
  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: -140px;
  }
}
@media (max-width: 640px) {
  .dropdown .dropdown-content {
    left: -100px;
    min-width: 190px;
  }
}
.dropdown .dropdown-content p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
  display: block !important;
  text-align: left;
}
.dropdown .dropdown-content a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
  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 .dropdown-content .shops {
  position: relative;
  display: inline-block !important;
}
.dropdown .dropdown-content .shops.active {
  color: #FF103B;
}
.dropdown .dropdown-content .shops span {
  position: absolute;
  top: -6px;
  right: -15px;
  width: 12px;
  height: 12px;
  font-weight: normal;
  font-size: 9px;
  line-height: 16px;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  background-color: #FF103B;
  border-radius: 50%;
}
.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 {
  filter: opacity(1);
}
.dropdown.desktop-drop:hover .text {
  color: #FF9A02;
}
.dropdown.desktop-drop:hover .icon {
  filter: opacity(1);
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #F3F3F3;
  width: 100%;
  height: 86px;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 56;
}
.header .container {
  width: 100%;
}
@media (max-width: 1200px) {
  .header {
    display: none;
  }
}
.header .flex {
  position: relative;
  display: flex;
  align-items: center;
}
.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: 16px;
  color: #FFFFFF;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .create-shop-btn a .text {
  margin-top: 3px;
}
.header .header-links {
  justify-content: space-between;
  margin-left: auto;
}
.header .header-links .header-links-item a {
  cursor: pointer;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
  color: #181818;
  display: flex;
  align-items: center;
  position: relative;
}
.header .header-links .header-links-item a .count {
  width: 15px;
  height: 15px;
  background-color: #FF103B;
  border-radius: 50%;
  font-weight: normal;
  font-size: 14px;
  color: #FFFFFF;
  position: absolute;
  top: -4px;
  left: 14px;
  margin: 0;
  text-align: center;
  padding-top: 1px;
}
.header .header-links .header-links-item a img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  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;
}
.header .header-links .header-links-item.cart {
  position: relative;
  margin: 0 0 0 44px;
}
.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: -4px;
  left: 14px;
  padding: 1px 0 0;
}

.logo {
  margin: 0 18px 0 0;
  position: relative;
}
@media (max-width: 1200px) {
  .logo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0 56px 0 16px;
  }
}
.logo img {
  width: 100% !important;
}
.logo a {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.mobile-header {
  position: fixed;
  display: none;
  width: 100%;
  padding: 10px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #F3F3F3;
  z-index: 56;
}
@media (max-width: 1200px) {
  .mobile-header .container {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .mobile-header {
    display: block;
  }
}
@media (max-width: 375px) {
  .mobile-header .logo {
    margin: 0 0 0 16px;
    max-width: 50px;
  }
}
@media (max-width: 360px) {
  .mobile-header .logo {
    left: auto;
    right: 16px;
    margin: 10px 0 0 0;
    top: 0;
    transform: translateY(0);
  }
}
.mobile-header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 360px) {
  .mobile-header .flex .logo {
    margin-right: 0;
  }
  .mobile-header .flex .navigation {
    justify-content: space-between;
    width: 100%;
  }
}
.mobile-header .flex .navigation {
  display: flex;
}
.mobile-header .flex .navigation > div {
  display: inline-flex;
}
.mobile-header .flex .navigation a {
  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;
}

.header-placeholder {
  height: 85px;
}
@media (max-width: 1200px) {
  .header-placeholder {
    height: 61px;
  }
}

.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;
  transition: 0.3s;
  background: #FFFFFF;
  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: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  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;
  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 a.red-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF !important;
  margin: 0;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  transition: 0.3s;
}
.cart-dropdown a.red-btn:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
}
.cart-dropdown:hover .cart-dropdown-content {
  visibility: visible;
  opacity: 1;
}

.mobile-profile-icon {
  position: relative;
}
.mobile-profile-icon .count {
  position: absolute;
  top: -5px;
  right: -10px;
  width: 10px;
  height: 10px;
  background-color: #FF103B;
  color: white;
  margin: 0;
  font-size: 9px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  padding-top: 1px;
}
@media (max-width: 560px) {
  .mobile-profile-icon .count {
    padding-top: 2px;
  }
}

.menu-category .menu-icon {
  width: 58px;
  height: 44px;
  min-width: 58px;
  margin: 0 12px 0 0;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 2px;
  cursor: pointer;
  background-color: #FFFFFF;
  background-image: url("../img/menu-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.2s;
}
@media (max-width: 1200px) {
  .menu-category .menu-icon {
    margin: 0 12px 0 90px;
  }
}
@media (max-width: 375px) {
  .menu-category .menu-icon {
    width: 38px;
    min-width: 38px;
    height: 32px;
    background-size: contain;
    margin: 0 12px 0 60px;
  }
}
@media (max-width: 360px) {
  .menu-category .menu-icon {
    margin: 0 12px 16px 0;
  }
}
.menu-category .menu-icon.active {
  background-color: #F2F2F2;
}
.menu-category .menu-category_content {
  position: absolute;
  left: 0;
  top: 65px;
  display: none;
}
@media (max-width: 1200px) {
  .menu-category .menu-category_content {
    top: 65px;
  }
}
@media (max-width: 640px) {
  .menu-category .menu-category_content {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 375px) {
  .menu-category .menu-category_content {
    z-index: 10;
    top: 53px;
  }
}
.menu-category .menu-category_content.show {
  display: inline-block;
}
.menu-category .menu-category_content .title-category {
  width: 236px;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #767676;
  background: #EEEEEE;
  border-radius: 2px;
  padding: 14px 12px 8px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .menu-category .menu-category_content .title-category {
    width: 100%;
    border-radius: 2px 2px 0 0;
  }
}
.menu-category .menu-category_content .title-category:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 10px;
  background: url("../img/triangle.svg") center no-repeat;
}
@media (max-width: 1200px) {
  .menu-category .menu-category_content .title-category:after {
    left: 57%;
  }
}
@media (max-width: 640px) {
  .menu-category .menu-category_content .title-category:after {
    transform: translateX(0);
    left: 125px;
  }
}
@media (max-width: 375px) {
  .menu-category .menu-category_content .title-category:after {
    transform: translateX(0);
    left: 86px;
  }
}
@media (max-width: 360px) {
  .menu-category .menu-category_content .title-category:after {
    left: 26px;
  }
}
.menu-category .menu-category_content .category-first {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-right: none;
  border-radius: 2px;
  max-height: calc(100vh - 125px);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
}
@media (max-width: 1200px) {
  .menu-category .menu-category_content .category-first {
    max-height: calc(100vh - 105px);
  }
}
@media (max-width: 840px) {
  .menu-category .menu-category_content .category-first {
    max-height: calc(100vh - 155px);
  }
}
@media (max-width: 640px) {
  .menu-category .menu-category_content .category-first {
    border-radius: 0;
  }
}
@media (max-width: 375px) {
  .menu-category .menu-category_content .category-first {
    max-height: calc(100vh - 143px);
  }
}
.menu-category .menu-category_content .category-first .category-first_list {
  list-style: none;
  padding: 0;
  width: 235px;
  margin: 0;
}
@media (max-width: 640px) {
  .menu-category .menu-category_content .category-first .category-first_list {
    min-width: 180px;
  }
}
@media (max-width: 375px) {
  .menu-category .menu-category_content .category-first .category-first_list {
    min-width: 160px;
  }
}
.menu-category .menu-category_content .category-first .category-first_list .category-first_item > a {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #181818;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  border-right: 1px solid #EEEEEE;
  padding: 11px 16px;
  cursor: pointer;
  transition: 0.2s;
}
.menu-category .menu-category_content .category-first .category-first_list .category-first_item > a:hover {
  color: #FF9A02;
}
.menu-category .menu-category_content .category-first .category-first_list .category-first_item > a.active {
  border-bottom: 1px solid #EEEEEE;
  border-top: 1px solid #EEEEEE;
  border-right: 1px solid transparent;
  color: #FF9A02;
}
.menu-category .menu-category_content .category-first .category-first_list .category-first_item:first-child a {
  padding: 15px 16px 11px;
}
.menu-category .menu-category_content .category-first .category-first_list .category-first_item:last-child a {
  padding: 11px 16px 15px;
}
.menu-category .menu-category_content .category-first .category-last_list {
  max-width: 468px;
  border-right: 1px solid #EEEEEE;
  display: none;
}
@media (max-width: 960px) {
  .menu-category .menu-category_content .category-first .category-last_list {
    max-width: 360px;
  }
}
@media (max-width: 640px) {
  .menu-category .menu-category_content .category-first .category-last_list {
    border: none;
  }
}
.menu-category .menu-category_content .category-first .category-last_list .category-last {
  display: none;
}
.menu-category .menu-category_content .category-first .category-last_list .category-last.show {
  display: block;
}
.menu-category .menu-category_content .category-first .category-last_list .category-last ul {
  list-style: none;
  padding: 16px 32px 16px 0;
  margin: 0;
  flex-wrap: wrap;
  display: flex;
}
@media (max-width: 640px) {
  .menu-category .menu-category_content .category-first .category-last_list .category-last ul {
    padding: 16px 16px 16px 0;
  }
}
.menu-category .menu-category_content .category-first .category-last_list .category-last li {
  width: calc(50% - 32px);
  margin: 0 0 0 32px;
}
@media (max-width: 640px) {
  .menu-category .menu-category_content .category-first .category-last_list .category-last li {
    width: calc(50% - 16px);
    margin: 0 0 0 16px;
  }
}
@media (max-width: 480px) {
  .menu-category .menu-category_content .category-first .category-last_list .category-last li {
    width: 100%;
    margin: 0 0 0 16px;
  }
}
.menu-category .menu-category_content .category-first .category-last_list .category-last a {
  display: inline-block;
  padding: 8px 0;
  width: 168px;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #4F4F4F;
  transition: 0.2s;
}
.menu-category .menu-category_content .category-first .category-last_list .category-last a:hover {
  color: #FF9A02;
}

.footer {
  background: #FFFFFF;
  border-top: 1px solid #BFBFBF;
  padding: 48px 0 0;
}
.footer .footer-flex {
  display: flex;
  justify-content: space-between;
  padding: 0 0 52px;
}
@media (max-width: 840px) {
  .footer .footer-flex {
    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: flex;
  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: #181818;
  margin: 20px 0 0;
  display: flex;
  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: flex;
}
.footer .footer-flex .footer-item .footer-nav .footer-link a {
  margin: 0 8px 0 0;
  background: #FFFFFF;
  border-radius: 5px;
  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: flex;
  align-items: center;
}
@media (max-width: 475px) {
  .footer .dev .dev-link > div {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer .dev .dev-link p {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #4c4b4b;
  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: 475px) {
  .footer .dev .dev-link a {
    margin: 8px 0 0;
  }
}

form {
  margin: 0 32px 0 0;
  flex-grow: 3;
}
form .form-group {
  display: flex;
}
form .form-group input {
  width: 100%;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  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::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;
}

.search-result {
  background: #FFFFFF;
  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: flex;
  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;
  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 {
  filter: opacity(1);
}
.accordionjs li.acc_active .second-parent {
  display: block;
}
.accordionjs li h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #181818;
  display: flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  transition: 0.3s;
}
.accordionjs li h2:hover {
  color: #FF9A02;
}
.accordionjs li h2.active {
  color: #FF9A02;
}
.accordionjs li h2 img {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 10px 0 0;
  filter: opacity(0.3);
}
.accordionjs li .second-parent {
  display: none;
}
.accordionjs li .flex-category {
  display: flex;
  flex-wrap: wrap;
}
.accordionjs li .flex-category .second-item {
  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.active + .category-container {
  display: block;
}
.accordionjs li .flex-category .third-item {
  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: 16px;
  line-height: 18px;
  text-decoration: none;
  color: #767676;
  display: block;
}
.accordionjs li .flex-category a.active {
  color: #FF9A02;
}

.filter form {
  display: flex;
  margin: 0 0 0 -12px;
}
@media (max-width: 960px) {
  .filter form {
    flex-wrap: wrap;
  }
}
.filter form .toggle-filter-style {
  display: flex;
  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;
  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: flex;
  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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 6px;
  transition: 0.3s;
  background: transparent;
  border: 1px solid transparent;
}
.product-item:hover {
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  box-sizing: border-box;
  box-shadow: 0 24px 24px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.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: 15px;
  line-height: 16px;
  color: #181818;
}
.product-item .info h2 span {
  color: #7f7d7d;
}
.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: flex;
  justify-content: space-between;
}
.product-item .info .price .flex .left {
  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;
  text-decoration-line: line-through;
  color: #7f7d7d;
  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: flex;
  align-items: center;
  color: #7f7d7d;
}
.product-item .info .price .flex .right .rating .icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 0 6px 6px;
}
.product-item .red-btn {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #FF103B;
  border-radius: 2px;
  height: 36px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.product-item .red-btn:hover {
  box-shadow: none;
  background: #ff9a02;
}
.product-item .btn-cart {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  background: #FF103B;
  border-radius: 2px;
  height: 36px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 10px 12px rgba(234, 2, 2, 0.3);
}
.product-item .btn-cart.active {
  color: white;
}
.product-item .btn-cart:hover {
  color: white;
  border-radius: 2px;
  box-shadow: none;
  background: #ff9a02;
}

.image-detail {
  position: relative;
  width: 100%;  
  height: 70%;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;  
}

}
.image-detail img {
  height:100%;
  width: 100%;
  object-fit:cover;
  object-position:center;
}
.image-detail .labels {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 2px 0;
  overflow: hidden;
  z-index: 10;
}
.image-detail .labels .discount {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
  background: #FF103B;
  width: 35px;
  height: 15px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-detail .labels .new {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #0AC006;
  width: 35px;
  height: 15px;
  min-width: 35px;
}
.image-detail .favorite {
  cursor: pointer;
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 10;
}
.image-detail .favorite .icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
}


.image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  width: 100%; 
  height: 250px;
}
.image img {
  height:100%;
  width: 100%;
  object-fit:cover;
  object-position:center;
}
.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: 15px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image .labels .new {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #0AC006;
  width: 35px;
  height: 15px;
  min-width: 35px;
}
.image .favorite {
  cursor: pointer;
  position: absolute;
  right: 6px;
  top: 6px;
  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: #181818;
  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: #8c8c8c;
}

.rating-flex {
  display: flex;
  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-wrapper, .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

/* Текст пагинации (например, "Страница" и "из N") */
.pagination-text {
  font-size: 14px;
  color: #333;
  margin: 0 10px;
}

/* Ссылки пагинации */
.pagination-links {
  display: flex;
  gap: 5px;
}

/* Стили для всех страниц пагинации */
.pagination-page {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

/* Активная страница пагинации */
.pagination-page-active {
  background-color: #FF103B;
  color: white;
  font-weight: bold;
}

/* Стиль для стрелок пагинации */
.pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* Фиксированная ширина */
  height: 30px; /* Фиксированная высота */
  background-color: #ffffff;
  border-radius: 4px; /* Закругленные углы */
  font-size: 14px; /* Размер текста стрелки */
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #ddd; /* Легкая рамка */
  margin: 0 5px; /* Расстояние между стрелками */
  padding: 0 10px; /* Добавлен отступ для текста */
}

/* Стиль для стрелок на hover */
.pagination-arrow:hover, .pagination-page:hover {
  background-color: #FF103B;
  color: white;
}

/* Дополнительные отступы */
.pagination-margin-right {
  margin-right: 15px;
}

/* Стили для активных ссылок и состояний */
.pagination-page:hover {
  background-color: #ddd;
  cursor: pointer;
}

/* Медиазапрос для адаптивности */
@media (max-width: 768px) {
  .pagination-wrapper {
      align-items: flex-start;
      gap: 10px;
  }

  .pagination-links {
      flex-wrap: wrap;
      justify-content: center;
  }

  .pagination-arrow, .pagination-page {
      font-size: 12px;
      padding: 6px 10px;
      width: auto; /* Убираем фиксированную ширину */
      height: auto; /* Убираем фиксированную высоту */
  }

  .pagination-text {
      font-size: 12px;
      margin: 0 5px;
  }
}

/@media (max-width: 768px) {
  .pagination-wrapper {
      align-items: center;
      justify-content: center;
      gap: 3px; /* Минимальное расстояние между элементами */
      flex-wrap: wrap; /* Перенос элементов, если они не помещаются */
  }

  .pagination-links {
      flex-wrap: nowrap; /* Элементы остаются в одну линию */
      justify-content: center;
      gap: 3px;
  }

  .pagination-arrow, .pagination-page {
      font-size: 10px; /* Уменьшенный размер текста */
      padding: 4px 8px; /* Уменьшенные внутренние отступы */
      min-width: 20px; /* Минимальная ширина кнопки */
      height: 24px; /* Уменьшенная высота кнопки */
      margin: 0; /* Убираем внешние отступы */
      border-radius: 2px; /* Слегка округляем углы */
  }

  .pagination-text {
      font-size: 10px; /* Уменьшенный размер текста */
      margin: 0 2px; /* Компактные отступы для текста */
  }
}

@media (max-width: 480px) {
  .pagination-wrapper {
      justify-content: center; /* Центрируем элементы */
      gap: 2px; /* Минимальное расстояние */
      align-items: center;
  }

  .pagination-arrow, .pagination-page {
      font-size: 8px; /* Минимальный размер текста */
      padding: 2px 6px; /* Очень маленькие внутренние отступы */
      min-width: 18px; /* Минимальная ширина кнопки */
      height: 20px; /* Минимальная высота кнопки */
      align-items: center;

  }

  .pagination-text {
      font-size: 8px;
      margin: 0 1px; /* Минимальные отступы */
      align-items: center;


  }
}



.textarea-text textarea {
  font-family: "TT Commons", sans-serif;
  border: 1px solid #BFBFBF;
  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;
  height: 150px;
}
.textarea-text textarea::placeholder {
  color: #A9A9A9;
}

.global-input {
  width: 100%;
}
.global-input .check-label .text-input {
  position: relative;
}
.global-input .check-label .text-input textarea {
  font-family: "TT Commons", sans-serif;
  border: 1px solid #BFBFBF;
  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;
  height: 150px;
}
.global-input .check-label .text-input textarea::placeholder {
  color: #A9A9A9;
}
.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::-webkit-file-upload-button {
  background-color: transparent;
  border: 0;
  visibility: hidden;
  opacity: 0;
  width: 0;
  padding: 0;
}
.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 .help-text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #FF9A02;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.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;
  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;
  margin: 0 0 12px 0;
}
.global-input .check-label .text-input .error-message:first-child {
  margin: 12px 0 12px 0;
}
.global-input .check-label .text-input .error-message p {
  margin: 0;
  padding: 0;
}
.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 .check-label.value-exists .help-text {
  bottom: 12px;
}

.global-checkbox label {
  display: inline-flex;
  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;
  transition: 0.3s;
}

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

.global-other-checkbox {
  width: 50%;
}
@media (max-width: 640px) {
  .global-other-checkbox {
    width: 100%;
  }
}
.global-other-checkbox label {
  display: flex;
  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 input {
  opacity: 0;
  position: absolute;
}
.global-other-checkbox label input:checked + .indicator:before {
  background: linear-gradient(0deg, #FF103B, #FF103B), #EEEEEE;
}
.global-other-checkbox label .indicator {
  border: 1px solid #FF9A02;
  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;
  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: flex;
}
@media (max-width: 1200px) {
  .cart-item .flex {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 500px) {
  .cart-item .flex {
    flex-wrap: wrap !important;
  }
}
.cart-item .flex .left {
  width: 204px;
  min-width: 204px;
}
.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: flex;
  justify-content: space-between;
  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;
  text-decoration-line: line-through;
  color: #ADADAD;
}
.cart-item .flex .right .price-rating-block .rating-block {
  display: flex;
  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: 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;
  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;
}

.shop-order-item {
  padding-bottom: 36px;
  border-bottom: 1px solid #dfdddd;
}
.shop-order-item .grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .shop-order-item .grid {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.shop-order-item .grid .left-side {
  min-width: 200px;
}
@media (max-width: 1200px) {
  .shop-order-item .grid .left-side {
    min-width: 100%;
    margin-top: 10px;
  }
}
.shop-order-item .grid .left-side .date {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.04em;
  color: #2B2A2A;
  margin: 0;
}
@media (max-width: 1200px) {
  .shop-order-item .grid .left-side .date {
    text-align: left;
  }
}
.shop-order-item .grid .left-side .btn {
  height: 44px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 2px;
}
.shop-order-item .grid .left-side .btn.change {
  background: #767676;
}
.shop-order-item .grid .left-side .btn.confirm {
  background: #FF103B;
}
.shop-order-item .grid .right-side {
  display: flex;
  width: 70%;
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side {
    flex-direction: column;
    width: 100%;
  }
}
.shop-order-item .grid .right-side a.title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #2B2A2A;
  margin-right: 32px;
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side a.title {
    margin-bottom: 10px;
  }
}
.shop-order-item .grid .right-side .state {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #767676;
}
.shop-order-item .grid .right-side .state.deliverd {
  color: #FF9A02;
}
.shop-order-item .grid .right-side .state.sent {
  color: #219653;
}
.shop-order-item .grid .right-side .info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side .info {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side .info .item {
    margin-left: 0 !important;
  }
}
.shop-order-item .grid .right-side .info .item ul {
  padding: 0;
  margin: 0;
}
.shop-order-item .grid .right-side .info .item li {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #ADADAD;
  list-style: none;
  margin-bottom: 16px;
}
.shop-order-item .grid .right-side .info .item li span {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #181818;
  margin-left: 10px;
}
.shop-order-item .grid .right-side .info .item li span.total-sum {
  color: #FF103B;
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox] + label {
  display: flex;
  cursor: pointer;
  margin-bottom: 19px;
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox] {
  display: none;
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox] + label:before {
  content: "✔";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: flex;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 18px;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
}
.owl-item img{
  {% comment %} object-position:90% 10%; {% endcomment %}
  object-position:center;
  height: 80vmin;
  object-fit: cover;
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox] + label:active:before {
  transform: scale(0);
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox]:checked + label:before {
  color: black;
}
.shop-order-item .grid .right-side .info .checkbox.unable input[type=checkbox] + label {
  pointer-events: none;
}
.shop-order-item .grid .right-side .info .checkbox.unable:hover {
  cursor: not-allowed;
}
.shop-order-item .grid .right-side .images-blocks {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side .images-blocks {
    flex-wrap: wrap;
    justify-content: inherit;
  }
}
.shop-order-item .grid .right-side .images-blocks .img {
  width: 102px;
  height: 130px;
  border-radius: 2px;
  margin-right: 16px;
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side .images-blocks .img {
    margin-bottom: 10px;
  }
}
.shop-order-item .grid .right-side .images-blocks .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.shop-order-item .grid .right-side .images-blocks .show-more {
  width: 102px;
  height: 130px;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), #C4C4C4;
  border: 1px solid #ADADAD;
  box-sizing: border-box;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.04em;
  color: #767676;
  transition: 0.3s;
}
.shop-order-item .grid .right-side .images-blocks .show-more:hover {
  border: 1px solid #898989;
  background: linear-gradient(0deg, #f2efef, #fffbfb), #463f3f;
}
.shop-order-item .link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
}

.shop-order-item:nth-child(1) {
  margin-top: 12px;
}

.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 .main-slider .owl-item img {
  border-radius: 2px;
  object-fit:cover;
  height:100%;
}


.main-page .grid-global .right-side-global .main-slider .slider-item {
  position: relative;
  height: 348px;
}
@media (max-width: 600px) {
  .main-page .grid-global .right-side-global .main-slider .slider-item {
    height: 240px;
  }
}
.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: flex;
  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 .new-products h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.main-page .new-products .products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
@media (max-width: 1200px) {
  .main-page .new-products .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .main-page .new-products .products-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6px;
  }
}
@media (max-width: 460px) {
  .main-page .new-products .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.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: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 12px;
}
@media (max-width: 1200px) {
  .main-page .our-markets .markets-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .main-page .our-markets .markets-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .main-page .our-markets .markets-list {
    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;
}

.edit-shop {
  padding-bottom: 40px;
}

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

.name-shop{
  
}

.info-shop .info-shop-items .info-shop-item {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .info-shop .info-shop-items .info-shop-item {
    margin: 0 0 12px 50px;
  }
}
@media (max-width: 500px) {
  .info-shop 
  .info-shop-items 
  .info-shop-item {
    margin: 22px 0 0;
  }
}
.info-shop .info-shop-items .info-shop-item a {
  display: flex;
  align-items: center;
}
.info-shop .info-shop-items .info-shop-item a:hover .text {
  color: #FF9A02;
}
.info-shop .info-shop-items .info-shop-item a:hover .icon {
  filter: opacity(1);
}
.info-shop .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;
  transition: 0.3s;
}

.main-info-shop {
  border-bottom: 1px solid #BFBFBF;
}
.main-info-shop .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  .main-info-shop .flex {
    flex-wrap: wrap;
  }
}
.main-info-shop .flex .left {
  display: flex;
  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: flex;
  align-items: center;
  flex-wrap: wrap;
}
.main-info-shop .flex .right form {
  margin: 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: flex;
  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: flex;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-info-shop .flex .right .likes .icon-rectangle:last-child .count {
  margin: 3px 0 0 10px;
}
.main-info-shop .flex .right .likes .icon-rectangle .count {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  color: #BFBFBF;
  margin: 3px 10px 0 0;
}
.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 10px;
}
.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: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.shop-nav .flex a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  padding: 0;
  color: #767676;
  transition: 0.3s;
  position: relative;
}
.shop-nav .flex a .count {
  position: absolute;
  top: -18px;
  right: -16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  color: #FFFDFD;
  background-color: #FF103B;
}
@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;
}

.shop-content {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 840px) {
  .grid-shop {
    flex-wrap: wrap;
  }
  .grid-shop .left-side-global {
    width: 100%;
    min-width: 100%;
  }
}
.shop-item-columg {
  display: flex;
  flex-direction: column;
}

.product-detail .flex {
  display: flex;
}
@media (max-width: 1200px) {
  .product-detail .flex {
    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;
}
@media (max-width: 960px) {
  .product-detail .left .product-item {
    width: 100%;
    min-width: 100%;
  }
}
.product-detail .left .product-item:hover {
  background: transparent;
  border: 0;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 0;
}
.product-detail .left .product-slider {
  position: relative;
}
.product-detail .left .product-slider .owl-item img {
  border-radius: 2px;
  height:100%;
}
.product-detail .left .product-slider .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 176px;
  min-width: 176px;
  height: 36px;
  align-items: center;
  padding: 0 6px;
  z-index: 10;
}
.product-detail .left .product-slider .owl-nav .owl-prev {
  display: flex;
  align-items: center;
}
.product-detail .left .product-slider .owl-nav .owl-next {
  display: flex;
  align-items: center;
}
.product-detail .left .product-slider .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px 2px 0px 0px;
  width: 176px;
  min-width: 176px;
  height: 36px;
  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: 24px;
  line-height: 28px;
  color: #181818;
  padding: 0;
}
.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: #ADADAD;
}
.product-detail .product-info .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 21px;
  text-decoration-line: line-through;
  color: #ADADAD;
}
.product-detail .product-info .red-btn {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.product-detail .product-info .red-btn:hover {
  box-shadow: 0px 10px 12px rgba(234, 2, 2, 0.3);
}
.product-detail .product-info .btn-cart {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  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 {
  box-shadow: 0px 10px 12px rgba(234, 2, 2, 0.3);
}
@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: flex;
  align-items: center;
  justify-content: center;
  color: #FF9A02;
  background: transparent;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.product-detail .product-info .one-click-btn:hover {
  box-shadow: 0px 4px 12px rgba(47, 44, 44, 0.05);
}
@media (max-width: 1200px) {
  .product-detail .product-info .one-click-btn {
    max-width: 368px;
  }
}
.product-detail .product-info .product-description .ck-editor-text h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  padding: 0;
}
.product-detail .product-info .product-description .ck-editor-text p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  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: 12px;
  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;
  text-decoration-line: underline;
  color: #FF9A02;
}

.search-head .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.search-head .flex h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
  margin: 0;
}
@media (max-width: 1056px) {
  .search-head .flex h1 {
    margin: 0 0 12px;
  }
}
@media (max-width: 960px) {
  .search-head .flex h1 {
    font-size: 36px;
    line-height: normal;
  }
}

.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: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .shop-create-page .create-shop-main .flex {
    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 {
    flex-wrap: nowrap;
  }
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .flex .right .flex {
    flex-wrap: wrap;
  }
  .shop-create-page .create-shop-main .flex .right .flex .central-info-shop {
    margin: 0;
  }
}
.shop-create-page .create-shop-main .flex .working-time .flex {
  display: flex;
  align-items: center;
}
@media (max-width: 382px) {
  .shop-create-page .create-shop-main .flex .working-time .flex {
    flex-wrap: wrap;
  }
  .shop-create-page .create-shop-main .flex .working-time .flex .text {
    margin: 0 24px 16px 0;
  }
}
.shop-create-page .create-shop-main .flex .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 .working-time .flex .input-date {
  border: 1px solid #BFBFBF;
  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 .central-info-shop {
  width: 100%;
  max-width: 432px;
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .flex .central-info-shop {
    max-width: 100%;
  }
}
.shop-create-page .create-shop-main .flex .central-info-shop .main-info-item:first-child {
  margin: 9px 0 0;
}
.shop-create-page .create-shop-main .flex .other-info-shop {
  width: 100%;
}
@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 .main-info-item:first-child {
  margin: 9px 0 0;
}
.shop-create-page .create-shop-main .shop-description {
  width: 100%;
}
.shop-create-page .create-shop-main .shop-description .grid {
  display: grid;
  grid-gap: 24px;
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .shop-description .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.shop-create-page .create-shop-main .shop-description .grid .description p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #181818;
}
.shop-create-page .create-shop-main .shop-description textarea {
  border: 1px solid #BFBFBF;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 14px;
  color: #181818;
  width: 100%;
  min-height: 150px;
  max-width: 901px;
  font-family: "TT Commons";
}
.shop-create-page .create-shop-main .shop-description textarea::placeholder {
  color: #767676;
  font-family: "TT Commons";
}
.shop-create-page .create-shop-main .map p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #ADADAD;
}
.shop-create-page .create-shop-main .map .map-container {
  border-radius: 2px;
  overflow: hidden;
  max-height: 296px;
  height: 100%;
}
.shop-create-page .create-shop-main .down-block {
  max-width: 100%;
  margin: 48px 0 0;
}
.shop-create-page .create-shop-main .down-block .checkbox-block {
  max-width: 540px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 590px) {
  .shop-create-page .create-shop-main .down-block .checkbox-block {
    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;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-create-page .create-shop-main .down-block .create-btn:hover {
  box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}

.create-btn-flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .create-btn-flex {
    margin: 20px 0 0 !important;
  }
}
@media (max-width: 640px) {
  .create-btn-flex .create-btn {
    margin: 20px 0 0;
    width: 100%;
  }
}

.delete-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #BFBFBF;
  border-radius: 2px;
  height: 44px;
  width: 292px;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delete-btn:hover {
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.15);
}

.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;
  object-fit: contain;
}
.load-image .image-container label input {
  display: none;
}
.load-image .image-container label .load-flex {
  display: flex;
  align-items: 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;
}
.cart-page .cart-main-block form {
  margin: 0;
}
.cart-page .cart-main-block h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}

.flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .flex {
    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 {
  border: 1px solid #EEEEEE;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 24px;
  position: sticky;
  top: 110px;
}
.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: flex;
  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: flex;
  justify-content: space-between;
  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 .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;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
}
.order-page h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
@media (max-width: 960px) {
  .order-page h1 {
    font-size: 36px;
    line-height: normal;
  }
}
.order-page .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .order-page .flex {
    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 .left form button:disabled {
  background: #ADADAD;
  cursor: default;
}
.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;
  min-height: 560px;
}
.cart-history-page .history-main-block h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  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: flex;
  justify-content: 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 {
  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 .emul-label {
  font-size: 16px !important;
  line-height: 130% !important;
  color: #767676 !important;
  top: 4px !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 .not-login {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #4368EC;
  display: block;
}
.login-page form .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;
  transition: 0.3s;
}
.login-page form .red-btn:disabled {
  background: #ADADAD;
  cursor: default;
}
.login-page form .red-btn:disabled:hover {
  box-shadow: none;
}
.login-page form .red-btn:hover {
  box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.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: flex;
  align-items: center;
  justify-content: center;
  color: #FF9A02;
  transition: 0.3s;
}
.login-page form .sign-in-btn:hover {
  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: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
@media (max-width: 435px) {
  .login-page .login-with-social .socials-list {
    flex-wrap: wrap;
  }
}
.login-page .login-with-social .socials-list .social-items {
  position: relative;
  transition: 0.3s;
}
@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 {
  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: flex;
  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 .dark-gray .check-label .emul-label {
  color: #767676 !important;
}
.login-page .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 span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #ffffff;
  display: block;
}
.login-recovery .gray-btn {
  background: #ADADAD;
  border-radius: 2px;
  width: 100%;
  height: 44px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  padding: 0 24px;
}
.login-recovery .gray-btn span {
  font-family: "TT Commons", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
}
.login-recovery .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;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 24px;
}
.login-recovery .counting-button:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
}
.login-recovery .counting-button.orange {
  background: #FF9A02;
  justify-content: center;
}
.login-recovery .counting-button span {
  font-family: "TT Commons";
  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;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orange-btn:disabled {
  background: #ADADAD;
  cursor: default;
}
.orange-btn:hover {
  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;
}

.phone-change h1 {
  text-align: center;
  font-size: 48px;
}
.phone-change button a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}
.phone-change .emul-label {
  font-size: 16px !important;
}
.phone-change .message-counting p {
  text-align: center;
  margin: 0 0 6px 0;
  color: #BFBFBF;
  font-size: 16px;
}
.phone-change .message-counting .counting-button {
  cursor: pointer;
  display: flex;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  border: 0;
  transition: 0.3s;
  justify-content: center;
  align-items: center;
  padding: 5px 24px;
}
.phone-change .message-counting .counting-button:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
}
.phone-change .message-counting .counting-button span {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}
.phone-change .message-counting .counting-button #timer {
  display: none;
}
.phone-change .message-counting .counting-button.pointer-none {
  background: #767676 !important;
  justify-content: space-between;
}
.phone-change .message-counting .counting-button.pointer-none:hover {
  cursor: not-allowed;
}
.phone-change .message-counting .counting-button.pointer-none #timer {
  display: block;
}
.phone-change .buttons {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 460px) {
  .phone-change .buttons {
    flex-direction: column-reverse;
  }
  .phone-change .buttons button {
    width: 100% !important;
    margin-top: 10px;
  }
}
.phone-change .buttons .btn {
  width: 45%;
  border-radius: 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  padding: 16px 0 12px 0;
  color: #FFFFFF;
  cursor: pointer;
}
.phone-change .buttons .btn.cancel {
  color: #181818;
  background: none;
  border: none;
  transition: 0.5s;
}
.product-create-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
}
.product-create-page .create-product-main h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
.product-create-page .create-product-main form {
  margin: 0;
}
.product-create-page .create-product-main .main-flex {
  display: flex;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex {
    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: flex;
}
.product-create-page .create-product-main .main-flex .main-left .flex .filepond--browser.filepond--browser {
  margin: 30px 0 0 0;
}
.product-create-page .create-product-main .main-flex .main-left .flex .filepond--root {
  min-height: 390px !important;
}
.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-parent .img-load {
  width: 204px;
  height: 298px;
  margin: 44px 0 0 0;
  border-radius: 6px;
  overflow: hidden;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .load-flex-parent .img-load img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .load-flex {
  display: flex;
  align-items: 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: flex;
  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;
  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::placeholder {
  color: #767676;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  color: #A9A9A9;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice {
  display: flex;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label .text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 90%;
  color: #181818;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label input {
  display: none;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label input:checked + .indicator:after {
  background: #FF103B;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .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;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .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%;
  transition: 0.3s;
}
.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 {
  list-style: none;
  padding: 0;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li {
  border: 1px solid #EEEEEE;
  box-sizing: border-box;
  border-radius: 2px;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li.acc_active {
  border: 1px solid #FFC702;
}
.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 {
  height: 52px;
  width: 100%;
  display: flex;
  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: flex;
  margin: 16px 32px;
}
.product-create-page .create-product-main .main-flex .main-left .flex-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-create-page .create-product-main .main-flex .main-left .red-btn {
  display: block;
  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;
  transition: 0.3s;
  margin: 48px auto 0 auto;
}
.product-create-page .create-product-main .main-flex .main-left .red-btn:hover {
  box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.product-create-page .create-product-main .main-flex .main-right {
  width: 100%;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex .main-right {
    margin: 48px 0 0;
  }
}
.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;
}

.error-message_front {
  display: none;
}
.error-message_front .error-message {
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #FF103B;
  margin: 0 0 12px 0;
}

.filepond--root .filepond--credits {
  display: none !important;
}

.profile-page {
  padding: 24px 0 64px;
  background-color: #ffffff;
  min-height: 560px;
}
.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;
  }
}
@media (max-width: 360px) {
  .profile-page h1 {
    margin-top: 20px;
  }
}
.profile-page form {
  margin: 0;
}
.profile-page .flex {
  display: flex;
  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: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  border: 0;
  cursor: pointer;
}
.profile-page .flex .left button.parent-box {
  position: relative;
}
.profile-page .flex .left button a {
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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 h1 {
  text-align: center;
}
.profile-page.centered .flex {
  justify-content: 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;
}

.edit-shop .shop_btns .red-btn {
  background: #FF103B;
  border-radius: 2px;
  height: 36px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: 0.3s;
}
@media (max-width: 840px) {
  .edit-shop .shop_btns .red-btn {
    margin: 0 0 20px 50px;
  }
  .edit-shop .shop_btns .red-btn:last-child {
    margin: 0 0 0 50px;
  }
}
@media (max-width: 500px) {
  .edit-shop .shop_btns .red-btn {
    margin: 0 0 20px;
  }
  .edit-shop .shop_btns .red-btn:last-child {
    margin: 0;
  }
 .shop-info-top .shop-logo{
    height:70px;
    border-radius:50%;
  }
 .shop-info-top .shop-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
 }
 .shop-info-top{
  display:flex;
  gap:10px;
  font-weight:700;
  font-size:24px
 }
 .shop-info-mobile{
  display:flex;
  gap:7px;
  font-size:18px;
  font-weight:500;
  align-items:center;
 }
 .rating-stars-shop .star{
  color:gold;
  line-height:20px;
 }
 .rating-stars-shop{
  display:flex;
  align-items:center;
 }
 .rating-stars-shop2{
  display:flex;
  gap:2px;
 }
 .shop-socials{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px
 }
 .info-shop .info-shop-items .shop-socials .info-shop-item{
  margin-top:0;
 }
 .shop-info-content-mobile{
  display:block;
 }
}
.edit-shop .shop_btns .red-btn:hover {
  box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.edit-shop .all-function {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #FFFFFF;
  border: 1.5px solid #EEEEEE;
  border-radius: 0px 2px 2px 0px;
  width: 105px;
  height: 35px;
  min-width: 105px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.edit-shop .all-function .func {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  border-right: 1px solid #EEEEEE;
  cursor: pointer;
}
.edit-shop .all-function .func:last-child {
  border-right: 0;
}
.edit-shop .banner .slider-item {
  background: radial-gradient(81.94% 196.41% at 6.28% 13.22%, #F0F0F0 0%, #F0F0F0 100%);
  border-radius: 2px;
  width: 100%;
  position: relative;
  height: 348px;
  overflow: hidden;
}
.edit-shop .banner .slider-item img {
  display: block;
  margin: auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.modal-delete-banner .modal-container {
  padding: 90px 54px 64px;
}
.modal-delete-banner .modal-container img {
  margin: 0 auto;
  display: block;
}

.detail-order-page .container .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.detail-order-page .container .date {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #181818;
}
.detail-order-page .container .date .orange {
  color: #FF9A02;
}
.detail-order-page .container .main-block {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .detail-order-page .container .main-block {
    flex-wrap: wrap;
  }
  .detail-order-page .container .main-block .right-side {
    margin: 0 auto;
  }
}
.detail-order-page .container .main-block .left-side {
  min-width: 768px;
  width: 768px;
}
@media (max-width: 1200px) {
  .detail-order-page .container .main-block .left-side {
    min-width: 100%;
    width: 100%;
  }
}
.detail-order-page .container .main-block .left-side .order-detail-card {
  display: flex;
  border-bottom: 2px solid #ADADAD;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media (max-width: 460px) {
  .detail-order-page .container .main-block .left-side .order-detail-card {
    flex-direction: column;
  }
  .detail-order-page .container .main-block .left-side .order-detail-card .img {
    margin: 0 auto 10px;
  }
}
.detail-order-page .container .main-block .left-side .order-detail-card .img {
  width: 204px;
  min-width: 204px;
}
.detail-order-page .container .main-block .left-side .order-detail-card .img img {
  width: 100%;
  border-radius: 2px;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info .description {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info .category {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #767676;
  border-bottom: 1px solid #BFBFBF;
  padding-bottom: 24px;
}
@media (max-width: 960px) {
  .detail-order-page .container .main-block .left-side .order-detail-card .info .category {
    padding-top: 10px;
  }
}
.detail-order-page .container .main-block .left-side .order-detail-card .info ul {
  padding: 0;
  margin: 0;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info ul li {
  list-style: none;
  font-weight: normal;
  padding-bottom: 24px;
  margin: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info ul li span {
  min-width: 100px;
  display: inline-block;
  color: #ADADAD;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info ul li.total {
  color: #FF103B;
  margin-top: 30px;
}
@media (max-width: 960px) {
  .detail-order-page .container .main-block .left-side .order-detail-card .info ul li.total {
    margin-top: 5px;
  }
}
.detail-order-page .container .main-block .right-side {
  width: 100%;
  max-width: 368px;
}

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

.mr-32 {
  margin: 0 32px 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-25 {
  margin: 0 0 0 25px;
}

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

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

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

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

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

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

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

/*# sourceMappingURL=styles.css.map */
