.modal,
.modal * {
  pointer-events: auto !important;
}
.navbar .nav-link {
    --bs-nav-link-font-size: 13px;
}
.wrapperAlert .wrapperAlert {
  width: 500px;
  padding-top:200px;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  border: thin solid #ddd;
}
.wrapperAlert .topHalf {
  width: 100%;
  color: white;
  overflow: hidden;
  min-height: 300px;
  position: relative;
  padding: 40px 0;
  background: black;
  background: -webkit-linear-gradient(45deg, #019871, #0e241c);
}
.wrapperAlert .topHalfDanger{
  background: -webkit-linear-gradient(45deg, #af2637, #831818);
}
.wrapperAlert .topHalf p {
  margin-bottom: 30px;
}
.wrapperAlert svg {
  fill: white;
}
.wrapperAlert .topHalf h1 {
  font-size: 2.25rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-shadow: 0 2px rgba(128, 128, 128, 0.6);
  /* Original Author of Bubbles Animation -- https://codepen.io/Lewitje/pen/BNNJjo */
}
.wrapperAlert .bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.wrapperAlert li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  /* fade(green, 75%);*/
  bottom: -160px;
  -webkit-animation: square 10s infinite; /* Reduced duration from 20s to 10s */
  animation: square 10s infinite; /* Reduced duration from 20s to 10s */
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.wrapperAlert li:nth-child(1) {
  left: 10%;
}

.wrapperAlert li:nth-child(2) {
  left: 20%;
  width: 80px;
  height: 80px;
  animation-delay: 1s; /* Adjusted delay */
  animation-duration: 5s; /* Adjusted duration */
}

.wrapperAlert li:nth-child(3) {
  left: 25%;
  animation-delay: 0.2s; /* Adjusted delay */
}

.wrapperAlert li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-duration: 7s; /* Adjusted duration */
  background-color: rgba(255, 255, 255, 0.3);
  /* fade(white, 25%); */
}

.wrapperAlert li:nth-child(5) {
  left: 70%;
}

.wrapperAlert li:nth-child(6) {
  left: 80%;
  width: 120px;
  height: 120px;
  animation-delay: 0.8s; /* Adjusted delay */
  background-color: rgba(255, 255, 255, 0.2);
  /* fade(white, 20%); */
}

.wrapperAlert li:nth-child(7) {
  left: 32%;
  width: 160px;
  height: 160px;
  animation-delay: 1s; /* Adjusted delay */
}

.wrapperAlert li:nth-child(8) {
  left: 55%;
  width: 20px;
  height: 20px;
  animation-delay: 2s; /* Adjusted delay */
  animation-duration: 14; /* Adjusted duration */
}

.wrapperAlert li:nth-child(9) {
  left: 25%;
  width: 10px;
  height: 10px;
  animation-delay: 1.1s; /* Adjusted delay */
  animation-duration: 14s; /* Adjusted duration */
  background-color: rgba(255, 255, 255, 0.3);
  /*fade(white, 30%);*/
}

.wrapperAlert li:nth-child(10) {
  left: 90%;
  width: 160px;
  height: 160px;
  animation-delay: 0.5s; /* Adjusted delay */
}

@-webkit-keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-500px) rotate(600deg);
  }
}

@keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-500px) rotate(600deg);
  }
}

.wrapperAlert .bottomHalf {
  align-items: center;
  padding: 35px;
}

.wrapperAlert .bottomHalf p {
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.wrapperAlert button {
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 12px;
  padding: 10px 18px;
  background-color: #019871;
  text-shadow: 0 1px rgba(128, 128, 128, 0.75);
}


.video-wrapper {
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #021D47;
    opacity: 0.8; /* Adjust overlay strength */
    z-index: 1;
    pointer-events: none;
}


.wrapperAlert button:hover {
  background-color: #85ddbf;
}