.fixed {
  position: fixed;
}

.onlyMobile-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 40%;
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none; /* Hidden initially */
}
@media (max-width: 1020px) {
  .onlyMobile-popup {
    width: 75%;
  }
}

@media (max-width: 568px) {
  .onlyMobile-popup {
    width: 100%;
  }
}

.onlyMobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
  display: none; /* Hidden initially */
}

.onlyMobile-show {
  display: block; /* Show element */
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

/* Additional CSS for transition and styling */
.transition-opacity {
  transition: opacity 0.3s;
}

.z-[80] {
  z-index: 80;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.64);
}

.modal-content {
  position: relative;
  margin: 10% auto;
  padding: 0;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: slide-in 0.3s ease-in-out;
}

.modal-content video {
  width: 100%;
  height: 315px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 100;
}
