#sch-tabs .container {
  max-width: 100%;
}
.sch-style-1 {

}
.sch-style-1 input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  margin: 15px 10px;
  width: 25px;
  height: 25px;
}
.sch-style-1 tr {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.sch-style-1 tr:hover {
  background-color: #eee;
}
.sch-style-1 th {
  background-color: #111;
  color: #FFF;
  padding:20px 10px;
  font-size: 14px;

}
.sch-style-1 th i {
  margin-left: 10px;
  position: absolute;
  margin-top: 3px;
}
.sch-style-1 th span {
}
.sch-style-1 td img{
	width:70px;
	height:70px;
	object-fit:cover;
}
.sch-style-1 .sch-list-action i,.sch-style-1 .sch-list-quick i,.sch-style-1 .sch-list-wish i{

}
.sch-style-1 .glow-on-hover {
  background: #111;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 100%;
  font-size: 14px;
  cursor: pointer;
   border: none;
    outline: none;
    position: relative;
    z-index: 0;
	float: left;
	margin: 2.5px;
}

.sch-style-1 .glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 100%;
}

.sch-style-1 .glow-on-hover:active {
    color: #000
}

.sch-style-1 .glow-on-hover:active:after {
    background: transparent;
}

.sch-style-1 .glow-on-hover:hover:before {
    opacity: 1;
}

.sch-style-1 .glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 100%;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.sch-style-1 .ctrl {
  display: inline-block;
}

.sch-style-1 .ctrl__counter {
  position: relative;
  width: 30px;
  height: 30px;
  color: #333C48;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid #D5DCE6;
border-top: 1px solid #D5DCE6;
float: left;
}

