#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  display: flex;
}

#spinner {
  display: flex;
  gap: 10px;
}

.dot {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  animation: bounce 1s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

#exit-intent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    display: flex;
}

.exit-intent-wrapper {
    padding: 30px 20px;
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    width: 500px;
}

.exit-intent-wrapper p {
    margin: 0;
    color: #002A49;
}

.exit-intent-wrapper p.exit-intent-header {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 14px;
    border-bottom: 1px solid #002a4947;
}

.exit-intent-wrapper p.exit-intent-text {
    font-weight: normal;
    font-size: 16px;
}

.exit-intent-cta {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.exit-intent-wrapper .exit-intent-cta button {
    display: block;
    border: 1px solid #002a49;
    background: white;
    color: #002a49;
    padding: 10px 15px;
    line-height: 1;
    margin-top: 0;
    font-size: 14px;
    outline: none;
}

.exit-intent-wrapper .exit-intent-cta button:hover {
    color: #002a49;
    outline: none;
}

.exit-intent-wrapper .exit-intent-cta button.primary {
    border: 1px solid #002a49;
    background: #002a49;
    color: white;
}

.exit-intent-wrapper .exit-intent-cta button.primary:hover {
    border: 1px solid #D92F74;
    background: #D92F74;
}

.exit-intent-wrapper .exit-intent-cta button.secondary,
.exit-intent-wrapper .exit-intent-cta button.secondary:hover {
    border: 1px solid #D92F74;
    background: #ffffff;
    color: #D92F74;
}

@media only screen and (max-width: 550px) {
 .exit-intent-wrapper {
    width: 90%;
  }
}