:root {
  --border-sm-radius: 5px;
  --border-md-radius: 5px;
  --border-lg-radius: 25px;
}
a {
  cursor: pointer !important;
}
.rtl{
  direction: rtl !important;
}

.animated-background {
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: #f6f6f6;
  background: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%);
  background-size: 800px 104px;
  height: 96px;
  position: relative;
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

.inner .description.clamp{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.Toastify__toast{
  width: 95%;
}

.Toastify__toast-body{
  width: 100%;
  text-align: right;
}
.Toastify__close-button{
  display: flex;
  justify-content: right;
  flex-shrink: 12;
}
.Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right{
  top: 1em !important;
}
.disabled{
  cursor: not-allowed !important;
}
.axil-product-list .thumbnail{
  height: 120px;
}
.axil-product-list .thumbnail a, .axil-product-list .thumbnail a img{
  height: 100%;
}

@media screen and (max-width: 479px){
  .axil-product-list .thumbnail a, .axil-product-list .thumbnail a img{
    height: unset;
  }  
}

.loading-container .fa-times{
  line-height: 2;
}

/***** loading ***********/
.loading-container{
  position: relative;
  display: block !important;
  /* justify-content: center;
  align-items: center;
  flex-wrap: wrap; */
  overflow: hidden;
}

.loading-container.add-to-cart{
  overflow: unset;
}

.spinner-container{
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgba(0,0,0,0.5); */
    background-color: rgba(255,255,255,0.6);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: initial;
    border-radius: 5px;
    display: none;
}
.spinner-eff::before, .spinner-eff::after {
  content: "";
  display: block;
}
.spinner-eff {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
}
.spinners-container .spinner-block {
  text-align: center;
}
.spinner-eff.spinner-eff-3 .circle-1 {
  width: 100%;
  height: 100%;
  background-color: #FF497C;
  top: 0;
  -webkit-animation: pulse 1.6s linear 0s infinite;
  animation: pulse 1.6s linear 0s infinite;
}
.spinner-eff.spinner-eff-3 .circle {
  border-radius: 100px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(1);
  transform-origin: center center;
}
.spinner-eff.spinner-eff-3 .circle-2 {
  width: 66.6%;
  height: 66.6%;
  background-color: #FF497C;
  top: 16.5%;
  -webkit-animation: pulse-2 1.6s linear 0s infinite;
  animation: pulse-2 1.6s linear 0s infinite;
}
.spinner-eff.spinner-eff-3 .circle-3 {
  width: 33.3%;
  height: 33.3%;
  background-color: #FF497C;
  top: 33.3%;
}
.spinner-eff.spinner-eff-3 .circle {
  border-radius: 100px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(1);
  transform-origin: center center;
}


@keyframes pulse{
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes pulse-2{
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.single-product-content .description.clamp{
  display: block;
}