.box-shadow, .product__item:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.text-shadow, .profile__order-status.is-done, .profile__order-status.is-cancel, .profile__nav-link, .product__label-sticker.is-sale, .product__label-sticker.is-new, .product__item-liked, .product__item-sticker.is-sale, .product__item-sticker.is-new, .catalog__list.is-grid .product__item-buy, .header__cart-counter {
  text-shadow: 1px 1px 0 rgba(33, 34, 35, 0.4);
}

/* General */
h1, h2, h3, h4, h5, h6 {
  color: #212223;
  font-weight: 600;
}

h1 {
  font-size: 28px;
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
}

h4 {
  font-size: 18px;
  line-height: 1.4;
}

h5 {
  font-size: 16px;
  line-height: 1.5;
}

h6 {
  font-size: 16px;
  line-height: 1.5;
}

/* Header */
.header {
  position: relative;
  z-index: 10;
}
.header__alert {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 9px 30px;
  background-color: #F9F9F9;
  border-bottom: 1px solid rgb(236.25, 236.25, 236.25);
  position: relative;
}
.header__alert-text {
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.header__alert-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px 3px;
  background-color: #212223;
  margin: 0 10px;
  border-radius: 3px;
}
.header__alert-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #212223;
}
.header__alert-btn .icon {
  width: 12px;
  height: 12px;
}
.header__top {
  display: none;
}
.header__bottom {
  display: flex;
  align-items: center;
  height: 70px;
  background-color: #ffffff;
  border-bottom: 1px solid rgb(236.25, 236.25, 236.25);
}
.header__bottom-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-link {
  display: block;
  width: 130px;
}
.header__logo-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__search {
  display: none;
}
.header__contacts {
  display: none;
}
.header__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 50px;
  border: 1px solid rgb(236.25, 236.25, 236.25);
  background-color: #F9F9F9;
}
.header__cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #212223;
}
.header__cart-icon .icon {
  width: 27px;
  height: 27px;
}
.header__cart-text {
  display: none;
}
.header__cart-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  top: -8px;
  right: -9px;
  background-color: #1996E0;
  color: #ffffff;
  padding: 2px 5px 0;
  height: 20px;
  min-width: 20px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 50px;
  color: #212223;
  border: 1px solid rgb(236.25, 236.25, 236.25);
  background-color: #F9F9F9;
  margin-left: 10px;
}
.header__burger .icon {
  width: 24px;
  height: 24px;
}

.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}
.menu.is-show {
  display: block;
}
.menu__background {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}
.menu__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: #F9F9F9;
  opacity: 0;
  z-index: 2;
  transform: translateX(-100%);
  will-change: transform;
  transition: all ease 200ms;
}
.menu__wrapper:after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-color: #F9F9F9;
}
.menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 10px;
  border-bottom: 1px solid rgb(236.25, 236.25, 236.25);
}
.menu__language {
  display: flex;
  align-items: center;
  height: 100%;
  border-right: 1px solid rgb(236.25, 236.25, 236.25);
  padding-right: 15px;
}
.menu__user {
  display: flex;
  align-items: center;
}
.menu__login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid rgb(236.25, 236.25, 236.25);
  color: #212223;
  margin-left: 10px;
}
.menu__login .icon {
  width: 24px;
  height: 24px;
}
.menu__login span {
  display: none;
}
.menu__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #1996E0;
  color: #ffffff;
  margin-left: 10px;
}
.menu__call .icon {
  width: 24px;
  height: 24px;
}
.menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #212223;
  background-color: rgb(236.25, 236.25, 236.25);
  margin-left: 10px;
}
.menu__close .icon {
  width: 20px;
  height: 20px;
}
.menu__bottom {
  padding: 15px 10px;
}
.menu__search {
  margin-bottom: 5px;
}
.menu__contacts {
  margin-top: 25px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border-top: 1px dashed #c6c6c6;
}
.menu__contacts-title {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgb(231.5, 231.5, 231.5);
  margin-bottom: 12px;
}
.menu__contacts-subtitle {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
  margin-bottom: 10px;
}
.menu__contacts-element {
  display: flex;
  margin-bottom: 15px;
}
.menu__contacts-element .icon {
  width: 18px;
  min-width: 18px;
  height: 18px;
  fill: #1996E0;
  margin-top: 2px;
}
.menu__contacts-block {
  flex: 1;
  padding-left: 15px;
}
.menu__contacts-phone {
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  color: #212223;
  font-weight: 600;
}
.menu__contacts-text {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
}
.menu__contacts-item {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
  margin-bottom: 2px;
}
.menu__contacts-link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  color: #1996E0;
  text-decoration: underline;
}

