/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.mb-6 {
  margin-bottom: 1.5rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.w-1\/6 {
  width: 16.666667%;
}

.w-1\/2 {
  width: 30%;
}

.max-w-\[200px\] {
  max-width: 200px;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.text-center {
  text-align: center;
}

.hh-category-list{
    padding:30px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.hh-category-list > button{
    padding:5px !important;
}

.hh-category-list > button,
.hh-category-list > button:hover{
    background:transparent !important;
}

.hh-product-list{
    margin-top: 35px;
    /* justify-content: space-between; */
}

.hh-product-list__product-title{
    padding:20px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.hh-product-list__product-title h3{
    font-size:20px !important;
}

.hh-product-list__product-column{
    display:none;
    margin-bottom:25px;
    /* border: 1px solid #EEE;
    -webkit-box-shadow: 0px 6px 18px 3px rgba(0,0,0,0.05); 
    box-shadow: 0px 6px 18px 3px rgba(0,0,0,0.05); */
}

.request-quote-btn{
    display:block;
    background-color:#F1D53B;
    border:1px solid #F1D53B;
    color:black;
    text-align:center;
    font-weight: bold;
    padding:10px;
    border-radius: 24px;
}

.request-quote-btn:hover{
    background:transparent;
}

._explore-product-open-popup{
  display:block;
  cursor: pointer;
  transition:0.3s ;
}
._explore-product-open-popup:hover{
    opacity: 0.6;
}

.explore-popup__container{
  background-color: #000000e0;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display:none;
}

.explore-popup__container-inner{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  margin-top: 30px;
}

.explore-popup__container-content{
      max-width: 484px;
    width: 80%;
  background:white;
  border-radius: 15px; 
  padding:25px;
  position:relative;
}

.explore-popup__close-button{
  border-radius: 0.25rem;
  background:transparent;
  display:block;
  width:auto;
  height:auto;
  position:absolute;
  top:-60px;
  right:-70px;
  color:white;
  text-align: center;
}

.explore-popup__close-button .fas{
  font-size: 25px;
  background: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  width: 37px;
  height: 37px;
  text-align: center;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: black;
}

.explore-popup__close-button:hover{
  background:transparent;
}

.hh-product-list__product-description{
  display:none;
}

.explore-popup__container-content .hh-product-list__product-description{
  display:block;
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.hh-product-list__product-title{
  text-align: center;
  margin-bottom: 0 !important;
  padding:0;
}

/* .hh-product-list__product-column{
  padding:10px 20px;
} */

.grid {
  display: grid;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

@media screen and (max-width:768px){
    .hh-product-list__product-column > div{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .w-1\/6{
        width:30%;
    }

    .w-1\/2{
      width:26%;
    }

    .hh-category-list{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .hh-product-list{
        margin-top: 0;
    }
}