/* Stage- Bootstrap one page Event ticket booking theme 
Created by pixpalette.com - online design magazine */

@charset "utf-8";
:root {
    --bs-blue: #1717e5;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #151515;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #fd7e14;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #343a40;
    --bs-primary-rgb: 21, 21, 21;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 253, 126, 20;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 52, 58, 64;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 21, 21, 21;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 300;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(21, 21, 21, 0.175);
    --bs-border-radius: 0px;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #151515;
    --bs-link-hover-color: #111111;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

/* CSS Document */
html, body {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    font-size: 14px;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(21, 21, 21, 0);
    color:#000;
}

.shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.top-right-logo {
    position: absolute;
    width: 10%;
    max-width: 100px;
    top: 15px;
    right:25px;
}


.full-screen-container {
    position: relative; /* For absolute positioning of h1 */
    width: 100%;
    height: 100vh;
    background-size: cover; /* Cover the area, cropping excess */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow border from previous request */
    padding: 10px; /* Ensure rounded corners are visible */
    box-sizing: border-box;
    scroll-snap-align: start; /* Snap to top of each container */
    z-index: 1;  
}


.full-screen-img-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures the image fills the area */
    z-index: -1; /* keeps it behind the content */
}
@media (max-width: 767px) {
    .full-screen-img-item {
        display: none;
    }

    .full-screen-container {
        background-image: url('../images/bgitem.png');
        background-size: cover;
        background-position: center;
        height: 100vh; /* or any height you want */
    }
}

.description {
    bottom: 5px; /* Closer to bottom */
    left: 10px;
    padding: 10px 15px;
    margin-top: 20px; /* Position below .logo, adjust as needed */
    background: rgba(150, 150, 150, 0.2); /* 50% transparent white */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow background */
    padding: 15px 20px; /* Match .logo padding */
    max-width: 99%; /* Prevent overflow */
   
}

.white{
    color:#fff;
}

.big{
    font-size:32px;
}

.descriptionitem {
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 5px;
    max-width: 99%;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 80%;    
    z-index: 11001;
	height: 85%;
    /* 🔥 SCROLLING FIXES */
    overflow-y: auto; /* enables scroll */
    -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
    overscroll-behavior: contain; /* optional: avoid scroll bleed */
}

@media (max-width: 768px) {
    .descriptionitem {
		padding-top:100px;
         height: 110%;
        width: 100%;
        font-size:1rem;
		touch-action: pan-y;
    }
}


.descriptionitemtext {
    font-size: 1.0rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .descriptionitemtext {      
        font-size: 12px;
        font-weight:400;
    }
}

.scrollable-panel {
    max-height: 100vh; /* prevents overflow beyond screen */
    overflow-y: auto; /* enables vertical scrolling */
    position: relative;
}

.richtext-container p {
    margin: 0;   
}

.richtext-container ul {
    margin: 0;
    
}

.richtext-container li {
    margin: 0;
    padding: 0;
    padding-left: 0.5rem;
}

.responsive-img {
    max-width: 100%; /* Ensure image doesn't exceed parent width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevent inline spacing issues */
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow border */
}


.responsive-img-item {
    max-width: 100%; /* Ensure image doesn't exceed parent width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevent inline spacing issues */
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow border */
}
@media (min-width: 768px) {
    .responsive-img-item {
        display: none;
    }
}



.full-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, cropping excess */
    display: block;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow border from previous request */
}

/* common style's */
a {
  color: #7447ae;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 768px) {
    h2 span {
        margin-top: 0 !important; /* Override inline style */
    }
}

    h1, h2, h3, h4, h5, h6 {
        line-height: 24px;
    }

