.reactiveGridType-basic {
  display: flex;
  flex-direction: column;
}
.reactiveGridType-basic .reactiveGridImage {
  width: 100%;
  height: 320px;
  background-color: #ffffff;
  border: 1px solid #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.reactiveGridType-basic .reactiveGridImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reactiveGridType-basic .reactiveGridImage .reactiveBestSellersSticker {
  text-align: center;
  color: #ffffff;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
  padding-top: 40px;
  padding-left: 80px;
  padding-right: 80px;
  background-color: #FEC601;
  position: absolute;
  top: -70px;
  left: 22px;
  -webkit-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  -moz-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  -ms-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  -o-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
}
.reactiveGridType-basic .reactiveGridImage .reactiveOnSaleSticker {
  text-align: center;
  color: #ffffff;
  line-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  background-color: #F00534;
  position: absolute;
  top: 25px;
  right: 0;
}
.reactiveGridType-basic .reactiveGridImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
.reactiveGridType-basic .reactiveGridImage .reactiveViewDetails {
  color: #ffffff;
  line-height: 45px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  background-color: rgba(68, 68, 68, 0.69);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  position: absolute;
  bottom: -45px;
}
.reactiveGridType-basic .reactiveGridContents {
  width: 100%;
  display: flex;
  flex-direction: column;
  /*margin-top: 15px;*/
  overflow: hidden;
  border: 1px solid #efefef;
  border-bottom-width: 2px;
  border-top: 0;
  margin-top: 0;
  padding: 15px 20px;
}
.reactiveGridType-basic .reactiveGridContents .reactiveGridContentTop {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
  margin-bottom: 3px;
}
.reactiveGridType-basic .reactiveGridContents .reactiveGridContentTop .reactiveProductTitle {
  margin: 0 0 10px;
  width: 100%;
  line-height: 1;
}
.reactiveGridType-basic .reactiveGridContents .reactiveGridContentTop .reactiveProductTitle a {
  color: #454545;
  line-height: 1.2;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentTop .reactiveProductTitle a:hover{
  color: #7DBD38;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentTop .reactiveMetaWrapper{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentTop .reactiveProductPrice {
  color: #7DBD38;
  font-size: 18px;
}
.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #F2F2F2;
}
.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveAddToCart {
  color: #626262;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: none;
  outline: 0;
  position: relative;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveAddToCart:hover{
  color: #7DBD38;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveAddToCart::before {
  content: '\f370';
  font-family: 'ionicons';
  color: #626262;
  margin-right: 10px;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveAddToCart:hover::before{
  color: #7DBD38;
}
.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveRatingPro{
  font-size: 17px;
  display: flex;
  align-items: center;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveRatingPro > .star{
  margin-right: 2px;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveRatingPro > .star:last-child{
  margin-right: 0
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveDetails {
  color: #626262;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: none;
  outline: 0;
  position: relative;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveDetails:hover{
  color: #7DBD38;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveDetails::before {
  content: '\f0ca';
  font-family: 'FontAwesome';
  color: #626262;
  margin-right: 10px;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveDetails:hover::before{
  color: #7DBD38;
}

.reactiveGridType-basic .reactiveGridContents .reactiveGridContentBottom .reactiveDetails:hover {
  bottom: 0;
}

.reactiveListView {
  flex-wrap: wrap;
}
.reactiveListView .reactiveGridType-basic {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  /*flex-basis: 100%;
  max-width: 100%;*/
  margin-bottom: 40px;
}
.reactiveGridType-basic {
  margin-bottom: 40px;
}
.reactiveListView .reactiveGridType-basic:last-of-type {
  margin-bottom: 0;
}
@media( min-width: 778px) {
  .reactiveListView .reactiveGridImage{
    width: 370px;
    height: auto;
  }
  .avada-large {
    display: block;
  }
  .avada-small {
    display: none;
  }
}



.reactiveListView .reactiveGridType-basic .reactiveGridContents {
  padding-left: 30px;
  border: 0;
}
@media( max-width: 481px) {
  .reactiveListView .reactiveGridType-basic .reactiveGridContents {
    padding-left: 0;
    padding-right: 0;
    border: 0;
  }
  .avada-large {
    display: none;
  }
  .avada-small {
    display: block;
  }
}
.reactiveRatingPro > .star {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #7DBD38;
}
.reactiveRatingPro > .star.ratingOne:before {
  content: "\f4b3";
}
.reactiveRatingPro > .star.ratingHalf:before {
  content: "\f4b1";
}
.reactiveRatingPro > .star.ratingNone:before {
  content: "\f4b2";
}
@media (max-width: 767px) {
  .reactiveListView .reactiveGridType-basic {
    flex-direction: column;
  }
  .reactive-container-fluid {
    padding-right: 0;
    padding-left: 0;
}
}
.reactiveGridType-basic .reactiveGridImage .fusionRollover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  transition: all 0.5s ease-in-out;
  top: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(top,rgba(160,206,78,0.925) 0,#a0ce4e 100%);
  background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(160,206,78,0.925)),color-stop(1,#a0ce4e));
  background-image: filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#a0ce4e,endColorstr=#a0ce4e),alpha(opacity=0);
  background-image: -webkit-linear-gradient(top,rgba(160,206,78,0.925) 0,#a0ce4e 100%);
  background-image: -moz-linear-gradient(top,rgba(160,206,78,0.925) 0,#a0ce4e 100%);
  background-image: -ms-linear-gradient(top,rgba(160,206,78,0.925) 0,#a0ce4e 100%);
  background-image: -o-linear-gradient(top,rgba(160,206,78,0.925) 0,#a0ce4e 100%);
}

.reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent{
  display: inline-flex;
  align-items: center;
  flex-direction: column;
}

.reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent .flexLink {
  display: flex;
  justify-content: center;
}


.reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent .link,
.reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent .gallery {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  margin-left: 8px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
// .reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent .link:before {
//   position: absolute;
//   content: "\f1fe";
//   display: inline-block;
//   font-family: "Ionicons";
//   speak: none;
//   font-style: normal;
//   font-weight: normal;
//   font-variant: normal;
//   text-transform: none;
//   text-rendering: auto;
//   line-height: 1;
//   -webkit-font-smoothing: antialiased;
//   font-size: 25px;
//   transform: rotate(-35deg);
//   left: 10px;
//   top: 5px;
// }
// .reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent .gallery:before {
//   position: absolute;
//   content: "\f4a4";
//   display: inline-block;
//   font-family: "Ionicons";
//   speak: none;
//   font-style: normal;
//   font-weight: normal;
//   font-variant: normal;
//   text-transform: none;
//   text-rendering: auto;
//   line-height: 1;
//   -webkit-font-smoothing: antialiased;
//   font-size: 22px;
//   left: 12px;
//   top: 8px;
// }
.reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent h4 {
  margin: 0;
  padding: 0;
  line-height: 26px;
  margin-top: 10px;
}
.reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent h4 a {
  color: #454545;
  font-size: 17px;
}
.reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent p {
  margin: 0;
}
.reactiveGridType-basic .reactiveGridImage .fusionRollover .rolloverContent p a {
  color: #454545;
  font-size: 12px;
}
.reactiveGridType-basic .reactiveGridImage:hover .fusionRollover {
  left: 0;
}
