@import './pages/inbox.css';
@import './pages/my-rides.css';
@import './pages/profile.css';
@import './pages/search.css';
@import './pages/wallet.css';

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: "Wix Madefor Text", sans-serif !important;
    font-size: 16px;
    font-weight: 500 !important;
    color: #59626C !important;
  transition: background-color var(--transition-normal);
}

html[data-theme="dark"] body {
    background-color: #1A1D2A !important;
    color: #f8f9fa !important;
}

html,
body {
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f100;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.main-content {
  flex: 1;
  padding-bottom: 4rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

h1, .h1 {
  font-size: var(--font-size-4xl);
}

h2, .h2 {
  font-size: var(--font-size-3xl);
}

h3, .h3 {
  font-size: var(--font-size-2xl);
}

h4, .h4 {
  font-size: var(--font-size-xl);
}

h5, .h5 {
  font-size: var(--font-size-lg);
}

h6, .h6 {
  font-size: var(--font-size-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  color: white;
}

.btn-secondary {
  background-color: var(--color-secondary-dark);
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-divider);
  color: var(--color-text-primary);
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--color-accent-light);
  color: white;
}

.btn-sm {
  padding: var(--space-1) var(--space-2);
  font-size: var(--font-size-xs);
}

.btn-lg {
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-md);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background-color: var(--color-background);
  color: var(--color-text-secondary);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);

}

.btn-icon:hover {
  background-color: var(--color-divider);
  color: var(--color-text-primary);
}

/* Forms */
.form-group {
  flex: 1;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.full-width {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 15px;
  font-weight: var(--font-weight-medium);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="search"],
select,
textarea {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: var(--font-size-md);
  line-height: 1.5;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  box-shadow: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="date"]::placeholder,
input[type="time"]::placeholder,
input[type="search"]::placeholder{
  color: var(--color-text-primary);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: transparent;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(53, 99, 233, 0.2);
}

html[data-theme="dark"] input[type="text"],
html[data-theme="dark"] input[type="email"],
html[data-theme="dark"] input[type="password"],
html[data-theme="dark"] input[type="number"],
html[data-theme="dark"] input[type="tel"],
html[data-theme="dark"] input[type="date"],
html[data-theme="dark"] input[type="time"],
html[data-theme="dark"] input[type="search"],
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background-color: #1A1D2A !important;
  color: #FFF;
  box-shadow: none;
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] select:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] input[type="text"]::placeholder,
html[data-theme="dark"] input[type="email"]::placeholder,
html[data-theme="dark"] input[type="password"]::placeholder,
html[data-theme="dark"] input[type="number"]::placeholder,
html[data-theme="dark"] input[type="tel"]::placeholder,
html[data-theme="dark"] input[type="date"]::placeholder,
html[data-theme="dark"] input[type="time"]::placeholder,
html[data-theme="dark"] input[type="search"]::placeholder {
  background-color: #1A1D2A !important;
  color: #FFF;
  box-shadow: none;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23596780' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.input-icon {
  position: relative;
}

.input-icon svg {
    width:24px !important;
    height:24px!important;
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  color: var(clor);
}

#findRideForm .input-icon svg {
  top: 28px !important;
}

.input-icon input,
.input-icon select {
  padding: 15px 15px 15px 44px;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}

.text-success {
  color: var(--color-success);
}

.text-warning {
  color: var(--color-warning);
}

.text-error {
  color: var(--color-error);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-success {
  background-color: var(--color-success);
}

.bg-warning {
  background-color: var(--color-warning);
}

.bg-error {
  background-color: var(--color-error);
}

/* Section Styles */
.section-title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-6);
  color: var(--color-text-primary);
}

.section-divider {
  height: 1px;
  background-color: var(--color-divider);
  margin: var(--space-8) 0;
}

/* Page Header */
.page-header {
  padding: var(--space-8) 0;
  background-color: var(--color-secondary-dark);
  margin-bottom: var(--space-8);
}

.page-title {
  font-size: var(--font-size-3xl);
  margin-bottom: 0;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu,
.profile-menu-main {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: var(--z-index-dropdown);
  display: none;
  min-width: 10rem;
  padding: var(--space-2) 0;
  margin: var(--space-2) 0 0;
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.main-content {
  margin-top: 83px;
}

.main-content .flex.items-center.px-4.py-4 h1 {
  color: #59626C;
  margin-bottom: 0px;
}

.detail-main-content.main-content .flex.items-center.px-4.py-4 span {
   color: #59626C;
}

.detail-main-content .switch {
    display: inline-block;
    width: 40px;
    height: 21px;
    cursor: pointer;
    position: relative;
}

#messageForm .btn-icon.send-button {
    background-color: #007bff;
}

.message-bubble {
  background-color: #eef0f2;
}

.message-item.sent .message-text {
  text-align: start;
}

.message-avatar {
  min-width: 36px;
}

.detail-main-content .switch input {
    opacity: 0;
    height: 100%;
    z-index: 5;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.detail-main-content .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: red;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
    width: auto;
    height: auto;
}

.detail-main-content .switch .slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.detail-main-content .switch input:checked + .slider {
    background-color: green;
}

.detail-main-content .switch input:checked + .slider::before {
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--space-2) var(--space-4);
  color: var(--color-text-primary);
  text-align: left;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--color-secondary-dark);
  color: var(--color-primary);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-index-modal);
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  padding: var(--space-4);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--color-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  width: 100%;
  animation: modalFadeIn 0.3s ease;
}

