﻿/* =========================================
   PAGE TITLE
   ========================================= */

.pageTitle {
    font-size: 30px;
    font-weight: 600;
    color: #002D4A;
    margin-top: 0px;
    margin-bottom: 32px;
}
.reg-deadline-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e9d8a6; /* soft yellow/beige */
    border: 1px solid #e0c36c;
    border-radius: 10px;
    padding: 14px 16px;
}

.deadline-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b5e00;
}

.deadline-left i {
    font-size: 1.2rem;
}

.deadline-label {
    font-weight: 600;
    font-size: 1rem;
}

.deadline-date {
    font-weight: 500;
    font-size: 1rem;
    color: #6b5e00;
}
.reg-deadline-box.urgent {
    background-color: #fff1f2;
    border-color: #f5c2c7;
}

.reg-deadline-box.urgent .deadline-date {
    color: #b02a37;
    font-weight: 600;
}

/* =========================================
   FILTER PANEL
   ========================================= */

.filterWrapper {
    background: #fff;
    border: 1px solid #C7C7C7;
    border-radius: 6px;
    padding: 20px 18px;
	margin-bottom:32px;
}

.filterTitle {
    align-items: center;
        color: #000000;
    font-size: 22px;
    font-family: 'Gotham Medium';
    border-bottom: 1px solid #C7C7C7;
    padding-bottom: 10px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.filterSubtitle {
       color: #000000;
    font-size: 16px;
    font-family: 'Gotham Medium';
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid #C7C7C7;
}

.clearBtn {
    font-size: 12px;
}

.filterWrapper .form-group {
    margin-bottom: 15px;
}

.filterWrapper .form-control {
    height: 40px;
    border-radius: 4px;
    border: 1px solid #cfcfcf;
}

.filterWrapper input::placeholder {
    color: #999;
    font-size: 14px;
}

.filterToggleIcon {
    display: none;
}
.filterWrapper .showmoreBtn {
    display: flex;
    width: 100%;
    border-top: 1px solid #C7C7C7 !important;
    padding-top: 20px !important;
    color: #1b75de;
    font-size: 14px;
    font-family: 'Gotham Medium';
    margin-top: 6px !important;
}
.btn-outline-primary {
    background: #fff;
    border: 1px solid #015386;
    color: #015386;
    border-radius: 28px;
    font-size: 14px;
    padding: 5px 18px;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:visited, .btn-outline-primary.active, .btn-outline-primary:not(:disabled):not(.disabled):active {
    background: #015386;
    border: 1px solid #015386;
    color: #fff;
    border-radius: 28px;
}
.filterWrapper .clearBtn {
    padding: 6px 12px;
    font-family: 'Gotham Book';
    font-size: 14px;
    margin-left: 10px;
}

/* =========================================
   FILTER SWITCH (Toggle)
   ========================================= */

.switchGrp {
    margin-bottom: 10px;
}

.switchGrp .form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filterKeyword {
    font-size: 14px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: .4s;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: #0069A6;
}

.switch input:checked + .slider:before {
    transform: translateX(18px);
}


/* =========================================
   FILTER CLOSE BUTTON
   ========================================= */

.filterClose {
    display: none;
}


/* =========================================
   RESULT HEADER
   ========================================= */

.resultTitle {
    font-size: 22px;
        color: #000000;
    font-family: 'Gotham Medium';
}

.showEntires {
    font-size: 16px;
    font-family: 'Gotham Book';
}


/* =========================================
   LOCATION / CLASS CARD
   ========================================= */

.locationCardCol {
    margin-bottom: 20px;
}

.locationCard {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .2s ease;
}

.grp {
    display: flex;
    flex-direction: column;
}

.locationTitle {
    font-size: 18px;
    font-family: 'Gotham Medium';
    margin-bottom: 8px;
}

.desc {
    font-size: 13px;
    color: #666;
}


/* =========================================
   CARD — IMAGE CONTAINER
   ========================================= */

.locationCard .imgContainer {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.locationCard .imgContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   CARD — CONTENT AREA
   ========================================= */

.cardContnt {
    padding: 15px;
}


/* =========================================
   CARD — FOOTER
   ========================================= */

.cregFooter {
    padding: 0 15px 15px 15px;
    margin-top: auto;
}

.footerFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dateTimeWrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dateContent {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.dateContent img {
    width: 15px;
    margin-right: 6px;
}
/* =========================================
   SEAT BOX
   ========================================= */

.seatBox {
    background: #0069A6;
    padding: 2px 3px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.seatNumber {
    font-size: 22px;
    font-weight: 700;
    display: block;
    color: #fff !important;
}

.seatLabel {
    font-size: 11px;
    line-height: 12px;
    display: block;
    color: #fff !important;
}


/* =========================================
   TOP FILTER BAR (Sort & Count)
   ========================================= */

.topFilterGrp {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
	    position: relative;
}

.topFilterGrp .form-group {
    margin-bottom: 0;
}

.topFilterGrp > * {
    margin-right: 0.75rem;
}

.topFilterGrp select.form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    font-size: 0.875rem;
}

.row.flex-nowrap {
    flex-wrap: nowrap !important;
    align-items: center;
}

.countFilter select {
    border-radius: 20px;
    border-color: #002D4A;
    font-family: 'Gotham Book';
    font-size: 14px;
    padding: 6px 30px 6px 10px;
}

.sortFilterGrp {
    margin-right: 8px;
    border-radius: 20px;
    border: 1px solid #002D4A;
    overflow: hidden;
    padding: 0 0 0 12px;
}

.sortFilterGrp .form-group {
    display: flex;
    align-items: center;
    color: #002D4A;
    font-size: 14px;
}

.sortFilterGrp .form-group .control-label {
    font-family: 'Gotham Book';
    margin-bottom: 0;
    color: #002D4A;
    margin-right: 6px;
}

.sortFilterGrp .form-group select {
    padding: 0 32px 0 0;
    font-family: 'Gotham Medium';
    color: #002D4A;
    border-radius: 0;
    border: none;
    min-height: 38px;
}


/* =========================================
   SWITCH GROUP (Grid / List View Toggle)
   ========================================= */

.switchWrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.switchWrapper img {
    width: 24px;
    height: 24px;
}

.switchWrapper .switchGroup > div {
    cursor: pointer;
}

.switchGroup {
    border: 1px solid #015C98;
    border-radius: 6px;
    display: inline-flex;
    overflow: hidden;
}

.toggleGroup {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggleGroup + .toggleGroup {
    border-left: 1px solid #015C98;
}

.toggleGroup img {
    width: 24px;
    height: 24px;
}

.toggleGroup .hoverIcon {
    display: none;
}

.toggleGroup:hover .hoverIcon,
.toggleGroup.active .hoverIcon {
    display: inline-flex;
}

.toggleGroup:hover .default,
.toggleGroup.active .default {
    display: none;
}

.toggleGroup.active,
.toggleGroup:hover {
    background: #015C98;
}

/* =========================================
   PAGINATION
   ========================================= */

.paginationWrapper {
    margin-top: 10px;
    margin-bottom: 20px;
}

.pagination .page-item {
    margin-right: 8px;
}

.pagination .page-item .page-link {
    border-radius: 18px;
    border: 1px solid #c7c7c7 !important;
    background: transparent !important;
    font-size: 14px;
    color: #000;
    padding: 5px 13px;
    font-family: 'Gotham Book';
}

.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
    border: 1px solid #0069A6 !important;
    background: #0069A6 !important;
    color: #fff !important;
}

.pagination .page-item.disabled .page-link,
.pagination .page-item.disabled .page-link:hover,
.pagination .page-item.disabled:hover .page-link {
    color: #909090 !important;
    pointer-events: none;
    border: 1px solid #c7c7c7 !important;
    background: transparent !important;
}

.pagination .page-item:last-child .page-link {
    border-color: #0069A6 !important;
    color: #0069A6;
}

.pagination .page-item:hover {
    cursor: pointer !important;
}


/* =========================================
   CART SECTION
   ========================================= */

.cartSec {
    font-size: 1.25rem;
}

.cart-icon {
    width: 1.3em;
    height: 1.3em;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'>\
    <path d='M0 1h2l1.5 7h8l1.5-5H3'/>\
    <circle cx='6' cy='13' r='1' fill='black'/>\
    <circle cx='11' cy='13' r='1' fill='black'/>\
    </svg>");
}


/* =========================================
   CART CARD & CLASS TITLE
   ========================================= */

.cartCard {
        background: #E7F0F6;
    border: 1px solid #D3E3FD;
    border-radius: 4px;
    padding: 15px 25px;
}
.infoCard{
	background: #E7F0F6;
    border: 1px solid #D3E3FD;
    border-radius: 4px;
    padding: 15px 25px;
}
.infoCard .card-body {
    padding: 0 !important;
}
.classTitle {
    font-size: 18px;
        font-family: 'Gotham Medium';
    color: #002D4A;
    text-decoration: none;
}
.fw-semibold {
    font-family: 'Gotham Medium';
	font-weight: 100 !important;
}

.classTitle:hover {
    text-decoration: underline;
}

.infoBlock {
    padding-right: 10px;
}

.text-justify {
    text-align: justify !important;
}


/* =========================================
   CLOSE ICON ( ✕ )
   ========================================= */

.close-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.close-icon::before,
.close-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background-color: currentColor;
    transform-origin: center;
}

.close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* =========================================
   SECTION TITLES & LABELS
   ========================================= */
.creg-section-title {
        font-size: 22px;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Gotham Medium';
}


/* =========================================
   INFO BLOCKS & ROWS
   ========================================= */

.cregHeaderGrp {
    display: flex;
    align-items: center;
    gap: 12px;
}

.infoRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}


/* =========================================
   TIMESLOT, SIDEBAR & SIMILAR CARDS
   ========================================= */

.creg-card {
        background: #fff;
       border: 1px solid #C7C7C7;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 15px 25px !important;
}
.infoBlock a > img {
    position: relative;
    top: -2px;
    margin-right: 4px;
}
.timeslotCard {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#registrationPanel {
        background: #E7F0F6 !important;
    border: 1px solid #D3E3FD;
    border-radius: 4px;
    padding: 20px 20px !important;
	margin-bottom:20px;
}

.similarCard {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 10px;
    background: #fff;
}
.switch input[type="checkbox"] {
    display: block !important;
    width: 0px !important;
}

    .switch input[type="checkbox"]:focus + .slider {
        outline: 2px solid #005fcc !important;
        outline-offset: 3px !important;
        box-shadow: 0 0 8px rgba(0, 95, 204, 0.6) !important;
}

/* =========================================
   DATE INPUT
   ========================================= */

.date-select {
    background: #fff;
    cursor: pointer;
}


/* =========================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ========================================= */

@media (max-width: 1024px) {
    .pageTitle {
        font-size: 24px;
    }
}


/* =========================================
   RESPONSIVE — Large Phone (max-width: 992px)
   ========================================= */

@media (max-width: 992px) {
    .filterWrapper {
        margin-bottom: 20px;
    }

    .locationCard {
        margin-bottom: 20px;
    }

    .locationCard .imgContainer {
        height: 160px;
    }
}


/* =========================================
   RESPONSIVE — Medium Phone (max-width: 768px)
   ========================================= */

@media (max-width: 768px) {

    .pageTitle {
        font-size: 24px;
    }

    .resultTitle {
        font-size: 18px;
        margin-top: 15px;
    }

    .showEntires {
        margin-bottom: 15px;
    }

    .locationCard .imgContainer {
        height: 150px;
    }

    .infoBlock {
        margin-bottom: 15px;
    }

    .topFilterGrp {
        justify-content: flex-start;
    }

    .sortFilterGrp .form-group select {
        min-height: 32px;
    }

    .countFilter select {
        padding: 6px 30px 5px 10px;
        min-height: 34px;
    }

    .filterWrapper .clearBtn {
        margin-top: 0;
    }

    .filterTitle {
        flex-direction: row;
    }

    .filterClose {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 15px;
        cursor: pointer;
    }

    .filterToggle {
        display: none;
    }

    .filterToggleIcon {
        display: inline-flex !important;
        position: absolute;
        top: -50px;
        right: 0px;
        cursor: pointer;
        z-index: 99;
		
    }

    .filterToggle .pageTitle {
        font-size: 20px;
        margin-bottom: 20px;
        display: none;
    }

    .filterWrapper {
        position: absolute;
        background: #fff;
        height: 75%;
        bottom: -18px;
        left: 0;
        width: 100%;
        z-index: 999;
        overflow-y: auto;
    }

    .applyFilterBtn {
        display: block;
    }

    .fixedHeight {
        height: 100vh;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.4);
    }

    .fixedHeight .breadcrumbSec,
    .fixedHeight main, .fixedHeight header, .fixedHeight .bannerSec {
        background: unset;
    }
	.fixedHeight form {
        height: 100vh;
        overflow: hidden;
	}

    .fixedHeight .logoWrapper img {
        opacity: 0.1;
    }

    .switchGroup {
        width: 100%;
        justify-content: space-around;
    }

    .switchWrapper {
        margin-top: -18px;
		position: absolute;
        right: 0;
        bottom: 0;
		margin-right: 0;
    }
}


/* =========================================
   RESPONSIVE — Small Phone (max-width: 576px)
   ========================================= */

@media (max-width: 576px) {
    .locationCard .imgContainer {
        height: unset;
    }

    .locationTitle {
        font-size: 14px;
    }
	.filterToggleIcon {
        top: -50px;
	}
}


/* =========================================
   RESPONSIVE — Extra Small Phone (max-width: 480px)
   ========================================= */

@media (max-width: 480px) {
    .pageTitle {
        font-size: 20px;
    }

    .locationTitle {
        font-size: 14px;
    }
}