/*** Flip Cart Class - Start Here **/
.w3a-flip-card {
  background-color: transparent;
  width: 100%;
  
  perspective: 1000px;
  cursor:pointer;
  
}

.w3a-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  
  -webkit-transition: transform 0.6s;
  -webkit-transform-style: preserve-3d;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.w3a-flip-card:hover .w3a-flip-card-inner {
  transform: rotateY(180deg);
  
  -webkit-transform: rotateY(180deg);
}

.w3a-flip-card-front, .w3a-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.w3a-flip-card-front {
  background-color: #fff;
  color: black;
  z-index: 2;
}

.w3a-flip-card-back {
  background-color: var(--button-sbc);
  color:  var(--button-stc);
  z-index: 3;
  
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  
}

/*** Flip Cart Class - End Here **/

/*** Sticky  Class - Start Here **/



/*** Sticky  Class - End Here **/

.w3a-header-sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.w3a-right-sticky {
  position: fixed;
  right: 0;
  /*width: 100%;*/
}

.w3a-left-sticky {
  position: fixed;
  left: 0;
  /*width: 100%;*/
}

.w3a-cart-sticky {
  position: fixed;
  right: 0;
  top:150px;
}