.modal.show .checkout-payment-options .custom-radio {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal.show .checkout-payment-options .custom-radio .custom-control-label {
  margin-bottom: 0px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}

.modal-title {
  font-size: var(--font-size-xl);
  margin-bottom: 0;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--color-text-tertiary);
  cursor: pointer;
  padding: var(--space-2);
}

.modal-body {
  padding: var(--space-6);
  max-height: 400px;
  overflow-y: scroll;
}

.modal-footer {
  padding: var(--space-4) var(--space-6);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
  border-top: 1px solid var(--color-divider);
}

/* Responsive */
@media (max-width: 768px) {
  h1, .h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2, .h2 {
    font-size: var(--font-size-2xl);
  }
  
  .form-row {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .form-group {
    width: 100%;
  }
  
  .modal {
    padding: var(--space-2);
  }
  
  .modal-content {
    max-width: 100%;
  }
}

/* Animation Utilities */
.animate-fade-in {
  animation: fadein 0.3s ease-in-out;
}

.animate-slide-in {
  animation: slidein 0.3s ease-in-out;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slidein {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Verification badges */
.verification-badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
}

.verification-badge svg {
    width: 1.5rem;
    height: 1.5rem;
  margin-right: var(--space-1);
}

.verification-badge.verified {
  background-color: rgba(52, 199, 89, 0.1);
  color: var(--color-success);
}

.verification-badge.pending {
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--color-warning);
}

.verification-badge.unverified {
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--color-error);
}

/* Status indicators */
.status-indicator {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
}

.status-indicator.active {
  background-color: rgba(52, 199, 89, 0.1);
  color: var(--color-success);
}

.status-indicator.completed {
  background-color: rgba(53, 99, 233, 0.1);
  color: var(--color-primary);
}

.status-indicator.pending {
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--color-warning);
}

.status-indicator.cancelled {
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--color-error);
}

/* File upload */
.file-upload {
  position: relative;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-4);
  text-align: center;
  transition: all var(--transition-fast);
}

.file-upload:hover {
  border-color: var(--color-primary);
}

.file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-secondary);
}

.upload-placeholder svg {
  margin-bottom: var(--space-2);
  color: var(--color-text-tertiary);
}

.file-hint {
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
  margin-top: var(--space-2);
}

/* Checkbox/Radio Styles */
.checkbox-label,
.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: var(--space-2);
}

.checkbox-label input[type="checkbox"],
.radio-option input[type="radio"] {
  margin-right: var(--space-2);
}

.checkbox-group {
  margin-top: var(--space-2);
}

 /* Monkey animation container */
  .monkey-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    height: 180px;
    overflow: hidden;
  }

  .monkey-face {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-image: url('https://raw.githubusercontent.com/naaficodes/Monkey-Login/master/images/monkey.gif');
    background-size: 90% 85%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
  }

  .monkey-hands {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .monkey-hands img {
    width: 170px;
    height: 170px;
    margin-top: 110%;
    transition: margin-top 0.5s ease;
  }

  /* When password field is focused */
  .password-focused .monkey-hands img {
    margin-top: 0;
  }

  .password-focused .monkey-face {
    background-image: url('https://raw.githubusercontent.com/naaficodes/Monkey-Login/master/images/monkey_pwd.gif');
  }

  /* Button styles */
  .btn-loading .spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinner-rotate 0.75s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
  }

  @keyframes spinner-rotate {
    to { transform: rotate(360deg); }
  }

  /* Validation styles */
  .is-invalid {
    border-color: #dc3545 !important;
  }

  .invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
  }

  /* OTP input styling */
  #otp {
    letter-spacing: 2px;
    font-size: 1.2rem;
    text-align: center;
    padding: 0.5rem 0;
  }

   .wallet-container {
      max-width: 600px;
      margin: 40px auto;
      padding: 20px;
      background-color: #1a1a1a;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    .wallet-title {
      font-size: 24px;
      margin-bottom: 20px;
      text-align: center;
    }

.payment-methods-container {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  width: 100%;
}

.methods-scroll {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 8px;
}

.payment-method {
  background: var(--color-background);
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 12px;
  transition: background 0.3s;
  width: 100%;
}

