.product-page {
  #pro_name {
    margin-top: 10px;
    margin-bottom:20px;
    color: #0d32b7;
  }
  .product-gallery {
    transition: all 0.5s;
    min-height: 300px;
    &.active-carousel {
      width: 100%;
      .product-thumbnails {
        display: none;
      }
      .product-images {
        width: 100%;
        .product-image-carousel {
          .owl-dots {
            position: absolute;
            width: 100%;
            bottom: 10px;
            text-align: center;
            .owl-dot {
              width: 10px;
              height: 10px;
              background-color: $disabled-color;
              border-radius: 50%;
              display: inline-block;
              margin: 0 2px;
              &.active {
                background-color: $dark-color;
              }
            }
          }
        }
      }
    }

    .product-thumbnails {
      width: 10%;
      margin-right: 10px;
      height: 100%;
      .one-thumbnail {
        display: block;
        margin-bottom: 8px;
        img {
          // max-width: 100%;
          width: 100%;
          height: 70px;
          object-fit: cover;
        }
      }
    }

    .product-images {
      width: 100%;
      // overflow: hidden;
      // height: 100vh;

      .one-image {
        display: block;
        margin-bottom: 10px;
        img {
          width: 100%;
          vertical-align: middle;
        }
      }
    }

  }

  .product-detail-container,
  .product-thumbnails {
    position: sticky;
    top: 30px;
    left: 0;
  }

  .product-detail-container {
    .detail-header {
      border-bottom: 1px solid $gray-color2;
      .product-name {
        text-transform: uppercase;
      }
      .product-price {
        span {
          margin-right: 10px;
          &:last-child {
            margin-right: 0;
          }
          &.discount-percent {
            color: $highlight-color-red;
            margin-right: 20px;
            font-weight: bold;
          }
          &.price {
            font-weight: bold;
            font-size: 18px;
          }
          &.price-del {
            color: $disabled-color;
            text-decoration: line-through;
          }
        }
      }
    }

    .detail-body {

      .option-zone {
        border-bottom: 1px solid $gray-color2;
        padding: 8px 0;
        ul {
          display: flex;
          flex-wrap: wrap;
          margin-top: 20px;
        }
        &.color-zone {
          label.option-container {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 1px solid $disabled-color;
            margin-right: 10px;
            margin-bottom: 10px;
            position: relative;
            cursor: pointer;

            &.active {
              border-color: $title-color;
            }

            &:hover {
              span.option-text {
                display: inline-block;
              }
            }
            .input-option {
              opacity: 0;
              visibility: hidden;
              &:checked + span {
                display: inline-block;
              }
            }
          }
        }


        &.size-zone {
          label.option-container {
            width: 40px;
            height: 40px;
            border: 1px solid $disabled-color;
            color: $subtitle-color;
            margin-right: 10px;
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            position: relative;
            &.active {
              border-color: $title-color;
              color: $title-color;
              font-weight: bold;
            }
          }
          .input-option {
            opacity: 0;
            visibility: hidden;
            position: absolute;
          }
        }


      }

      // .size-zone {
      //   ul.product-sizes {
      //     display: flex;
      //     flex-wrap: wrap;
      //     margin-top: 20px;
      //     li {
      //       width: 40px;
      //       height: 40px;
      //       border: 1px solid $disabled-color;
      //       color: $subtitle-color;
      //       margin-right: 10px;
      //       margin-bottom: 10px;
      //       display: flex;
      //       justify-content: center;
      //       align-items: center;
      //       cursor: pointer;
      //       &:hover,
      //       &.active {
      //         border-color: $title-color;
      //         color: $title-color;
      //         font-weight: bold;
      //       }
      //     }
      //   }
      // }

      .quantity-zone {
        border-bottom: 1px solid $gray-color2;
        padding: 8px 0;
        .quantity-selection {
          display: flex;
          margin-bottom: 10px;
        }
        span {
          width: 35px;
          height: 35px;
          border: 1px solid $disabled-color;
          display: flex;
          justify-content: center;
          align-items: center;
          cursor: pointer;
          font-size: 20px;
          user-select: none;
        }
        input[type=number] {
          max-width: 60px;
          height: 35px;
          text-align: center;
          border-top: 1px solid $disabled-color;
          border-bottom: 1px solid $disabled-color;
          border-left: 0;
          border-right: 0;
          font-weight: bold;
          &::-webkit-inner-spin-button,
          &::-webkit-outer-spin-button {
            -webkit-appearance: none;
            appearance: none;
            -moz-appearance: textfield;
            margin: 0;
          }
        }
      }

      .button-zone {
        padding: 8px 0;
        .add-to-cart {
          display: inline-block;
          width: 100%;
          padding: 8px 10px;
          text-transform: uppercase;
          color: #fff;
          background-color: $dark-color;
          border: 1px solid $dark-color;
          cursor: pointer;
          transition: all 0.3s;
          outline: none;
          &:hover {
            color: $dark-color;
            background-color: transparent;
            font-weight: bold;
          }
        }
      }

    }
  }
}

