/*
Template Name: BusGo - Bus Booking HTML Mobile App Template
Author: Askbootstrap
Author URI: https://themeforest.net/user/askbootstrap
Version: 0.1
*/

/* Body /
/ Scroll Bar /
/ Status bar styling /
/ App header /
/ Sidebar /
/ User profile /
/ Search card /
/ Section headers /
/ Route cards /
/ Offer cards /
/ Bottom navigation /
/ Form styling /
/ Scrollable horizontal sections /
/ Route visualization /
/ Page content /
/ Empty state /
/ List items /
/ Badge /
/ Action buttons /
/ Feature cards /
/ Stats card /
/ Payment methods /
/ Settings /
/ Notifications /
/ Help & Support /
/ Offers & Rewards /
/ Animations /
/ inline to main /
/ Text colors /
/ Font weights /
/ Icon sizes /
/ Authentication Pages Styles /
/ Bus Listing Styles /
/ Bus Details Styles /
/ Not Available Styles /
/ Select Seat Styles /
/ Verification Styles /
/ Payment Styles /
/ Success Page Styles */

@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(../font/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFA.ttf) format('truetype');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../font/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFA.ttf) format('truetype');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../font/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFA.ttf) format('truetype');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../font/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFA.ttf) format('truetype');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../font/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFA.ttf) format('truetype');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../font/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFA.ttf) format('truetype');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(../font/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFA.ttf) format('truetype');
}

/* Body */
:root {
  --primary-color: #0075ee;
  --primary-light: #86b5fc;
  --secondary-color: #03dac6;
  --accent-color: #ff4081;
  --background: #f5f5f5;
  --surface: #ffffff;
  --error: #b00020;
  --text-primary: #212121;
  --text-secondary: #757575;
  --text-hint: #9e9e9e;
  --warning: #ffc107;
  --success: #4caf50;
  --danger: #f44336;
}

body {
  font-family: "karla", sans-serif !important;
  font-size: 13px;
  background-color: var(--background);
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for bottom nav */
  color: var(--text-primary);
}
a {
  text-decoration: none;
  color: #222222;
}

/* Scroll Bar */
::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
::-webkit-scrollbar-corner {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid transparent;
  background-clip: padding-box;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.05),
    inset 1px 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.05),
    inset 1px 1px 0 rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar {
  width: 0px;
  height: 2px;
  background-color: #ffffff;
}
::-webkit-scrollbar-thumb {
  height: 50px;
  background: hsla(0, 0%, 53.3%, 0.4);
}

/* Status bar styling */
.status-bar {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  padding: 4px 15px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

/* App header */
.app-header {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  padding: 15px;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.app-header-icon {
  font-size: 20px;
}

.app-header-title {
  font-weight: 600;
  font-size: 18px;
}

.header-btn {
  color: white;
  padding: 0;
}

.menu-btn {
  margin-right: 0.75rem;
  color: white;
  padding: 0;
  line-height: 17px;
}

.menu-icon {
  font-size: 24px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background-color: var(--surface);
  z-index: 1001;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  /* background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  ); */
  background-image: url('../img/bg4.png');
  background-size: cover; /* Ensures image covers the area */
  background-position: center; /* Centers the image */
  color: white;
  padding: 20px;
  height: 200px;
}

.sidebar-menu {
  padding: 10px 0;
}

.sidebar-menu-item {
  padding: 7px 20px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color 0.2s;
  position: relative;
}

.sidebar-menu-item:hover {
  background-color: rgba(98, 0, 238, 0.05);
}

.sidebar-menu-item i {
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary-color);
}

.sidebar-menu-item.active {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
  font-weight: 500;
}

.sidebar-menu-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--primary-color);
}

.sidebar-menu-sub {
  padding: 7px 20px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: background-color 0.2s;
  position: relative;
}

.sidebar-menu-sub:hover {
  font-weight: bold;
}

.sidebar-menu-sub i {
  margin-right: 15px;
  font-size: 20px;
  /* color: var(--primary-color); */
}

.sidebar-menu-sub.active {
  /* background-color: rgba(98, 0, 238, 0.1); */
  color: var(--primary-color);
  font-weight: 500;
}

