.loader {
    display: none;
    position: fixed;
    z-index: 9999999;
    background: #ffffffd1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
  }
  .loader.on{
    transition: 1s;
    display: flex;
  }

  .successOrder {
    display: flex;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .successOrder h1 {
  color: #88B04B;
  font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: 40px;
  }
  .successOrder p {
  color: #404F5E;
  font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
  font-size:20px;
  margin: 0;
  }
  .successOrder i {
    color: #9ABC66;
    font-size: 100px;
    background: var(--custom-color-2);
    padding: 0 51.8px;
    border-radius: 100%;
  }
  .successOrder > div {
    background: var(--custom-color-5);
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 3px #C8D0D8;
    display: inline-block;
    margin: 0 auto;
  }
  
  


.banner-box {
  width: 100%;
  display: block;
}
.banner-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.slider_home img{
  max-width: 100%;

}
.banner-item {
  width: 220px;
  position: relative;
  border: 4px solid var(--salmon-pink);
}
.banner-item span.showcase-img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--salmon-pink);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 15px;
}
.banner-item img.showcase-img {
  width: 100%;
}




.loading8 {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;

}

.loading8 .loading-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 180px;
}
/*
// Bouncy Up and Down
*/
.ball{
  background:#111;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 25px;
  left: 225px;
  border-radius: 50px;
  z-index: 1;
  animation: ball-y 2.5s ease-in infinite;
  transform-origin: 50% 50%;
}

/*
// The 8 of the 8-ball
// Rotates
*/
.inner-ball{
  background:#fff;
  width: 25px;
  font-weight: 800;
  border-radius: 50%;
  text-align: center;
  height: 25px;
  line-height: 25px;
  margin: 12px auto;
  animation: spin 2.5s infinite;
}

/*
// Ball Shadow
// Grow and shrink shadow
*/
.shadow {
  background: #333;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 25px;
  left: 225px;
  border-radius: 50px;
  bottom: 0;
  transform-origin: 50% 50%;
  transform: scaleY(0.25);
  animation: shadow-scale 2.5s infinite;
}


/*
// Container for ball and shadow
// This container moves both of these
// from left to right
*/
.ball-arc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: ball-x 2.5s cubic-bezier(0, 0, 0.35, 1) infinite;
}


/*
// Move from Left to Right
// Off Screen to Screen
// Moves the ball-arc container so both the shadow
// and ball have the same force from the side
*/
@keyframes ball-x {
  0% {
    transform: translateX(-275px);
  }
  100% {
    transform: translateX(0px);
  }
}

/*
// The "Bounce" is a series
// of translates that move the ball
// Up and Down
*/
@keyframes ball-y {
  0% {
    transform: translateY(-205px);
  }
  40% {
    transform: translateY(-100px);
  }
  65% {
    transform: translateY(-52px);
  }
  82% {
    transform: translateY(-25px);
  }
  92% {
    transform: translateY(-12px);
  }
  /*
  // Group animations together
  // Pulls the ball down each time
  */
  25%,
  55%,
  75%,
  87%,
  97%,
  100% {
    transform: translateY(0px);
    animation-timing-function: ease-out;
  }
}

/*
// Rotation
*/
@keyframes spin {
  0% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*
// Grow and Shrink Shadow
*/
@keyframes shadow-scale{
  0% {
    transform: scale(1) scaleY(0.25);
  }
  40% {
    transform: scale(1) scaleY(0.25);
  }
  65% {
    transform: scale(1) scaleY(0.25);
  }
  82% {
    transform: scale(1) scaleY(0.25);
  }
  92% {
    transform: scale(1) scaleY(0.25);
  }
  /*
  // Group animations together
  // When the ball gets closer to the floor the shadow is smaller
  // The shadow is larger the further the ball gets from the ground
  */
  25%,
  55%,
  75%,
  87%,
  97%,
  100% {
    transform: scale(0.75) scaleY(0.25);
    animation-timing-function: ease-out;
  }
}


.footer-nav-list {
  width: -webkit-calc(20% - 16px);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
.footer-nav-item {
  padding: 3px 0;
  font-size: 12px;
  width: calc(30% - 16px);
  color: white;
  min-width: 200px;
}
.footer-nav-item img {
  max-width: 100%;
  margin:4px 0px;
}

.link-red, .link-black {
  background: var(--salmon-pink);
  color: white;
  padding: 6px 10px;
  text-align: center;
  margin: 7px 0px;
}
.link-black{
  background: black;
}





@media (max-width: 600px) {


  .banner-item,
  .footer-nav-item {
    width: 100%;
  }
  
}