section.product-information {
  .section-header {
    border-bottom: 1px solid #ebebee;
    margin-bottom: 30px;
    padding-left: 0px;
    .section-title{
      color: #0081bf;
      font-weight: 700;
    }
  }
  table {
    min-width: 310px;
    max-width: 100%;
    margin: 20px 0;
    tr {
      &:hover {
        background-color: $gray-color2;
      }
    }
    td,th {
      padding: 8px;
      p {
        margin-bottom: 0;
      }
    }
  }
  img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.related-products-section {
  .section-header {
    border-bottom: 1px solid #ebebee;
    margin-bottom: 30px;
    padding-left: 0px;
    .section-title{
      color: #0081bf;
      font-weight: 700;
    }
  }
}
.product-info {
  font-size: 14px;
}
.product-name {
  font-size: 16px;
  font-weight: 600;
}
.products-detail-box {
  padding: unset;
  border: 1px solid #0081bf!important;
  border-radius: 5px 5px 0 0;
  .header-title {
    background-color: #0081bf;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    border-bottom: 2px;
    text-align: center;
    margin-bottom: 10px;
    h4 {
      font-size: 14px;
      line-height: 25px;
      font-weight: 600;
      text-align: center;
      text-transform: uppercase;
      color: #fff;
      margin: 0;
    }
  }
  .for-mobile {
    padding: 10px;

  }
}


#result_1{
  display: none;
  margin-top: 20px;
  border: 1px solid #0081bf;
  border-radius: 5px;
  .show_box {
      padding: 20px;
  }
  #view_total{
    color: #0081bf;
    font-weight: 700;
  }
  .note-calculator{
    color: #0081bf;
    font-weight: 700;
  }
}