.sch-style-1 .ctrl__counter.is-input .ctrl__counter-num {
  visability: hidden;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.sch-style-1 .ctrl__counter.is-input .ctrl__counter-input {
  visability: visible;
  opacity: 1;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.sch-style-1 .ctrl__counter-input {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  box-shadow: none;
  outline: none;
  border: none;
  color: #333C48;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  visability: hidden;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.sch-style-1 .ctrl__counter-num {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 100px;
  visability: visible;
  opacity: 1;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.sch-style-1 .ctrl__counter-num.is-increment-hide {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-animation: increment-prev 100ms ease-in;
  animation: increment-prev 100ms ease-in;
}

.sch-style-1 .ctrl__counter-num.is-increment-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation: increment-next 100ms ease-out;
  animation: increment-next 100ms ease-out;
}

.sch-style-1 .ctrl__counter-num.is-decrement-hide {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-animation: decrement-prev 100ms ease-in;
  animation: decrement-prev 100ms ease-in;
}

.sch-style-1 .ctrl__counter-num.is-decrement-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation: decrement-next 100ms ease-out;
  animation: decrement-next 100ms ease-out;
}

.sch-style-1 .ctrl__button {
  width: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  background-color: #111;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

.sch-style-1 .ctrl__button:hover {
  background-color: #111;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

.sch-style-1 .ctrl__button:active {
  background-color: #778996;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

.sch-style-1 .ctrl__button--decrement {border-top-left-radius: 20px;
border-bottom-left-radius: 20px;float: left; }

.sch-style-1 .ctrl__button--increment { border-top-right-radius: 20px;
border-bottom-right-radius: 20px;float: left; }
 @-webkit-keyframes 
decrement-prev {  from {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
}
 @keyframes 
decrement-prev {  from {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
}
@-webkit-keyframes 
decrement-next {  from {
 opacity: 0;
 -webkit-transform: translateY(-50px);
 transform: translateY(-50px);
}
}
@keyframes 
decrement-next {  from {
 opacity: 0;
 -webkit-transform: translateY(-50px);
 transform: translateY(-50px);
}
}
@-webkit-keyframes 
increment-prev {  from {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
}
@keyframes 
increment-prev {  from {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
}
@-webkit-keyframes 
increment-next {  from {
 opacity: 0;
 -webkit-transform: translateY(50px);
 transform: translateY(50px);
}
}
@keyframes 
increment-next {  from {
 opacity: 0;
 -webkit-transform: translateY(50px);
 transform: translateY(50px);
}
}
.sch-style-1 td {
  display: block;
  word-wrap: break-word;
}
.sch-style-1 td:first-child {
  display: table-cell;
  text-align: center;
}
.sch-style-1 th, .sch-style-1 td {
  text-align: center;
  margin: .5em 1em;
}

@media (min-width: 480px) {
  .sch-style-1 th:nth-child(2) span {
    display: block;
  }
  .sch-style-1 th:nth-child(2):after {
    display: none;
  }
    .sch-style-1 th, .sch-style-1 td {
    display: table-cell;
    padding: 1em;
  }
}

body {
  font-family: Arial, sans-serif;
  color: #024457;
  background: #fff;
}

h1 {
  font-family: Verdana;
  font-weight: normal;
  color: #024457;
}
h1 span {
  color: #111;
}

.sch-style-1 tr:first-child .sch-name-check {
border-top-left-radius: 10px;
}
.sch-style-1 tr:first-child .sch-name-wish {
border-top-right-radius: 10px!important;
}
.sch-style-1 tr:last-child{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.sch-style-1 tr:last-child .sch-name-check{
  border-bottom-left-radius: 10px;
}

.sch-style-1 tr:last-child .sch-name-wish{
  border-bottom-right-radius: 10px;
}
.sch-style-1 .sch-name-check,.sch-style-1 .sch-list-check {
  width: 5%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-thumb,.sch-style-1 .sch-list-thumb {
  width: 12%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-pro,.sch-style-1 .sch-list-pro {
  width: 12%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-cat,.sch-style-1 .sch-list-cat {
  width: 7%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-stock,.sch-style-1 .sch-list-stock {
  width: 6%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-price,.sch-style-1 .sch-list-price {
  width: 8%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-quantity,.sch-style-1 .sch-list-quantity {
  width: 15%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-action,.sch-style-1 .sch-list-action {
  width: 6%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-quick,.sch-style-1 .sch-list-quick {
  width: 8%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-sku,.sch-style-1 .sch-list-sku {
  width: 5%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-rat,.sch-style-1 .sch-list-rat {
  width: 5%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-name-wish,.sch-style-1 .sch-list-wish {
  width: 11%;float: left;
margin: 0 !important;
}
.sch-style-1 .sch-list-pro,.sch-style-1 .sch-list-price {
  font-weight: bold;
}
.sch-style-1 .sch-list-check,.sch-style-1 .sch-list-thumb,.sch-style-1 .sch-list-pro,.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,.sch-style-1 .sch-list-price,.sch-style-1 .sch-list-quantity,
.sch-style-1 .sch-list-action,.sch-style-1 .sch-list-quick,.sch-style-1 .sch-list-sku,.sch-style-1 .sch-list-rat,.sch-style-1 .sch-list-wish{
	position:relative;
}
.sch-style-1 .sch-list-pro span,.sch-style-1 .sch-list-cat span,
.sch-style-1 .sch-list-stock span,.sch-style-1 .sch-list-price span,.sch-style-1 .sch-list-quantity .ctrl,
.sch-style-1 .sch-list-action span,.sch-style-1 .sch-list-quick span,.sch-style-1 .sch-list-sku span,.sch-style-1 .sch-list-rat span,.sch-style-1 .sch-list-wish span{
	position: absolute;
		  left: 50%;
		  top: 50%;
		  transform: translate(-50%, -50%);
}
@media (min-width: 1281px) and (max-width: 1500px){
  
.sch-style-1 .sch-name-cat, .sch-style-1 .sch-list-cat {
  width: 11%;
}
  .sch-style-1 .sch-name-stock, .sch-style-1 .sch-list-stock {
  width: 9%;
}
.sch-style-1 .ctrl__button {
  width: 20px;
}
.sch-style-1 .ctrl__counter {
  width: 30px;
}
.sch-style-1 .glow-on-hover {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 10px;
}
}



@media (min-width: 1025px) and (max-width: 1280px) {
  .sch-style-1 .ctrl__button--decrement {
  border-bottom-left-radius: 0;
  float: left;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.sch-style-1 .ctrl__counter {
  width: 40px;
  border-bottom: 0px solid #D5DCE6;
  border-top: 0px solid #D5DCE6;
  border-left: 1px solid #D5DCE6;
  border-right: 1px solid #D5DCE6;
}
  .sch-style-1 .ctrl__button {
  width: 40px;
  }
  .sch-style-1 .ctrl__button--increment {
  border-top-right-radius: 0;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.sch-style-1 .ctrl {
  display: inline-block;
  left: 58% !important;
}
}
@media (min-width: 980px) and (max-width: 1024px) {
	.sch-style-1 .itwpt-search input[type="text"] {
  max-width: 350px!important;
}
.sch-style-1 .schfilter_button {
  left: 315px!important;
}
}
@media (min-width: 768px) and (max-width: 979px) {

.sch-style-1 tr:first-child,
.sch-style-1 tr:last-child{
  background: #167F92;
}
.sch-style-1 .itwpt-search input[type="text"] {
  max-width: 200px!important;
}
.sch-style-1 .schfilter_button {
  left: 165px!important;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
  
.sch-style-1 tr {
  display: inline-block;
}
  .sch-style-1 .sch-name-check, .sch-style-1 .sch-list-check {
  width: 10%;
}
  .sch-style-1 .sch-name-thumb, .sch-style-1 .sch-list-thumb {
  width: 20%;
}
.sch-style-1 .sch-name-pro, .sch-style-1 .sch-list-pro {
  width: 22%;
}
.sch-style-1 .sch-name-cat, .sch-style-1 .sch-list-cat {
  width: 18%;
}
.sch-style-1 .sch-name-stock, .sch-style-1 .sch-list-stock,
.sch-style-1 .sch-name-price, .sch-style-1 .sch-list-price {
  width: 15%;
}
.sch-style-1 .sch-name-quantity, .sch-style-1 .sch-list-quantity,
.sch-style-1 .sch-name-action, .sch-style-1 .sch-list-action,
.sch-style-1 .sch-name-quick, .sch-style-1 .sch-list-quick,
.sch-style-1 .sch-name-sku, .sch-style-1 .sch-list-sku,
.sch-style-1 .sch-name-rat, .sch-style-1 .sch-list-rat,
.sch-style-1 .sch-name-wish, .sch-style-1 .sch-list-wish{
	width:50%;
	float:left;
}
.sch-style-1 .sch-name-quantity,
.sch-style-1 .sch-name-action,
.sch-style-1 .sch-name-quick,
.sch-style-1 .sch-name-sku,
.sch-style-1 .sch-name-rat,.sch-style-1 .sch-name-wish{
	display:none;
}
.sch-style-1 .sch-list-check, .sch-style-1 .sch-list-thumb, .sch-style-1 .sch-list-pro, .sch-style-1 .sch-list-cat, .sch-style-1 .sch-list-stock, .sch-style-1 .sch-list-price, .sch-style-1 .sch-list-quantity, .sch-style-1 .sch-list-action, .sch-style-1 .sch-list-quick, .sch-style-1 .sch-list-sku, .sch-style-1 .sch-list-rat, .sch-style-1 .sch-list-wish {
  height: 102px;
}
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	border-top: 1px solid #ddd;
}
.sch-style-1 .sch-list-action,.sch-style-1 .sch-list-sku,.sch-style-1 .sch-list-wish{
	border-left: 1px solid #ddd;
}
.sch-style-1 .sch-list-quantity::before {
  content: "Quantity: ";
  font-size: 18px;
  float: left;
  line-height: 70px;
  margin-left: 20px;
}
.sch-style-1 .sch-list-action::before {
  content: "Action: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-quick::before {
  content: "Quickview: ";
  font-size: 18px;
  float: left;margin-left: 20px;
  line-height: 70px;
}
.sch-style-1 .sch-list-sku::before {
  content: "Sku: ";
  font-size: 18px;
  float: left;margin-left: 20px;
  line-height: 70px;
}
.sch-style-1 .sch-list-rat::before {
  content: "Rating: ";
  font-size: 18px;margin-left: 20px;
  float: left;
  line-height: 70px;
}
.sch-style-1 .sch-list-wish::before {
  content: "Wishlist: ";
  font-size: 18px;
  float: left;margin-left: 20px;
  line-height: 70px;
}
}
@media (min-width: 640px) and (max-width: 767px) {

  .sch-style-1 .sch-right {
  float: left !important;
  position: relative !important;
  right: 0;
  margin-top: 30px;
}

.sch-style-1 tr {
  display: inline-block;
}
  .sch-style-1 .sch-name-check, .sch-style-1 .sch-list-check {
  width: 20%;
}
  .sch-style-1 .sch-name-thumb, .sch-style-1 .sch-list-thumb {
  width: 40%;
}
.sch-style-1 .sch-name-pro, .sch-style-1 .sch-list-pro {
  width: 40%;
}
.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,
.sch-style-1 .sch-list-price,
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	width:100%;
	float:left;
}
.sch-style-1 .sch-name-cat,
.sch-style-1 .sch-name-stock,
.sch-style-1 .sch-name-price,
.sch-style-1 .sch-name-quantity,
.sch-style-1 .sch-name-action,
.sch-style-1 .sch-name-quick,
.sch-style-1 .sch-name-sku,
.sch-style-1 .sch-name-rat,.sch-style-1 .sch-name-wish{
	display:none;
}
.sch-style-1 .sch-list-check, .sch-style-1 .sch-list-thumb, .sch-style-1 .sch-list-pro, .sch-style-1 .sch-list-cat, .sch-style-1 .sch-list-stock, .sch-style-1 .sch-list-price, .sch-style-1 .sch-list-quantity, .sch-style-1 .sch-list-action, .sch-style-1 .sch-list-quick, .sch-style-1 .sch-list-sku, .sch-style-1 .sch-list-rat, .sch-style-1 .sch-list-wish {
  height: 102px;
}
.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,
.sch-style-1 .sch-list-price,
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	border-top: 1px solid #ddd;
}
.sch-style-1 .sch-list-action,.sch-style-1 .sch-list-sku,.sch-style-1 .sch-list-wish{
	border-left: 1px solid #ddd;
}
.sch-style-1 .sch-list-cat::before {
  content: "Category: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-stock::before {
  content: "In Stock: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-price::before {
  content: "Price: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-quantity::before {
  content: "Quantity: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-action::before {
  content: "Action: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-quick::before {
  content: "Quickview: ";
  font-size: 18px;margin-left: 20px;
  float: left;
  line-height: 70px;
}
.sch-style-1 .sch-list-sku::before {
  content: "Sku: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-rat::before {
  content: "Rating: ";
  font-size: 18px;
  float: left;margin-left: 20px;
  line-height: 70px;
}
.sch-style-1 .sch-list-wish::before {
  content: "Wishlist: ";
  font-size: 18px;margin-left: 20px;
  float: left;
  line-height: 70px;
}
.sch-style-1 .itwpt-button {
  padding: 13px 10px!important;
}

.sch-style-1 .itwpt-select-all {
  width: 110px!important;
}
.sch-style-1 tr {
  display: inline-block;
}
  .sch-style-1 .sch-name-check, .sch-style-1 .sch-list-check {
  width: 20%;
}
  .sch-style-1 .sch-name-thumb, .sch-style-1 .sch-list-thumb {
  width: 40%;
}
.sch-style-1 .sch-name-pro, .sch-style-1 .sch-list-pro {
  width: 40%;
}
.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,
.sch-style-1 .sch-list-price,
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	width:100%;
	float:left;
}
.sch-style-1 .sch-name-cat,
.sch-style-1 .sch-name-stock,
.sch-style-1 .sch-name-price,
.sch-style-1 .sch-name-quantity,
.sch-style-1 .sch-name-action,
.sch-style-1 .sch-name-quick,
.sch-style-1 .sch-name-sku,
.sch-style-1 .sch-name-rat,.sch-style-1 .sch-name-wish{
	display:none;
}
.sch-style-1 .sch-list-check, .sch-style-1 .sch-list-thumb, .sch-style-1 .sch-list-pro, .sch-style-1 .sch-list-cat, .sch-style-1 .sch-list-stock, .sch-style-1 .sch-list-price, .sch-style-1 .sch-list-quantity, .sch-style-1 .sch-list-action, .sch-style-1 .sch-list-quick, .sch-style-1 .sch-list-sku, .sch-style-1 .sch-list-rat, .sch-style-1 .sch-list-wish {
  height: 102px;
}
.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,
.sch-style-1 .sch-list-price,
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	border-top: 1px solid #ddd;
}
.sch-style-1 .sch-list-action,.sch-style-1 .sch-list-sku,.sch-style-1 .sch-list-wish{
	border-left: 1px solid #ddd;
}
.sch-style-1 .sch-list-cat::before {
  content: "Category: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-stock::before {
  content: "In Stock: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-price::before {
  content: "Price: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-quantity::before {
  content: "Quantity: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-action::before {
  content: "Action: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-quick::before {
  content: "Quickview: ";
  font-size: 18px;margin-left: 20px;
  float: left;
  line-height: 70px;
}
.sch-style-1 .sch-list-sku::before {
  content: "Sku: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-rat::before {
  content: "Rating: ";
  font-size: 18px;
  float: left;margin-left: 20px;
  line-height: 70px;
}
.sch-style-1 .sch-list-wish::before {
  content: "Wishlist: ";
  font-size: 18px;margin-left: 20px;
  float: left;
  line-height: 70px;
}
.sch-style-1 .itwpt-button {
  padding: 13px 10px;
}

}
@media (min-width: 481px) and (max-width: 639px) {
	.sch-style-1 .itwpt-search input[type="text"] {
  max-width: 350px!important;
	}
	.sch-style-1 .schfilter_button {
  left: 310px!important;
}
	.sch-style-1 .itwpt-button {
	padding: 13px 10px!important;
	}

  .sch-style-1 .sch-right {
  float: left !important;
  position: relative !important;
  right: 0;
  margin-top: 30px;
}
.sch-style-1 .itwpt-select-all {
  margin-bottom: 0!important;
}
.sch-style-1 tr {
  display: inline-block;
}
  .sch-style-1 .sch-name-check, .sch-style-1 .sch-list-check {
  width: 20%;
}
  .sch-style-1 .sch-name-thumb, .sch-style-1 .sch-list-thumb {
  width: 40%;
}
.sch-style-1 .sch-name-pro, .sch-style-1 .sch-list-pro {
  width: 40%;
}
.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,
.sch-style-1 .sch-list-price,
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	width:100%;
	float:left;
}
.sch-style-1 .sch-name-cat,
.sch-style-1 .sch-name-stock,
.sch-style-1 .sch-name-price,
.sch-style-1 .sch-name-quantity,
.sch-style-1 .sch-name-action,
.sch-style-1 .sch-name-quick,
.sch-style-1 .sch-name-sku,
.sch-style-1 .sch-name-rat,.sch-style-1 .sch-name-wish{
	display:none;
}
.sch-style-1 .sch-list-check, .sch-style-1 .sch-list-thumb, .sch-style-1 .sch-list-pro, .sch-style-1 .sch-list-cat, .sch-style-1 .sch-list-stock, .sch-style-1 .sch-list-price, .sch-style-1 .sch-list-quantity, .sch-style-1 .sch-list-action, .sch-style-1 .sch-list-quick, .sch-style-1 .sch-list-sku, .sch-style-1 .sch-list-rat, .sch-style-1 .sch-list-wish {
  height: 102px;
}
.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,
.sch-style-1 .sch-list-price,
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	border-top: 1px solid #ddd;
}
.sch-style-1 .sch-list-action,.sch-style-1 .sch-list-sku,.sch-style-1 .sch-list-wish{
	border-left: 1px solid #ddd;
}
.sch-style-1 .sch-list-cat::before {
  content: "Category: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-stock::before {
  content: "In Stock: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-price::before {
  content: "Price: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-quantity::before {
  content: "Quantity: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-action::before {
  content: "Action: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-quick::before {
  content: "Quickview: ";
  font-size: 18px;margin-left: 20px;
  float: left;
  line-height: 70px;
}
.sch-style-1 .sch-list-sku::before {
  content: "Sku: ";
  font-size: 18px;
  float: left;
  line-height: 70px;margin-left: 20px;
}
.sch-style-1 .sch-list-rat::before {
  content: "Rating: ";
  font-size: 18px;
  float: left;margin-left: 20px;
  line-height: 70px;
}
.sch-style-1 .sch-list-wish::before {
  content: "Wishlist: ";
  font-size: 18px;margin-left: 20px;
  float: left;
  line-height: 70px;
}
.sch-style-1 .itwpt-button {
  padding: 13px 10px;
}

}

@media (min-width: 320px) and (max-width: 480px) {
	.sch-style-1 .itwpt-search input[type="text"] {
  max-width: 100% !important;
}
.sch-style-1 .schfilter_button {
  left: auto !important;
  right: 10px;
}
.sch-style-1 .itwpt-button{
	width: 100%;
	text-align: center;
}
  .sch-style-1 .sch-right {
  float: left !important;
  position: relative !important;
  right: 0;
    margin-top: 30px;
	width: 100%;
}
.sch-style-1 .sch-bottom {
  display: inline!Important;
}
.sch-style-1 .sch-item-select {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.sch-style-1 .itwpt-select-all {
  float: left !important;
  margin-bottom: 0 !important;
  margin-top: 10px;
  width: 100% !important;
	text-align: center;
}
.sch-style-2 .itwpt-search {
  height: 40px;
}

.sch-style-1 tr {
  display: inline-block;
}
  .sch-style-1 .sch-name-check, .sch-style-1 .sch-list-check {
  width: 20%;
}
  .sch-style-1 .sch-name-thumb, .sch-style-1 .sch-list-thumb {
  width: 40%;
}
.sch-style-1 .sch-name-pro, .sch-style-1 .sch-list-pro {
  width: 40%;
}
.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,
.sch-style-1 .sch-list-price,
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	width:100%;
	float:left;
}
.sch-style-1 .sch-name-cat,
.sch-style-1 .sch-name-stock,
.sch-style-1 .sch-name-price,
.sch-style-1 .sch-name-quantity,
.sch-style-1 .sch-name-action,
.sch-style-1 .sch-name-quick,
.sch-style-1 .sch-name-sku,
.sch-style-1 .sch-name-rat,.sch-style-1 .sch-name-wish{
	display:none;
}
.sch-style-1 .sch-list-check, .sch-style-1 .sch-list-thumb, .sch-style-1 .sch-list-pro, .sch-style-1 .sch-list-cat, .sch-style-1 .sch-list-stock, .sch-style-1 .sch-list-price, .sch-style-1 .sch-list-quantity, .sch-style-1 .sch-list-action, .sch-style-1 .sch-list-quick, .sch-style-1 .sch-list-sku, .sch-style-1 .sch-list-rat, .sch-style-1 .sch-list-wish {
  height: 102px;
}
.sch-style-1 .sch-list-cat,
.sch-style-1 .sch-list-stock,
.sch-style-1 .sch-list-price,
.sch-style-1 .sch-list-quantity,
 .sch-style-1 .sch-list-action,
.sch-style-1 .sch-list-quick,
.sch-style-1 .sch-list-sku,
.sch-style-1 .sch-list-rat,
.sch-style-1 .sch-list-wish{
	border-top: 1px solid #ddd;
}
.sch-style-1 .sch-list-action,.sch-style-1 .sch-list-sku,.sch-style-1 .sch-list-wish{
	border-left: 1px solid #ddd;
}
.sch-style-1 .sch-list-cat::before {
  content: "Category: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-stock::before {
  content: "In Stock: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-price::before {
  content: "Price: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-quantity::before {
  content: "Quantity: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-action::before {
  content: "Action: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-quick::before {
  content: "Quickview: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-sku::before {
  content: "Sku: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-rat::before {
  content: "Rating: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-wish::before {
  content: "Wishlist: ";
  font-size: 18px;
  float: left;
  line-height: 100px;margin-left: 20px;
}
.sch-style-1 .sch-list-pro span, .sch-style-1 .sch-list-cat span, .sch-style-1 .sch-list-stock span, .sch-style-1 .sch-list-price span, .sch-style-1 .sch-list-quantity .ctrl, .sch-style-1 .sch-list-action span, .sch-style-1 .sch-list-quick span, .sch-style-1 .sch-list-sku span, .sch-style-1 .sch-list-rat span, .sch-style-1 .sch-list-wish span {
  left: 65%;transform: translate(-60%, -50%);
}
  .sch-style-1 .ctrl__counter {
  width: 27px;
  }
  .sch-list-thumb span {
  padding-top: 15px;
  display: inline-block;
}
.sch-style-1 tr:first-child,
.sch-style-1 tr:last-child{background: #167F92;}
}
.sch-style-1 .sch-button-load-more{
  margin-top: 26px;
  text-align: center;
}
.sch-style-1 .sch-button-load-more .sch-button-load-more-content {
  background-color: #ffffff;
  color: #c6c6c6;
}
.sch-style-1 .sch-button-load-more-content {
  padding: 0 26px;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  height: 46px;
  border-radius: 8px;
  display: inline-block;
  line-height: 46px;
  z-index: 1;
  box-shadow: 3px 0px 5px rgba(0, 0, 0, 0.5);
}

.sch-style-1 .sch-button-load-more .sch-button-load-more-content::before, .sch-style-1 .sch-button-load-more .sch-button-load-more-content::after {
  background-color: #167F92;
}
.sch-style-1 .sch-button-load-more-content::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #ef45ff;
  transform: translate(-50%, -50%) rotate(45deg);
  overflow: hidden;
  z-index: -1;
}
.sch-style-1 .sch-button-load-more-content::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #ef45ff;
  transform: translate(-50%, -50%) rotate(45deg);
  overflow: hidden;
  z-index: -1;
}
.sch-style-1 table{
	margin: 1em 0;
width: 100%;
overflow: hidden;
color: #024457;
box-shadow: 3px -3px 30px rgba(0, 0, 0, 0.5);
border-radius: 10px;
display:inline-block;
}
.sch-style-1 table tbody {
  width: 100%;
  display: inline-block;
}
.sch-style-1 .sch-top {
  position: relative;
  display: inline-block;
  width: 100%;
}
.sch-style-1 .itwpt-button {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  border-radius: 999px !important;
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
  font-family: roboto, sans-serif;
  outline: none !important;
  box-shadow: none !important;
  text-transform: capitalize;
  padding: 13px 20px;
  margin: 2px auto;
    margin-right: auto;
    margin-bottom: 2px;
  margin-right: 10px;
  margin-bottom: 2px;
  cursor: pointer;
  overflow: hidden;
  background-color: #167F92;
  color: #ffffff;
  transition: all 0.15s ease-in-out;
}
.sch-style-1 .itwpt-button.with-icon i{
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  margin-right: 10px;
}
.sch-style-1 .itwpt-table-base i {
  background: transparent !important;
  color: inherit;
  width: inherit;
  height: inherit !important;
  border-radius: inherit;
}
.sch-style-1 #schfilter {
  display: none;
  margin: 20px 0;
}

.sch-style-1 .itwpt-select-all {
  position: relative;
  float: right;
  white-space: nowrap;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  text-transform: capitalize;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  color: #222;
  cursor: pointer;
  margin-bottom: 26px;
  height: 46px;
  line-height: 25px;
  box-shadow: 3px 0px 9px rgba(0, 0, 0, 0.5);
border-radius: 5px;
}
.sch-style-1 .itwpt-select-all span {
  line-height: 14px;
  display: inline-block;
  font-size: 14px;
  margin-right: 6px;
  vertical-align: middle;
}
.sch-style-1 .itwpt-select-all .itwpt-checkbox {
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
}
.sch-style-1 .itwpt-table-base.a757509 .itwpt-checkbox-selector {
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #965dc9;
}
.sch-style-1 .itwpt-checkbox-selector {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px #222;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.sch-style-1 .itwpt-checkbox-selector i {
  background-color: #965dc9 !important;
  color: 0 0 0 1px #ffffff !important;
}
.sch-style-1 .itwpt-checkbox-selector i {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 12px;
  line-height: 20px;
  background-color: #222;
  visibility: hidden;
}
.sch-style-1 .itwpt-table-base i {
  background: transparent !important;
    background-color: transparent;
  color: inherit;
  width: inherit;
  height: inherit !important;
  border-radius: inherit;
}
.sch-style-1 .itwpt-table-base .itwpt-search {
  position: relative;
  float: left;
  height: 46px;
  border-radius: 5px;
  text-transform: capitalize;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  color: #222;
  background-color: #fff;
  font-size: 14px;
  margin-bottom: 26px;
  margin-right: 10px;
}
.sch-style-1 .itwpt-search i {
  padding: 0 12px !important;
  line-height: 40px;
  font-size: 16px;
  vertical-align: text-top;
  position: absolute;
}
.sch-style-1 .itwpt-table-base .itwpt-search input {
  display: inline-block !important;
  border: none !important;
  box-shadow: none;
  height: 46px;
  width: auto !important;
  background-color: transparent !important;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  outline: none !important;
  vertical-align: top;
}
.sch-style-1 .itwpt-search input[type="text"] {
  padding: 9px 40px;
  max-width: 400px;
  width: 100%;
  transition: border-color 300ms;
  border: none;
  box-shadow: 3px 0px 9px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.sch-style-1 .fa-sliders::before {
  content: "\f1de";
}
.sch-style-1 .fa-sort-numeric-desc::before {
  content: "\f163 ";
}
.sch-style-1 .fas.fa-search {
  left: 0;
}
.sch-style-1 .fa.fa-sliders {
  transform: rotate(90deg);
  cursor: pointer;
  top: -4px;
  right: -10px;
}
.sch-style-1 .itwpt-search {
  float: left;
  text-align: left;
  position: relative;
  width: 100%;
}
.sch-style-1 .sch-right {
  float: right;
  position: absolute;
  right: 0;
  top: -5px;
}
.sch-style-1 .sch-bottom {
  width: 100%;
  grid-auto-flow: row;
  grid-template-rows: repeat(2, 1fr);
  display: grid;
  column-gap: 10px;
  grid-template-columns: auto auto auto;
  height:40px;
}
.sch-style-1 .sch-item-select {
  position: relative;
}
.sch-style-1 .sch-item-select:nth-child(2)  {
 
}
.sch-style-1 .fa.fa-sort-numeric-desc {
  position: absolute;
  left: 0;
  top: -5px;
}
.sch-style-1 .sch-item-select select {
  padding: 10px 32px;
  width: 100%;
}
.sch-style-1 .sch-item-select select {
  padding: 10px 32px;
  width: 100%;
  background: #fff;
  border: none;
  box-shadow: 3px 0px 9px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.sch-style-1 .sch-checkbox-list {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.sch-style-1 .sch-checkbox-list input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.sch-style-1 .checkmark {
  position: absolute;
  top: 20px;
  left: 8px;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid #aaa;
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.sch-style-1 .sch-checkbox-list:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.sch-style-1 .sch-checkbox-list input:checked ~ .checkmark {
  background-color: #167F92;
}

/* Create the checkmark/indicator (hidden when not checked) */
.sch-style-1 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.sch-style-1 .sch-checkbox-list input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.sch-style-1 .sch-checkbox-list .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sch-style-1 .schfilter_button {
  position: absolute;
  top: 4px;
  font-size: 0!Important;
  width: 30px;
  height: 30px;
  left: 360px;
  background: none;
  border: none;
}
.sch-style-1 .itwpt-select-all .sch-checkbox-list {
  display: inline-block;
  position: absolute;
  top: -10px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  right: 10px;
}
.sch-style-1 .itwpt-select-all {
  width: 120px;
}
.sch-style-1 .itwpt-search i {
  top: -1px;
}
.sch-style-1 #schfilter .sch-bottom .sch-item-select input[type="text"] {
  max-width: 100% !important;
}