.payment-method:hover {
  background: var(--color-background);
}

.payment-method label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  /* color: #fff; */
  font-size: 15px;
  width: 100%;
}

.payment-method input[type="radio"] {
  accent-color: #007bff;
  transform: scale(1.2);
  margin: 0;
}

.payment-method img {
  width: 80px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
  border:1px solid var(--color-divider);
  flex-shrink: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 5px;
}

.footer-note {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}

html[data-theme="dark"] .center-link a,
html[data-theme="dark"] .footer-contact-box .footer-content a,
html[data-theme="dark"] .footer-contact-box .footer-icon a,
html[data-theme="dark"] .social-icons-link ul a,
html[data-theme="dark"] .profile-content-details-inner .detail-item .mb-0,
html[data-theme="dark"] .form-group.full-width label,
html[data-theme="dark"] .main-content .flex.items-center.px-4.py-4 h1,
html[data-theme="dark"] #bookedUserInfoDetails .ride-table.w-full.text-left.text-sm th,
html[data-theme="dark"] #bookedUserInfoDetails .ride-table.w-full.text-left.text-sm td,
html[data-theme="dark"] .detail-main-content.main-content .flex.items-center.px-4.py-4 span,
html[data-theme="dark"] .route-stopover-city,
html[data-theme="dark"] .route-stopover-address,
html[data-theme="dark"] #reportRideModal .form-group.mb-4 .form-control::placeholder,
html[data-theme="dark"] .review-box .review_comment::placeholder {
  color: #FFF;
}

html[data-theme="dark"] table, th, td,
html[data-theme="dark"] .progress-step,
html[data-theme="dark"] .teansaction-history-contents .text-center.py-4 {
  color: #59626C;
}

html[data-theme="dark"] #publish-ride-tab label,
html[data-theme="dark"] #find-ride-tab label,
html[data-theme="dark"] .form-account-box.shadow-none.p-0 .card-like h3,
html[data-theme="dark"] #phoneLoginForm label,
html[data-theme="dark"] #phoneLoginForm p,
html[data-theme="dark"] .find-the--ride .phone--box .add-number,
html[data-theme="dark"] .find-the--ride .form-check--label,
html[data-theme="dark"] .find-the--ride .text-center.dark-text.mt-3,
html[data-theme="dark"] #no-rides-message,
html[data-theme="dark"] .location-text,
html[data-theme="dark"] .location-marker,
html[data-theme="dark"] .price-adjustment-info span,
html[data-theme="dark"] #price,
html[data-theme="dark"] #total-distance,
html[data-theme="dark"] #price-per-km,
html[data-theme="dark"] .preferences div,
html[data-theme="dark"] .stopover-modal .modal-body p,
html[data-theme="dark"] .stopover-modal .modal-body span,
html[data-theme="dark"] .history-list .content-with-price span,
html[data-theme="dark"] .step.step-2 .form-label,
html[data-theme="dark"] .step.step-2 .masked-phone,
html[data-theme="dark"] .step.step-4 #step4-content .form-label,
html[data-theme="dark"] .step.step-5 .form-label {
  color: #59626C !important;
}

html[data-theme="dark"] .message-item.received .message-bubble {
   color: #90A3BF;
}

#bookedUserInfoDetails .report-btn.w-full.bg-orange-500 {
  margin-bottom: 5px;
}

.message-item.received .message-bubble {
   text-align: start;
}

#routeModal .route-stopover-item {
   gap: 15px;
   position: relative;
}

#routeModal .route-stopover-item .route-stopover-dot {
   position: relative;
   top: 5px;
   left: 0px;
   min-width: 14px;
}

#routeModal .route-stopover-item::before {
  content: "";
    position: absolute;
    top: 22px;
    left: 6px;
    width: 2px;
    height: 100%;
    border-left: 1px dashed #59626C;
}

html[data-theme="dark"] #routeModal .route-stopover-item::before {
   border-left: 1px dashed #ffffff;
}

#routeModal .route-stopover-item:last-child::before {
  display: none;
}

.location-item::after {
  left: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination .pagination-btn,
.pagination .pagination-page {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F0F1F1;
    color: #59626C;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 1px solid #F0F1F1;
    transition: 0.5s ease-in-out;
}

.pagination .pagination-page.active, .pagination .pagination-btn:hover {
    background: #2b80ff;
    color: #FFF;
    border: 1px solid #2b80ff;
    transition: 0.5s ease-in-out;
}

#driverName {
  color: #59626C !important;
}

#bookingDetails .px-4.py-3.bg-gray-800.border-b.border-gray-700.cursor-pointer.transition-colors svg {
  color: #1A1D2A !important;
}

#bookingDetails .px-4.py-3.bg-gray-800.border-b.border-gray-700.cursor-pointer.transition-colors span {
    font-size: 18px;
    color: #1A1D2A !important;
}