#modal_order {
  .modal-header {
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.428571429px;
    background-color: #0081bf;
    display: flex;
    align-items: center;
    padding: 10px;
    .modal-title{
      width: 100%;
      text-align: center;
      color: #fff;
      font-weight: 500;
    }
  }
}
.btn-annhan {
  background-color: rgb(236, 73, 168);
  border-color: #0081bf;
  color: #fff;
  text-transform: uppercase;
    &:hover {
      color: #fff;
      background-color: #0081bf;
      border-color: #0081bf;
  }
}
.title_form {
  margin: 10px 0;
  font-size: 20px;
  background-color: #c6c6c6;
  color: #000;
  padding: 10px;
  text-align: center;
  margin-top: 0;
  box-shadow: 1px 2px 6px #3333334a;
}
.total-order{
  font-size: 20px;
  color: #ff0084;
  height: 40px;
  font-weight: 700;
}
.pre-box-sale-block {
  margin: 50px 0 30px 0;
  overflow: visible;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  h3 {
    height: 42px;
    line-height: 42px;
    background-color: rgb(222, 9, 133);
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-size: 14px;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    -o-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    .ttl {
      padding-left: 20px;
    }
    span {
      float: left;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      text-align: center;
      background: none;
      width: auto;
      height: 42px;
      line-height: 42px;
      position: relative;
      margin: 0;
      font-weight: bold;
      color: #fff;
      i {
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        z-index: 1;
      }
      .ico-star {
        width: 20px;
        height: 20px;
        -webkit-transition: all 0.6s ease-out;
        -moz-transition: all 0.6s ease-out;
        -ms-transition: all 0.6s ease-out;
        -o-transition: all 0.6s ease-out;
        transition: all 0.6s ease-out;
      }
      .left {
        animation: star 3s infinite;
        background-image: url(/public/frontend/assets/img/icons/star-2.png);
        left: 8px;
        top: -18px;
        filter: alpha(opacity=0);
        -webkit-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
      }
    }
  }
}
.pre-box-sale__content {
  padding: 20px;
  border: 1px solid #ddd;
}
.social-block {
  margin: 10px 0;
  .btn {
    display: inline-block;
    background-color: #fff;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 28%;
    box-shadow: 0 5px 15px -5px rgb(0 0 0 / 10%);
    opacity: .99;
    padding: 5px;
    img {
      width: 100%;
    }
    .fab {
      -webkit-transition: all 0.35s;
      transition: all 0.35s;
      -webkit-transition-timing-function: cubic-bezier(.31,-.105,.43,1.59);
      transition-timing-function: cubic-bezier(.31,-.105,.43,1.59);
    }
    &:hover{
      background-color: #3cf;
      &>.fab{
        color: #fff;
      }
    }
  }
  .fab {
    font-size: 20px;
    vertical-align: middle;
  }
  .facebook {
    .fab {
      color: #3b5998;
    }
    &:hover{
      background-color: #3b5998;
      &>.fab{
        color: #fff;
      }
    }
  }
  .twitter {
    .fab {
      color: #3cf;
    }
    &:hover{
      background-color: #3cf;
      &>.fab{
        color: #fff;
      }
    }
  }
  .google {
    .fab {
      color: #dc4a38;
    }
    &:hover{
      background-color: #dc4a38;
      &>.fab{
        color: #fff;
      }
    }
  }
  .zalo-share-button {
    display: inline-block;
    cursor: pointer;
  }
}
.pre-form-contact {
  overflow: hidden;
  margin-bottom: 10px;
  .pre-form-contact__title {
    font-weight: 700;
    margin: 15px 0;
  }
  .pre-form-contact__box {
    background-color: rgb(222, 9, 133);
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    .form-group {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 0;
      .input {
        width: calc(100% - 60px);
      }
      .form-control {
        background-color: rgb(255, 255, 255);
        box-shadow: none;
        border-radius: 5px 0 0 5px;
        font-size: 15px;
        border: 0;
        padding: 25px;
      }
      button {
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        width: 60px;
        border-radius: 0 5px 5px 0;
        font-size: 20px;
        border: 0;
      }
    }
  }
}

