.mn-base-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: -2px 1px 15px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  padding: 0px 16px 16px 16px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.main-section-title .section-title {
  font-family: "Rubik-Medium";
  font-size: 16px;
  font-weight: 500;
  color: #080808;
  line-height: normal;
}

.main-section-title .section-sub {
  font-size: 14px;
  line-height: 20px;
  color: #080808;
  margin-bottom: 0;
}

/* 
.main-section-title.mb-18 {
  margin-bottom: 18px;
} */

.manage-cont {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Base container styles */
.plan-manage-container {
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Tabs styling with improved accessibility */
.plan-tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  margin: -16px -16px 0px;
}

.plan-tab {
  flex: 1;
  padding: 16px 8px;
  background: none;
  border: none;
  font-size: 16px;
  font-family: "Rubik-Medium";
  color: #080808;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  min-height: 44px;
  /* Accessibility: minimum touch target */
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-tab:hover {
  color: #ed1c24;
}

.plan-tab:focus {
  outline: 2px solid #ed1c24;
  outline-offset: -2px;
  z-index: 1;
}

.plan-tab.active {
  color: #ed1c24;
}

.plan-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ed1c24;
  border-radius: 1px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Plan details section */
.plan-details {
  animation: fadeIn 0.4s ease-out;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-name,
.plan-offer {
  font-size: 16px;
  font-family: "Rubik-Medium";
  color: #080808;
  line-height: 24px;
  font-weight: 500;
}

.plan-renewal {

  font-size: 14px;
  color: #080808;
  line-height: 20px;
  margin-top: 4px;
}

.allowance-cards-container {
  padding: 0px;
  overflow: hidden;
}

.allowance-cards-container .swiper {
  overflow: visible;
  padding-bottom: 0;
}

.allowance-cards-container .swiper .swiper-horizontal>.swiper-pagination-bullets,
.allowance-cards-container .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -18px;
}

.allowance-cards-container .swiper .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.allowance-cards-container .swiper .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  width: 10px;
  border-radius: 10px;
  height: 2px !important;
  margin: 0 2px;
}

.allowance-cards-container .swiper .swiper-pagination-bullet-active {
  width: 30px !important;
  background-color: #ed1c24;
  height: 2px !important;
}

/* Allowance cards with improved layout */
.allowance-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px 4px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d2d5db;
  background: #fff;
}

/* .allowance-card:hover {
  border-color: #ed1c24;
}

.allowance-card:hover::before {
  transform: scaleX(1);
}

.allowance-card:focus-within {
  outline: 2px solid #ed1c24;
  outline-offset: 2px;
} */

.allowance-icon {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  color: #ed1c24;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .allowance-card:hover .allowance-icon {
  transform: scale(1.1);
} */

.allowance-value {
  font-size: 16px;
  font-family: "Rubik-Medium";
  color: #080808;
  margin-bottom: 4px;
  line-height: 24px;
}

.allowance-value img {
  width: 20px;
  height: 16px;
}

.allowance-label {

  font-size: 12px;
  color: #080808;
}

/* Separator line with animation */
.separator-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ed1c24, transparent);
  margin: 20px 0;
  opacity: 0.3;
  position: relative;
}

.separator-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 100%;
  background: #ed1c24;
  transform: translateX(-50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

/* Button styling matching the image */
.change-plan-button {
  width: 100%;
  padding: 10px 14px;
  background-color: #ffffff;
  font-size: 14px;
  color: #080808;
  cursor: pointer;
  font-family: "Rubik-Medium";
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  transition: background-color 0.2s ease;
  border-radius: 41px;
  border: 1px solid var(--Colors-Neutral-900, #080808);
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.change-plan-button:hover {
  background-color: #f8f9fa;
}

.change-plan-button:focus {
  outline: 2px solid #ed1c24;
  outline-offset: 2px;
}

/* Loading state for button */
.change-plan-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* YourSub Component Styles */
.your-sub-container {
  background-color: #ffffff;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  padding: 0 2px;
}

.filter-tab {
  padding: 8px 16px;
  border: none;
  border-radius: 40px;

  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f5f5f5;
  color: #080808;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-tab:hover {
  background-color: #e8e8e8;
}

.filter-tab.active {
  background-color: #ed1c24;
  color: #ffffff;
}

/* Subscription Cards Container */
.subscription-cards-container {
  overflow: hidden;
  margin: -16px;
  padding: 16px;
}

.subscription-swiper {
  overflow: visible !important;
  padding-bottom: 0;
}
.subscription-swiper .ppd-feature-addon{
  background: transparent !important;
}

.subscription-swiper .swiper-horizontal>.swiper-pagination-bullets,
.subscription-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -18px;
}

.subscription-swiper .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.subscription-swiper .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  width: 10px;
  border-radius: 10px;
  height: 2px !important;
  margin: 0 2px;
  background-color: #d2d5db;
}

.subscription-swiper .swiper-pagination-bullet-active {
  width: 30px !important;
  background-color: #ed1c24;
  height: 2px !important;
}

/* Subscription Slide */
.subscription-slide {
  width: auto !important;
  max-width: 162px;
  height: auto !important;
}

/* Subscription Card */
.subscription-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  width: 162px;
  background: #ffffff;
  gap: 8px;
  /* Shadow Main */
  box-shadow: -2px 1px 15px 0px rgba(0, 0, 0, 0.12);
}

