html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.dt-buttons.btn-group{
    display: none;
}
.select2-container .select2-selection__rendered{
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}
.row-10{
      margin-right: -5px;
  margin-left: -5px;
}
.row-10 > div{
    padding-right: 5px;
    padding-left: 5px;
}
#DataTables_Table_0_filter {
  text-align: right;
}

#DataTables_Table_0_filter label{
    text-align: left;
}
.search-head {
    margin-bottom: -58px;
}
div.dataTables_wrapper div.dataTables_filter label{
    font-size: 0.76rem !important;   line-height: 0.9rem !important;
}
div.dataTables_wrapper div.dataTables_filter input {
    width: 170px;
    margin-top: .5rem;
}
.search-head input, .search-head select, div.dataTables_wrapper div.dataTables_filter input{
  height: 35px !important;
}
.dashboard-list-with-thumbs {
  height: 415px !important;;
}
.hide-br  br{
    display: none!important;;
}
.icon-button i {
  line-height: 34px !important;
}
.product-detail-short{
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}
.product-card.card .card-body {
  padding: 20px;
}


/*--------------------------*/
.qty-container{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 108px;
    margin-top: 10px;
}
.qty-container .input-qty{
    text-align: center;
  padding: 4px 10px;
  border: 1px solid #d4d4d4;
  max-width: 50px;
  height: 30px;
}
.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus{
    border: 1px solid #d4d4d4;
    padding: 5px 0px;
    font-size: 18px;
    height: 30px;
    width: 30px;
    transition: 0.3s;
    line-height: 1;
}
.qty-container .qty-btn-plus{
  margin-left: -1px;
}
.qty-container .qty-btn-minus{
  margin-right: -1px;
}
.top-right-button-container .search-head{
    margin-top: -15px;
}


@media (max-width: 767px) {
    .search-head {
        padding-left: 0px;  
        margin-bottom: 10px;
    }
}