.product-page{
  .slick-slider {
    .slick-prev {
      z-index: 100;
      font-size: 2.5em;
      height: 40px;
      width: 40px;
      margin-top: -20px;
      color: #B7B7B7;
      position: absolute;
      top: 50%;
      text-align: center;
      color: #000;
      opacity: .3;
      transition: opacity .25s;
      cursor: pointer;
      left: 0;
      &:hover {
        opacity: .65;
      }
    }
    .slick-next {
      z-index: 100;
      font-size: 2.5em;
      height: 40px;
      width: 40px;
      margin-top: -20px;
      color: #B7B7B7;
      position: absolute;
      top: 50%;
      text-align: center;
      color: #000;
      opacity: .3;
      transition: opacity .25s;
      cursor: pointer;
      right: 0;
      &:hover {
        opacity: .65;
      }
    }
  }
  .product-images {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #eee;
    li {
      display: block;
      outline: none;
      border: none;
    }
    figure {
      display: block;
      outline: none;
      border: none;
    }
    a {
      display: block;
      outline: none;
      border: none;
    }
    img {
      max-width: 100%;
      display: block;
      outline: none;
      border: none;
    }
    .main-img-slider {
      figure {
        margin: 0 auto;
        padding: 0 2em;
        a {
          cursor: pointer;
          cursor: -webkit-zoom-in;
          cursor: -moz-zoom-in;
          cursor: zoom-in;
          img {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
          }
        }
      }
    }
    .thumb-nav {
      margin: 0 auto;
      padding: 20px 10px;
      max-width: 600px;
      li {
        display: block;
        margin-left: 3px;
        margin-right: 3px;
        cursor: pointer;
        width: 100px;
        height: 100px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border: 4px solid transparent;
        img {
          display: block;
          height: 90px;
          width: 70px;
          max-width: 75px;
          margin: 0 auto;
          border: 2px solid transparent;
          -webkit-transition: border-color .25s;
          -ms-transition: border-color .25s;
          -moz-transition: border-color .25s;
          transition: border-color .25s;
        }
        &:hover {
          border: 2px solid rgb(222, 9, 133);
        }
        &:focus {
          border: 2px solid rgb(222, 9, 133);
        }
      }
      li.slick-current {
        img {
          border-color: #d12f81;
        }
      }
    }
    .thumb-nav.slick-slider {
      .slick-prev {
        font-size: 1.2em;
        height: 20px;
        width: 26px;
        margin-top: -10px;
        margin-left: -30px;
      }
      .slick-next {
        font-size: 1.2em;
        height: 20px;
        width: 26px;
        margin-top: -10px;
        margin-right: -30px;
      }
    }
  }
  .col-img-gallary {
    .product-images {
      img {
        // width: 800px;
        // height: 500px;
      }
    }
  }
}

.form-require {
  margin-top: 50px;
  margin-bottom: 50px;
}
.form-check-inline {
  margin: 0 5px 10px 0;
}

[type="radio"] {
  display: none;
}

.form-check-label {
  transition: all 144ms ease-in-out;
  &:hover {
    transform: scale(0.975);
  }
}

[type="radio"]:not(:checked) + .form-check-label,
[type="radio"]:not(:checked) + .form-check-label:hover {
  font-size: 14px;
  background-color: transparent;
  color: #363636;
  border-color: currentColor;
}

[type="radio"]:checked + .form-check-label::before {
  transform: rotate(45deg);
  .form-check-label {
    color: #d12f81 !important;
  }
}

.btn-select {
  border: #d12f81 1px solid;
  color: #d12f81;
}
.product-contact {
  margin-top: 10px;
  font-size: 16px;
  .detail-header {
    border-bottom: 1px solid $gray-color2;
  }
  .section-title {
    color: #4b97cd;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom:20px ;
  }
  span {
    font-size: 14px;
    font-style: normal;
  }
}

// loader
.loader{
  z-index: 1000;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  width: 60px;
  height: 60px;
  gap: 5px;
  padding: 5px;
  top: 50%;
  right: 50%;
  &:before{
    content: "";
    padding-top: 100%;
    grid-column: 1/1;
    grid-row: 1/1;
  }
  .cell:first-of-type{
    grid-column: 1/1;
    grid-row: 1/1;
  }
  .cell{
    border-radius: 4px;
  }
  .cell:nth-of-type(1){
    background: #fbf100;
    animation: shrink 3s linear infinite;
  }
  .cell:nth-of-type(2){
    background: #4c99cf;
    animation: shrink 3s linear infinite;
    animation-delay: 0.25s;
  }
  .cell:nth-of-type(3){
    background: #e32d86;
    animation: shrink 3s linear infinite;
    animation-delay: 0.75s;
  }
  .cell:nth-of-type(4){
    background: #f0f0f0;
    animation: shrink 3s linear infinite;
    animation-delay: 0.5s;
  }
  @keyframes shrink{
    50%{
      background: transparent;
    }
  }
  
}
#order_now{
  background-color:#0081bf;
  color:#fff;
  display: block;
  margin:auto
}

// player

.app-cover
{
    margin-top: 100px;
    width: 100%;
    height: 100px;
}
.player
{
    position: relative;
    height: 100%;
    z-index: 3;
}

