:root {
    --tc-primary-color: #ef4135;
    --tc-secondary-color: #f0f8ff;
    --tc-box-color: #f3f3f3;
}

.tc-box-color{
    background-color: var(--tc-box-color);
}
.tc_rounded_box {
    margin-top: 20px;
    padding: 1em;
    /* border: 1px solid #ccc; */
    border-radius: 20px;
}

.tc-rounded-box {
    border-radius: 20px;
}

.tc-box-shadow {
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
}

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

.tc-bold {
    font-weight: bold;
}
.tc-uppercase {
    text-transform: uppercase;
}
.tc-text-sm {
    font-size: 0.8em;
}
.tc-text-md {
    font-size: 1em;
}
.tc-text-ml {
    font-size: 1.25em;
}
.tc-text-lg {
    font-size: 1.75em;
}

.tc-text-double{
    font-size: 2em;
}

.tc-text-xl {
    font-size: 2.5em;
}


.tc-bg-light-gray {
    background-color: #f3f3f3;
}

.collapsible{
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    display: none;
}

.tc-flex-row {
    display: flex !important;
    /* align-items: center; */
}
.tc-flex-row-reverse {
    display: flex !important;
    flex-direction: row-reverse;
}
.tc-space-between {
    justify-content: space-between;
}
.tc-justify-start {
    justify-content: flex-start;
}
.tc-justify-center {
    justify-content: center;
}
.tc-justify-end {
    justify-content: flex-end;
}
.tc-justify-around {
    justify-content: space-around;
}
.tc-justify-evenly {
    justify-content: space-evenly;
}
.tc-gap-10 {
    gap: 10px;
}
.tc-gap-sm {
    gap: 5px;
}
.tc-gap-md {
    gap: 15px;
}
.tc-gap-lg {
    gap: 30px;
}

.tc-flex-column {
    display: flex;
    flex-direction: column;
}
.tc-flex-column-reverse {
    display: flex;
    flex-direction: column-reverse;
}
.tc-flex-wrap {
    flex-wrap: wrap;
}
.tc-flex-nowrap {
    flex-wrap: nowrap;
}
.tc-align-items-start {
    align-items: flex-start;
}
.tc-align-items-center {
    align-items: center;
}
.tc-align-items-end {
    align-items: flex-end;
}
.tc-align-items-stretch {
    align-items: stretch;
}
.tc-align-items-baseline {
    align-items: baseline;
}

.tc-remove-default-margins *{
    margin: 0;
}


.tc-padding-sm {
    padding: 5px;
}
.tc-padding-md {
    padding: 15px;
}
.tc-padding-lg {
    padding: 30px;
}


.tc-mt-sm {
    margin-top: 5px;
}
.tc-mb-sm {
    margin-bottom: 5px;
}

.tc-mt-md {
    margin-top: 15px;
}
.tc-mb-md {
    margin-bottom: 15px;
}

.tc-mt-lg {
    margin-top: 30px;
}
.tc-mb-lg {
    margin-bottom: 30px;
}


.tc-w-full{
    width: 100%;
}

.tc-w-50{
    width: 50%;
}

.tc-pill {
    padding: 0.2em 0.6em;
    border-radius: 5px;
    font-size: 0.8em;
    border: 1px solid #9c9c9c;
    color: #9c9c9c;
    background-color: #f3f3f3;
}

.tc-pill-success, .tc-pill-completed, .tc-pill-confirmed {
    border-color: #00B087;
    color: #00B087;
    background-color: #16c09863;
}

.tc-pill-danger, .tc-pill-pending, .tc-pill-cancelled {
    border-color: #DF0404;
    color: #DF0404;
    background-color: #FFC5C5;
}

.tc-booking-form .tc-button, 
button.tc-button,
a.tc-button {
    background-color: var(--tc-primary-color);
    color: #fff !important;
    padding: 0.6em 2em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
}

.tc-booking-form:hover .tc-button:hover, 
button.tc-button:hover,
a.tc-button:hover{
    background-color: #D93024 !important;
}


.ticket-option:has(input[type="radio"]:checked) {
    border-color: var(--tc-primary-color);
    background-color: #f0f8ff;
}

.match_date_time {
    background-color: #f3f3f3;
    font-weight: bold;
    min-width: 130px;
}

.match_date_time .day_month {
    font-size: 26px;
    font-weight: bold;
}

.match-title {
    font-size: 32px;
    font-weight: 600;
}


