@import '../../assets/plugins/global/plugins.bundle.css';
@import '../../assets/css/style.bundle.css';
@import '../../assets/css/theme.css';
@import '../../assets/css/components/sidebar.css';

.rounded-1 {
  border-radius: 4px !important
}

.rounded-2 {
  border-radius: 8px !important
}

.rounded-3 {
  border-radius: 12px !important
}

.rounded-4 {
  border-radius: 16px !important
}


.shadow-on-hover:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}

/* theme color class */
.text-dark {
  color: var(--Taag_darkNavy) !important;
}
.text-medium-gray {
  color: var(--Taag_mediumGray) !important;
}


.is-size-1 {
  font-size: 4px !important;
}
.is-size-2 {
  font-size: 8px !important;
}
.is-size-3 {
  font-size: 12px !important;
}
.is-size-4 {
  font-size: 16px !important;
}
.is-size-5 {
  font-size: 18px !important;
}
.is-size-6 {
  font-size: 24px !important;
}

.is-clickable {
  cursor: pointer;
}

.switch input {
  display: none;
}

.switch {
  display: inline-block;
  width: 50px;
  height: 25px;
  margin: 8px;
  transform: translateY(50%);
  position: relative;
}

.slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 25px;
  box-shadow: 0 0 0 2px #d6d6d6, 0 0 4px #d6d6d6;
  cursor: pointer;
  border: 4px solid transparent;
  overflow: hidden;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #888;
  border-radius: 25px;
  transform: translateX(-22px);
  transition: .4s;
}

input:checked+.slider:before {
  transform: translateX(22px);
  background: #009ef7;
}

input:checked+.slider {
  box-shadow: 0 0 0 2px #009ef7, 0 0 2px #009ef7;
}

/* Email Verification Banner */
.email-verification-banner {
  width: 80%;
  flex-wrap: wrap;
  background-color: rgba(255, 193, 7, 0.8);
  z-index: 101;
}

.email-verification-text {
  max-width: 600px;
}

.resend-link {
  margin-top: 10px;
  margin-left: 0;
}


/* override global style */
.bb-feedback-button {
  z-index: 9999 !important;
}


@media (max-width: 480px) {
  #email-input {
    flex-direction: column;
    align-items: center !important;
  }
}

/* Font size adjustments for small screens */
@media (max-width: 767px) {
  .email-verification-banner .fs-1 {
    font-size: 1.25rem;
  }

  .email-verification-banner .email-verification-text {
    font-size: 0.9rem;
    text-align: left;
    padding: 0 10px;
  }

  .resend-link {
    margin-left: 10px;
    margin-top: 0;
  }

  .profile-data-item-value-text {
    max-width: 140px !important;
  }
}

@media (min-width: 768px) {
  .email-verification-banner {
    width: 75%;
  }
}

@media (min-width: 1500px) {
  .email-verification-banner {
    width: 50%;
  }
}