.menu.active {
  border-left: 4px solid var(--primary-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

/* User profile */
.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.profile-edit-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 9px !important;
}

.points-icon {
  color: #ffd700;
}

.signout-btn {
  width: 75%;
}

/* Search card */
.search-card {
  background-color: var(--surface);
  border-radius: 9px;
  margin: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Section headers */
.section-header {
  padding: 0 15px;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.section-header::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: var(--primary-color);
  margin-right: 8px;
  border-radius: 2px;
}

/* Route cards */
.route-card {
  background-color: var(--surface);
  border-radius: 9px;
  margin: 10px 15px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--secondary-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.route-card:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Offer cards */
.offer-card {
  background-color: var(--surface);
  border-radius: 9px;
  margin: 10px 15px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  border: none;
  transition: transform 0.2s;
}

.offer-card:active {
  transform: scale(0.98);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(255, 64, 129, 0.1) 50%
  );
  border-radius: 0 0 0 100px;
}

.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: white;
  padding: 6px 12px;
  border-radius: 0 0 0 9px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Bottom navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface);
  display: flex;
  justify-content: space-around;
  padding: 12px 0 8px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  max-width: 480px;
  margin: 0 auto;
  z-index: 1000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  font-size: 11px;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-item.active {
  color: var(--primary-color);
}

.nav-item i {
  font-size: 22px;
  margin-bottom: 4px;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Form styling */
.form-control,
.form-select {
  border-radius: 9px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  background-color: #f9f9f9;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-group-text {
  border-radius: 9px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(187, 134, 252, 0.2);
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--text-secondary);
}

.btn-app {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: 9px;
  border: none;
  width: 100%;
  box-shadow: 0 4px 8px rgba(98, 0, 238, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-app:hover,
.btn-app:focus {
  color: white !important;
}
.btn-app:active {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(98, 0, 238, 0.2);
  color: white;
}

/* Scrollable horizontal sections */
.scroll-container {
  display: flex;
  overflow-x: auto;
  padding: 5px 15px 20px 15px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-snap-type: x mandatory;
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.scroll-item {
  /* flex: 0 0 auto; */
  /* width: 160px; */
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 9px;
  /* margin-right: 12px; */
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(187, 134, 252, 0.1);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.scroll-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-light)
  );
  border-radius: 0 0 9px 9px;
}

.stats-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-light)
  );
  border-radius: 0 0 9px 9px;
}

/* Route visualization */
.route-visual {
  position: relative;
  padding-left: 19px;
  margin-bottom: 10px;
}

.route-point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.route-point.start {
  background-color: var(--primary-color);
  top: 0;
}

.route-point.end {
  background-color: var(--secondary-color);
  bottom: 0;
}

.route-line {
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
}

.route-cities {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 50px;
}

/* Page content */
.page-content {
  padding: 15px;
}

.page-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Empty state */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-state-icon {
  font-size: 60px;
  color: var(--primary-light);
  margin-bottom: 20px;
  opacity: 0.8;
}

.empty-state-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* List items */
.list-item {
  background-color: var(--surface);
  border-radius: 9px;
  margin-bottom: 15px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.list-item:active {
  transform: scale(0.98);
}

/* Badge */
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.confirmed {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.status-badge.pending {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning);
}

.status-badge.completed {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--success);
}

.status-badge.cancelled {
  background-color: rgba(244, 67, 54, 0.1);
  color: var(--danger);
}

/* Action buttons */
.text-primary {
  color: rgb(98 0 239) !important;
}
.action-btn {
  border-radius: 9px;
  font-size: 14px;
}

.primary-action-btn {
  background-color: var(--primary-color);
  color: white;
}
.primary-action-btn:hover,
.primary-action-btn:active {
  background-color: var(--primary-color);
  color: white;
}

