.CheckoutContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}


.td-schedule-details-title{
    font-weight:800 !important;
    font-size:27px;
}

.OrderSummary {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 110px;
}
.td-section-text{
    white-space: pre-line;
}
.OrderSummary h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e5e5;
}

.TicketItem {
    margin-bottom: 25px;
}

.TicketName {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.TicketDescription {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.PriceSummary {
    border-top: 2px solid #e5e5e5;
    padding-top: 20px;
    margin-top: 25px;
}

.PriceRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.PriceLabel {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.PriceAmount {
    font-size: 28px;
    font-weight: 700;
    color: var(--td-theme-primary);
}

.Currency {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-left: 0px;
}

.PayBtnCont{
    display:flex;
}
.PayBtn{
    margin:30px auto 4px;
}



.SecureBadge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #666;
    font-size: 13px;
}

.SecureBadge i {
    color: var(--td-theme-primary);
}

.CheckoutInfo {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--td-theme-primary);
}

.InfoTitle {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.InfoText {
    color: #666;
    font-size: 15px;
    margin-bottom: 12px;
}

.InfoText i {
    color: var(--td-theme-primary);
    margin-right: 10px;
    width: 20px;
}

@media (max-width: 991px) {
    .OrderSummary {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .CheckoutContainer {
        padding: 30px 15px;
    }


    .OrderSummary {
        padding: 25px 20px;
    }

    .OrderSummary h3 {
        font-size: 20px;
    }

    .TicketName {
        font-size: 16px;
    }

    .PriceAmount {
        font-size: 24px;
    }


    .CheckoutInfo {
        padding: 25px 20px;
    }
}









.CustomList {
  padding-left: 20px;
  margin: 10px 0;
}

.CustomList li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
  
  list-style: unset !important;
}