/* Footer */
.footer {
  margin-top: auto;
  background-color: rgb(236.25, 236.25, 236.25);
}
.footer__top {
  padding-top: 40px;
  padding-bottom: 10px;
  text-align: center;
}
.footer__bottom {
  background-color: #F9F9F9;
}
.footer__bottom-content {
  padding: 15px 0;
  text-align: center;
}
.footer__item {
  margin-bottom: 30px;
}
.footer__item-title {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #212223;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer__nav-item {
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
  margin-bottom: 5px;
}
.footer__nav-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
}
.footer__nav-link:hover {
  color: #1996E0;
  text-decoration: underline;
}
.footer__worktime-title {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
  margin-bottom: 15px;
}
.footer__worktime-item {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
  margin-bottom: 3px;
}
.footer__phone {
  margin-bottom: 15px;
}
.footer__phone-item {
  margin-bottom: 3px;
}
.footer__phone-link {
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  color: #212223;
  font-weight: 600;
}
.footer__phone-link:hover {
  color: #1996E0;
}
.footer__info {
  margin-bottom: 10px;
}
.footer__info-text {
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
}
.footer__info-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: #1996E0;
  text-decoration: underline;
}
.footer__info-link:hover {
  text-decoration: none;
}
.footer__copy {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgb(108.75, 108.75, 108.75);
  margin-bottom: 5px;
}
.footer__dev {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__dev-title {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgb(108.75, 108.75, 108.75);
  margin-right: 10px;
}

/* Main */
/* hero */
.hero {
  position: relative;
  margin-bottom: 10px;
}
.hero__slider-link {
  display: block;
  width: 100%;
}
.hero__slider-picture {
  display: block;
  width: 100%;
  height: 0;
  padding: 53% 0;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}
.hero__slider-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.hero .slider__arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero .slider__arrow-btn {
  color: #ffffff;
  background-color: rgba(33, 34, 35, 0.6);
}
.hero .slider__arrow-btn:hover {
  background-color: rgba(33, 34, 35, 0.8);
}

/* category */
.category {
  padding-top: 10px;
  margin-bottom: 25px;
  border-bottom: 1px dashed #c6c6c6;
}
.category__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  margin-bottom: 20px;
}
.category__item {
  display: block;
  text-align: center;
  color: #212223;
  font-size: 12px;
  line-height: 1.2;
}
.category__item:hover {
  color: #1996E0;
  text-decoration: underline;
}
.category__item-picture {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 45% 0;
  position: relative;
  background-color: #ffffff;
}
.category__item-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.category__item-title {
  display: block;
  padding-top: 10px;
  padding-bottom: 5px;
  transition: none;
  word-break: break-word;
}

/* sales */
.sales {
  padding-top: 0;
}

