@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*-- notification style --*/
body .modal-open {
  overflow: hidden;
}

.notifiction-modal {
  overflow: hidden !important;
}

.notifiction-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
/*  display: flex !important; */
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
}

.notifiction-popup .modal-dialog {
  padding: 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  overflow-y: hidden;
}
.notifiction-popup .modal-content {
  background: transparent;
  padding: 0;
  margin: 0;
  max-width: 470px;
  margin: auto;
  box-shadow: none;
  border: none;
  width: 100%;
  position: relative;
}
.notifiction-popup .notification-popup-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border: none;
  outline: none;
  margin: auto;
  position: absolute;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  left: 45%;
  right: 45%;
  opacity: 1;
}

.notifivation-popup-body {
  border-radius: 20px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.notifivation-popup-body img {
  margin-top: -100px;
}
.notifivation-popup-body h6 {
  color: #111;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 166.667%;
  text-transform: uppercase;
  margin-top: 20px;
}
.notifivation-popup-body h4 {
  color: #111;
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-weight: 700;
  line-height: 133.333%;
  max-width: 300px;
  margin: auto;
  margin: 10px 0px 20px 0px;
}
.notifivation-popup-body h5 {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 20px;
}
.notifivation-popup-body h5 span {
  color: #35B7F3;
}

.promocode {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #007bff;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.tooltip-text {
  position: absolute;
  bottom: 100%; /* show above */
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff !important;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 150%;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.promocode.copied .tooltip-text {
  opacity: 1;
}

/*-- alart box --*/
.alerts-container {
  position: absolute;
  top: 13px;
  right: 20px;
  max-width: 400px;
  width: 100%;
}

.custom-alert {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  margin: 10px auto;
  position: relative;
  font-family: sans-serif;
  border: 1px solid;
  gap: 12px;
}

.custom-alert .alert-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  scale: 1.2;
}

.progress-ring__circle {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s;
}

.alert-icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 18px;
  transform: translate(-50%, -50%);
}

.alert-content strong {
  color: #111;
  font-family: Inter;
  font-size: 15px;
  font-weight: 700;
  line-height: 133.333%;
  text-transform: uppercase;
}

.alert-content p {
  color: #333;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
  padding-right: 20px;
}

.close-alert {
  position: absolute;
  top: 20%;
  right: 16px;
  font-size: 28px;
  color: #555;
  cursor: pointer;
}

/* Type-specific styling */
.error-alert {
  border-radius: 10px;
  border: 1px solid rgba(239, 51, 51, 0.3);
  background: rgba(254, 226, 223, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.error-alert .alert-icon {
  background: rgba(239, 51, 51, 0.15);
}

.warning-alert {
  border-radius: 10px;
  border: 1px solid rgba(252, 162, 26, 0.3);
  background: rgba(255, 228, 199, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.warning-alert .alert-icon {
  background: rgba(252, 162, 26, 0.15);
}

.success-alert {
  border-radius: 10px;
  border: 1px solid rgba(8, 170, 84, 0.3);
  background: rgba(185, 223, 198, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.success-alert .alert-icon {
  background: rgba(8, 170, 84, 0.15);
}

.info-alert {
  border-radius: 10px;
  border: 1px solid rgba(53, 183, 243, 0.3);
  background: rgba(196, 233, 251, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.info-alert .alert-icon {
  background: rgba(53, 183, 243, 0.15);
}

.progress-ring__circle {
  stroke-dasharray: 126;
  /* Any default value, will be overwritten by JS */
  stroke-dashoffset: 126;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s;
}

@media only screen and (max-width: 768px) {
  .notification-bar .bar-inner p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  .team-login-tab-content {
    padding: 30px 15px 20px 15px;
  }
  .bar-inner button {
    width: 80px;
  }
  .notifivation-popup-body h6 {
    font-size: 16px;
  }
  .notifivation-popup-body h4 {
    font-size: 25px;
  }
  .notifivation-popup-body h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .alerts-container {
    max-width: 320px;
  }
}/*# sourceMappingURL=style.css.map */