.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;

  /* position: fixed;
  display: flex;
  align-items: center;
  z-index: 1000; */
}

.whatsapp-button {
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

.whatsapp-list {
  display: none;
  background-color: #25D366;
  padding: 10px;
  border-radius: 10px;
  position: absolute;
  bottom: 70px; /* Position the list above the button */
  right: 0;
  width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.whatsapp-list li {
  margin-bottom: 10px;
}

.whatsapp-list a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

.whatsapp-list a:hover {
  color: white;
  background-color: #128C7E;
}

/* Gaya dasar untuk carousel container */
.carousel-container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    text-align: center;
}

/* Gaya untuk video slide */
.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Gaya untuk setiap item video */
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

/* Gaya responsif untuk iframe */
.carousel-item iframe {
    width: 100%;
    height: auto; /* Tinggi otomatis untuk menjaga aspek rasio */
}

.carousel-container {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  text-align: center;
}

/* Gaya untuk video slide */
.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Gaya untuk setiap item video */
.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

/* Gaya untuk tombol navigasi */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.carousel-button.left {
  left: 0;
}

.carousel-button.right {
  right: 0;
}

/* Media query untuk ponsel (maksimum lebar 768px) */
@media (max-width: 768px) {
    .carousel-item iframe {
        width: 100%;
        height: 200px; /* Sesuaikan tinggi untuk ponsel */
    }
}

/* Media query untuk tablet (maksimum lebar 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .carousel-item iframe {
        width: 100%;
        height: 300px; /* Sesuaikan tinggi untuk tablet */
    }
}

/* Media query untuk desktop (lebar 993px ke atas) */
@media (min-width: 993px) {
    .carousel-item iframe {
        width: 100%;
        height: 480px; /* Tinggi standar untuk desktop */
    }
}

#carousel-slider {
    position: relative;
  }
  
  #carousel-slider .carousel-indicators {
    bottom: -25px;
  }
  
  #carousel-slider .carousel-indicators li {
    border: 1px solid #ffbd20;
  }
  
  #carousel-slider a i {
    border: 1px solid #777;
    border-radius:50%;
    font-size: 28px;
    height: 50px;
    padding: 8px;
    position: absolute;
    top: 50%;
    width: 50px;
    color:#777;
  }
  
  #carousel-slider a i:hover {
    background:#E8CE0E;
    color:#fff;
    border: 1px solid #E8CE0E;
  }
  
  #carousel-slider 
  .carousel-control {
    width:inherit;
  }
  
  #carousel-slider .carousel-control.left i {
    left:-25px
  }
  
  #carousel-slider .carousel-control.right i {
    right: -25px;
  }
  
  #carousel-slider
  .carousel-control.left, 
  #carousel-slider
  .carousel-control.right {
    background: none;
  }