.secondary-action-btn {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
}
.secondary-action-btn:hover,
.secondary-action-btn:focus {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.tertiary-action-btn {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.danger-action-btn {
  background-color: rgba(244, 67, 54, 0.1);
  color: var(--danger);
}

/* Feature cards */
.feature-card {
  border-radius: 9px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.feature-icon-container {
  width: 50px;
  height: 50px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px auto;
}

.feature-icon-container.primary {
  background: linear-gradient(135deg, #bb86fc, #6200ee);
}

.feature-icon-container.secondary {
  background: linear-gradient(135deg, #03dac6, #018786);
}

.feature-icon-container.accent {
  background: linear-gradient(135deg, #ff4081, #c51162);
}

.feature-icon-container.warning {
  background: linear-gradient(135deg, #ffab40, #ff6d00);
}

.feature-icon {
  color: white;
  font-size: 24px;
}

.feature-title {
  font-size: 14px;
  margin-bottom: 0;
}

/* Stats card */
.stats-card {
  border-radius: 9px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
}

.stat-value.primary {
  color: var(--primary-color);
}

.stat-value.secondary {
  color: var(--secondary-color);
}

.stat-value.accent {
  color: var(--accent-color);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Payment methods */
.payment-method-card {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.payment-card-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
}

.payment-card-number {
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.payment-card-details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
}

.payment-card-name {
  text-transform: uppercase;
  font-weight: 500;
}

.payment-card-expiry {
  font-weight: 500;
}

/* Settings */
.settings-section {
  margin-bottom: 25px;
}

.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: var(--surface);
  border-radius: 9px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.settings-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.settings-item-icon.primary {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
}

.settings-item-icon.secondary {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.settings-item-icon.accent {
  background-color: rgba(255, 64, 129, 0.1);
  color: var(--accent-color);
}

.settings-item-icon.warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning);
}

.settings-item-icon.danger {
  background-color: rgba(244, 67, 54, 0.1);
  color: var(--danger);
}

.settings-item-content {
  flex: 1;
}

.settings-item-title {
  font-weight: 500;
  margin-bottom: 2px;
}

.settings-item-description {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Notifications */
.notification-item {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.notification-item.read {
  border-left: 4px solid var(--primary-color);
}

.notification-item.unread {
  border-left: 4px solid var(--accent-color);
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.notification-icon.primary {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
}

.notification-icon.secondary {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.notification-icon.accent {
  background-color: rgba(255, 64, 129, 0.1);
  color: var(--accent-color);
}

.notification-icon.warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning);
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 500;
  margin-bottom: 5px;
}

.notification-message {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.notification-time {
  font-size: 12px;
  color: var(--text-hint);
}

/* Help & Support */
.help-category {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.help-category:active {
  transform: scale(0.98);
}

.help-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.help-category-icon.primary {
  background-color: rgba(98, 0, 238, 0.1);
  color: var(--primary-color);
}

.help-category-icon.secondary {
  background-color: rgba(3, 218, 198, 0.1);
  color: var(--secondary-color);
}

.help-category-icon.accent {
  background-color: rgba(255, 64, 129, 0.1);
  color: var(--accent-color);
}

.help-category-content {
  flex: 1;
}

.help-category-title {
  font-weight: 500;
  margin-bottom: 2px;
}

.help-category-description {
  font-size: 12px;
  color: var(--text-secondary);
}

.faq-item {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  padding-top: 10px;
  display: none;
}

.faq-answer.show {
  display: block;
}

/* Offers & Rewards */
.input-group .btn {
  border-radius: 9px;
}
.reward-card {
  background-color: var(--surface);
  border-radius: 9px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.reward-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(255, 64, 129, 0.05) 50%
  );
  border-radius: 0 0 0 80px;
}

.reward-icon {
  width: 50px;
  height: 50px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.reward-icon.primary {
  background: linear-gradient(135deg, #bb86fc, #6200ee);
  color: white;
}

.reward-icon.secondary {
  background: linear-gradient(135deg, #03dac6, #018786);
  color: white;
}

.reward-icon.accent {
  background: linear-gradient(135deg, #ff4081, #c51162);
  color: white;
}

.reward-icon.warning {
  background: linear-gradient(135deg, #ffab40, #ff6d00);
  color: white;
}

.reward-content {
  flex: 1;
}

.reward-title {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.reward-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.reward-expiry {
  font-size: 11px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.reward-expiry i {
  margin-right: 5px;
}

.progress-container {
  height: 8px;
  background-color: rgba(98, 0, 238, 0.1);
  border-radius: 9px;
  margin: 15px 0;
  overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 9px;
    transition: width 0.6s ease; /* Tambahkan transisi agar perubahan lebar terlihat halus */
    /* Hapus gradient fixed di sini */
}

/* 0 - 60 (Hijau) */
.progress-bar.bg-green {
    background: linear-gradient(90deg, #18a901, #3ce454); /* Gradien Hijau */
}

/* 61 - 80 (Kuning/Oranye) */
.progress-bar.bg-yellow {
    background: linear-gradient(90deg, #ffc107, #ff9800); /* Gradien Kuning/Oranye */
}

/* 81 - 100 (Merah) */
.progress-bar.bg-red {
    background: linear-gradient(90deg, #dc3545, #b8001e); /* Gradien Merah */
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* inline to main */
.bg-primary-light {
  background-color: #E8DAC0
}

.btn-light-2 {
  background-color: rgba(98, 0, 238, 0.1);
  border-radius: 9px;
  color: var(--primary-color);
  font-size: 14px;
}
.btn-light-2:hover,
.btn-light-2:focus {
  background-color: rgba(98, 0, 238, 0.1) !important;
  color: var(--primary-color);
}
.btn-light-3 {
  background-color: rgba(3, 218, 198, 0.1);
  border-radius: 9px;
  color: var(--secondary-color);
  font-size: 14px;
}
.btn-light-3:hover,
.btn-light-3:focus {
  background-color: rgba(3, 218, 198, 0.1) !important;
  color: var(--secondary-color);
}
.position-rt {
  top: 10px;
  right: 10px;
  color: var(--text-secondary);
}

.icon-btn {
  width: 32px;
  height: 32px;
}
.icon-50 {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gradient-1 {
  background: linear-gradient(135deg, #bb86fc, #6200ee);
}
.gradient-2 {
  background: linear-gradient(135deg, #03dac6, #018786);
}
.gradient-3 {
  background: linear-gradient(135deg, #ff4081, #c51162);
}
.gradient-4 {
  background: linear-gradient(135deg, #ffab40, #ff6d00);
}
.gradient-5 {
  background: linear-gradient(135deg, #6200ee, #bb86fc);
}
.gradient-6 {
  background: linear-gradient(135deg, #03dac6, #018786);
}
.fs-120 {
  font-size: 120px;
}
.scrollbar-osahan {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.user-avatar-100 {
  width: 100px;
  height: 100px;
  font-size: 40px;
}

/* Text colors */
.bg-primary-color {
  background-color: var(--primary-color);
}
.text-primary-color {
  color: var(--primary-color);
}

.text-secondary-color {
  color: var(--secondary-color);
}

.text-accent-color {
  color: var(--accent-color);
}

.text-muted {
  color: var(--text-secondary);
}

.text-hint {
  color: var(--text-hint);
}

/* Font weights */
.fw-semibold {
  font-weight: 600;
}

/* Icon sizes */
.fs-8 {
  font-size: 8px;
}
.fs-11 {
  font-size: 11px;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-24 {
  font-size: 24px;
}
.icon-sm {
  font-size: 14px;
}

.icon-md {
  font-size: 18px;
}

.icon-lg {
  font-size: 24px;
}

/* Authentication Pages Styles */
.auth-container {
  max-width: 100%;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.app-logo {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto;
}

.auth-form {
  width: 100%;
}

.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-color);
  border: none;
}

.social-btn:hover {
  background-color: #e9e9e9;
}

.strength-bar {
  height: 4px;
  flex: 1;
  background-color: #e9e9e9;
  border-radius: 2px;
}

.strength-bar.active {
  background-color: var(--primary-color);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto;
}

/* Additions for bus listing, details, and booking pages */

/* Bus Listing Styles */
.bus-item {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}

.bus-card {
  background-color: #fff;
  border-radius: 9px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bus-item:hover .bus-card {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-lined {
  position: relative;
  height: 2px;
  background-color: var(--primary-color);
  opacity: 0.3;
}

.journey-lined::before,
.journey-lined::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
}

.journey-lined::before {
  left: 0;
}

.journey-lined::after {
  right: 0;
}

.amenity-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 9px;
  background-color: var(--light-color);
  font-size: 12px;
  color: var(--text-color);
  margin-right: 4px;
}

.amenity-badge i {
  font-size: 10px;
  margin-right: 2px;
}

/* Bus Details Styles */
.bus-header {
  height: 200px;
  overflow: hidden;
  border-radius: 9px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-badge {
  background-color: #fff;
  border-radius: 9px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.journey-stops {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.departure-stop,
.arrival-stop {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #343B3E;
  position: relative;
}

.departure-stop {
  margin-top: 6px;
}

.arrival-stop {
  margin-bottom: 6px;
}

.journey-line {
  width: 2px;
  height: 40px;
  background-color: #343B3E;
  opacity: 0.5;
  margin: 4px 0;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 9px;
  padding: 12px;
  min-width: 70px;
  text-align: center;
}

.amenity-item i {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.amenity-item span {
  font-size: 12px;
}

.bus-photo-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.pickup-radio,
.dropoff-radio {
  width: 20px;
}

.cancellation-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.review-item {
  border-left: 3px solid var(--primary-color);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ddd;
}

.bottom-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

/* Not Available Styles */
.empty-state-icon {
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.5;
}

.date-suggestion-item {
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 9px;
  padding: 12px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.date-day {
  font-size: 18px;
  font-weight: bold;
}

.date-month {
  font-size: 12px;
  color: var(--text-muted);
}

.date-price {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 4px;
}

.route-suggestion-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 9px;
  padding: 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.route-cities {
  font-weight: 500;
}

.route-price {
  color: var(--primary-color);
  font-weight: 500;
  text-align: right;
}

/* Select Seat Styles */
.bus-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.ticket-icon i {
  font-size: 24px;
  color: #343B3E;
}

.seat-deck-selector {
  font-size: 14px;
}

.steering-wheel i {
  font-size: 28px;
  color: #888;
}

.door-text {
  border: 1px dashed #888;
  padding: 5px 11px;
  border-radius: 9px;
}

.seats-grid {
  padding: 10px;
}

.seat-row {
  width: 100%;
}

.seat {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seat.available {
  background-color: #ffffff;
  border: 1px solid #ddd;
  color: #333;
}

.seat.selected {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.seat.booked {
  background-color: #f5f5f5;
  color: #aaa;
  cursor: not-allowed;
  border: 1px solid #eee;
}

.seat-gap {
  width: 80px;
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 9px;
  margin-right: 6px;
}

.legend-dot.available {
  background-color: #ffffff;
  border: 1px solid #ddd;
}

.legend-dot.selected {
  background-color: var(--primary-color);
}

.legend-dot.booked {
  background-color: #f5f5f5;
  border: 1px solid #eee;
}

.seat-number {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Verification Styles */
.booking-progress {
  position: relative;
}

.progress-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: 2px solid #ddd;
  margin-bottom: 4px;
}

.progress-connector {
  height: 2px;
  background-color: #ddd;
  flex-grow: 1;
  margin-top: 12px;
  z-index: 1;
}

.progress-step.active .step-dot {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.progress-step.completed .step-dot {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.progress-connector.completed {
  background-color: var(--primary-color);
}

.seat-tag {
  background-color: #343B3E;
  color: white;
  border-radius: 9px;
  padding: 2px 8px;
  font-size: 4rem;
  font-weight: 500;
}

/* Payment Styles */
.saved-card-option,
.payment-option {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 9px;
  margin-bottom: 8px;
}

.saved-card-option:hover,
.payment-option:hover {
  border-color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.05);
}

.card-icon,
.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background-color: #f5f5f5;
  color: var(--text-color);
  font-size: 18px;
}

/* Success Page Styles */
.success-icon {
  font-size: 72px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.booking-card,
.trip-card {
  border-left: 4px solid var(--primary-color);
}

.additional-info {
  border-left: 3px solid var(--primary-color);
}

.social-share a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-1 {
    border: 3px solid #f3f6f9 !important;
}

.p-15 {
    padding: 15px !important;
}

.payment {
    font-size: 3.2rem;
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.table > :not(caption) > * > * {
  padding: 0;
  padding-bottom: .5rem !important;
  vertical-align: middle;
}

.fs-10 {
  font-size: 0.7142857143rem!important; }

.fs-12 {
  font-size: 0.8571428571rem!important; }

.fs-14 {
  font-size: 1rem!important; }

.fs-16 {
  font-size: 1.1428571429rem!important; }

.fs-18 {
  font-size: 1.2857142857rem!important; }

.fs-20 {
  font-size: 1.4285714286rem!important; }

.fs-22 {
  font-size: 1.5714285714rem!important; }

.fs-24 {
  font-size: 1.7142857143rem!important; }

.fs-26 {
  font-size: 1.8571428571rem!important; }

.fs-30 {
  font-size: 2.1428571429rem!important; }

.fs-32 {
  font-size: 2.2857142857rem!important; }

.fs-36 {
  font-size: 2.5714285714rem!important; }

.fs-38 {
  font-size: 2.7142857143rem!important; }

.fs-40 {
  font-size: 2.8571428571rem!important; }

.fs-42 {
  font-size: 3rem!important; }

.fs-46 {
  font-size: 3.2857142857rem!important; }

.fs-48 {
  font-size: 3.4285714286rem!important; }

.fs-50 {
  font-size: 3.5714285714rem!important; }

.fs-60 {
  font-size: 4.2857142857rem!important; }

.fs-70 {
  font-size: 5rem!important; }

.fs-72 {
  font-size: 5.1428571429rem!important; }

.fs-76 {
  font-size: 5.4285714286rem!important; }

.fs-78 {
  font-size: 5.5714285714rem!important; }

.fs-80 {
  font-size: 5.7142857143rem!important; }

.fs-100 {
  font-size: 7.1428571429rem!important; }

.fs-140 {
  font-size: 10rem!important; }

.fs-180 {
  font-size: 12.8571428571rem!important; }

.fs-200 {
  font-size: 14.2857142857rem !important;
}

.summary-card {
  position: relative;
  overflow: hidden;
}

.summary-card::before {
  content: "";
  position: absolute;
  bottom: 60px;
  right: 50px;
  width: 150px;
  height: 150px;
  background-image: url('../img/bg2.png');
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(-30deg);
  transform-origin: bottom right;
  z-index: 0;
  opacity: 0.3;
}

.exp-card {
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 340px;
  height: 100px;
  background-image: url(../img/bg3.png);
  background-size: cover;
  background-repeat: no-repeat;
  /* transform: rotate(-30deg); */
  transform-origin: bottom right;
  z-index: 1;
  opacity: 0.3;
}

.qr-container {
  position: relative;
  width: 100%;
  max-width: 325px;
  /* batasi lebar maksimal agar proporsional */
  margin: auto;
}

.qr-frame-img {
  width: 100%;
  height: auto;
  display: block;
}

.ticket-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 2;
}

table,
th,
td {
  border: none !important;
}

@media print {

  body {
    background-color: rgba(0, 0, 0, 0);
    /* width:80mm ; */
  }

  table,
  th,
  td {
    border: none !important;
  }

  .table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent !important;
  }

  .bg-primary-light {
    background-color: rgba(0, 0, 0, 0);
  }

  * {
    -webkit-print-color-adjust: exact !important;
    /* Chrome, Safari */
    print-color-adjust: exact !important;
    /* Firefox */
  }
}

.card-style .card-overlay {
  border-radius: 15px;
}

.bg-black {
  background-color: #000 !important;
}

.bg-black {
  background-color: #000 !important;
}

.card-overlay {
  background-position: center center;
  background-size: cover !important;
}

.card-overlay {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute;
  z-index: 1;
}

.opacity-80 {
  opacity: 0.5 !important;
}

.modal-fill.show {
    background: rgba(255, 255, 255, 0.97);
    display: -webkit-box !important;
    display: flex !important;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column nowrap;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: .4s;
    transition: .4s;
}

/* html2canvas style */
.print-mode body {
  background-color: rgba(0, 0, 0, 0);
}

.print-mode table,
.print-mode th,
.print-mode td {
  border: none !important;
}

.print-mode .table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent !important;
}

.print-mode .bg-primary-light {
  background-color: rgba(0, 0, 0, 0) !important;
}

.print-mode * {
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}

.print-adjust {
  width: 325px !important;
  transform: scale(1) !important;
  transform-origin: top left !important;
}

/*data table*/
@media (max-width: 767px) {
  .table > tbody > tr > td, .table > tbody > tr > th {
    white-space: nowrap; }
  .table > tfoot > tr > td, .table > tfoot > tr > th {
    white-space: nowrap; }
  .table > thead > tr > td, .table > thead > tr > th {
    white-space: nowrap; } }
.table > tbody > tr > td, .table > tbody > tr > th {
  padding: 1rem;
  vertical-align: middle; }
.table > tfoot > tr > td, .table > tfoot > tr > th {
  padding: 1rem;
  vertical-align: middle; }
.table > thead > tr > td, .table > thead > tr > th {
  padding: 1rem;
  vertical-align: middle; }

.table tr td .progress {
  margin-top: 5px; }
.table.no-border {
  border: 0; }
  .table.no-border td, .table.no-border th {
    border: 0; }
.table.align th {
  text-align: left; }
.table.align td {
  text-align: right; }

.table-bordered {
  border: 1px solid #d1d3e0; }
  .table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th {
    border: 1px solid #d1d3e0 !important; }
  .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border: 1px solid #d1d3e0 !important;
    border-bottom-width: 2px; }
  .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th {
    border: 1px solid #d1d3e0 !important; }

.table-separated {
  border-collapse: separate;
  border-spacing: 0 8px; }
  .table-separated thead th {
    border-bottom: none; }
  .table-separated tbody tr {
    background-color: #ebedf3;
    -webkit-transition: .5s;
    transition: .5s; }
    .table-separated tbody tr > *:first-child {
      border-top-left-radius: 3px;
      border-bottom-left-radius: 3px; }
    .table-separated tbody tr > *:last-child {
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px; }
    .table-separated tbody tr th, .table-separated tbody tr td {
      border-top: none; }

.dataTables_info, .dataTables_length, .dt-buttons {
  display: inline-block; }

.dt-buttons {
  margin-bottom: 10px; }
  .dt-buttons .dt-button {
    padding: 5px 15px;
    border-radius: 0;
    color: #ffffff;
    margin-right: 3px;
    display: inline-block; }
    .dt-buttons .dt-button:hover {
      background: #172b4c; }

.dataTables_filter {
  float: right;
  padding-top: 5px; }
  .dataTables_filter input {
    border: 1px solid #cccccc;
    margin-left: 5px; }

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_desc_disabled {
  background: 0 0; }

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: .25em; }
  .dataTables_wrapper .dataTables_paginate .paginate_button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: .5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #737373;
    border: 1px solid transparent;
    border-radius: 2px; }
    .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
      color: #ffffff; }
    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
      cursor: not-allowed;
      color: #737373;
      border: 1px solid transparent;
      background: 0 0;
      -webkit-box-shadow: none;
      box-shadow: none; }
    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
      color: #ffffff;
      background-color: #0052cc; }
    .dataTables_wrapper .dataTables_paginate .paginate_button:active {
      outline: 0;
      background-color: #737373; }
  .dataTables_wrapper .dataTables_paginate .ellipsis {
    padding: 0 1em; }

.tablesaw-bar .btn-group label {
  color: #737373; }

tfoot input {
  width: 100%;
  padding: 3px;
  box-sizing: border-box; }

.dt-bootstrap {
  display: block; }

.paging_simple_numbers .pagination .paginate_button {
  padding: 0;
  background: #ffffff; }
  .paging_simple_numbers .pagination .paginate_button:hover {
    background: #ffffff; }
    .paging_simple_numbers .pagination .paginate_button:hover a {
      color: #ffffff; }
  .paging_simple_numbers .pagination .paginate_button a {
    padding: 15px 15px;
    border-radius: 5px;
    border: 0 !important; }
  .paging_simple_numbers .pagination .paginate_button.active a {
    color: #ffffff; }

.footable .pagination {
  display: inline-block;
  padding: 8px 0; }
  .footable .pagination li {
    padding: 0;
    margin: 0 1px;
    display: inline-block; }
    .footable .pagination li a {
      padding: 5px 10px; }
      .footable .pagination li a.active, .footable .pagination li a:hover {
        color: #ffffff;
        border-radius: 4px; }
    .footable .pagination li.active a {
      color: #ffffff;
      border-radius: 4px; }

/* Kecilkan ukuran font & padding tombol pagination */
.dataTables_wrapper .dataTables_paginate .pagination .page-link {
  font-size: 0.75rem;        /* Ukuran huruf */
  padding: 0.25rem 0.5rem;   /* Padding dalam tombol */
  line-height: 1.25;         /* Tinggi baris */
}

/* Kecilkan margin antar tombol pagination */
.dataTables_wrapper .dataTables_paginate .pagination .page-item {
  margin: 0 2px;
}

/*box*/
.small-box {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
  box-shadow: 0px 2px 5px 0px rgba(19, 23, 38, 0.05);
  border-radius: 10px; }
  .small-box > .inner {
    padding: 1.25rem; }
  .small-box > .small-box-footer {
    position: relative;
    text-align: right;
    padding: 3px 10px;
    color: #ffffff;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    z-index: 10;
    background: rgba(0, 0, 0, 0.1);
    text-decoration: none; }
    .small-box > .small-box-footer:hover {
      color: #ffffff;
      background: rgba(0, 0, 0, 0.15); }
  .small-box h3 {
    font-size: 2.7142857143rem;
    font-weight: 700;
    margin: 0 0 10px;
    white-space: nowrap;
    padding: 0;
    z-index: 5; }
  .small-box p {
    font-size: 1rem;
    margin-bottom: 10px;
    z-index: 5; }
    .small-box p > small {
      display: block;
      color: #f3f6f9;
      font-size: 0.8571rem;
      margin-top: 5px; }
  .small-box .icon {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 0;
    font-size: 5.1428571429rem;
    color: rgba(0, 0, 0, 0.15); }
  .small-box:hover {
    text-decoration: none;
    color: #f3f6f9; }
    .small-box:hover .icon {
      font-size: 5.5714285714rem; }

@media (max-width: 767px) {
  .small-box {
    text-align: center; }
    .small-box .icon {
      display: none; }
    .small-box p {
      font-size: 0.8571rem; } }
.box {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 0px;
  -webkit-transition: .5s;
  transition: .5s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
  box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05); }
  .box.collapsed-box .box-body {
    display: none; }
  .box.collapsed-box .box-footer {
    display: none; }
  .box .flex-column > li {
    border-bottom: 1px solid #f3f6f9;
    margin: 0; }
    .box .flex-column > li:last-of-type {
      border-bottom: none; }
  .box.height-control .box-body {
    max-height: 300px;
    overflow: auto; }
  .box .border-right {
    border-right: 1px solid #f3f6f9; }
  .box .border-left {
    border-left: 1px solid #f3f6f9; }
  .box.box-solid {
    border-top: 0;
    overflow: hidden; }
    .box.box-solid.box-default > .box-header {
      color: #172b4c;
      background-color: #f3f6f9; }
      .box.box-solid.box-default > .box-header .btn {
        color: #172b4c; }
      .box.box-solid.box-default > .box-header a {
        color: #172b4c; }
      .box.box-solid.box-default > .box-header > .box-tools .btn {
        border: 0;
        box-shadow: none; }
    .box.box-solid[class*=bg] > .box-header {
      color: #ffffff; }
      .box.box-solid[class*=bg] > .box-header .box-title {
        color: #ffffff; }
  .box .box-group > .box {
    margin-bottom: 5px; }
  .box .knob-label {
    text-align: center;
    color: #172b4c;
    font-weight: 300;
    font-size: 0.8571rem;
    margin-bottom: .3em; }
  .box > .loading-img, .box > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .box .overlay {
    z-index: 50;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px; }
    .box .overlay > .fa {
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: -15px;
      margin-top: -15px;
      color: #000000;
      font-size: 2.143rem; }
  .box .overlay.dark {
    background: rgba(0, 0, 0, 0.5); }
  .box .box-header .box-subtitle {
    font-weight: 300;
    margin-bottom: 0px;
    margin-top: 5px;
    color: #608acf; }
  .box .box-subtitle {
    font-weight: 300;
    margin-bottom: 0px;
    margin-top: 5px;
    color: #608acf; }

.pull-up {
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  -moz-transition: all .25s ease;
  transition: all .25s ease; }
  .pull-up:hover {
    -webkit-transform: translateY(-4px) scale(1.02);
    -moz-transform: translateY(-4px) scale(1.02);
    -ms-transform: translateY(-4px) scale(1.02);
    -o-transform: translateY(-4px) scale(1.02);
    transform: translateY(-4px) scale(1.02);
    -webkit-box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
    z-index: 999; }

.box-inverse {
  color: #ffffff !important;
  background-color: #172b4c; }
  .box-inverse .box-header {
    color: #ffffff !important; }
  .box-inverse .box-title {
    color: #ffffff !important; }
  .box-inverse h1, .box-inverse h2, .box-inverse h3, .box-inverse h4, .box-inverse h5, .box-inverse h6 {
    color: rgba(255, 255, 255, 0.8) !important; }
  .box-inverse small {
    color: rgba(255, 255, 255, 0.8) !important; }
  .box-inverse .box-controls li > a {
    color: rgba(255, 255, 255, 0.8) !important; }
  .box-inverse .box-title small {
    opacity: 0.8; }
  .box-inverse .box-btn-more:before, .box-inverse .box-btn-more:after {
    border-color: #ffffff; }
  .box-inverse .box-header {
    border-color: rgba(255, 255, 255, 0.15); }
  .box-inverse .box-footer {
    border-color: rgba(255, 255, 255, 0.15); }
  .box-inverse .box-action {
    border-color: rgba(255, 255, 255, 0.15); }

.box-secondary {
  background-color: #4d7bc9 !important; }
  .box-secondary .box-bordered {
    border-color: #e9eff8 !important; }

.box-outline-secondary {
  background-color: #ffffff;
  border: 1px solid #4d7bc9; }

.box-bordered {
  border: 1px solid #a6a6a6; }

.box-shadowed {
  -webkit-box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.08); }
  .box-shadowed:hover {
    -webkit-box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.08); }

.box-transparent {
  background-color: transparent; }

.box-round {
  border-radius: 10px; }

.box-header {
  color: #172b4c;
  display: block;
  padding: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(72, 94, 144, 0.16);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; }
  .box-header.without-border {
    border-bottom: none; }
  .box-header.with-border {
    border-bottom-width: 1px;
    border-bottom-style: solid; }
  .box-header .box-title {
    display: inline-block;
    margin: 0;
    font-weight: 400; }
  .box-header > i {
    display: inline-block;
    margin: 0 5px 0 0;
    font-weight: 500; }
  .box-header > .box-tools {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem; }
    .box-header > .box-tools [data-toggle=tooltip] {
      position: relative; }
    .box-header > .box-tools .dropdown-menu > li > a {
      color: #172b4c; }
  .box-header > .box-controls {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem; }
  .box-header img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }

.box-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.5rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px; }
  .box-footer > *:last-child {
    margin-bottom: 0; }
  .box-footer img {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; }

.box-controls {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse; }
  .box-controls li > a {
    font-family: themify;
    font-size: 0.8571rem;
    display: inline-block;
    padding: 0 4px;
    margin: 0 4px;
    color: #608acf;
    opacity: .8;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear; }
    .box-controls li > a i {
      font-family: themify;
      font-size: 0.8571rem;
      display: inline-block;
      padding: 0 4px;
      margin: 0 4px;
      color: #608acf;
      opacity: .8;
      -webkit-transition: 0.3s linear;
      transition: 0.3s linear; }
  .box-controls li > button {
    font-size: 0.8571rem;
    display: inline-block;
    padding: 0 4px;
    margin: 0 4px;
    color: #608acf;
    opacity: .8;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear; }
    .box-controls li > button > i {
      font-family: themify; }
  .box-controls li:first-child > a {
    margin-right: 0; }

.box-btn-reload::before {
  content: "\e619"; }

.box-btn-close::before {
  content: "\e646"; }

.box-btn-slide::before {
  content: "\e648"; }

.box-btn-maximize::before {
  content: "\e6e8"; }

.box-btn-fullscreen::before {
  content: "\e659"; }

.box-btn-prev::before {
  content: "\e64a"; }

.box-btn-next::before {
  content: "\e649"; }

.control {
  position: relative; }

.box-body {
  padding: 1.5rem;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border-radius: 10px; }
  .box-body .box-title {
    display: inline-block;
    margin: 0;
    margin-bottom: 1rem;
    color: #172b4c; }
  .box-body > .table {
    margin-bottom: 0; }
  .box-body .fc {
    margin-top: 0px; }
  .box-body .full-width-chart {
    margin: -10px; }
  .box-body.no-padding .full-width-chart {
    margin: -9px; }
  .box-body .box-pane {
    border-radius: 0 0 0 10px; }
  .box-body .box-pane-right {
    border-radius: 0 0 10px; }
  .box-body > *:last-child {
    margin-bottom: 0; }
  .box-body ul li {
    line-height: 24px; }

.box-title {
  z-index: auto; }
  .box-title.box-title-bold {
    font-weight: 900; }
  .box-title code {
    font-size: 0.7143rem; }

.overlay-wrapper > .loading-img, .overlay-wrapper > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
.overlay-wrapper .overlay {
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px; }
  .overlay-wrapper .overlay > .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    color: #000000;
    font-size: 2.143rem; }
.overlay-wrapper .overlay.dark {
  background: rgba(0, 0, 0, 0.5); }

.collapsed-box .box-header.with-border {
  border-bottom: none; }

.no-header .box-body {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px; }

.box-carousel .box-footer .carousel-indicators-outside {
  padding: 6px 0; }

.box-img, .box-img-top, .box-img-bottom {
  border-radius: 0; }

.box-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  opacity: 0;
  z-index: -1;
  -webkit-transition: .5s;
  transition: .5s; }
  .box-loading .reveal {
    opacity: 1;
    z-index: auto; }

.box-fullscreen {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
  z-index: 9999 !important; }

.box-slided-up .box-content {
  display: none; }
.box-slided-up .box-body {
  display: none; }
.box-slided-up .box-btn-slide::before {
  content: "\e64b"; }

.box-header-actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: -4px; }
  .box-header-actions > * {
    margin: 4px; }

.box-solid .box-body {
  background-color: #ffffff !important;
  color: #737373; }
.box-solid .box-controls li a {
  color: #ffffff; }
.box-solid .box-controls .dropdown-item {
  color: #172b4c; }

.rotate-45 {
  display: inline-block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.rotate-90 {
  display: inline-block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.rotate-180 {
  display: inline-block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

