



/* tks wrapper */

/* Wrapper */
.tks-wrapper {
  background: #ffffff;
    border-radius: 25px 25px 0px 0px;
  padding: 15px;
  border: 1px solid rgba(216, 216, 216, 0.867);
  font-family: "Poppins", sans-serif;
  position: sticky;
  top: 0px;
  z-index: 99;
}
 
/* Header */
.tks-header {
  margin-bottom: 8px;
}
 
.tks-header-text {
  font-size: 14px;
  color: #555555;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  text-align: center;
}
 
.tks-header-highlight {
  color: #9f0900;
  font-weight: 600;
}
 
/* Cards Container */
.tks-cards-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
 
.tks-cards-container::-webkit-scrollbar {
  display: none;
}
 
/* Individual Card */
.tks-card {
  flex: 0 0 auto;
  min-width: 135px;
  max-width: 150px;
  background: #fafafa;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  scroll-snap-align: start;
  box-sizing: border-box;
}
 
.tks-card:hover {
  border-color: #d4a5a5;
  background: #ffffff;
}

.tks-card {
    cursor: pointer;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.tks-card--selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.08);
}

.tks-card .ticket-check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, transform 0.15s ease;
    border-radius: 50%;
}

.tks-card--selected .ticket-check {
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(1.02);
}

.tks-card--selected .ticket-check svg polyline {
    stroke: #ffffff;
}

.ticket-check{
    margin: auto;
}
 
/* Selected Card */
.tks-card.tks-card--selected {
  border-color: #9f0900;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  box-shadow: 0 0 0 1px #9f0900, 0 4px 12px rgba(159, 9, 0, 0.15);
}
 
.tks-card.tks-card--selected::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9f0900 0%, #cc1100 100%);
  border-radius: 8px 8px 0 0;
}
 
/* Popular Card */
.tks-card.tks-card--popular {
  border-color: #ffd700;
}
 
.tks-card.tks-card--popular.tks-card--selected {
  border-color: #9f0900;
}
 
/* Popular Badge */
.tks-popular-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #9f0900 0%, #cc1100 100%);
  color: #ffffff;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1.4;
}
 
/* Card Content */
.tks-card-content {
  text-align: center;
}
 
.tks-card-name {
  font-size: 11px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 6px 0;
  padding: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.tks-card.tks-card--selected .tks-card-name {
  color: #9f0900;
}
 
/* Card Price */
.tks-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 6px;
}
 
.tks-card-currency {
  font-size: 10px;
  font-weight: 500;
  color: #888888;
}
 
.tks-card-amount {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}
 
.tks-card.tks-card--selected .tks-card-amount {
  color: #9f0900;
}
 
/* Read More Link */
.tks-read-more {
  background: none;
  border: none;
  color: #9f0900;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-decoration: underline;
  transition: color 0.2s ease;
  font-family: inherit;
}
 
.tks-read-more:hover {
  color: #cc1100;
}
 
/* ============================================
   MODAL STYLES
   ============================================ */
 
.tks-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  animation: tksModalFadeIn 0.2s ease;
  box-sizing: border-box;
}
 
@keyframes tksModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
 
.tks-modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: tksModalSlideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
 
@keyframes tksModalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
.tks-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease;
  z-index: 1;
  padding: 0;
}
 
.tks-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
 
