



















.pdt_card_custom {
  .pdt_label_wrapper {
    position: absolute;
    left: 10px;
    top: 14px;
  }

  .card__heading {
    a {
      text-decoration: none !important;
    }
  }

  .card-information {
    .price__container {
      .real_sale {
        display: flex;
        flex-direction: row-reverse;

        .price-item--sale {
          font-size: 17px;
          font-weight: bold;
          color: rgb(255, 172, 51);
          margin-right: 10px;
        }
      }
    }
  }

  .label_save {
    background-color: rgb(255, 171, 68);
    color: #000;
    font-weight: bold;
    font-size: 12px;
    padding: 0 5px;
    line-height: 20px;
    border-radius: 2px;
  }
}

@media screen and (max-width:749px) {
  .pdt_card_custom {
    .pdt_label_wrapper {
      position: absolute;
      left: 10px;
      top: 14px;
    }

    .card__heading {
      a {
        text-decoration: none !important;
      }
    }

    .card-information {
      .price__container {
        .price-item--regular {
          font-size: 12px;
          line-height: 24px;
        }

        .real_sale {
          display: flex;
          flex-direction: column-reverse;

          .price-item--sale {
            font-size: 12px;
            line-height: 24px;
            margin-right: 6px;
          }

        }
      }
    }

    .label_save {
      background-color: rgb(255, 171, 68);
      color: #000;
      font-weight: bold;
      font-size: 12px;
      padding: 0 5px;
      line-height: 20px;
      border-radius: 2px;
    }
  }
}


.custom-tab-widget {
  .trigger_wrapper {
    display: flex;
    justify-content: center;

    [tab_trigger] {
      padding: 8px 12px;
      cursor: pointer;
      text-transform: uppercase;
      font-weight: 700;
      margin: 0 20px;
      border: 1px solid #000;
      border-radius: 20px;
      background: #fff;

      &[active] {
        background-color: #f48c26;
        color: #fff;
        border: 1px solid #f48c26;
      }
    }

    margin-bottom:20px;
  }

  [tab_content] {
    display: none;
    position: relative;
    padding-bottom: 40px;

    &[active] {
      display: flex;
      flex-wrap: wrap;
    }
  }
}




























.drop_collection {

  .megamenu {
    max-height: 80vh !important;
  }

  overflow:hidden;

  .content_wrapper {
    .top {
      display: flex;
      justify-content: center;
      border-bottom: 1px solid #efefef;
      padding-bottom: 10px;

      .trigger {
        margin: 0 5vw;
        width: 90px;
        position: relative;
        opacity: 0.8;
        display: flex;
        flex-direction: column;
        align-items: center;

        &[active] {
          opacity: 1;

          &:after {
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            transform: translate(0, 12px);
            width: 100%;
            height: 4px;
            background: #062f6e;
          }
        }

        img {
          display: inline-block;
          width: 60px;
          margin-bottom: 0px;
        }

        [title] {
          font-size: 12px;
          text-align: center;
        }

      }
    }

    .content {
      .content_item {
        display: none;
        flex-wrap: wrap;
        padding: 20px 10%;

        &[active] {
          display: flex;
        }

        .pdt_item {
          width: 22%;
          margin: 1vw;

          a {
            display: flex !important;
            flex-direction: column;
            align-items: center;

            [title] {
              text-align: center;
            }
          }
        }
      }
    }
  }
}






.mobile_drop_collection {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: #fff;
  transform: translate(100%, 0);

  &[active] {
    transform: none;
  }

  .top {
    display: flex;
    border-bottom: 1px solid #D2D5D9;
    background: #f7f7f6;

    .trigger_wrapper {
      width: 80%;
      max-width: 80%;
      overflow-x: scroll;
      overflow-y: hidden;
      scrollbar-width: none;
      /* Firefox */
      -ms-overflow-style: none;

      /* IE 10+ */
      &::-webkit-scrollbar {
        display: none;
        /* Chrome Safari */
      }

      .wrapper {
        display: flex;

        .trigger {
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 10px 20px;
          display: inline-flex;
          opacity: 0.8;
          position: relative;
          width: 120px;
          flex-shrink: 0;

          &[active] {
            opacity: 1;

            &:after {
              content: "";
              width: 80%;
              height: 3px;
              background: #062f6e;
              position: absolute;
              left: 10%;
              bottom: 0;
              transform: translateY(1px);
            }
          }

          &>img {
            width: 50px;
            margin-bottom: 4px;
          }

          [title] {
            font-size: 12px;
            text-align: center;
          }
        }
      }
    }

    .back_btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      background: #f7f7f6;
      border-right: 1px solid #D2D5D9;
      width: 20%;

      [arrow] {
        font-size: 30px;
      }

      [text] {
        font-size: 12px;
      }
    }
  }

  .content {
    .content_item {
      display: none;
      max-height: 80vh;
      overflow: scroll;

      &[active] {
        display: block;
      }

      .pdt_item {
        &>a {
          display: flex;
          padding: 0 10px;
          margin: 30px 0;
          align-items: center;

          &>img {
            width: 80px;
            margin-right: 20px;
          }

          [title] {
            font-weight: bold;
            font-size: 14px;
          }
        }
      }
    }

  }
}