.tc-icon {
    width: 0.5em;
    height: 0.5em;
    fill: currentColor;
    vertical-align: middle;
}

.tc-icon-chevron-down {
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    display: inline-block;
    margin-top: -0.25em;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.tc-icon-chevron-up {
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    display: inline-block;
    margin-bottom: -0.25em;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}


/** Match filters **/
#tc-search-matches {
    max-width: 100%;
}
.tc-search-wrap{
    width: 100%;
    max-width: 460px;
    position: relative;
}

.tc-search-wrap .tc-search-icon {
    background: var(--tc-primary-color);
    position: absolute;
    width: 40px;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 15px 15px 0;
}
.tc-search-wrap .tc-search-icon svg{
    max-width: 50%;
}

#tc-match-filters-form select, #tc-match-filters-form input {
    border-radius: 15px;
    border: 1px solid #E7E7E7;
}

#tc-match-filters-form select{
    background: #fbfbfb;
}

.toggle-details{
    font-weight: bold;
    cursor: pointer;
}


/** Quantity Input **/
.quantity-input input {
    padding: 0 !important;
    width: 35px !important;
    height: 30px !important;
    border: 1px solid #ccc !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    border-radius: 0 !important;
    text-align: center !important;
}

.quantity-input {
    display: flex;
    overflow: hidden;
    border: 1px solid #ccc;
    vertical-align: middle;
    border-radius: 6px;
}

.quantity-input>span{
    width: 25px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.quantity-input>span:hover{
    background-color: #eee;
}

.tc-alert{
    padding: 1em;
    border-radius: 10px;
    margin-bottom: 1em;
    margin-top: 1em;
    border: 1px solid #ccc;
    scroll-margin-top: 200px;
} 

.tc-alert-warning{
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.tc-alert-error{
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
.tc-alert-success{
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.tc-alert a{
    color: inherit;
    text-decoration: underline !important;
    font-weight: bold;
}


#tc-payment-total {
    font-size: 26px;
    font-weight: 500;
}


.tc-booking-journey-breadcrumb {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tc-booking-journey-breadcrumb .tc-active{
    font-weight: bold;
    color: var(--tc-primary-color);
    text-decoration: underline;
}
.tc-booking-journey-breadcrumb a:hover{
    text-decoration: underline;
    color: var(--tc-primary-color);
}

#guest-details-form label{
    font-weight: bold;
}

#guest-details-form input, #guest-details-form select{
    border-radius: 10px;
}

form#guest-details-form h3,
form#booking-form h3 {
    font-size: 32px;
    font-weight: bold;
}
form#guest-details-form a {
    color: var(--tc-primary-color);
    text-decoration: underline;
}
.tc-notice-box h2{
    font-size: 26px;
}



@media (max-width: 1024px) {

    
    .md\:tc-bold {
        font-weight: bold;
    }
    .md\:tc-uppercase {
        text-transform: uppercase;
    }
    .md\:tc-text-sm {
        font-size: 0.8em;
    }
    .md\:tc-text-md {
        font-size: 1em;
    }
    .md\:tc-text-ml {
        font-size: 1.25em;
    }
    .md\:tc-text-lg {
        font-size: 1.75em;
    }

    .md\:tc-text-double{
        font-size: 2em;
    }

    .md\:tc-text-xl {
        font-size: 2.5em;
    }
    
    .md\:tc-flex-row {
        display: flex !important;
        /* align-items: center; */
    }
    .md\:tc-flex-row-reverse {
        display: flex !important;
        flex-direction: row-reverse;
    }
    .md\:tc-space-between {
        justify-content: space-between;
    }
    .md\:tc-justify-start {
        justify-content: flex-start;
    }
    .md\:tc-justify-center {
        justify-content: center;
    }
    .md\:tc-justify-end {
        justify-content: flex-end;
    }
    .md\:tc-justify-around {
        justify-content: space-around;
    }
    .md\:tc-justify-evenly {
        justify-content: space-evenly;
    }
    .md\:tc-gap-10 {
        gap: 10px;
    }
    .md\:tc-gap-sm {
        gap: 5px;
    }
    .md\:tc-gap-md {
        gap: 15px;
    }
    .md\:tc-gap-lg {
        gap: 30px;
    }

    .md\:tc-flex-column {
        display: flex;
        flex-direction: column;
    }
    .md\:tc-flex-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    .md\:tc-flex-wrap {
        flex-wrap: wrap;
    }
    .md\:tc-flex-nowrap {
        flex-wrap: nowrap;
    }
    .md\:tc-align-items-start {
        align-items: flex-start;
    }
    .md\:tc-align-items-center {
        align-items: center;
    }
    .md\:tc-align-items-end {
        align-items: flex-end;
    }
    .md\:tc-align-items-stretch {
        align-items: stretch;
    }
    .md\:tc-align-items-baseline {
        align-items: baseline;
    }

    .md\:tc-remove-default-margins *{
        margin: 0;
    }


    .md\:tc-padding-sm {
        padding: 5px;
    }
    .md\:tc-padding-md {
        padding: 15px;
    }
    .md\:tc-padding-lg {
        padding: 30px;
    }


    .md\:tc-mt-sm {
        margin-top: 5px;
    }
    .md\:tc-mb-sm {
        margin-bottom: 5px;
    }

    .md\:tc-mt-md {
        margin-top: 15px;
    }
    .md\:tc-mb-md {
        margin-bottom: 15px;
    }

    .md\:tc-mt-lg {
        margin-top: 30px;
    }
    .md\:tc-mb-lg {
        margin-bottom: 30px;
    }


    .md\:tc-w-full{
        width: 100%;
    }

    .md\:tc-w-50{
        width: 50%;
    }
}