.tks-modal-header {
  background: linear-gradient(135deg, #9f0900 0%, #cc1100 100%);
  color: #ffffff;
  padding: 30px 24px 24px;
  text-align: center;
  position: relative;
}
 
.tks-modal-popular {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
 
.tks-modal-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  padding: 0;
  color: #ffffff;
}
 
.tks-modal-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
 
.tks-modal-currency {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}
 
.tks-modal-amount {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
 
.tks-modal-desc {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
  padding: 0;
}
 
.tks-modal-body {
  padding: 24px;
}
 
.tks-modal-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 16px 0;
  padding: 0;
}
 
.tks-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
.tks-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
 
.tks-feature-item:last-child {
  border-bottom: none;
}
 
.tks-feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
 
.tks-feature-item span {
  flex: 1;
}
 
/* ============================================
   RESPONSIVE STYLES
   ============================================ */
 
@media (max-width: 991px) {
  .tks-wrapper {
    padding: 14px 16px;
  }
 
  .tks-header-text {
    font-size: 13px;
  }
 
  .tks-cards-container {
    gap: 8px;
  }
 
  .tks-card {
    min-width: 125px;
    max-width: 140px;
    padding: 10px 8px;
  }
 
  .tks-card-name {
    font-size: 10px;
  }
 
  .tks-card-amount {
    font-size: 16px;
  }
}
 
@media (max-width: 576px) {
  .tks-wrapper {
    padding: 12px 14px;

  }
 
  .tks-header {
    margin-bottom: 10px;
  }
 
  .tks-header-text {
    font-size: 12px;
  }
 
  .tks-cards-container {
    gap: 6px;
  }
 
  .tks-card {
    min-width: 110px;
    max-width: 125px;
    padding: 10px 6px;
    border-radius: 8px;
  }
 
  .tks-popular-badge {
    font-size: 8px;
    padding: 2px 6px;
    top: -8px;
  }
 
  .tks-card-name {
    font-size: 9px;
    margin-bottom: 4px;
  }
 
  .tks-card-price {
    margin-bottom: 4px;
  }
 
  .tks-card-currency {
    font-size: 9px;
  }
 
  .tks-card-amount {
    font-size: 15px;
  }
 
  .tks-read-more {
    font-size: 9px;
  }
 
  /* Modal Mobile */
  .tks-modal-overlay {
    padding: 15px;
    align-items: flex-end;
  }
 
  .tks-modal-content {
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }
 
  .tks-modal-header {
    padding: 24px 20px 20px;
  }
 
  .tks-modal-title {
    font-size: 18px;
  }
 
  .tks-modal-amount {
    font-size: 28px;
  }
 
  .tks-modal-body {
    padding: 20px;
  }
 
  .tks-feature-item {
    font-size: 12px;
    padding: 6px 0;
  }
}
/* tks wrapper */

/* badge wrapper */

.form-right-col .tks-wrapper{
    padding: 10px;
    position: static;
}

.form-right-col .tks-header{
    margin-bottom: 5px;
}


.form-right-col .tks-cards-container{
    padding: 10px;
    flex-wrap: wrap !important;
    gap: 5px;
}

.form-right-col .tks-card-price{
    margin-bottom: 0px;
}

.form-right-col .tks-card{
    padding: 7px;
        min-width: 115px;
}

.form-right-col .tks-wrapper{
    margin-bottom: 10px;
    border-radius: 15px;
}

.custom_form_card {
    border-radius: 0px 0px 25px 25px;
    border-top: none;
}



/* badge wrapper */
/* form_warapper */

.tks_wrapper_form{
    background: linear-gradient(331deg, #000018 53.35%, #BB3D3F  100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    min-height: 110px;
}

.tks_wrapper_form h4{
    font-size: 13px;
    margin: 0px;
    font-weight: 300;
}

.tks_wrapper_form h3{
    font-size: 18px;
    text-transform: uppercase;
    margin: 5px 0px 0px 0px;
    font-weight: 600;
}


.tks_wrapper_form button{
    background: linear-gradient(45deg, #ff7901, #ffdd5f);
    color: #000;
    border: none;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;

}
.tks_wrapper_form button:hover{
    transform: scale(1.05);
    transition: all 0.3s ease;
}


/* modal */

.service-wizard-body .tks-wrapper{
    border: none !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .tks_wrapper_form{
        padding:  12px 8px;
    }

    .tks_wrapper_form button{
        font-size: 10px;
    }
}