.player-track
{
    position: absolute;
    top: 0;
    right: 15px;
    left: 15px;
    padding: 13px 22px 10px 184px;
    background-color: #fff7f7;
    border-radius: 15px 15px 0 0;
    transition: 0.3s ease top;
    z-index: 1;
}

.player-track.active
{
    top: -92px;
}

.album-name
{
    color: #54576f;
    font-size: 17px;
    font-weight: bold;
}

.track-name
{
    color: #acaebd;
    font-size: 13px;
    margin: 2px 0 13px 0;
}

.track-time
{
    height: 12px;
    margin-bottom: 3px;
    overflow: hidden;
}

.current-time
{
    float: left;
}

.track-length
{
    float: right;
}

.current-time, .track-length
{
    color: transparent;
    font-size: 11px;
    background-color: #ffe8ee;
    border-radius: 10px;
    transition: 0.3s ease all;
}

.track-time.active .current-time, .track-time.active .track-length
{
    color: #f86d92;
    background-color: transparent;
}

.s-area, .seek-bar
{
    position: relative;
    height: 4px;
    border-radius: 4px;
}

.s-area
{
    background-color:#ffe8ee;
    cursor: pointer;
}

.ins-time
{
    position: absolute;
    top: -29px;
    color: #fff;
    font-size: 12px;
    white-space: pre;
    padding: 5px 6px;
    border-radius: 4px;
	display:none;
}

.s-hover
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    z-index: 2;
}

.ins-time, .s-hover
{
    background-color: #3b3d50;
}

.seek-bar
{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #fd6d94;
    transition: 0.2s ease width;
    z-index: 1;
}

.player-content
{
    position: relative;
    height: 100%;
    background-color: #f86d92;
    border-radius: 15px;
    z-index: 2;
    padding-top: 15px;
}

.album-art
{
    position: absolute;
    top: -40px;
    width: 115px;
    height: 115px;
    margin-left: 40px;
    transform: rotateZ(0);
    transition: 0.3s ease all;
    box-shadow: 0 0 0 10px #fff;
    border-radius: 50%;
    overflow: hidden;
}

.album-art.active
{
    top: -60px;
    box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

.album-art:before
{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: -10px auto 0 auto;
    background-color: #d6dee7;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
    z-index: 2;
}

.album-art img
{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    opacity: 0;
    z-index: -1;
}

.album-art img.active
{
    opacity: 1;
    z-index: 1;
}

.album-art.active img.active
{
    z-index: 1;
    animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt
{
    0%{ transform: rotateZ(0); }
    100%{ transform: rotateZ(360deg); }
}

.buffer-box
{
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 13px;
    color: #1f1f1f;
    font-size: 13px;
    font-family: Helvetica;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 6px;
    margin: -12px auto 0 auto;
    background-color: rgba(255, 255, 255, 0.19);
    opacity: 0;
    z-index: 2;
}

.album-art img, .buffer-box
{
    transition: 0.1s linear all;
}

.album-art.buffering img
{
    opacity: 0.25;
}

.album-art.buffering img.active
{
    opacity: 0.8;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.album-art.buffering .buffer-box
{
    opacity: 1;
}

.player-controls
{
  text-align: center;
  width: 251px;
  height: 100%;
  margin: 0 0px 0 162px;
  float: right;
  overflow: hidden;
}

.control-btn
{
    width: 20%;
    float: left;
    padding: 12px 0;
}

.btn-player
{
    padding: 10px;
    background-color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.btn-player i
{
    display: block;
    color: #d6dee7;
    font-size: 26px;
    text-align: center;
    line-height: 1;
}

.btn-player, .btn-player i
{
    transition: 0.2s ease all;
}

.btn-player:hover
{
    background-color: #d6d6de;
}

.btn-player:hover i
{
    color: #fff;
}
.ytd-url {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  margin: 20px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  background-color: #ae5f87;
  border-radius: 4px;
  box-shadow: 0 10px 20px -5px rgba(174, 95, 135, 0.86);
  z-index: 125;
}