@media (max-width: 768px) {
    
    form#guest-details-form h3, form#booking-form h3 {
        font-size: 26px;
    }

    .sm\:tc-bold {
        font-weight: bold;
    }
    .sm\:tc-uppercase {
        text-transform: uppercase;
    }
    .sm\:tc-text-sm {
        font-size: 0.8em;
    }
    .sm\:tc-text-md {
        font-size: 1em;
    }
    .sm\:tc-text-ml {
        font-size: 1.25em;
    }
    .sm\:tc-text-lg {
        font-size: 1.75em;
    }

    .sm\:tc-text-double{
        font-size: 2em;
    }

    .sm\:tc-text-xl {
        font-size: 2.5em;
    }

    .sm\:tc-flex-row {
        display: flex !important;
        flex-direction: row;
    }
    .sm\:tc-flex-row-reverse {
        display: flex !important;
        flex-direction: row-reverse;
    }
    .sm\:tc-space-between {
        justify-content: space-between;
    }
    .sm\:tc-justify-start {
        justify-content: flex-start;
    }
    .sm\:tc-justify-center {
        justify-content: center;
    }
    .sm\:tc-justify-end {
        justify-content: flex-end;
    }
    .sm\:tc-justify-around {
        justify-content: space-around;
    }
    .sm\:tc-justify-evenly {
        justify-content: space-evenly;
    }
    .sm\:tc-gap-10 {
        gap: 10px;
    }
    .sm\:tc-gap-sm {
        gap: 5px;
    }
    .sm\:tc-gap-md {
        gap: 15px;
    }
    .sm\:tc-gap-lg {
        gap: 30px;
    }

    .sm\:tc-flex-column {
        display: flex;
        flex-direction: column;
    }
    .sm\:tc-flex-column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    .sm\:tc-flex-wrap {
        flex-wrap: wrap;
    }
    .sm\:tc-flex-nowrap {
        flex-wrap: nowrap;
    }
    .sm\:tc-align-items-start {
        align-items: flex-start;
    }
    .sm\:tc-align-items-center {
        align-items: center;
    }
    .sm\:tc-align-items-end {
        align-items: flex-end;
    }
    .sm\:tc-align-items-stretch {
        align-items: stretch;
    }
    .sm\:tc-align-items-baseline {
        align-items: baseline;
    }

    .sm\:tc-remove-default-margins *{
        margin: 0;
    }


    .sm\:tc-padding-sm {
        padding: 5px;
    }
    .sm\:tc-padding-md {
        padding: 15px;
    }
    .sm\:tc-padding-lg {
        padding: 30px;
    }


    .sm\:tc-mt-sm {
        margin-top: 5px;
    }
    .sm\:tc-mb-sm {
        margin-bottom: 5px;
    }

    .sm\:tc-mt-md {
        margin-top: 15px;
    }
    .sm\:tc-mb-md {
        margin-bottom: 15px;
    }

    .sm\:tc-mt-lg {
        margin-top: 30px;
    }
    .sm\:tc-mb-lg {
        margin-bottom: 30px;
    }


    .sm\:tc-w-full{
        width: 100%;
    }

    .sm\:tc-w-50{
        width: 50%;
    }
}


