
html,body{
    width: 100%;
    height: 100%;
    margin:0;
    padding:0;
}

*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    outline: 0;
}

*:focus{
    outline: 0;
}

.adq-container{
    width: 100%;
    display: block;
    margin: 0 auto;
    max-width: 1280px;
}

.adq-row{
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 5px;

}

.adq-row::after {
  content: "";
  clear: both;
}

.adq-col-4 {width: 33.33%;}
.adq-col-6 {width: 50%;}
.adq-col-8 {width: 66.66%;}
.adq-col-12 {width: 100%;}

[class*="adq-col-"] {
  float: left;
  padding: 0px 15px;
  width: 100%;
}

.adq-search-cat-row{
  display: table;
  width: 100%;
  padding:25px 0px;
}

.adq-search-cat-row .adq-cat-box{
  display: table-cell;
  vertical-align: middle;
  width: 25%;
  float: left;
}

.adq-search-cat-row .adq-search-box{
  display: table-cell;
  vertical-align: middle;
  width: 25%;
  float: right;
  position: relative;
}

.adq-order-table-section{
    padding:20px 20px;
}


.adq-cat-fld,
.adq-search-fld,
.adq-number-fld{
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;

}

.adq-search-btn{
    position: absolute;
    right: 0;
    top: 0px;
    height: 34px;
    border: 0;
    padding: 0px 5px;
    width: 100%;
    max-width: 100px;
    color: black;
    cursor: pointer;
}

.adq-search-btn:hover{
    color: white;
    background-color: black;
}

.adq-product-order-table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-top: 20px;
    /*border: 1px solid #ddd;*/
}

.adq-product-order-table thead{
    border-bottom: 1px solid;
    background-color: #dddddd2e;
}

.adq-product-order-table thead tr,
.adq-product-order-table thead td{
    padding:10px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
}

.adq-product-order-table tbody td{
    padding:10px 5px;
    font-size: 14px;
    line-height: 24px;
    vertical-align: top;
}

.adq-product-order-table tbody tr{
    margin: 10px 0px;
}

.adq-product-img img{
    max-width: 100%;
    display: block;
    border-radius: 3px;
    width: 80px;
    height: 80px;
}

.adq-product-name{
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

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

.adq-check-product button{
    background-color: transparent;
    border: 0;
    font-size: 30px;
    font-weight: 400;
    cursor: pointer;
}


@media only screen and (min-width: 768px) {
  /* For desktop: */
  .adq-col-1 {width: 8.33%;}
  .adq-col-2 {width: 16.66%;}
  .adq-col-3 {width: 25%;}
  .adq-col-4 {width: 33.33%;}
  .adq-col-5 {width: 41.66%;}
  .adq-col-6 {width: 50%;}
  .adq-col-7 {width: 58.33%;}
  .adq-col-8 {width: 66.66%;}
  .adq-col-9 {width: 75%;}
  .adq-col-10 {width: 83.33%;}
  .adq-col-11 {width: 91.66%;}
  .adq-col-12 {width: 100%;}
}

@media all and (max-width: 480px){
  .adq-product-summary,
  .adq-in-stock{
    display: none;
  }

  .adq-product-order-table thead tr,
  .adq-product-order-table thead td,
  .adq-product-order-table tbody tr,
  .adq-product-order-table tbody td{
    font-size: 12px;
  }

  [class*="adq-col-"] {
    margin:5px 0px;
    width: 100%;
  }

   .adq-search-cat-row .adq-cat-box,
  .adq-search-cat-row .adq-search-box{
      display: block;
      width: 100%;
      float: none;
      margin:10px 0px;
  }

  .adq-product-img img{
    height: auto;
  }
}

@media all and (min-width: 480px) and (max-width: 768px){

  .adq-product-order-table thead tr,
  .adq-product-order-table thead td,
  .adq-product-order-table tbody tr,
  .adq-product-order-table tbody td{
    font-size: 13px;
  }

  .adq-search-cat-row .adq-cat-box,
  .adq-search-cat-row .adq-search-box{
      width: 40%;
  }

  .adq-product-summary{
    width: 25%;
  }

  .adq-product-img img{
    height: auto;
  }

}

@media all and (min-width: 769px) and (max-width: 1024px){
   .adq-product-summary{
    width: 45%;
  }
}