/* catalog */
.catalog__list.is-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}
.catalog__list.is-grid .product__item {
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}
.catalog__list.is-grid .product__item-top {
  width: 100%;
  position: relative;
}
.catalog__list.is-grid .product__item-bottom {
  display: flex;
  flex-direction: column;
  padding: 0.525em;
}
.catalog__list.is-grid .product__item-store {
  margin-bottom: 0.625em;
}
.catalog__list.is-grid .product__item-action {
  margin-top: auto;
}
.catalog__list.is-grid .product__item-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 2rem;
  font-size: 0.625em;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 600;
  padding: 3px 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #1996E0;
}
.catalog__list.is-grid .product__item-buy:hover {
  background-color: rgb(21.4156626506, 128.4939759036, 191.8843373494);
}
.catalog__list.is-grid .product__item-like {
  width: 100%;
  border: 1px solid rgb(236.25, 236.25, 236.25);
  line-height: 1.2;
  color: #212223;
  padding: 0 5px;
  position: relative;
}
.catalog__list.is-grid .product__item-like:hover {
  border-color: #1996E0;
}
.catalog__list.is-grid .catalog__list-bottom {
  grid-column: 1/3;
}

/* product */
.product {
  background-color: #ffffff;
  margin-bottom: 25px;
  padding: 0 15px 15px;
  border: 1px solid rgb(236.25, 236.25, 236.25);
}
.product__item {
  display: flex;
  background-color: #ffffff;
  border: 1px solid rgb(236.25, 236.25, 236.25);
  transition: box-shadow 100ms ease;
  margin-bottom: 10px;
  font-size: 5vw;
  position: relative;
}
.product__item-label {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.product__item-sticker {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.625em 0.625em 0.4em;
  min-width: 3.438em;
  font-size: 0.625em;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.313em;
  position: relative;
}
.product__item-sticker.is-new {
  color: #ffffff;
  background-color: #03b400;
}
.product__item-sticker.is-hit {
  color: #212223;
  background-color: #F0F415;
}
.product__item-sticker.is-sale {
  color: #ffffff;
  background-color: #FF1F00;
}
.product__item-top {
  width: 40%;
  position: relative;
}
.product__item-link {
  display: block;
}
.product__item-picture {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 50% 0;
  position: relative;
  background-color: #ffffff;
}
.product__item-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__item-bottom {
  flex: 1;
  padding: 0.525em 0.625em;
}
.product__item-title {
  display: block;
  font-size: 0.75em;
  line-height: 1.2;
  font-weight: 600;
  color: #212223;
  margin-bottom: 0.4em;
}
.product__item-title:hover {
  text-decoration: underline;
}
.product__item-subtitle {
  display: block;
  font-size: 0.7em;
  line-height: 1.2;
  color: #212223;
  font-weight: 600;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}
.product__item-sku {
  display: block;
  font-size: 0.625em;
  line-height: 1.2;
  color: rgb(108.75, 108.75, 108.75);
  margin-bottom: 10px;
}
.product__item-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2em;
  padding-top: 0.375em;
  margin-bottom: 0.375em;
  border-top: 1px solid rgb(236.25, 236.25, 236.25);
}
.product__item-block:last-child {
  margin-bottom: 0;
}
.product__item-element {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.188em;
}
.product__item-info {
  display: block;
  font-size: 0.625em;
  line-height: 1.1;
}
.product__item-count {
  display: block;
  font-size: 0.813em;
  line-height: 1;
  font-weight: bold;
  color: #212223;
}
.product__item-count span {
  font-size: 0.625em;
  padding-left: 3px;
}
.product__item-cost {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.product__item-price {
  display: block;
  font-size: 0.813em;
  line-height: 1;
  font-weight: bold;
  color: #1996E0;
}
.product__item-price span {
  font-size: 0.625em;
  padding-left: 3px;
}
.product__item-discount {
  display: block;
  font-size: 0.625em;
  line-height: 1;
  color: #212223;
  position: relative;
}
.product__item-discount span {
  padding-left: 3px;
}
.product__item-discount:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  margin-top: -1px;
  background-color: #FF1F00;
}
.product__item-buy {
  display: none;
}
.product__item-like {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 2em;
  width: 2em;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: inherit;
}
.product__item-like img {
  display: block;
  width: 1em;
  height: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__item-like span {
  display: none;
}
.product__item-liked {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 1.25em;
  height: 1.25em;
  font-size: 0.75em;
  line-height: 1;
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  padding: 0.125em 0.188em 0;
  background-color: #1996E0;
  border-radius: 1.875em;
  position: absolute;
  top: -0.438em;
  right: -0.438em;
}
.product__slider {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 20px;
}
.product__slider-arrow {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -50px;
}
.product__slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 40px;
  color: #212223;
  position: absolute;
}
.product__slider-btn .icon {
  width: 16px;
  height: 16px;
}
.product__slider-btn:hover {
  color: #ffffff;
  background-color: rgba(33, 34, 35, 0.9);
}
.product__slider-prev {
  left: 0;
}
.product__slider-next {
  right: 0;
}
.product__gallery-picture {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding: 50% 0;
  background-color: #ffffff;
}
.product__gallery-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__thumbs {
  border-bottom: 1px solid rgb(236.25, 236.25, 236.25);
}
.product__thumbs-item {
  padding: 10px;
  position: relative;
  border-right: 1px solid rgb(236.25, 236.25, 236.25);
}
.product__thumbs-item:last-child {
  border-right: none;
}
.product__thumbs-picture {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding: 50% 0;
  background-color: #ffffff;
}
.product__thumbs-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.product__label-sticker {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2px 5px 0;
  height: 30px;
  min-width: 85px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 6px;
  position: relative;
}
.product__label-sticker.is-new {
  color: #ffffff;
  background-color: #03b400;
}
.product__label-sticker.is-hit {
  color: #212223;
  background-color: #F0F415;
}
.product__label-sticker.is-sale {
  color: #ffffff;
  background-color: #FF1F00;
}
.product__title {
  display: block;
  font-size: 28px;
  line-height: 1.3;
  color: #212223;
  font-weight: 600;
  margin-bottom: 15px;
}
.product__info {
  background-color: #FFFFE8;
  border: 1px solid #DEDE94;
  padding: 12px 15px;
  margin-bottom: 15px;
}
.product__store {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 20px;
}
.product__store-item {
  margin-bottom: 15px;
}
.product__store-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.product__store-sku {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #939393;
}
.product__store-available {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #03b400;
}
.product__store-available:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #03b400;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}
.product__store-title {
  display: block;
  width: 100%;
  padding-top: 5px;
  font-size: 20px;
  line-height: 1.5;
  color: #212223;
  font-weight: 600;
}
.product__store-variation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.product__store-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 15px;
  background-color: #F9F9F9;
}
.product__store-element {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(223.5, 223.5, 223.5);
}
.product__store-element:last-child {
  border: none;
}
.product__store-info {
  display: block;
  font-size: 0.625em;
  line-height: 1.1;
  color: #212223;
}
.product__store-count {
  display: block;
  color: #212223;
  font-size: 0.9em;
  line-height: 1;
  font-weight: bold;
}
.product__store-count span {
  padding-left: 5px;
  font-size: 15px;
}
.product__store-cost {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.product__store-price {
  display: block;
  color: #1996E0;
  font-size: 0.9em;
  line-height: 1;
  font-weight: bold;
}
.product__store-price span {
  padding-left: 5px;
  font-size: 0.7em;
}
.product__store-discount {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  font-size: 14px;
  line-height: 1;
  color: #212223;
  position: relative;
}
.product__store-discount span {
  padding-left: 3px;
}
.product__store-discount:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  width: calc(100% - 10px);
  height: 1px;
  margin-top: -1px;
  background-color: #FF1F00;
}
.product__quantity-info {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #212223;
  margin-bottom: 10px;
}
.product__action {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
.product__bottom {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px dashed #c6c6c6;
}

/* order */
.order__item {
  background-color: #ffffff;
  border: 1px solid rgb(236.25, 236.25, 236.25);
  padding: 15px;
  margin-bottom: 15px;
}
.order__block {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #c6c6c6;
}
.order__block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.order__block-title {
  display: block;
  font-size: 22px;
  line-height: 1.3;
  color: #212223;
  font-weight: 600;
  margin-bottom: 15px;
}
.order__block-text {
  font-size: 15px;
  line-height: 1.5;
  color: #686868;
  margin-bottom: 15px;
}
.order__block-text a {
  color: #1996E0;
  text-decoration: underline;
}
.order__block-text a:hover {
  text-decoration: none;
}
.order__block-list {
  margin-bottom: 15px;
}
.order__block-item {
  margin-bottom: 15px;
}
.order__cart-title {
  display: block;
  font-size: 24px;
  line-height: 1.3;
  color: #212223;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(236.25, 236.25, 236.25);
}
.order__cart-list {
  max-height: 480px;
  margin-bottom: 20px;
  padding-bottom: 25px;
}
.order__cart-block {
  padding: 15px;
  border: 1px solid rgb(236.25, 236.25, 236.25);
  background-color: #F9F9F9;
  margin-bottom: 15px;
}
.order__table-item {
  position: relative;
  border-bottom: 1px dashed #c6c6c6;
}
.order__table-item td {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
.order__table-item:first-child td {
  padding-top: 0;
}
.order__table-item:last-child {
  border-bottom: none;
}
.order__table-item:last-child td {
  padding-bottom: 0;
}
.order__title {
  margin-bottom: 15px;
  position: relative;
}
.order__title-name {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  color: #212223;
  font-weight: 600;
  padding-right: 40px;
}
.order__delete {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #686868;
  position: absolute;
  top: -5px;
  right: -5px;
}
.order__delete .icon {
  width: 10px;
  height: 10px;
}
.order__photo-link {
  display: block;
  overflow: hidden;
}
.order__photo-picture {
  display: block;
  height: 0;
  overflow: hidden;
  width: 100%;
  padding: 50% 0;
  position: relative;
  background-color: #ffffff;
}
.order__photo-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.order__description-content {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-gap: 15px;
}
.order__product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.order__product-cost {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.order__sku {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #939393;
  margin-bottom: 2px;
}
.order__params-item {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
}
.order__price {
  line-height: 1.3;
}
.order__price-title {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: #212223;
  white-space: nowrap;
  margin-bottom: 5px;
}
.order__price-discount {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  color: #212223;
  position: relative;
}
.order__price-discount:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  margin-top: -1px;
  background-color: #FF1F00;
}
.order__price-cost {
  display: inline-block;
  color: #212223;
  font-weight: bold;
  font-size: 20px;
  line-height: 35px;
}
.order__price-cost span {
  font-size: 14px;
  padding-left: 5px;
}
.order__quantity-title {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: #212223;
  margin-bottom: 5px;
  white-space: nowrap;
}
.order__quantity-value {
  display: block;
  font-size: 20px;
  line-height: 34px;
  color: #686868;
  font-weight: bold;
}
.order__quantity-value span {
  font-size: 14px;
  padding-left: 3px;
}
.order__quantity .qty {
  width: 100%;
  max-width: 140px;
}
.order__sum-title {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: #212223;
  margin-bottom: 5px;
}
.order__sum-price {
  display: block;
  font-size: 20px;
  line-height: 35px;
  color: #1996E0;
  font-weight: bold;
}
.order__sum-price span {
  font-size: 14px;
  padding-left: 5px;
}
.order__promocode-title {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  color: #212223;
  font-weight: 600;
  margin-bottom: 10px;
}
.order__promocode-text {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: #212223;
  margin-bottom: 15px;
}
.order__promocode-block .btn {
  width: 100%;
}
.order__promocode-label {
  display: block;
  margin-bottom: 5px;
}
.order__total-title {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  color: #212223;
  font-weight: 600;
  margin-bottom: 10px;
}
.order__total-item {
  margin-bottom: 10px;
}
.order__total-item:last-child {
  margin-bottom: 0;
}
.order__total-subtitle {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(108.75, 108.75, 108.75);
}
.order__total-text {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212223;
}
.order__total-sum {
  display: block;
  font-size: 24px;
  line-height: 1.5;
  color: #1996E0;
  font-weight: bold;
}
.order__total-sum span {
  font-size: 18px;
  padding-left: 5px;
}
.order__confirm .btn {
  width: 100%;
}
.order__empty {
  padding: 20px 15px;
  text-align: center;
}
.order__empty-picture {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto;
}
.order__empty-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.order__empty-title {
  display: block;
  font-size: 20px;
  line-height: 1.3;
  color: #212223;
  font-weight: 600;
  padding-top: 20px;
}
.order__empty-description {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: #686868;
  padding-top: 5px;
}

/* profile */
.profile__nav {
  margin-bottom: 25px;
}
.profile__nav-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #1996E0;
  border-bottom: 1px solid rgb(16.2951807229, 97.7710843373, 146.0048192771);
}
.profile__nav-item:last-child {
  border-bottom: none;
}
.profile__nav-item.is-active {
  color: rgb(2.9819277108, 17.8915662651, 26.7180722892);
  background-color: rgb(21.4156626506, 128.4939759036, 191.8843373494);
}
.profile__nav-item.is-active .profile__nav-link {
  color: rgb(2.9819277108, 17.8915662651, 26.7180722892);
  text-shadow: 1px 1px 0 #1996E0;
}
.profile__nav-item:hover {
  background-color: rgb(21.4156626506, 128.4939759036, 191.8843373494);
}
.profile__nav-link {
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  padding: 3px 20px 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: none;
}
.profile__content .btn {
  width: 100%;
  height: 55px;
}
.profile__info {
  background-color: #ffffff;
  border: 1px solid #c6c6c6;
  margin-bottom: 10px;
}
.profile__info-title {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px;
  position: relative;
}
.profile__info-icon {
  color: #1996E0;
  margin-right: 14px;
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.profile__info-icon .icon {
  width: 100%;
  height: 100%;
}
.profile__info-name {
  display: block;
  padding-top: 3px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #212223;
}
.profile__info-content {
  padding: 10px 15px;
}
.profile__block {
  background-color: #ffffff;
  border: 1px solid #c6c6c6;
  padding: 15px;
}
.profile__block-title {
  display: block;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: #212223;
  margin-bottom: 10px;
}
.profile__order-item {
  padding: 15px;
  margin-bottom: 10px;
  background-color: #F9F9F9;
  border: 1px solid #c6c6c6;
  position: relative;
}
.profile__order-item:last-of-type {
  margin-bottom: 0;
}
.profile__order-item.is-show .profile__order-description {
  display: table-row-group;
  border-top: 1px dashed #c6c6c6;
}
.profile__order-head {
  text-align: left;
}
.profile__order-head tr th {
  font-weight: normal;
}
.profile__order-info {
  display: block;
  margin-bottom: 15px;
}
.profile__order-title {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #212223;
  font-weight: normal;
  margin-bottom: 5px;
}
.profile__order-number {
  padding-right: 5px;
}
.profile__order-date {
  padding-left: 5px;
}
.profile__order-cost {
  display: block;
  margin-bottom: 15px;
}
.profile__order-status {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  width: 110px;
  padding: 10px 10px 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.profile__order-status.is-new {
  color: #212223;
  background-color: #F0F415;
}
.profile__order-status.is-cancel {
  color: #ffffff;
  background-color: #FF1F00;
}
.profile__order-status.is-done {
  color: #ffffff;
  background-color: #03b400;
}
.profile__order-total {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  color: #1996E0;
  font-weight: bold;
}
.profile__order-total span {
  font-size: 14px;
  padding-left: 3px;
  font-weight: 600;
}
.profile__order-image {
  display: block;
}
.profile__order-image a {
  display: inline-block;
  width: 55px;
  height: 55px;
  margin-right: 5px;
  overflow: hidden;
  background-color: #ffffff;
}
.profile__order-image a picture {
  display: block;
  width: 100%;
}
.profile__order-image a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.profile__order-more {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
}
.profile__order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #939393;
  right: 15px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid;
}
.profile__order-btn .icon {
  width: 12px;
  height: 12px;
}
.profile__order-btn.is-active {
  color: #212223;
}
.profile__order-btn:hover {
  color: #1996E0;
}
.profile__order-description {
  display: none;
}
.profile__cart {
  padding-top: 20px;
}
.profile__orderinfo {
  padding-top: 20px;
}
.profile__orderinfo p {
  font-size: 18px;
  line-height: 1.5;
  color: #212223;
  font-weight: 600;
  margin-bottom: 20px;
}
.profile__orderinfo ul {
  margin-bottom: 15px;
}
.profile__orderinfo ul li {
  font-size: 15px;
  line-height: 1.6;
  color: #686868;
  margin-bottom: 7px;
}

/* modal */
.modal {
  width: 100%;
  height: 100%;
}
.modal__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  overflow: auto;
}
.modal__bg {
  display: none;
}
.modal__wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  overflow: auto;
  text-align: left;
}
.modal__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  color: rgb(192.9, 192.9, 192.9);
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 5;
}
.modal__close .icon {
  width: 14px;
  height: 14px;
}
.modal__close:hover {
  color: #FF1F00;
}
.modal__content {
  padding: 15px 10px;
}
.modal__title {
  padding-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.modal__title-name {
  display: block;
  font-size: 30px;
  line-height: 1.2;
  color: #212223;
  font-weight: 600;
}
.modal__title-description {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: #686868;
  padding-top: 10px;
}
.modal__picture {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.modal__block-bottom {
  padding-top: 10px;
  text-align: center;
}
.modal__block-bottom .btn {
  width: 100%;
  height: 55px;
}
.modal__block-cart .modal__content {
  padding: 0;
}
.modal__cart-action {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
.modal__cart-action .btn {
  width: 100%;
  height: 55px;
}

/* Wysiwyg */
/* Custom Styles */
.slider__arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider__arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  color: #212223;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 50%;
  margin-top: -26px;
}
.slider__arrow-btn .icon {
  width: 16px;
  height: 16px;
}
.slider__arrow-btn:hover {
  color: #ffffff;
  background-color: #212223;
}
.slider__arrow-prev {
  left: -10px;
}
.slider__arrow-next {
  right: -10px;
}

/* Media */
@media screen and (min-width: 375px) {
  .category__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 476px) {
  .category__list {
    grid-template-columns: repeat(5, 1fr);
  }
  .catalog__list.is-grid {
    grid-gap: 10px;
  }
  .order__product-cost {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 576px) {
  .footer__top {
    text-align: left;
  }
  .footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .footer__copy {
    margin-bottom: 0;
  }
  .footer__dev {
    justify-content: flex-end;
  }
  .product__store-count {
    font-size: 24px;
  }
  .product__store-count span {
    font-size: 16px;
  }
  .product__store-price {
    font-size: 24px;
  }
  .product__store-price span {
    font-size: 16px;
  }
  .order__total-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3px;
  }
  .order__total-text {
    text-align: right;
  }
  .modal__cart-action {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .modal__cart-action .btn {
    width: 100%;
    height: 55px;
  }
  .modal__cart .order__total-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}
@media screen and (min-width: 768px) {
  .category__list {
    grid-template-columns: repeat(7, 1fr);
  }
  .product__item {
    font-size: 2.5vw;
    margin-bottom: 0;
  }
  .product__title {
    font-size: 32px;
  }
  .product__store-variation {
    display: grid;
    grid-template-columns: 1fr 33%;
    grid-gap: 30px;
  }
  .catalog__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .catalog__list-bottom {
    grid-column: 1/3;
  }
  .catalog__list.is-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog__list.is-grid .catalog__list-bottom {
    grid-column: 1/4;
  }
}