html[data-theme="dark"] #bookingDetails .px-4.py-3.bg-gray-800.border-b.border-gray-700.cursor-pointer.transition-colors span,
html[data-theme="dark"] #bookingDetails .px-4.py-3.bg-gray-800.border-b.border-gray-700.cursor-pointer.transition-colors svg {
    color: #FFF !important;
}

html[data-theme="dark"] .find-the--ride .input-group.p-2 {
  background-color: #1A1D2A !important;
}

html[data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator,
html[data-theme="dark"] input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);   
}

html[data-theme="dark"] .px-4.py-4.bg-gray-800.border-b.border-gray-700 .pricePerSeat,
html[data-theme="dark"] #cancelledUserInfoToggle .text-gray-300.font-medium,
html[data-theme="dark"] #bookedUserInfoToggle .text-gray-300.font-medium,
html[data-theme="dark"] #tripInfoToggle .text-gray-300.font-medium,
html[data-theme="dark"] #cancelledUserInfoToggle .text-gray-400,
html[data-theme="dark"] #bookedUserInfoToggle .text-gray-400,
html[data-theme="dark"] #tripInfoToggle .text-gray-400,
html[data-theme="dark"] h2.sec-title,
html[data-theme="dark"] .options-column-block h3,
html[data-theme="dark"] .page-footer-area p,
html[data-theme="dark"] .currency-prefix,
html[data-theme="dark"] .history-list .content-with-price .badge,
html[data-theme="dark"]  #driverName,
html[data-theme="dark"] .mt-4.travel-preferences-div span,
html[data-theme="dark"] .mt-4.travel-preferences-div h4,
html[data-theme="dark"] .rides-list .ride-driver-line .ride-driver-name {
   color: #FFF !important;
}

html[data-theme="dark"] .options-column-block p,
html[data-theme="dark"] ul.check-list li,
html[data-theme="dark"] ul.check-list li strong,
html[data-theme="dark"] .footer-copyright-text p {
  color: #7691A3;
}

html[data-theme="dark"] .faq {
    background: #1a1d2a;
}

.px-4.py-4.bg-gray-800.border-b.border-gray-700 .pricePerSeat {
   color: #1A1D2A !important;
}

.mt-4.travel-preferences-div span,
.mt-4.travel-preferences-div h4 {
    color: #59626C;
}

.rides-list .ride-driver-line {
    padding-left: 0px !important;
    margin-bottom: 10px;
}

.ride-card.ride-redirection .w-25.flex {
    margin-bottom: 10px;
}

.ride-map-container.map-container .map-header svg {
    width: 25px;
    height: 25px;
    min-width: 25px;
}

.driver-verify-badge.unverified svg {
  color: #FFF;
}

label[for="twoPassengerMaxInBack"],
label[for="womenOnly"],
#paymentModalTitle,
#preferences-modal h3 {
   margin-bottom: 0px !important;
}

#preferences-modal br {
  display: none;
}

button.remove-stopover {
   font-size: 30px;
}

.transaction-filters.mb-3,
.history-list  {
  padding: 0 10px;
}

.transaction-filters.mb-3 .filter-group label {
  color: #59626C;
}

#cancelledUserInfoToggle .text-gray-300.font-medium,
#bookedUserInfoToggle .text-gray-300.font-medium,
#tripInfoToggle .text-gray-300.font-medium,
#cancelledUserInfoToggle .text-gray-400,
#bookedUserInfoToggle .text-gray-400,
#tripInfoToggle .text-gray-400 {
  color: #1A1D2A;
}


/* Scrollbar Styling */
.methods-scroll::-webkit-scrollbar {
  width: 6px;
}
.methods-scroll::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 4px;
}

/* Responsive Improvements */
@media (max-width: 576px) {
  .payment-method label {
    font-size: 14px;
    gap: 8px;
  }

  .payment-method img {
    width: 32px;
    height: 32px;
  }
}

#globalModal input,
#globalModal select,
#globalModal textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: #2c2c2e;
  color: white;
  border: 1px solid #3a3a3c;
  border-radius: 0.5rem;
  outline: none;
}

#globalModal label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #e5e5e7;
}

#globalModal button[type="submit"],
#globalModal button.submit-button {
  background-color: #2563eb;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

#globalModal button[type="submit"]:hover,
#globalModal button.submit-button:hover {
  background-color: #1e40af;
}

.spinner {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #ccc;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast {
position: fixed;
top: 80px;
right: 20px;
padding: 12px 20px;
border-radius: 6px;
color: white;
font-size: 14px;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease;
z-index: 1000;
}
.toast.success {
background-color: #38a169;
}
.toast.error {
background-color: #e53e3e;
}
.toast.show {
opacity: 1;
transform: translateY(0);
}
.toast i {
margin-right: 8px;
font-size: 16px;
vertical-align: middle;
}

