@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.sch-grid-1 .sch-item-row {
  width: 100%;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  row-gap: 1em;
}
.sch-grid-1 .sch-item {
    position: relative;
    overflow: hidden;
    background: #10375c;
    text-align: center;
    float: left;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
	font-family: 'Source Sans Pro', sans-serif;
	width: 100%;
}

.sch-grid-1 .sch-item img {

    max-width: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
    width: 100%;
    height: 250px;
    object-fit: contain;

}
.sch-grid-1 .sch-item .sch-icon {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
}
.sch-grid-1 .sch-item  .sch-icon a {
  color: #111;
}
.sch-grid-1 .sch-item .sch-icon a i {
  font-size: 30px;
  opacity: 0;
  top: 50%;
  position: relative;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  display: inline-block;
}
.sch-grid-1 .sch-item .sch-icon a i.left-icon {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.sch-grid-1 .sch-item .sch-icon a i.right-icon {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.sch-grid-1 .sch-item .sch-icon::before {
  position: absolute;
  top: 30px;
  right: 50%;
  bottom: 30px;
  left: 50%;
  border-left: 1px solid rgba(0, 0, 0, 0.8);
  border-right: 1px solid rgba(0, 0, 0, 0.8);
  content: '';
  opacity: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.sch-grid-1 .sch-item:hover img {
  opacity: 0.35;
}
.sch-grid-1 .sch-item:hover .sch-icon i {
  opacity: 0.9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  z-index: 3;
}
.sch-grid-1 .sch-item:hover .sch-icon i.left-icon {
  -webkit-transform: translate3d(-25%, -50%, 0);
  transform: translate3d(-25%, -50%, 0);
}
.sch-grid-1 .sch-item:hover .sch-icon i.right-icon {
  -webkit-transform: translate3d(25%, -50%, 0);
  transform: translate3d(25%, -50%, 0);
}
.sch-grid-1 .sch-item:hover .sch-icon::before {
  background: rgba(255, 255, 255, 0);
  left: 30px;
  right: 30px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.sch-grid-1 .sch-item:hover .sch-icon::after {
  content: "";
  font-weight: bold;
  background: rgba(132, 70, 133, 0.4);
  width: auto;
  height: 40px;
  position: absolute;
  top: 43%;
  z-index: 0;
  left: 30px;
  right: 30px;
}
.sch-grid-1 .sch-item .sch-img {
    position: relative;
	background: #fff;
}
.sch-grid-1 .sch-item .sch-content-item {
    width: 100%;
    font-size: 18px;
    color: #f3c623;
    box-sizing: border-box;
    word-break: break-all;
    padding: 30px 10px;
	text-align:left;
}
.sch-grid-1 .sch-item .sch-content-item-price {
    position: relative;
    display: inline-block;
    width: 100%;
}
.sch-grid-1 .sch-item .sch-content-item-sale-off {
    width: 65px;
    height: 65px;
    background: #844685;
    color: #faf4ff;
    border-radius: 100%;
    line-height: 65px;
    text-align: center;
    position: absolute;
    top: -65px;
}
.sch-grid-1 .sch-item .sch-content-item-price-odd {
    text-decoration: line-through;
    font-size: 20px;
    color: #faf4ff;
    float: left;
    margin-right: 20px;
}
.sch-grid-1 .sch-item .sch-content-item-price-new {
    font-size: 20px;
    float: left;
}
.sch-grid-1 .sch-item .sch-content-item-rating span {
    font-size: 18px;
    color: #faf4ff;
}
.sch-grid-1 .sch-item .sch-content-item-name a{
    font-size: 16px;
    padding: 15px 0;
	color: #f3c623;
	text-decoration: unset;
	display: inline-block;
}
@media (max-width: 374px){
		.sch-grid-1 .sch-item-row {
	  grid-template-columns: repeat(1, 1fr);
	}
}
@media (min-width: 375px) and (max-width: 479px){
	.sch-grid-1 .sch-item-row {
	  grid-template-columns: repeat(1, 1fr);
	}
}
@media (min-width: 480px) and (max-width: 639px){
	.sch-grid-1 .sch-item-row {
	  grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 640px) and (max-width: 767px){
	.sch-grid-1 .sch-item-row {
	  grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) and (max-width: 979px){
	
}
@media (min-width: 980px) and (max-width: 1023px){}
@media (min-width: 1024px) and (max-width: 1199px){}
@media (min-width: 1200px) and (max-width: 1340px){
	
}
@media (min-width: 1500px){}
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.sch-list-1 .sch-item {
    position: relative;
    overflow: hidden;
	margin-bottom: 30px;
    background: #10375c;
    text-align: center;
    float: left;
	width:100%;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
	font-family: 'Source Sans Pro', sans-serif;
}
.sch-list-1 .sch-item img {
    max-width: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.sch-list-1 .sch-item .sch-icon {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
}
.sch-list-1 .sch-item  .sch-icon a {
  color: #ffffff;
}
.sch-list-1 .sch-item .sch-icon a i {
  font-size: 30px;
  opacity: 0;
  top: 50%;
  position: relative;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  display: inline-block;
}
.sch-list-1 .sch-item .sch-icon a i.left-icon {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.sch-list-1 .sch-item .sch-icon a i.right-icon {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.sch-list-1 .sch-item .sch-icon::before {
  position: absolute;
  top: 30px;
  right: 50%;
  bottom: 30px;
  left: 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  content: '';
  opacity: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.sch-list-1 .sch-item:hover img {
  opacity: 0.35;
}
.sch-list-1 .sch-item:hover .sch-icon i {
  opacity: 0.9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.sch-list-1 .sch-item:hover .sch-icon i.left-icon {
  -webkit-transform: translate3d(-25%, -50%, 0);
  transform: translate3d(-25%, -50%, 0);
}
.sch-list-1 .sch-item:hover .sch-icon i.right-icon {
  -webkit-transform: translate3d(25%, -50%, 0);
  transform: translate3d(25%, -50%, 0);
}
.sch-list-1 .sch-item:hover .sch-icon::before {
  background: rgba(255, 255, 255, 0);
  left: 30px;
  right: 30px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.sch-list-1 .sch-item .sch-img {
    position: relative;
    width: 30%;
    float: left;
}
.sch-list-1 .sch-item .sch-content-item {
  width: 70%;
  font-size: 18px;
  color: #f3c623;
  box-sizing: border-box;
  word-break: break-all;
  padding: 43px 50px;
  text-align: left;
  float: left;
}
.sch-list-1 .sch-item .sch-content-item-price {
    position: relative;
    display: inline-block;
    width: 100%;
}


.sch-list-1 .sch-item .sch-content-item-sale-off {
    width: 65px;
    height: 65px;
    background: #844685;
    color: #faf4ff;
    border-radius: 100%;
    line-height: 65px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: -85px;
}
.sch-list-1 .sch-item .sch-content-item-price-odd {
    text-decoration: line-through;
    font-size: 20px;
    color: #faf4ff;
    float: left;
    margin-right: 20px;
}
.sch-list-1 .sch-item .sch-content-item-price-new {
    font-size: 20px;
    float: left;
}
.sch-list-1 .sch-item .sch-content-item-rating span {
    font-size: 18px;
    color: #faf4ff;
}
.sch-list-1 .sch-item .sch-content-item-name a{
    font-size: 16px;
    padding: 15px 0;
	color: #f3c623;
	text-decoration: unset;
	display: inline-block;
}
.sch-list-1 .select-box {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #f3c623;
}
.sch-list-1 .select-box-size, .sch-list-1 .select-box-color, .sch-list-1 .select-box-number {
  position: relative;
  display: block;
  width: auto;
  margin: 0;
  padding-top: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #f3c623;
  float: left;
}
.sch-list-1 .select-box-color, .sch-list-1 .select-box-number {
	padding-left:20px;
}
.sch-list-1 .select-box-size label ,.sch-list-1 .select-box-color label,.sch-list-1 .select-box-number label {
  padding-right:10px;
}
.sch-list-1 .sch-item:hover .sch-icon::after {
  content: "";
  font-weight: bold;
  background: rgba(132, 70, 133, 0.4);
  width: auto;
  height: 40px;
  position: absolute;
  top: 43%;
  z-index: 0;
  left: 30px;
  right: 30px;
}
.sch-list-1 .sch-content-transport {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  line-height: 30px;
}
.sch-list-1 .sch-content-transport img {
  width: 30px;
  height: 30px;
  float: left;
  margin-right: 20px;
  opacity: 1 !important;
}
.sch-list-1 .sch-content-transport .sch-transport-detail {
  color: #fff;
  font-family: 'Playfair Display', serif;
}
@media (max-width: 374px){
				.sch-list-1 .sch-item .sch-img {
  width: 100%;
}
.sch-list-1 .sch-item .sch-content-item {
  width: 100%;
  padding: 20px;
}
.sch-list-1 .select-box-color,.sch-list-1 .select-box-number{
	  padding-left: 0px;
	}
	.sch-list-1 .sch-content-transport img {
  margin-right: 5px;
}
.sch-list-1 .sch-content-transport .sch-transport-detail {
  font-size: 14px;
}
.sch-list-1 .select-box-size label, .sch-list-1 .select-box-color label, .sch-list-1 .select-box-number label {
  padding-right: 10px;
  font-size: 16px;
}
}
@media (min-width: 375px) and (max-width: 479px){
		.sch-list-1 .sch-item .sch-img {
  width: 100%;
}
.sch-list-1 .sch-item .sch-content-item {
  width: 100%;
  padding: 20px;
}
.sch-list-1 .select-box-color,.sch-list-1 .select-box-number{
	  padding-left: 0px;
	}
	.sch-list-1 .sch-content-transport img {
  margin-right: 5px;
}
.sch-list-1 .sch-content-transport .sch-transport-detail {
  font-size: 14px;
}
.sch-list-1 .select-box-size label, .sch-list-1 .select-box-color label, .sch-list-1 .select-box-number label {
  padding-right: 10px;
  font-size: 16px;
}
}
@media (min-width: 480px) and (max-width: 639px){
	.sch-list-1 .sch-item .sch-img {
  width: 100%;
}
.sch-list-1 .sch-item .sch-content-item {
  width: 100%;
  padding: 20px;
}
.sch-list-1 .select-box-color, .sch-list-1 .select-box-number{
	  padding-left: 0px;
	}
}
@media (min-width: 640px) and (max-width: 767px){
	.sch-list-1 .sch-item .sch-content-item {
	  padding: 10px 20px;
	  width:55%;
	}
	.sch-list-1 .select-box-color,.sch-list-1 .select-box-number{
	  padding-left: 0px;
	}
	.sch-list-1 .sch-item .sch-img {
	  width: 45%;
	}

.sch-list-1 .select-box-size, .sch-list-1 .select-box-color, .sch-list-1 .select-box-number,.sch-list-1 .sch-item .sch-content-item {
    font-size: 14px;
}
.sch-list-1 .sch-item .sch-content-item-name a {
  padding: 10px 0;
}
.sch-list-1 .select-box-size, .sch-list-1 .select-box-color, .sch-list-1 .select-box-number {
  padding-top: 8px;
}
}
@media (min-width: 768px) and (max-width: 979px){
	.sch-list-1 .sch-item .sch-content-item {
	  padding: 20px 20px;
	}
	.sch-list-1 .select-box-color{
	  padding-left: 0px;
	}
}
@media (min-width: 980px) and (max-width: 1023px){
	.sch-list-1 .sch-item .sch-content-item {
	  padding: 20px 20px;
	}
	.sch-list-1 .select-box-color{
	  padding-left: 0px;
	}
}
@media (min-width: 1024px) and (max-width: 1199px){
	.sch-list-1 .sch-item .sch-content-item {
	  padding: 23px 48px;
	}
}
@media (min-width: 1200px) and (max-width: 1340px){
	
}
@media (min-width: 1500px){}