@media (max-width: 1100px) {
  .header__contacts {
    column-gap: 10px; } }
.header__region {
  position: relative; }
  @media (max-width: 1100px) {
    .header__region {
      display: block !important; } }
  .header__region-current {
    display: flex;
    align-items: center;
    gap: 4px; }
  .header__region-icon {
    display: flex; }
  .header__region svg {
    width: 16px;
    height: 16px;
    flex: none;
    stroke: #fff; }
    @media (max-width: 1100px) {
      .header__region svg {
        width: 22px;
        height: 22px; } }
  .header__region-content {
    display: flex;
    align-items: center;
    cursor: pointer; }
    @media (max-width: 1100px) {
      .header__region-content {
        display: none; } }
    .header__region-content span svg {
      fill: #fff; }

.location-all-caption {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between; }
.location-all-city-list {
  padding-top: 24px; }
  @media (max-width: 479px) {
    .location-all-city-list {
      overflow: auto; } }
.location-all-city-item {
  white-space: nowrap;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 16px;
  display: block; }
  .location-all-city-item:last-child {
    margin-bottom: 0; }
  .location-all-city-item.active {
    text-decoration: underline; }

.profile-modal__form {
  justify-content: flex-start; }

iframe {
  max-width: 100%; }

.product__item {
  position: relative;
  transition: .2s;
  background: #fff;
  padding: 13px 8px 15px;
  border: 1px solid #f0f0f0; }
  @media (min-width: 768px) {
    .product__item {
      border: 0;
      box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1); }
      .product__item:hover {
        z-index: 900;
        transform: scale(1.03); }
        .product__item:hover .product__item-fastview {
          opacity: 1;
          visibility: visible; }
        .product__item:hover .product__item-hidden {
          opacity: 1;
          visibility: visible;
          box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.1); } }
  .product__item-img {
    padding-bottom: 71%;
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 25px; }
    @media (min-width: 992px) {
      .product__item-img {
        margin-bottom: 43px; } }
    .product__item-img-nav {
      position: absolute;
      bottom: -10px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px; }
      @media (min-width: 992px) {
        .product__item-img-nav {
          bottom: -20px; } }
      .product__item-img-nav-item {
        background: rgba(0, 0, 0, 0.1);
        transition: .2s;
        width: 15px;
        height: 1px; }
        @media (min-width: 992px) {
          .product__item-img-nav-item {
            width: 31px;
            height: 2px; } }
        .product__item-img-nav-item.active {
          background: #000; }
    .product__item-img img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain; }
      .product__item-img img.hidden {
        display: block;
        opacity: 0; }
  .product__item-top {
    display: flex;
    gap: 7px;
    flex-direction: column; }
    @media (min-width: 768px) {
      .product__item-top {
        align-items: center;
        flex-direction: row;
        gap: 12px; } }
  .product__item-title {
    color: #000;
    display: block;
    transition: .2s;
    font-size: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; }
  .product__item-prices.has-discount .product__item-price {
    color: #000; }
  .product__item-price {
    font-size: 18px;
    white-space: nowrap;
    font-weight: 600; }
    @media (min-width: 992px) {
      .product__item-price {
        font-size: 22px; } }
    .product__item-price-old {
      color: rgba(0, 0, 0, 0.3);
      font-size: 14px;
      white-space: nowrap;
      position: relative;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 9px;
      margin-top: 5px; }
      @media (min-width: 768px) {
        .product__item-price-old {
          font-size: 18px; } }
      .product__item-price-old > span {
        text-decoration: line-through; }
  .product__item-btns {
    display: flex;
    flex-direction: column;
    gap: 6px; }
    @media (min-width: 992px) {
      .product__item-btns {
        flex-direction: row; } }
    .product__item-btns-note {
      font-size: 12px;
      color: rgba(0, 0, 0, 0.5); }
  .product__item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fafafa;
    border-radius: 6px;
    flex: none;
    padding: 0 14px; }
    .product__item-quantity input {
      text-align: center;
      padding: 0; }
    .product__item-quantity span {
      width: 15px;
      height: 15px;
      flex: none;
      position: relative;
      cursor: pointer; }
      .product__item-quantity span.minus:before, .product__item-quantity span.plus:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 2px;
        background: rgba(0, 0, 0, 0.3); }
      .product__item-quantity span.plus:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 2px;
        height: 10px;
        background: rgba(0, 0, 0, 0.3); }
