@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html {
  font-family: "Poppins", sans-serif;
}

.activites {
  --mask: radial-gradient(10.93px at 50% 15.4px, #0000ff 99%, #0000 101%)
      calc(50% - 14px) 0/28px 100%,
    radial-gradient(10.93px at 50% -8.4px, #0000 99%, #000 101%) 50% 7px/28px
      100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-image: url();
}
button:hover .whatsapp-details {
  display: block;
}

.whatsapp-details {
  margin-right: 10px; /* add some space between the button and the details */
  margin-bottom: 20px;
  width: 15em;
}

.accordion-content {
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
}
.accordion-active .accordion-toggle {
  background-color: #ff5b5c;
  border-radius: 20px;
  padding: 10px;
  color: white;
}
.accordion-active .accordion-toggle i {
  color: white;
}

.accordion-toggle {
  margin: 0px;
  padding: 10px;
  border-radius: 20px;
}

.accordion {
  margin-bottom: 10px;
}

.accordion-active .accordion-toggle svg {
  transform: rotate(180deg);
  stroke: #ffffff; /* Add this line to change the color to white */
}

.accordion-toggle svg {
  stroke: #000;
}

.tablink {
  color: #696969; /* Warna teks default untuk tab */
}

.tablink.active {
  color: white; /* Warna teks untuk tab yang aktif */
  background-color: #1da1f2; /* Warna background tab aktif */
}