.subscription-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Status Tag */
.status-tag {
  height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 8px;
  color: #080808;
  z-index: 1;
}

.status-scheduled {
  background-color: #10b981;
}

.status-active {
  background-color: #3b82f6;
  color: #ffffff;
}

.status-icon {
  font-size: 10px;
}

.status-text {
  font-size: 11px;
  line-height: 14px;
}

/* Subscription Info */
.subscription-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.subscription-name {
  font-family: "Rubik-Medium";
  font-size: 14px;
  color: #080808;
  line-height: 20px;
  margin: 0px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subscription-description {
  font-size: 12px;
  color: #080808;
  margin: 0;
  line-height: 16px;
  opacity: 1;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 32px;
}

/* Action Section */
.subscription-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

/* Change Plan Link */
.change-plan-link {
  background: none;
  border: none;
  font-family: "Rubik-Medium";
  font-size: 12px;
  color: #080808;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: color 0.2s ease;
  line-height: 24px;
}

.view-more-link {
  background: none;
  border: none;

  font-size: 14px;
  color: #080808;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: color 0.2s ease;
  line-height: 24px;
  text-align: center;
  display: block;
  margin-top: 8px;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.change-plan-link:hover {
  color: #ed1c24;
}

/* Toggle Switch */
.toggle-container {
  display: flex;
  justify-content: flex-end;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  z-index: 1;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d2d5db;
  transition: 0.3s;
  border-radius: 24px;
  z-index: 2;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.toggle-switch input:checked+.toggle-slider {
  background-color: #ed1c24;
}

.toggle-switch input:checked+.toggle-slider:before {
  transform: translateX(20px);
}

.toggle-switch input:focus+.toggle-slider {
  box-shadow: 0 0 1px #ed1c24;
}

/* ManageDefault Component Styles */
.manage-default-container {
  background-color: #ffffff;
  max-width: 100%;
  /* margin: 0 auto; */
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services-swiper-container .service-card {
  background-color: #F2F4F7;
  border: 1px solid #080808;
}

.guest-more-upgrade-cont .service-card {
  background-color: #fff;
}
.manage-default-container .service-card {
  background-color: #fff;
  border: 1px solid #080808;
}


.section-title {
  font-family: "Rubik-Medium";
  font-size: 16px;
  color: #080808;
  margin: 0px;
  line-height: 24px;
  font-weight: 500;
}

.section-sub {

  font-size: 14px;
  color: #080808;
  line-height: 20px;
  opacity: 0.8;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}

.mb-18 {
  margin-bottom: 18px;
}

/* Services Swiper Container */
.services-swiper-container {
  overflow: hidden;
  margin:0px -16px;
  padding: 0px;
}

.services-swiper-container .services-swiper {
  padding: 0px 16px 4px 16px;
}

.services-swiper {
  overflow: visible;
  padding-bottom: 0;
}

.service-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}

/* Service Slide */
.service-slide {
  width: auto !important;
  /* max-width: 200px; */
  height: auto;
}

/* Service Card */
.service-card {
  background-color: #ffffff;
  padding: 8px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 36px;
  border-radius: 36px;
  border: 1px solid #080808;
  box-shadow: 0px 0px 2px 0px rgba(16, 24, 40, 0.1);
  line-height: 18px;
}

.service-card.active {
  background-color: #ed1c24 !important;
  color: #ffffff !important;
  border-color: #ed1c24 !important;
}

.service-card.active .service-description {
  color: #fff;
}

.sprint24tab-section .service-card{
  background: #F2F4F7;
  color: #080808 !important;
  border: 1px solid #F2F4F7 !important;
}

/* .service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: #ed1c24;
} */

/* Service Icon */
.service-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

/* Service Content */
.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.service-title {
  font-family: "Rubik-Medium";
  font-size: 14px;
  color: #080808;
  margin: 0 0 4px 0;
  line-height: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-description {
  font-size: 14px;
  color: #080808;
  margin: 0;
  opacity: 1;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.fixed-bottom-page {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 375px;
}

.okw-mobile-tabbar {
  position: relative;
}

.indicator {
  background: #fff0f0;
  position: absolute;
  top: 10px;
  left: 0;
  width: 54px;
  height: 24px;
  border-radius: 24px;
  z-index: 0;
}

.okw-mobile-tab {
  position: relative;
  z-index: 1;
}

/*# sourceMappingURL=manage.css.map */

/* Badges Component Styles */
.travel-sel-card {
  display: flex;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  gap: 16px;

  border-radius: 12px;
  border: 0.5px solid var(--Colors-Neutral-200, #ebecef);
  background: var(--Colors-Base-fff, #fff);

  /* Shadow/Card */
  box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.08);
}

.services-grid {
  display: flex;
  flex-flow: row wrap;
  gap:16px 8px;
}

.travel-search-input {
  display: flex;
  width: 100%;
  padding: 10px 13px 10px 8px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #f2f4f7;
  border: none;
  padding-left: 40px;
  height: 40px;
}

.travel-search-container {
  position: relative;
}
.travel-search-container ::placeholder{
  color: #374151;
}

.travel-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* ListCountries Component Styles */
.list-countries-container {
  background: #fff;

}

.countries-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.country-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px 16px 16px;
  border: 1px solid #D2D5DB;
  cursor: pointer;
  transition: background-color 0.2s ease;
  height: 48px;
  border-radius: 8px;
}

.country-item:last-child {
  /* border-bottom: none; */
  margin-bottom: 0;
}

.country-item:hover {
  background-color: #f8f9fa;
}

.country-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-flag {
  width: 24px;
  border-radius: 2px;
  object-fit: cover;
}

/* .country-item:hover .country-arrow {
  transform: translateX(4px);
} */

.explore-more-button {
  font-family: "Rubik-Medium";
  width: 100%;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #080808;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 16px;
  height: 44px;
}

.explore-more-button:hover {
  background: #f8f9fa;

}

/* PassportPlans Component Styles */
.passport-plans-container {
  margin: 24px 0;
}

/* .passport-plans-header {
  margin-bottom: 20px;
} */

.passport-plans-title {
  font-family: "Rubik-Medium";
  font-size: 18px;
  font-weight: 500;
  color: #080808;
  margin: 0;
}

.passport-plans-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 12px;
}

.passport-plan-card {
  background: #fff;
  border: 1px solid #D2D5DB;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  width: calc(50% - 6px);
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  height: 38px;
  border-bottom: 1px solid #D2D5DB;
}

.plan-name {
  font-family: "Rubik-Medium";
  font-size: 16px;
  color: #080808;
  font-weight: 500;
  margin: 0;
  line-height: 16px;
}

.recommended-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #DC2626;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  width: fit-content;
  font-family: "Rubik-Medium";
}

.plan-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-description {
  font-size: 12px;
  color: #080808;
  line-height: 1.4;
  margin: 0 0 16px 0;
  flex: 1;
}

.plan-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.original-price {

  font-size: 14px;
  color: #9CA3AF;
  text-decoration: line-through;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-amount {
  font-family: "Rubik-Medium";
  font-size: 18px;
  font-weight: 500;
  color: #080808;
}

.price-period {

  font-size: 14px;
  color: #6B7280;
}

.supported-countries {
  margin-bottom: 0px;
}

.supported-label {
  font-family: "Rubik-Medium";
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}

.plan-buy-button {
  font-family: "Rubik-SemiBold";
  width: 100%;
  height: 44px;
  background: #080808;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.plan-buy-button:hover {
  background: #374151;
}

.roaming-rates-container {
  display: flex;
  border-radius: 12px;
  border: 1px solid #D2D5DB;
  background: #FFF;
  padding:20px 16px;
  gap: 16px;
  margin-top: 8px;
}

.font-medium {
  font-family: "Rubik-medium";
}

.passport-pack-status {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  color: #080808;
  z-index: 1;
}

.main-section-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.passport-pack-status.success {
  background-color: #ECFBF9;
  color: #080808;
}

.buy-popup-activate-later {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #D2D5DB;

  color: #080808;
  font-size: 14px;
  margin-bottom: 16px;
}

.buy-popup-activate-later .content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.buy-popup-activate-later h3 {
  font-size: 14px;
  font-family: "Rubik-Medium";
  color: #080808;
  margin: 0;
}

.buy-popup-activate-later p {
  font-size: 12px;

  color: #080808;
  margin: 0;
}
@media (max-width: 360px) {
  .plan-tab{
    font-size: 14px;
  }
}