.itemheader {    
    line-height: 56px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 500;
    margin: 0;
}
@media (max-width: 768px) {
    .itemheader {
        font-size: 24px;
        color: #000;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
}
    /* button style */
    .btn, .btn.disabled {
        background: #f44336;
        color: #ffffff;
        border: 0;
        border-radius: 20px;
        font-size: 16px;
        padding: 10px 30px;
        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
    }

        .btn:hover {
            background: #e53935;
            color: #ffffff;
            box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2);
        }

        .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
            opacity: .5;
        }

    /* form style */
    label {
        font-weight: 300;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-control {
        height: 40px;
        font-size: 18px;
        border: 0;
        border-bottom: 1px solid #ccc;
        border-radius: 0px;
        padding: 6px 0px;
        box-shadow: none;
        font-weight: 100;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
    }

        .form-control:focus {
            border-color: #666666;
            outline: 0;
            box-shadow: none;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s;
        }


    /* loader */
    .loader {
        position: fixed;
        color: white;
        background: #ffffff;
        width: 100%;
        height: 100%;
        z-index: 9999;
    }

        .loader > div {
            text-align: center;
            margin: 0px auto;
            position: relative;
            top: 50%;
            transform: translateY(-50%);
        }

    .left-wrapper, .right-wrapper {
        padding-right: 0px;
        padding-left: 0px;
    }


    .event-banner-wrapper {
    }

    /* Style the image */
    .bottom-right-logo {
        position: absolute;
        bottom: 10px;
        right: 10px;
        /* OR use transform: scale(0.5); with origin adjustment */
        transform: scale(0.4);
        transform-origin: bottom right;
        padding: 50px;
    }

    @media (max-width: 768px) {
        .bottom-right-logo {
            transform: scale(0.2);
        }
    }

    /* Style the image */
    .bottom-right-logo-item {
        position: absolute;
        bottom: 30px;
        right: 20px;
        /* OR use transform: scale(0.5); with origin adjustment */
        transform: scale(0.4);
        transform-origin: bottom right;
        padding: 50px;
    }

    @media (max-width: 768px) {
        .bottom-right-logo-item {
            transform: scale(0.2);
            bottom: 10px;
        }
    }

    /* event banner css */
    .event-banner-wrapper {
        position: fixed;
        width: 41.66666667%;
        height: 100%;
        padding: 20px;
        background: url(../images/bg.jpg);
        background-position: center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .logo h1 {
        color: #ffffff;
        font-size: 28px;
        font-weight: 300;
        margin: 0;
    }

    .logo h2 {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 300;
        margin: 0;
    }

    .white {
        color: #ffffff;
    }

    .fheader {
        color: #ffffff;
        font-size: 1rem;
        font-weight: 300;
        margin: 0;
    }

    .event-banner-wrapper h2 {
        position: absolute;
        font-family: 'Nixie One', sans-serif;
        font-size: 4vw;
        font-weight: 900;
        line-height: 4.5vw;
        color: #fff;
        margin: 0;
        bottom: 10px;
    }

        .event-banner-wrapper h2 span {
            display: block;
            text-transform: uppercase;
            font-size: 1.5vw;
        }

    .event-banner-wrapper p {
        position: absolute;
        font-family: 'Nixie One', sans-serif;
        font-size: 16px;
        font-weight: 900;
        color: #fff;
        margin: 0;
        bottom: 15px;
    }

        .event-banner-wrapper p a {
            color: #fff;
        }

            .event-banner-wrapper p a:hover {
                border-bottom: 1px solid #fff;
            }

    /* event ticket css */
    .event-ticket-wrapper {
        padding: 40px;
    }

    .event-tab .nav-tabs {
        position: fixed;
        top: 0;
        left: 41.66666667%;
        background: #fff;
        width: 58.33333333%;
        border-bottom: 0;
        padding: 20px 40px;
        margin-bottom: 30px;
        z-index: 99;
    }

        .event-tab .nav-tabs > li > a {
            font-size: 18px;
            color: rgba(0, 0, 0, 0.28);
            margin-right: 30px;
            padding: 5px 0px;
            text-transform: uppercase;
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
        }

            .event-tab .nav-tabs > li.active > a,
            .event-tab .nav-tabs > li.active > a:hover,
            .event-tab .nav-tabs > li.active > a:focus,
            .event-tab .nav-tabs > li > a:hover,
            .event-tab .nav-tabs > li > a:focus {
                background: transparent;
                color: #000000;
                border: 1px solid transparent;
                transition: all 0.5s;
                -webkit-transition: all 0.5s;
            }

    .event-tab .tab-content {
        margin-top: 45px;
    }

        .event-tab .tab-content .tab-pane {
            margin-bottom: 30px;
        }

    .ticketBox {
        position: relative;
        border: 1px solid rgba(0, 0, 0, 0.04);
        padding: 15px 20px;
        margin-bottom: 30px;
        border-radius: 4px;
        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
    }

        .ticketBox:hover {
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
        }

    .inActiveTicket .inactiveStatus {
        background: rgba(248, 248, 248, 0.68);
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 11;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
    }

    .ticketBox .ticket-name span {
        display: block;
        font-size: 1rem;
        font-weight: 300;
        color: #212529;
    }

    .remarks2 {
        display: block;
        font-size: 10px;
        font-style: italic;
        font-weight: 300;
        color: #6c757d;
    }

    .ticketBox .ticket-price-count-box .price {
        margin: 0;
        color: #000000;
        float: right;
        width: 100%;
        text-align: right;
    }

    .ticketBox .ticket-price-count-box .ticket-control {
        float: right;
        width: 120px;
    }

        .ticketBox .ticket-price-count-box .ticket-control .form-control {
            width: 50px;
            text-align: center;
            border: 0;
            box-shadow: none;
            display: inline-block;
            pointer-events: none;
            margin: 0px 4px;
            background: transparent;
        }

        .ticketBox .ticket-price-count-box .ticket-control .input-group .input-group-btn button {
            display: inline-block;
            border: 0px solid rgba(0, 0, 0, 0.12);
            padding: 10px;
            width: 32px;
            text-align: center;
            border-radius: 50%;
            color: #000000;
            font-size: 9px;
            background: rgba(0, 0, 0, 0.09);
            box-shadow: none;
            transition: all 0.5s;
            -webkit-transition: all 0.5s;
        }

            .ticketBox .ticket-price-count-box .ticket-control .input-group .input-group-btn button:hover,
            .ticketBox .ticket-price-count-box .ticket-control .input-group .input-group-btn button:focus {
                outline: none;
                background: rgba(0, 0, 0, 0.15);
                transition: all 0.5s;
                -webkit-transition: all 0.5s;
            }

    .ticketBox .ticket-description {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        padding-top: 15px;
    }

        .ticketBox .ticket-description p {
            font-size: 0.9rem;
            font-weight: 300;
            color: #212529;
        }

            .ticketBox .ticket-description p strong {
                font-size: 1rem;
                font-weight: 400;
                color: #000;
            }

    /* map iframe */
    iframe {
        width: 100%;
        border: 0;
    }

    /* cart style */
    .cart {
        padding: 20px 40px;
        background: #fff;
        margin-bottom: 0;
        position: fixed;
        left: 41.66666667%;
        bottom: 0;
        width: 58.33333333%;
        z-index: 99;
    }

        .cart p {
            color: #000;
            margin-bottom: 0;
            font-size: 18px;
            font-weight: 400;
            margin-top: 8px;
        }

            .cart p .divider {
                border-right: 2px solid #ccc;
                padding-left: 15px;
                margin-right: 15px;
            }

    /* cart ticket details */
    .cart-information {
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: white; /* Ensure text visibility */
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
        padding: 10px;
        border-radius: 5px;
    }

        .cart-information .ticket-type {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

            .cart-information .ticket-type span {
                font-size: 14px;
                line-height: 18px;
                display: block;
                font-weight: 400;
                color: #666;
            }

        .cart-information ul {
            margin: 0;
            padding: 0;
        }

            .cart-information ul li {
                list-style-type: none;
                font-size: 18px;
                margin-bottom: 4px;
            }

                .cart-information ul li span {
                    float: right;
                }

                    .cart-information ul li span.totalAmount {
                        font-weight: 600;
                    }

        .cart-information hr {
            margin-top: 5px;
            margin-bottom: 5px;
            border: 0;
            border-top: 1px solid rgba(0, 0, 0, 0.15);
        }

    /* contact form style */
    .contactForm h3 {
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .contactForm .btn {
        width: 100%;
    }

    /* side modal style */
    .modal-content {
        border-radius: 0;
        height: 100vh; /* Full viewport height */
        border: none; /* Remove default border */
        border-radius: 0; /* Remove default rounded corners */
        display: flex;
        flex-direction: column; /* Stack header and body vertically */
    }

    .modal-body {
        padding: 0;
    }

    .modal-header {
        background: rgba(0, 0, 0, 0.7); /* Semi-transparent for visibility */
        color: white;
        border-bottom: none; /* Remove default border */
        padding: 10px 20px;
        z-index: 10; /* Ensure header stays above image */
    }

        .modal-header .close img {
            width: 24px; /* Adjust cancel icon size */
            height: auto;
        }

    /* Ensure modal backdrop covers full screen */
    .modal-backdrop {
        background-color: rgba(0, 0, 0, 0.8); /* Darker backdrop */
    }

    .modal-title {
        text-transform: uppercase;
    }

    .modal .close {
        opacity: 0.4;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }

        .modal .close:hover {
            opacity: 0.4;
            -ms-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
            transition: all 0.3s;
            -webkit-transition: all 0.3s;
        }

    .modal.right .modal-dialog {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        max-width: none; /* Remove Bootstrap's max-width */

    }

    .modal.right .modal-content {
        height: 100%;
        overflow-y: auto;
        border: 0;
    }

    .modal.right .modal-body {
        padding: 30px;
    }

    .modal.right.fade .modal-dialog {
        right: -320px;
        -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
        -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
        -o-transition: opacity 0.3s linear, right 0.3s ease-out;
        transition: opacity 0.3s linear, right 0.3s ease-out;
    }

    .modal.right.fade.in .modal-dialog {
        right: 0;
    }

    /* media query for tab */
    @media (max-width: 767px) {
        .event-banner-wrapper {
            position: relative;
            width: 100%;
            height: 300px;
            padding: 15px;
        }

            .event-banner-wrapper h2 {
                font-size: 38px;
                line-height: 38px;
            }

                .event-banner-wrapper h2 span {
                    font-size: 16px;
                }

        .event-ticket-wrapper {
            padding: 20px;
        }

        .event-tab .nav-tabs {
            margin-bottom: 10px;
            position: relative;
            top: 0;
            left: 0;
            padding: 0;
            width: 100%;
        }

        .event-tab .tab-content {
            margin-top: 20px;
        }

        .cart {
            padding: 15px;
            background: #fff;
            margin-bottom: 0;
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            z-index: 99;
        }
    }

    /* media query for Mobile */
    @media (max-width: 480px) {

        .modal.left .modal-dialog, .modal.right .modal-dialog {
            width: 100%;
        }

        .event-tab .nav-tabs > li > a {
            font-size: 16px;
            margin-right: 0;
            padding: 2px 0px;
        }

        .event-tab .nav-tabs > li {
            width: 100%;
        }

        .cart p {
            font-size: 16px;
            margin: 0;
        }

            .cart p .divider {
                border-right: 0px;
                padding-left: 0;
                margin-right: 0;
                display: block;
            }
    }
.closebtn {
    border: none;
    border-radius: 20px;
}
