/*#region Whatsapp Button Style 1*/
.whatsappButton {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  padding: 0.7em 3.3em 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #009087;
  border: 1px solid #009087;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

.whatsappButton > svg {
  height: 30px;
  position: absolute;
  padding: 0px 5px;
  margin-top: -4px;
}

.whatsappButton:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.whatsappButton:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.whatsappButton:after {
  content: '';
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.whatsappButton:hover {
  color: #009087;
  border: 1px solid #ffffff;
}

.whatsappButton:hover:before {
  top: -35%;
  background-color: #ffffff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.whatsappButton:hover:after {
  top: -45%;
  background-color: #ffffff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/*#endregion Whatsapp Button Style 1*/

/*#region Whatsapp Button Style 2*/
.whatsappButton2 {
  font-family: inherit;
  font-size: 20px;
  background: #009087;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.whatsappButton2 span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.whatsappButton2 svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.whatsappButton2:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.whatsappButton2:hover svg {
  transform: translateX(5em) scale(1.5);
}

.whatsappButton2:hover span {
  transform: translateX(20em);
}

.whatsappButton2:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/*#endregion Whatsapp Button Style 2*/

/*#region Labels */
.labels-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 2px;
  align-items: center;
  margin-bottom: 12px !important;
}

label.category-label,
label.medium-label {
  font-family: 'Heebo', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.025rem;
  font-style: normal;
  color: #ffffff;
  border-radius: 0.15rem;
  -webkit-border-radius: 0.15rem;
  -moz-border-radius: 0.15rem;
  padding: 0.3rem 0.4rem;
  margin-right: 0.5rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  -webkit-box-shadow: -0.25px 0.75px 9px -0.25px rgba(85, 85, 85, 0.36);
  -moz-box-shadow: -0.25px 0.75px 9px -0.25px rgba(85, 85, 85, 0.36);
  box-shadow: -0.25px 0.75px 9px -0.25px rgba(85, 85, 85, 0.36);
}

label.category-label {
  background-color: #f4bd8d;
}

label.medium-label {
  background-color: #a7c3d3;
}
/*#endregion Labels */

.reveal-content-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4ece2; /* Adjust as needed */
}

.reveal-content-inner {
  opacity: 0;
  animation: fadeInLeft 1.5s ease-out forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-150px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
