/*** Colors ***/
/*** Product card ***/
/* line 5, product-list.scss */
.product--item {
  display: block;
  position: relative;
  height: 100%;
  margin: 0 auto;
  z-index: 1; }
  /* line 14, product-list.scss */
  .product--item:hover .icons-list {
    opacity: 1; }
  /* line 18, product-list.scss */
  .product--item:hover .title span {
    border-color: #1d1d1b; }
  /* line 23, product-list.scss */
  .product--item form {
    display: flex;
    flex-direction: column;
    height: 100%; }
  /* line 29, product-list.scss */
  .product--item .icons-list {
    position: absolute;
    top: 12px;
    right: 17px;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transition: .3s;
    z-index: 9; }
    /* line 39, product-list.scss */
    .product--item .icons-list--item {
      position: relative;
      margin-left: 16px;
      cursor: pointer; }
      /* line 44, product-list.scss */
      .product--item .icons-list--item:first-child {
        margin-left: 0; }
      /* line 50, product-list.scss */
      .product--item .icons-list--item:hover .tooltip {
        opacity: 1; }
      /* line 59, product-list.scss */
      .product--item .icons-list--item.is-added .tooltip .add {
        display: none; }
      /* line 63, product-list.scss */
      .product--item .icons-list--item.is-added .tooltip .remove {
        display: block; }
      /* line 73, product-list.scss */
      .product--item .icons-list--item.compare.is-added svg {
        fill: #1d1d1b; }
      /* line 78, product-list.scss */
      .product--item .icons-list--item.compare svg {
        fill: #9E9E9E; }
      /* line 87, product-list.scss */
      .product--item .icons-list--item.favorite.is-added svg {
        fill: #1d1d1b;
        stroke: #1d1d1b; }
      /* line 93, product-list.scss */
      .product--item .icons-list--item.favorite svg {
        fill: transparent;
        stroke: #616161; }
    /* line 100, product-list.scss */
    .product--item .icons-list .tooltip {
      position: absolute;
      bottom: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      text-align: center; }
      /* line 108, product-list.scss */
      .product--item .icons-list .tooltip .remove {
        display: none; }
  /* line 114, product-list.scss */
  .product--item .image {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 100%; }
    /* line 121, product-list.scss */
    .product--item .image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      object-fit: cover; }
    /* line 131, product-list.scss */
    .product--item .image svg {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(0, -50%);
      max-width: 60%;
      max-height: 60%;
      fill: #1d1d1b; }
  /* line 142, product-list.scss */
  .product--item .properties {
    margin-top: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #9E9E9E; }
  /* line 150, product-list.scss */
  .product--item .info {
    display: flex;
    align-content: flex-start;
    flex-direction: column;
    justify-content: space-between;
    flex: 1; }
  /* line 158, product-list.scss */
  .product--item .title {
    display: block;
    flex: 1;
    max-height: 44px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    overflow: hidden; }
    /* line 167, product-list.scss */
    .product--item .title span {
      border-bottom: 1px solid transparent;
      transition: .3s; }
  /* line 173, product-list.scss */
  .product--item .price-wrap {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    white-space: nowrap; }
  /* line 180, product-list.scss */
  .product--item .price-old {
    color: #9E9E9E;
    text-decoration: line-through; }
  /* line 185, product-list.scss */
  .product--item .btn {
    align-self: flex-start; }
  /* line 189, product-list.scss */
  .product--item .added-btn {
    flex: 1;
    color: #BDBDBD;
    border-color: #BDBDBD; }
  /* line 195, product-list.scss */
  .product--item .quantity-wrap {
    flex: 1;
    max-width: 100%;
    max-height: 38px;
    padding: 6px 7px;
    border: 1px solid #000000; }
  /* line 203, product-list.scss */
  .product--item .quantity {
    height: 100%; }
    /* line 206, product-list.scss */
    .product--item .quantity .quantity-control {
      width: 24px;
      height: 24px;
      min-width: 24px; }

/* line 214, product-list.scss */
.product-list {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fill, minmax(33.333%, 1fr));
  margin: -58px 0 0 -32px; }
  /* line 220, product-list.scss */
  .product-list.favorites-list, .product-list.search-result {
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr)); }
    /* line 224, product-list.scss */
    .product-list.favorites-list.active, .product-list.search-result.active {
      display: grid; }
    /* line 228, product-list.scss */
    .product-list.favorites-list .added-btn, .product-list.search-result .added-btn {
      flex: none; }
  /* line 233, product-list.scss */
  .product-list .product--item {
    grid-column: span 1;
    grid-row: span 1;
    height: auto;
    margin: 58px 0 0 32px; }
  /* line 240, product-list.scss */
  .product-list.wide-product-list {
    align-items: center; }
    /* line 245, product-list.scss */
    .product-list.wide-product-list .product--item:nth-child(2), .product-list.wide-product-list .product--item:nth-child(8) {
      grid-column: span 2;
      align-self: flex-start; }
      /* line 250, product-list.scss */
      .product-list.wide-product-list .product--item:nth-child(2) form, .product-list.wide-product-list .product--item:nth-child(8) form {
        display: flex;
        flex-direction: row-reverse;
        align-items: center; }
      /* line 256, product-list.scss */
      .product-list.wide-product-list .product--item:nth-child(2) .image, .product-list.wide-product-list .product--item:nth-child(8) .image {
        align-self: flex-start;
        padding-bottom: 50%;
        max-width: 362px;
        margin: 0 0 0 33px; }
        /* line 262, product-list.scss */
        .product-list.wide-product-list .product--item:nth-child(2) .image img, .product-list.wide-product-list .product--item:nth-child(8) .image img {
          height: calc(100% - 14px); }
      /* line 267, product-list.scss */
      .product-list.wide-product-list .product--item:nth-child(2) .info, .product-list.wide-product-list .product--item:nth-child(8) .info {
        display: flex;
        flex-direction: column;
        align-items: flex-end; }
      /* line 273, product-list.scss */
      .product-list.wide-product-list .product--item:nth-child(2) .title, .product-list.wide-product-list .product--item:nth-child(8) .title {
        text-align: right; }
      /* line 277, product-list.scss */
      .product-list.wide-product-list .product--item:nth-child(2) .btn, .product-list.wide-product-list .product--item:nth-child(8) .btn {
        align-self: flex-end; }
    /* line 282, product-list.scss */
    .product-list.wide-product-list .product--item:nth-child(7) {
      grid-column: span 2;
      align-self: flex-start; }
      /* line 286, product-list.scss */
      .product-list.wide-product-list .product--item:nth-child(7) form {
        display: flex;
        align-items: center;
        flex-direction: row; }
      /* line 292, product-list.scss */
      .product-list.wide-product-list .product--item:nth-child(7) .image {
        padding-bottom: 50%;
        max-width: 50%;
        margin: 0 33px 0 0; }
        /* line 297, product-list.scss */
        .product-list.wide-product-list .product--item:nth-child(7) .image img {
          height: calc(100% - 14px); }
      /* line 302, product-list.scss */
      .product-list.wide-product-list .product--item:nth-child(7) .icons-list {
        justify-content: flex-end;
        left: 0;
        right: auto;
        width: 100%;
        max-width: 50%;
        padding: 0 17px; }

/* line 315, product-list.scss */
.tabs-category {
  display: flex;
  flex-wrap: wrap;
  margin: -24px 0 0 -46px; }
  /* line 320, product-list.scss */
  .tabs-category--item {
    margin: 24px 0 0 46px;
    padding-bottom: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #9E9E9E;
    border-bottom: 2px solid transparent;
    cursor: pointer; }
    /* line 330, product-list.scss */
    .tabs-category--item.active {
      color: #1A1A1A;
      border-color: #1A1A1A; }

/*** End Product card ***/
@media (max-width: 1441px) {
  /* line 342, product-list.scss */
  .tabs-category {
    margin-left: -32px; }
    /* line 345, product-list.scss */
    .tabs-category--item {
      margin-left: 32px;
      font-size: 14px;
      line-height: 20px; } }
@media (max-width: 1281px) {
  /* line 357, product-list.scss */
  .product--item .title,
  .product--item .price-wrap {
    font-size: 14px;
    line-height: 20px; }

  /* line 370, product-list.scss */
  .product-list.wide-product-list .product--item:nth-child(2) .image,
  .product-list.wide-product-list .product--item:nth-child(7) .image,
  .product-list.wide-product-list .product--item:nth-child(8) .image {
    max-width: 280px; }

  /* line 378, product-list.scss */
  .product-list-similar-wrap .swiper-button-prev {
    left: -20px; }
  /* line 382, product-list.scss */
  .product-list-similar-wrap .swiper-button-next {
    right: -20px; } }
@media (max-width: 992px) {
  /* line 392, product-list.scss */
  .product--item .icons-list {
    opacity: 1; } }
@media (max-width: 961px) {
  /* line 400, product-list.scss */
  .product-list {
    margin: -49px 0 0 -24px; }
    /* line 403, product-list.scss */
    .product-list.favorites-list, .product-list.search-result {
      grid-template-columns: repeat(auto-fill, minmax(33.333%, 1fr)); }
    /* line 408, product-list.scss */
    .product-list .product--item {
      margin: 49px 0 0 24px; }
    /* line 414, product-list.scss */
    .product-list.wide-product-list .product--item:nth-child(7) .image {
      margin-right: 24px; }
    /* line 418, product-list.scss */
    .product-list.wide-product-list .product--item:nth-child(2) .image,
    .product-list.wide-product-list .product--item:nth-child(8) .image {
      margin-left: 24px; } }
@media (max-width: 769px) {
  /* line 432, product-list.scss */
  .product--item .quantity .quantity-control {
    width: 20px;
    height: 20px;
    min-width: 20px; } }
@media (max-width: 601px) {
  /* line 443, product-list.scss */
  .product-list {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
    margin: -36px -20px 0 -38px; }
    /* line 447, product-list.scss */
    .product-list .product--item {
      margin: 36px 0 0 18px; }
      /* line 450, product-list.scss */
      .product-list .product--item .info {
        padding: 0 18px; }
      /* line 454, product-list.scss */
      .product-list .product--item .price-wrap {
        font-size: 14px; }
    /* line 464, product-list.scss */
    .product-list.wide-product-list .product--item:nth-child(2) .image,
    .product-list.wide-product-list .product--item:nth-child(2) .image,
    .product-list.wide-product-list .product--item:nth-child(8) .image,
    .product-list.wide-product-list .product--item:nth-child(8) .image {
      margin-left: 17px; }
    /* line 469, product-list.scss */
    .product-list.wide-product-list .product--item:nth-child(2) .info,
    .product-list.wide-product-list .product--item:nth-child(8) .info {
      padding: 0 0 0 5px; }
    /* line 476, product-list.scss */
    .product-list.wide-product-list .product--item:nth-child(7) .image {
      margin-right: 17px; }
    /* line 480, product-list.scss */
    .product-list.wide-product-list .product--item:nth-child(7) .info {
      padding: 0 5px 0 0; }

  /* line 489, product-list.scss */
  .product-list-slider .swiper-slide {
    width: 243px; } }
@media (max-width: 576px) {
  /* line 499, product-list.scss */
  .product--item .added-btn {
    width: 100%; } }
@media (max-width: 561px) {
  /* line 509, product-list.scss */
  .product-list.favorites-list, .product-list.search-result {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); }

  /* line 515, product-list.scss */
  .product-list-similar-wrap {
    margin-top: 28px;
    padding: 35px 15px 0; }
    /* line 519, product-list.scss */
    .product-list-similar-wrap .swiper-button-prev,
    .product-list-similar-wrap .swiper-button-next {
      display: none; }

  /* line 525, product-list.scss */
  .product-list-similar {
    margin-top: 45px;
    padding-bottom: 100px; } }
@media (max-width: 575px) {
  /* line 533, product-list.scss */
  .produuct-list.is-one-product {
    grid-template-columns: 1fr; } }