.min-h-screen { min-height: 100vh; }
.text-white { color: #ffffff; }
.font-sans { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.border-b { border-bottom: 1px solid var(--color-divider); }
.border-gray-800 { border-color: #1f2937; }
.flex { display: flex; }
.items-center { align-items: center; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.mr-4 { margin-right: 1rem; }
.cursor-pointer { cursor: pointer; }
.hover\:text-orange-400:hover { color: #fb923c; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.font-semibold { font-weight: 600; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
/* .bg-gray-800 { background-color: #1f2937; }
.border-gray-700 { border-color: #374151; } */
.justify-between { justify-content: space-between; }
.text-green-400 { color: #4ade80; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.w-4 { width: 1.4rem; }
.h-4 { height: 1.4rem; }
.mr-2 { margin-right: 0.5rem; }
.text-orange-400 { color: #fb923c; }
.font-medium { font-weight: 500; }
.hover\:text-orange-300:hover { color: #fdba74; }
.mr-1 { margin-right: 0.25rem; }
.mb-1 { margin-bottom: 0.25rem; }
.text-gray-400 { color: #9ca3af; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.font-bold { font-weight: 700; }
.hover\:bg-gray-750:hover { background-color: transparent; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.mr-3 { margin-right: 0.75rem; }
.rotate-90 { transform: rotate(90deg); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.text-gray-300 { color: #59626C; }
.text-gray-300 svg,
.ride-info-item svg {
  width: 25px;
  height: 25px;
  min-width: 25px;
   color: #59626C;
}
html[data-theme="dark"] .text-gray-300 svg,
html[data-theme="dark"] .ride-info-item svg 
html[data-theme="dark"] .text-gray-300,
html[data-theme="dark"] .border-gray-700 span,
html[data-theme="dark"] #departureDateTime {
  color: #FFF;
}
.space-y-4 > * + * { margin-top: 1rem; }
.items-start { align-items: flex-start; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.bg-red-500 { background-color: #ef4444; }
.rounded-full { border-radius: 9999px; }
.mt-2 { margin-top: 0.5rem; }
.flex-shrink-0 { flex-shrink: 0; }
.ml-4 { margin-left: 1rem; }
.flex-1 { flex: 1 1 0%; }
.text-orange-400 { color: #fb923c; }
.mb-2 { margin-bottom: 0.5rem; }
.border-l-2 { border-left-width: 2px; }
.border-dashed { border-style: dashed; }
.h-8 { height: 2rem; }
.bg-green-500 { background-color: #10b981; }
.text-green-400 { color: #4ade80; }
.mt-4 { margin-top: 1rem; }
.justify-end { justify-content: flex-end; }
.relative { position: relative; }
.bg-gray-600 { background-color: #4b5563; }
.rounded-full { border-radius: 9999px; }
.absolute { position: absolute; }
.-bottom-1 { bottom: -0.25rem; }
.-right-1 { right: -0.25rem; }
.bg-green-500 { background-color: #10b981; }
.text-white { color: #ffffff; }
.ml-3 { margin-left: 0.75rem; }
.text-yellow-400 { color: #facc15; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.bg-blue-600 { background-color: #2563eb; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.bg-green-600 { background-color: #16a34a; }
.hover\:bg-green-700:hover { background-color: #166534; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.w-24 { width: 6rem; }
.h-16 { height: 4rem; }
.rounded-lg { border-radius: 0.5rem; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.border-t { border-top-width: 1px; }
.rounded-xl { border-radius: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.bg-orange-500 { background-color: #f97316; }
.hover\:bg-orange-600:hover { background-color: #ea580c; }
.duration-200 { transition-duration: 200ms; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.ml-1\.5 { margin-left: 0.375rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-1 { margin-left: 0.25rem; }
.-m-2 { margin: -0.5rem; }
.p-2 { padding: 0.5rem; }
.w-50{width: 50%}
.w-100{width: 100%}
.p-4{padding: 1rem;}
.pb-4{padding-bottom: 1rem;}
.mb-4{margin-bottom: 1rem;}
.pb-2{padding-bottom: 0.5rem;}
.btn-b-0{border: 0;}
.bg-yellow-500 {
  background-color: #facc15;
}

.modal-header .modal-close-btn{border-radius: 50px;
  width: 30px;
  height: 30px;
  border: 0px;
  font-size: 20px;
  cursor: pointer;

}
input#conversationSearch {
    color: #90a3bf;
}

.status-heading,.document-title{color: var(--color-text-primary)}
.btn.edit-btn i,.btn i {padding-right: 5px;}
.vehicle-actions .btn.btn-icon,.btn-icon.btn{padding: 0.5rem 0rem !important}

.add-city-container{display: flex;gap: 10px;}
.form-check{display: flex; gap: 10px;align-items: center;padding-bottom: 15px;}
.form-check .form-check-label{margin-bottom: 0;}
.form-check input[type="checkbox"]{visibility: hidden;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin: 0px 0px 0 0;}
.form-check input[type="checkbox"]:before{content: "";
  position: absolute;
  border: 1px solid #ccc3b8;
  box-sizing: border-box;
  visibility: visible;
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 5px;}
.form-check input[type="checkbox"]:checked::after{content: "";
  position: absolute;
  left: 7px;
  bottom: 3px;
  width: 5px;
  height: 12px;
  border: solid var(--color-primary);
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  visibility: visible;
  box-sizing: border-box;}
.price-counter{font-size: 20px}
  .price-counter button{width: 28px;
  margin: 0 8px;
  font-size: 20px;
  line-height: normal;
  height: 30px;cursor: pointer;}
.luggage-box-group,.gap-10{gap:10px; align-items: center; margin-bottom: 10px;}
.justify-between{justify-content: space-between;}

.luggage-box.border-b.pb-2.mb-2 {
   padding-top: 15px;
}

table, th, td {
  width: -webkit-fill-available;
  border: 1px solid var(--color-divider);
  border-collapse: collapse;
}

table th, table td{padding: 5px; text-align: left;}

.location-list{border-bottom: 1px solid var(--color-divider);padding-bottom: 15px;margin-bottom: 15px;}
.location-list label,.ride-loc-list label{
  margin-bottom: 10px;
  display: block;
  font-size: 15px;
}
.location-list p{margin-bottom: 0;font-size: 14px;} 
.w-50{width: 50%;}
.rides-veh-img img{height: 200px;width: 100%}
.confirm-ride{cursor: pointer;}
.driver-call-button,.driver-chat-button{display: flex; justify-content: center;}
.driver-call-button svg,.driver-chat-button svg{margin: 0 !important}
.ride-status.booked{background: green; color:white;}

.btn-success{background: green; color: #fff;border-radius: var(--radius-full);}
.btn-success:hover{color: #fff;opacity: 0.8;}
.ride-loc-root{position: relative;padding-bottom: 20px;z-index: 1}
.ride-loc-root:before{
  content: "";
  position: absolute;
  width: 2px;
  border-right:2px dashed #828282;
  left: 3px;
  top: 16px;
  bottom: -7px;
  z-index: -1;
}
.ride-loc-root.last:before{display: none;}

.phone-box{min-width: 120px;}
.select2-container {
    width: 166px !important;
    min-width: 120px;
}

#phoneLoginForm .input-group .select2-container,
#multi-step-form .input-group .select2-container {
    width: auto !important;
    min-width: 120px;
}

#phoneLoginForm .select2-container .select2-selection--single,
#multi-step-form .select2-container .select2-selection--single {
  border: none;
}

#phoneLoginForm .select2-container .select2-selection__clear,
#multi-step-form .select2-container .select2-selection__clear {
  display: none;
}

#phoneLoginForm .phone-box .select2-container--default .select2-selection--single .select2-selection__arrow,
#multi-step-form .phone-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0px;
}



.phone-box .select2-container .selection{
  height: 100%;
  display: flex;
  align-items: center;

}

.phone-box .select2-container .select2-selection--single{height: 100%;background-color: var(--color-card);
  border: 1px solid var(--color-border);color: var(--color-text-primary);width: 100%;}
.phone-box .select2-container--default .select2-selection--single .select2-selection__rendered{line-height: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  color: var(--color-text-primary);
}
.phone-box .select2-container--default .select2-selection--single .select2-selection__arrow{height: 98%;right: 6px;}

.phone-box .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color: var(--color-text-primary) transparent transparent transparent}
.phone-box .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color: transparent transparent var(--color-text-primary) transparent}

.select2-dropdown{background-color: var(--color-card) !important;border-color: var(--color-border) !important}

.select2-container--default .select2-results__option--selected,.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color: var(--card-bg) !important;}

.image-previews .image-preview{position: relative;width: 100%;}
.image-previews .image-preview img{height: 250px;object-fit: cover;width: 100%;}
.image-previews .image-preview .remove-image{position: absolute; top: 10px;right: 10px;}

.alert.alert-warning{background: #eb964c; color: #fff}

.siddhi-cms-pages{min-height: 80vh;}
.siddhi-cms-pages{padding: 100px 0 50px 0;}

.verification-badge.unverified,
.verification-badge.pending { background:#9CA3AF; color:#fff; }
.verification-badge.verified { background:#10B981; color:#fff; }
.driver-verify-badge{display:inline-flex;align-items:center;gap:4px;padding:2px 6px;border-radius:12px;font-size:11px;font-weight:600;line-height:1}
.driver-verify-badge svg{width:24px !important;height:24px !important}
.driver-verify-badge.verified{background:#059669;color:#fff}
.driver-verify-badge.unverified{background:#6b7280;color:#fff}
.input-icon svg{width:24px !important;height:24px !important}

.stopover-modal .modal-content {
    padding: 30px;
    background: #FFF;
    border-radius: 20px;
}

.stopover-modal .modal-body {
  padding-right: 20px;
}

.rides-section {
    margin-bottom: 0 !important;
}
/*star rating css*/
.rating {
    border: none;
    float: none;
    margin: 0 auto;
    display: block;
}
.rating > input {
    display: none;
}
.rating > label:before {
    content: '\f005';
    font-family: FontAwesome;
    margin: 0px 5px;
    font-size: 3.5rem;
    display: inline-block;
    cursor: pointer;
}
.rating > .half:before {
    content: '\f089';
    position: absolute;
    cursor: pointer;
    top: 48px; 
}
.rating > label {
    color: #ccc;
    float: right;
    cursor: pointer;
}
.rating > input:checked ~ label,
.rating:not(:checked) > label:hover ~ label {
    color: #eca700;
}
.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ input:hover ~ label {
    color: #eca700;
}
.rating[data-rating="0.5"] > input ~ label.half[for="star0.5"] {
    color: #eca700;
}
.rating[data-rating="1"] > input ~ label.half[for="star0.5"], .rating[data-rating="1"] > input ~ label.full[for="star1"] {
    color: #eca700;
}
.rating[data-rating="1.5"] > input ~ label.half[for="star0.5"], .rating[data-rating="1.5"] > input ~ label.full[for="star1"], .rating[data-rating="1.5"] > input ~ label.half[for="star1.5"] {
    color: #eca700;
}
.rating[data-rating="2"] > input ~ label.half[for="star0.5"], .rating[data-rating="2"] > input ~ label.full[for="star1"], .rating[data-rating="2"] > input ~ label.half[for="star1.5"], .rating[data-rating="2"] > input ~ label.full[for="star2"] {
    color: #eca700;
}
.rating[data-rating="2.5"] > input ~ label.half[for="star0.5"], .rating[data-rating="2.5"] > input ~ label.full[for="star1"], .rating[data-rating="2.5"] > input ~ label.half[for="star1.5"], .rating[data-rating="2.5"] > input ~ label.full[for="star2"], .rating[data-rating="2.5"] > input ~ label.half[for="star2.5"] {
    color: #eca700;
}
.rating[data-rating="3"] > input ~ label.half[for="star0.5"], .rating[data-rating="3"] > input ~ label.full[for="star1"], .rating[data-rating="3"] > input ~ label.half[for="star1.5"], .rating[data-rating="3"] > input ~ label.full[for="star2"], .rating[data-rating="3"] > input ~ label.half[for="star2.5"], .rating[data-rating="3"] > input ~ label.full[for="star3"] {
    color: #eca700;
}
.rating[data-rating="3.5"] > input ~ label.half[for="star0.5"], .rating[data-rating="3.5"] > input ~ label.full[for="star1"], .rating[data-rating="3.5"] > input ~ label.half[for="star1.5"], .rating[data-rating="3.5"] > input ~ label.full[for="star2"], .rating[data-rating="3.5"] > input ~ label.half[for="star2.5"], .rating[data-rating="3.5"] > input ~ label.full[for="star3"], .rating[data-rating="3.5"] > input ~ label.half[for="star3.5"] {
    color: #eca700;
}
.rating[data-rating="4"] > input ~ label.half[for="star0.5"], .rating[data-rating="4"] > input ~ label.full[for="star1"], .rating[data-rating="4"] > input ~ label.half[for="star1.5"], .rating[data-rating="4"] > input ~ label.full[for="star2"], .rating[data-rating="4"] > input ~ label.half[for="star2.5"], .rating[data-rating="4"] > input ~ label.full[for="star3"], .rating[data-rating="4"] > input ~ label.half[for="star3.5"], .rating[data-rating="4"] > input ~ label.full[for="star4"] {
    color: #eca700;
}
.rating[data-rating="4.5"] > input ~ label.half[for="star0.5"], .rating[data-rating="4.5"] > input ~ label.full[for="star1"], .rating[data-rating="4.5"] > input ~ label.half[for="star1.5"], .rating[data-rating="4.5"] > input ~ label.full[for="star2"], .rating[data-rating="4.5"] > input ~ label.half[for="star2.5"], .rating[data-rating="4.5"] > input ~ label.full[for="star3"], .rating[data-rating="4.5"] > input ~ label.half[for="star3.5"], .rating[data-rating="4.5"] > input ~ label.full[for="star4"], .rating[data-rating="4.5"] > input ~ label.half[for="star4.5"] {
    color: #eca700;
}
.rating[data-rating="5"] > input ~ label.half[for="star0.5"], .rating[data-rating="5"] > input ~ label.full[for="star1"], .rating[data-rating="5"] > input ~ label.half[for="star1.5"], .rating[data-rating="5"] > input ~ label.full[for="star2"], .rating[data-rating="5"] > input ~ label.half[for="star2.5"], .rating[data-rating="5"] > input ~ label.full[for="star3"], .rating[data-rating="5"] > input ~ label.half[for="star3.5"], .rating[data-rating="5"] > input ~ label.full[for="star4"], .rating[data-rating="5"] > input ~ label.half[for="star4.5"], .rating[data-rating="5"] > input ~ label.full[for="star5"] {
    color: #eca700;
}
.rating[data-rating="0.5"] > input ~ label.half[for="attr_star0.5"] {
    color: #eca700;
}
.rating[data-rating="1"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="1"] > input ~ label.full[for="attr_star1"] {
    color: #eca700;
}
.rating[data-rating="1.5"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="1.5"] > input ~ label.full[for="attr_star1"], .rating[data-rating="1.5"] > input ~ label.half[for="attr_star1.5"] {
    color: #eca700;
}
.rating[data-rating="2"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="2"] > input ~ label.full[for="attr_star1"], .rating[data-rating="2"] > input ~ label.half[for="attr_star1.5"], .rating[data-rating="2"] > input ~ label.full[for="attr_star2"] {
    color: #eca700;
}
.rating[data-rating="2.5"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="2.5"] > input ~ label.full[for="attr_star1"], .rating[data-rating="2.5"] > input ~ label.half[for="attr_star1.5"], .rating[data-rating="2.5"] > input ~ label.full[for="attr_star2"], .rating[data-rating="2.5"] > input ~ label.half[for="attr_star2.5"] {
    color: #eca700;
}
.rating[data-rating="3"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="3"] > input ~ label.full[for="attr_star1"], .rating[data-rating="3"] > input ~ label.half[for="attr_star1.5"], .rating[data-rating="3"] > input ~ label.full[for="attr_star2"], .rating[data-rating="3"] > input ~ label.half[for="attr_star2.5"], .rating[data-rating="3"] > input ~ label.full[for="attr_star3"] {
    color: #eca700;
}
.rating[data-rating="3.5"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="3.5"] > input ~ label.full[for="attr_star1"], .rating[data-rating="3.5"] > input ~ label.half[for="attr_star1.5"], .rating[data-rating="3.5"] > input ~ label.full[for="attr_star2"], .rating[data-rating="3.5"] > input ~ label.half[for="attr_star2.5"], .rating[data-rating="3.5"] > input ~ label.full[for="attr_star3"], .rating[data-rating="3.5"] > input ~ label.half[for="attr_star3.5"] {
    color: #eca700;
}
.rating[data-rating="4"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="4"] > input ~ label.full[for="attr_star1"], .rating[data-rating="4"] > input ~ label.half[for="attr_star1.5"], .rating[data-rating="4"] > input ~ label.full[for="attr_star2"], .rating[data-rating="4"] > input ~ label.half[for="attr_star2.5"], .rating[data-rating="4"] > input ~ label.full[for="attr_star3"], .rating[data-rating="4"] > input ~ label.half[for="attr_star3.5"], .rating[data-rating="4"] > input ~ label.full[for="attr_star4"] {
    color: #eca700;
}
.rating[data-rating="4.5"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="4.5"] > input ~ label.full[for="attr_star1"], .rating[data-rating="4.5"] > input ~ label.half[for="attr_star1.5"], .rating[data-rating="4.5"] > input ~ label.full[for="attr_star2"], .rating[data-rating="4.5"] > input ~ label.half[for="attr_star2.5"], .rating[data-rating="4.5"] > input ~ label.full[for="attr_star3"], .rating[data-rating="4.5"] > input ~ label.half[for="attr_star3.5"], .rating[data-rating="4.5"] > input ~ label.full[for="attr_star4"], .rating[data-rating="4.5"] > input ~ label.half[for="attr_star4.5"] {
    color: #eca700;
}
.rating[data-rating="5"] > input ~ label.half[for="attr_star0.5"], .rating[data-rating="5"] > input ~ label.full[for="attr_star1"], .rating[data-rating="5"] > input ~ label.half[for="attr_star1.5"], .rating[data-rating="5"] > input ~ label.full[for="attr_star2"], .rating[data-rating="5"] > input ~ label.half[for="attr_star2.5"], .rating[data-rating="5"] > input ~ label.full[for="attr_star3"], .rating[data-rating="5"] > input ~ label.half[for="attr_star3.5"], .rating[data-rating="5"] > input ~ label.full[for="attr_star4"], .rating[data-rating="5"] > input ~ label.half[for="attr_star4.5"], .rating[data-rating="5"] > input ~ label.full[for="attr_star5"] {
    color: #eca700;
}
.rating > .half:last-child:before {
  display: none;
}