.product__article {
  font-size: 12px; }

.cart {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 30px;
  position: relative; }
  @media (min-width: 768px) {
    .cart {
      margin-bottom: 60px;
      flex-direction: row;
      gap: 58px; } }
  .cart__print {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    color: blue; }
    @media (min-width: 768px) {
      .cart__print {
        font-size: 14px;
        gap: 8px; } }
    .cart__print svg {
      width: 20px;
      height: 20px;
      flex: none;
      fill: blue; }
      @media (min-width: 768px) {
        .cart__print svg {
          width: 26px;
          height: 26px; } }
  .cart__total {
    width: 460px;
    max-width: 100%;
    flex: none;
    display: block; }
    @media (min-width: 992px) {
      .cart__total {
        position: sticky;
        top: 100px; } }
    .cart__total-top {
      padding-bottom: 27px;
      margin-bottom: 27px;
      border-bottom: 1px solid #f0f0f0; }
    .cart__total-bottom {
      position: relative; }
    .cart__total-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px; }
      @media (min-width: 768px) {
        .cart__total-heading {
          margin-bottom: 20px; } }
    .cart__total-title {
      font-weight: bold;
      font-size: 18px; }
      @media (min-width: 768px) {
        .cart__total-title {
          font-size: 22px; } }
    .cart__total-reset {
      font-weight: bold;
      font-size: 12px;
      border: 0;
      background: none;
      padding: 0;
      color: rgba(0, 0, 0, 0.5);
      transition: .2s; }
      .cart__total-reset:hover {
        color: #000; }
      @media (min-width: 768px) {
        .cart__total-reset {
          font-size: 16px; } }
    .cart__total-discount {
      background: rgba(255, 165, 0, 0.1);
      border-radius: 12px;
      margin-bottom: 21px;
      display: flex;
      justify-content: space-between;
      color: red; }
      .cart__total-discount-content {
        padding: 14px 5px 14px 16px;
        font-weight: bold;
        font-size: 12px; }
        @media (min-width: 768px) {
          .cart__total-discount-content {
            font-size: 14px; } }
      .cart__total-discount-text {
        margin-bottom: 12px; }
        .cart__total-discount-text span {
          white-space: nowrap; }
      .cart__total-discount-icon {
        width: 67px;
        height: 77px;
        flex: none; }
      .cart__total-discount-progress {
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background: #e9e9e9; }
        .cart__total-discount-progress-active {
          width: 72%;
          height: 100%;
          background: red;
          position: relative; }
          .cart__total-discount-progress-active .complete {
            position: absolute;
            width: 18px;
            height: 18px;
            background: #51BC92;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            top: 50%;
            transform: translateY(-50%);
            left: 0; }
            .cart__total-discount-progress-active .complete:nth-child(2) {
              margin-left: 8px; }
            .cart__total-discount-progress-active .complete:nth-child(3) {
              margin-left: 16px; }
            .cart__total-discount-progress-active .complete:nth-child(4) {
              margin-left: 24px; }
            .cart__total-discount-progress-active .complete svg {
              width: 9px;
              height: 8px;
              fill: #fff; }
    .cart__total-info {
      display: flex;
      flex-direction: column;
      gap: 15px; }
      @media (min-width: 768px) {
        .cart__total-info {
          gap: 17px; } }
      .cart__total-info-item {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .cart__total-info-item-label {
          color: rgba(0, 0, 0, 0.4);
          display: flex;
          align-items: center;
          gap: 6px;
          font-size: 12px; }
        .cart__total-info-item-value.discount-value {
          color: red; }
        .cart__total-info-item.total-price {
          font-weight: 600;
          text-transform: uppercase; }
          .cart__total-info-item.total-price .cart__total-info-item-label {
            font-size: 26px;
            color: #000; }
          .cart__total-info-item.total-price .cart__total-info-item-value {
            font-size: 26px;
            color: #000; }
    .cart__total-btn .button-black {
      cursor: pointer;
      width: 100%;
      height: 58px;
      margin: 0; }
    .cart__total-download .btn {
      width: 100%; }
    .cart__total-result {
      display: flex;
      align-items: center; }
      @media (min-width: 992px) {
        .cart__total-result {
          border-left: 3px solid #fff;
          padding: 10px 48px;
          margin-left: 60px; } }
      @media (min-width: 992px) {
        .cart__total-result .cart__total-info-item {
          display: block; } }
      .cart__total-result .cart__total-info-item-label {
        margin-bottom: 3px; }
      .cart__total-result .cart__total-info-item-value {
        white-space: nowrap; }
  .cart__discount {
    background: #808080;
    padding: 6px 14px;
    margin-bottom: 9px; }
    @media (min-width: 768px) {
      .cart__discount {
        margin-bottom: 14px;
        padding: 12px 36px; } }
    .cart__discount-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer; }
    .cart__discount svg {
      width: 10px;
      height: 10px;
      flex: none; }
    .cart__discount-content {
      display: flex;
      align-items: center;
      gap: 16px;
      font-weight: 500; }
    .cart__discount-icon {
      width: 36px;
      height: 36px;
      flex: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 12px; }
    .cart__discount-note {
      font-size: 12px;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.4);
      margin-bottom: 20px; }
      @media (min-width: 768px) {
        .cart__discount-note {
          margin-bottom: 44px;
          font-size: 14px; } }
    .cart__discount-bonus {
      display: none;
      padding: 15px 0 13px;
      background: #808080; }
      .cart__discount-bonus .personal__bonus {
        margin-top: 0; }
      .cart__discount-bonus .personal__note {
        margin-bottom: 0; }
  .cart__content {
    flex-grow: 1; }
  .cart__item {
    padding: 25px 0;
    border-bottom: 2px solid #f0f0f0; }
    @media (min-width: 992px) {
      .cart__item {
        padding: 30px 0; } }
    .cart__item:first-child {
      padding-top: 0; }
    .cart__item.removed .cart__item-img img, .cart__item.not-available .cart__item-img img {
      opacity: 0.3; }
    .cart__item.removed .cart__item-content, .cart__item.removed .cart__item-right, .cart__item.not-available .cart__item-content, .cart__item.not-available .cart__item-right {
      opacity: 0.3; }
    .cart__item-wrapper {
      display: flex;
      gap: 34px;
      position: relative; }
      @media (min-width: 768px) {
        .cart__item-wrapper {
          gap: 36px; } }
    .cart__item-img {
      flex: none;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center; }
      @media (min-width: 768px) {
        .cart__item-img {
          position: relative;
          width: 150px;
          height: 150px; } }
      .cart__item-img-wrap {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
    @media (min-width: 992px) {
      .cart__item-content {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: space-between; } }
    .cart__item-content .product__item-info {
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 17px; }
      @media (min-width: 768px) {
        .cart__item-content .product__item-info {
          margin-bottom: 0;
          gap: 14px; } }
    .cart__item-content .product__item-title {
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      order: 2;
      font-size: 14px; }
      @media (min-width: 768px) {
        .cart__item-content .product__item-title {
          order: 1;
          font-size: 18px;
          display: block; } }
      @media (min-width: 992px) {
        .cart__item-content .product__item-title .cart__item-remove {
          display: none; } }
      .cart__item-content .product__item-title .cart__item-remove svg {
        width: 18px;
        height: 18px; }
    .cart__item-content .product__item-row {
      display: flex;
      align-items: center;
      gap: 25px;
      order: 1; }
      @media (min-width: 768px) {
        .cart__item-content .product__item-row {
          order: 2; } }
    .cart__item-content .product__item-quantity {
      width: 146px;
      border-radius: 0;
      background: none;
      gap: 0;
      padding: 0;
      margin-bottom: 13px; }
      @media (min-width: 992px) {
        .cart__item-content .product__item-quantity {
          margin-bottom: 0; } }
      .cart__item-content .product__item-quantity span {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e8e8e8; }
        @media (min-width: 992px) {
          .cart__item-content .product__item-quantity span {
            width: 46px;
            height: 46px; } }
      .cart__item-content .product__item-quantity input {
        width: 36px;
        height: 30px; }
        @media (min-width: 992px) {
          .cart__item-content .product__item-quantity input {
            width: 56px;
            height: 46px; } }
    .cart__item-content .product__item-prices {
      display: flex !important; }
    @media (min-width: 768px) {
      .cart__item-right {
        display: flex;
        align-items: center;
        gap: 65px; } }
    .cart__item-right .product__item-prices {
      flex-grow: 1; }
      @media (min-width: 992px) {
        .cart__item-right .product__item-prices {
          display: none; } }
    .cart__item-price {
      display: none;
      font-size: 14px; }
      @media (min-width: 992px) {
        .cart__item-price {
          display: block; } }
    .cart__item .product__item-prices {
      flex-direction: column;
      gap: 11px;
      display: none;
      align-items: flex-start; }
      @media (min-width: 768px) {
        .cart__item .product__item-prices {
          display: flex;
          align-items: flex-end; } }
    .cart__item-actions {
      align-items: center;
      order: 3;
      display: flex;
      gap: 23px; }
      @media (min-width: 992px) {
        .cart__item-actions {
          margin-top: 20px; } }
      .cart__item-actions .product__favorite {
        gap: 5px;
        font-weight: 500;
        position: static;
        display: flex;
        align-items: center;
        width: auto;
        height: auto;
        color: rgba(0, 0, 0, 0.5); }
        .cart__item-actions .product__favorite:hover {
          transform: unset; }
        .cart__item-actions .product__favorite svg {
          width: 18px;
          height: 18px;
          stroke: rgba(0, 0, 0, 0.5); }
          @media (min-width: 992px) {
            .cart__item-actions .product__favorite svg {
              width: 20px;
              height: 20px; } }
    .cart__item-remove {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: .2s;
      color: rgba(0, 0, 0, 0.5);
      font-weight: 500; }
      .cart__item-remove svg {
        fill: rgba(0, 0, 0, 0.4);
        width: 12px;
        height: 12px;
        flex: none;
        transition: .2s; }
      .cart__item-remove:hover {
        color: #000; }
        .cart__item-remove:hover svg {
          fill: #000; }
    .cart__item-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 150px;
      height: 38px;
      flex: none;
      position: absolute;
      z-index: 1;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border-radius: 5px;
      background: #fff;
      color: #000;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      line-height: 1;
      box-shadow: 3px 3px 18px 0 rgba(0, 0, 0, 0.1); }
      .cart__item-button.cart-not-available {
        box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.1);
        background: #fff;
        color: rgba(0, 0, 0, 0.3); }
  .cart__coupon .form-group {
    display: flex;
    align-items: center;
    position: relative;
    vertical-align: middle;
    width: 100%; }
    .cart__coupon .form-group:after {
      content: "";
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      flex: none;
      background-color: #000;
      background-image: url(/local/templates/le_journal/components/bitrix/sale.order.ajax/dv/images/arrow.svg);
      background-repeat: no-repeat;
      background-position: 50%;
      cursor: pointer; }
    .cart__coupon .form-group input {
      font-family: 'Raleway', sans-serif;
      background: #f6f6f6;
      padding: 13px 30px;
      font-size: 16px;
      outline: none;
      display: block;
      width: 100%;
      border-radius: 0;
      border: 0;
      height: 50px; }

#apiship_selectPVZ {
  height: 50px; }

.catalog-section__item .product__form_buttons {
  margin-top: 10px;
  display: block; }
  .catalog-section__item .product__form_buttons .button-black {
    padding: 6px 25px; }
    .catalog-section__item .product__form_buttons .button-black.in-basket {
      color: #1f2020;
      background-color: rgba(0, 0, 0, 0); }

.card__preview {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  font-size: 18px;
  transition: .4s;
  transform: translateY(100%); }

.card__image:hover .card__preview {
  transform: translateY(0); }

.product-gallery__slider_item-img {
  width: auto; }
  .product-gallery__slider_item-img img {
    mix-blend-mode: unset; }

.basket-button:visited {
  color: #1f2020; }

/*.product-gallery__slider_item {
  opacity: 1 !important;
  pointer-events: auto !important;
  &-inner {
    background: #fcfaf7;
  }
}*/
.fancybox-slide video {
  max-height: 100%; }

.catalog-section__item:nth-child(4n+1) .product__status {
  padding-left: 15px; }

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