* {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
}
@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.2rem;
    }
    .fs-4 {
        font-size: 1.2rem !important;
    }
}
.onboarding-wrapper {
  background: url('/static/images/reseller/background-image.jpg') no-repeat center center/cover;
  min-height: 100vh;
}
nav.onboard-nav {
  height: 120px;
  width: 250px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(156deg, white, transparent 52%);
}
.onboarding-wrapper .logo {
  margin: 20px;
  background: transparent;
  padding: 0;
  width: 100px;
}
.form-wrapper {
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.form-container {
  background-color: #f9f4eb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 610px;
}
.submit-form {
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  padding: 6px 18px;
  background: linear-gradient(#75c793, #1a749e);
}

/* Header Section */
.navbar.sticky-top {
  background: linear-gradient(#75c793, #1a749e);
}
img.logo {
  background: #fff;
  width: 200px;
  padding: 10px;
}
.icon {
  width: 60px;
}
.wallet {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.wallet img,
.notification-icons img,
.edit-profile img,
a.nav-link.active .icon,
a.nav-link:hover .icon {
  filter: invert(1);
}
.notification-icons {
  border-right: 1px solid #fff;
}
.notification-icons img,
.edit-profile img,
.date-range img {
  width: 40px;
}
.admin-info {
  display: flex;
  align-items: center;
}
.edit-profile {
  margin-left: 20px;
}

.navbar .navbar-toggler {
  top: 0.25rem;
  right: 1rem;
}
.nav.sub-menu {
  padding-left: 30px;
}
.nav.sub-menu li.nav-item {
  border: none;
  margin: 0;
  position: relative;
}
.nav.sub-menu li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  bottom: 0;
  width: 25px;
  height: 30px;
  border-radius: 5px;
  border-bottom: 1px solid #1a749e;
  border-left: 1px solid #1a749e;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
}
.header-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #fff;
  padding: 0 20px;
}
.refresh-btn {
  background: linear-gradient(to right, #75c793, #1a749e);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: none;
}
.nav-icon img {
  width: 30px;
}

/* Sidebar Section */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 80px 0 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}
[role='main'] {
  padding-top: 48px;
}
a.nav-link {
  padding: 5px 15px;
  display: grid;
  grid-template-columns: 34px auto;
  grid-gap: 10px;
  align-items: center;
  color: #000;
}
a.nav-link.active,
a.nav-link:hover {
  background: #1a749e;
  color: #fff;
  border-radius: 6px;
}
li.nav-item:first-child {
  border: none;
}
li.nav-item {
  padding: 5px 0px;
  margin-inline: 30px;
  border-top: 1px solid #1a749e;
}

/* Main Section */
.card-warapper {
  background: linear-gradient(to right, #75c793, #1a749e);
  border-radius: 12px;
  padding: 3px;
}
.card-custom {
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.card-custom p {
  margin: 0;
}
.select-regions {
  padding-bottom: 16px;
  position: relative;
}
.select-regions:after {
  content: '';
  width: calc(100% - 24px);
  height: 1px;
  background: linear-gradient(to right, #75c793, #1a749e);
  position: absolute;
  bottom: 0;
  left: 12px;
  margin: 0 auto;
}

/* e-SIM Plan Card */
.card-heading {
  color: #fff;
  padding: 12px;
}
.esim-plans .card-warapper {
  padding: 5px;
}
.esim-plans .card-custom {
  padding: 12px;
  text-align: left;
}
.pack {
  margin: 0;
  padding: 10px 5px;
  border: 1px solid gray;
  border-radius: 12px;
  background: linear-gradient(45deg, rgba(26, 116, 158, 0.17), rgba(26, 116, 158, 0.08));
  font-size: 14px;
}
.validity,
.coverage {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
}
.qty {
  display: flex;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}
.qty-input {
  color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.qty-input .product-qty,
.qty-input .qty-count {
  font-weight: bold;
  border: none;
  display: inline-block;
  min-width: 0;
  height: 30px;
  width: 30px;
  line-height: 1;
}
.qty-input .product-qty {
  min-width: 0;
  display: inline-block;
  text-align: center;
  appearance: textfield;
  background: linear-gradient(transparent, #999, transparent);
  margin-inline: 4px;
}
.qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  border: 4px solid #999;
  width: 24px;
  height: auto;
  border-radius: 50%;
  background: transparent;
  color: #999;
}
.product-qty {
  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
  }
}
.pack-details .more-info {
  font-size: 12px;
  font-weight: 600;
  color: rgb(115, 175, 122);
}
.price {
  font-weight: 600;
}
.price-sale {
  font-size: 16px;
}
.price span {
  font-weight: normal;
  font-size: 15px;
}
.price-mrp span {
  font-size: 12px;
  text-decoration: line-through;
  text-decoration-color: red;
}
.price .line-through {
  color: red;
}
img.icon-small {
  width: 12px;
}
img.icon-medium {
  width: 22px;
}

/* Login Page */
.login-section {
  background: url('/static/images/reseller/login-image.jpg') no-repeat center center/cover;
  min-height: 100vh;
}
.login-wrapper {
  background: transparent;
  box-shadow: none;
  text-align: center;
  padding: 0;
}
.login-form {
  padding: 30px;
  text-align: left;
  background: rgba(26, 116, 158, 0.8);
  border-radius: 12px;
}
.login-form label {
  color: #fff;
}
button.login-btn {
  background: #fff;
  border-radius: 30px;
  color: rgb(110, 115, 39);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 20px;
}
button.login-btn:hover {
  background: rgb(110, 115, 39);
  border-color: rgb(110, 115, 39);
  color: #fff;
}
.form-control:focus {
  border-color: rgb(110, 115, 39);
  box-shadow: none;
}
a.forget-pwd {
  color: #fff;
  text-decoration: none;
}

/* Customer Cart */
.input-filed .form-control-plaintext {
  border: 1px solid #1a749e;
  border-radius: 5px;
  padding-inline: 10px;
}
.cart-wrapper table tr {
  border-color: rgb(57, 152, 255);
}
button.btn.btn-primary {
  background: #04a05f;
  border-radius: 30px;
  padding-inline: 20px;
  padding-block: 8px;
  letter-spacing: 1px;
  font-size: 18px;
  border-color: transparent;
}
.cart-icon {
  position: absolute;
  right: 12px;
  bottom: -15px;
}
.cart-icon img {
  width: 80px;
}
.cart {
  position: fixed;
  bottom: 0;
  width: 78%;
  background: #fff;
  height: 45px;
}

/* Activation */
.card-action {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #47ba7c;
  font-size: 16px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.card-action__share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-inline: 20px;
}
.card-action img {
  width: 40px;
}
.card-action__remove {
  border-right: 1px solid #47ba7c;
  margin-inline: 5px;
}
.card-action__order{
  padding: 5px 10px;
}
.card-action__details {
  width: 65%;
  background-color: #47ba7c;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
}
.card-action__download img,
.card-action__whatsapp img {
  padding: 8px;
}
.card-action__mail img {
  margin-inline: 8px;
}
.divider {
  background: linear-gradient(to right, #75c793, #1a749e);
  width: 100%;
  height: 1px;
  margin-block: 15px;
  position: relative;
}
.divider .cart-icon {
  position: absolute;
  right: 0;
  bottom: -40px;
  background: #fff;
}
.divider .btn-box {
  position: absolute;
  right: 0;
  bottom: -20px;
  background: #fff;
  padding-left: 12px;
}

/* Thank You Page */
.thanks-page h1 {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 1px;
}
.thanks-page h1 span {
  color: #04a05f;
}
.card.thanks-card {
  border-radius: 10px;
  padding-inline: 10px;
}
h5.card-header {
  background: #fff;
  border-color: #04a05f;
  padding-block: 12px;
}
.thanks-page td {
  padding-inline: 10px;
}
.qr-codes {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.qr-codes button img {
  width: 20px;
}
.qr-codes button {
  border: none;
  background: linear-gradient(to right, #75c793, #1a749e);
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}
.qr-codes button img {
  width: 20px;
  filter: invert(1);
  margin-right: 10px;
}
.kyc-section {
  background: url('/static/images/reseller/kyc_bg.jpg') no-repeat center center / cover;
  background-size: cover;
  min-height: 100vh;
}
.kyc-section #sidebarMenu {
  background-color: transparent !important;
}
form.kyc-form {
  background: rgb(211 226 244);
  padding: 15px;
  border-radius: 20px;
}
form.kyc-form label {
  text-align: right;
  font-weight: 500;
}
form.kyc-form span {
  font-size: 10px;
}
form.kyc-form .label-two {
  font-size: 14px;
  margin-bottom: 0;
}
.table > thead > tr > th {
  background-color: #5cc98b;
  padding-block: 10px;
}
.table > tbody > tr:nth-child(odd) > td,
.table > tbody > tr:nth-child(odd) > th {
  background-color: #dfeeff;
  border: none;
  padding-block: 10px;
}
.table > tbody > tr:nth-child(even) > td,
.table > tbody > tr:nth-child(even) > th {
  background-color: #f0f7ff;
  border: none;
  padding-block: 10px;
}
.table > tbody > tr > td:first-child,
.table > tbody > tr > th:first-child,
.table > thead > tr > th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.table > tbody > tr > td:last-child,
.table > tbody > tr > th:last-child,
.table > thead > tr > th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  nav.onboard-nav {
    height: 80px;
    width: 100%;
    position: relative;
    background: linear-gradient(156deg, white, transparent 70%);
  }
  .form-wrapper {
    margin-block: 5px;
  }
  .sidebar {
    top: 6rem;
  }
  .header-details {
    padding: 0;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  .kyc-header .header-details {
    padding-inline: 20px;
  }
  img.logo {
    width: 100px;
  }
  .icon {
    width: 40px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
  .card-action__share {
    flex-wrap: wrap;
  }
  form.kyc-form label {
    text-align: left;
  }
}

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    z-index: 9999; /* Ensure the loader is on top of other content */
    display: none; /* Initially hidden */
}

/* Loader Spinner Styles */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the spinner horizontally and vertically */
    border: 4px solid #f3f3f3; /* Light gray border for spinner */
    border-top: 4px solid #3498db; /* Blue border for spinner animation */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Spinner animation */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pack-details .row .col-7{
    padding-right: 3px;
}

.pack-details .row .col-5{
    padding-left: 3px;
}
.purchase-regions{
  padding-top: 30px;
  padding-bottom: 0px;
}
.purchase-text-primary{
  font-weight: 600;
  font-size: 22px;
}
.text-secondary{
  font-size: 12px;
}
.purchase-regions>div{
  margin-bottom: 0px;
}

.help-icon {
  margin-left: 10px;
  font-size: 20px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #333;
  font-weight: bold;
  width: 35px;
  height: 35px;
  padding: 0;
  line-height: 1;
  transition: all 0.2s;
}
.help-icon:hover {
  background-color: #1a749e;
  color: #fff;
}

.help-box {
  background-color: #f8f9fa;
  border-left: 4px solid #1a749e;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.875rem;
  color: #333;
}
