.product {
  input:not([type="checkbox"]):not([type="radio"]),
  textarea {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    width: 100%;
    padding: 8px 56px 8px 0 !important;
    color: #494949;
    border: 2px solid rgba(0, 0, 0, 0);
    background-color: rgba(0, 0, 0, 0);
    outline: none;
  }
  .links {
    display: flex;
    align-items: center;
    border-radius: 7px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 2rem;
    .item {
      opacity: 0.4;
      background-color: #ec5d3d;
    }
    .active {
      opacity: 1 !important;
    }

    .item {
      &:hover {
        opacity: 1;
      }
    }
    div {
      padding: 0.7rem 1.6rem;
      display: flex;
      align-items: center;
      justify-content: center;

      a {
        color: white;
        font-size: 0.9375rem;
        font-weight: 600;

      }
    }
  }
  .widget-search {
    button {
      i {
      }
    }
  }
  .product-info-tab-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    padding: 0.7rem 0;
    li {
      &:first-child {
        padding: 0 0 0 20px
      }
      padding: 0 20px 0px;
      a {
        font-size: 20px;
        font-weight: 400;
        line-height: 1;
        display: block;
        opacity: .2;
        color: #494949;
        &.active {
          opacity: 1;
        }
      }
    }
  }
  .tab-content {
    .active {
      display: block;
    }
    .tab-pane {
      display: none;
    }
  }
  p {
    text-align: justify;
  }
   @media only screen and (max-width:768px) {
        .product-info-tab-list {
            margin: 0;
            li {
                padding: 0 16px 20px;
                a {
                    font-size: 14px;
                    font-weight: 800;
                }
            }
        }
    }
       @media only screen and (min-width: 577px) and (max-width: 800px) {
        .product-info-tab-list {
            margin: 0;
            li {
                padding: 0 16px 20px;
                a {
                    font-size: 20px;
                }
            }
        }
    }
}