/* Set the background color for the body */
body {
    background: #000000;
    font-family: 'Poppins', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; /* Default to Poppins */
}

/* Use Exo for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Exo', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/* Use Poppins for paragraphs and list items */
p,
li {
    font-family: 'Poppins', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/* Ensure anchors also benefit from antialiasing */
a {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    color: #e31e26;
}

/* Small text with Poppins */
small {
    font-family: 'Poppins', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.025em;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/* Labels and label-stacked elements using Poppins */
label,
.label-stacked {
    font-family: 'Poppins', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
    -webkit-font-smoothing: antialiased;
}

/* Horizontal rule border color */
hr {
    border-color: #EDEDED;
}

/* Label-specific font size, weight, and color */
label {
    font-size: 16px;
    font-weight: 400;
    color: #4A4A4A;
    letter-spacing: 0.025em;
    -webkit-font-smoothing: antialiased;
}

.alert{margin-bottom:0px !important;}
.form-group{margin-bottom:22px;-webkit-font-smoothing:antialiased;}
.btn{-webkit-font-smoothing:antialiased;}
.btn-fg, .btn-seating{background:#00ADEE;border-color:#00ADEE;color:#fff;font-weight:700;-webkit-font-smoothing:antialiased;}
.btn-fg-red{background:#E5405D;color:#E5405D;}
.btn-alert{background:#E5405D;color:#ffffff;}
.btn-social{background:#3D5A96;border-color:#3D5A96;color:#fff;font-weight:600;padding:15px 0px;border-radius:50px;margin-bottom:20px;}
.btn-gmail{background:#DF4D3D;border-color:#DF4D3D;}
.btn-dark{background:#114960;border-color:#114960;}
/* Adjust the navbar to display items on the same line */
/* Adjust the navbar to use Flexbox for aligning items */
.navbar-default {
    background-color: #000; /* Black background */
    border-color: #000;
    min-height: 100px; /* Ensure the navbar has enough height */
    display: flex;
    justify-content: space-between; /* Space between the logo and links */
    align-items: center; /* Vertically center all items */
}

.navbar {
    border-radius: 0px;
    margin-bottom: 0px;
}
@media (min-width: 768px) {
    .navbar-collapse.collapse {
        display: flex !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
}
.navbar-header {
    flex: 1;
}

.navbar-brand {
    padding: 10px 15px;
}

.navbar-nav.navbar-center {
    flex: 2;
    text-align: center;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-left: 100px
}

.navbar-nav.navbar-center>li {
    display: inline-block;
    margin: 0 15px;
}

.navbar-nav.navbar-right {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.navbar-nav.navbar-right>li {
    margin-left: auto;
}

/* Styling for the links and Sign In/Profile button */
.navbar-default .navbar-nav>li>a {
    color: #ffffff;
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    padding-top: 15px; /* Align vertically */
    padding-bottom: 15px;
    font-size: 20px;
}

/* Styling for the Sign In button */
.navbar-nav.navbar-right>li>a {
    margin-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 14px;
    font-size: 14px;
min-width: 120px;
}

.btn-signin {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-signin:hover {
        background: #353535;
box-shadow: none;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* Dropdown toggle styling for logged-in users */
.navbar-nav.navbar-right .dropdown-toggle {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.navbar-nav.navbar-right .dropdown-toggle:hover,
.navbar-nav.navbar-right .dropdown-toggle:focus {
    background: #1a1a1a;
    border-color: #000000;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* Dropdown menu styling */
.navbar-nav.navbar-right .dropdown-menu {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin-top: 8px;
    padding: 8px 0;
    min-width: 200px;
}

.navbar-nav.navbar-right .dropdown-menu > li > a {
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px 8px;
}

.navbar-nav.navbar-right .dropdown-menu > li > a:hover,
.navbar-nav.navbar-right .dropdown-menu > li > a:focus {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    text-decoration: none;
}

.navbar-nav.navbar-right .dropdown-menu .divider {
    background-color: rgba(255,255,255,0.2);
    margin: 8px 0;
}
.navbar-nav>li>a.active{
  color: #E41E26;
}

/** slideshow **/
#slideshow img {
    width: 100%;
    height: 568px;
    object-fit: cover; /* Ensures the image fills the space while maintaining aspect ratio */

}
/* Slideshow container styles */
#slideshow {
    position: relative;
    max-width: 100%; /* Ensure the slideshow is responsive */
   margin: 0 auto;

}

/* Each slide-item styling */
.slide-item {
    position: relative;
    display: block;
    border-radius: 20px;
}

/* Image should take up full width and height */
.slide-item img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
}
/* Position the image container relative */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Ensure the image fills the container */
.image-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Create the gradient overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 60%, transparent 90%);
    z-index: 1; /* Ensure the gradient is on top of the image */
}

/* Overlay container */
.slide-overlay {
    position: absolute;
    z-index: 2; /* Ensure the text is on top of the gradient and image */
    bottom: 20px;
    left: 20px;
    color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 300px;
}

/* Overlay heading and text */
.slide-overlay h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color:white;
}
a:focus, a:hover{
  color:#aaa;
  text-decoration: none;
}
.slide-overlay p {
    font-size: 16px;
    margin-bottom: 15px;
    color:white;
}


/* Button styling */
.btn-learn-more {
    display: inline-block;
    background-color: #705FFF;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 15px;
    width:160px;
    text-align: center;
    font-family: 'Exo', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
}

.btn-learn-more:hover {
    background-color: #6355e7;
}
.btn-mobile-buy{
  background-color: #705FFF !important;
  color: white;
  text-align: center;
  font-family: 'Exo', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
  border: #705FFF !important;
  width: 99%;
  font-weight: bold;
}

#slideshow, .sy-box {
    visibility: hidden; /* Hide slider until it's fully built */
    opacity: 0;
    transition: opacity 0.5s ease; /* Smooth fade-in effect */
}
.brand-logo{
  height:59px;
  display: block;
  max-width: 50%;
    padding: 0;
}

.responsive-image {
    width: 100%; /* Makes the image fit the container width */
    height: auto; /* Maintains the aspect ratio of the image */
    display: block; /* Remove inline gap below the image */
}
.background-image {
  width: 100%;
  border-radius: 20px;
  /* Adjust these for the border and shadow if needed */
}

.position-relative {
  position: relative; /* Ensure container is positioned relatively */
}

.bottom-image {
  width: 100%; /* Ensure the image spans the full width */
  display: block; /* Ensure proper block display */
  border-radius: 20px;
}

.top-image {
  position: absolute; /* Allows it to be placed over the bottom image */
  top: 0; /* Aligns the top edge */
  left: 0; /* Aligns the left edge */
  width: 100%; /* Ensure it covers the entire bottom image */
  z-index: 1; /* Ensures it appears above the bottom image */
  pointer-events: none; /* Make sure the top image doesn't interfere with interactions */
  border-radius: 20px;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10; /* Ensures the text is above both images */
}

.overlay-content h1 {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  width:1000px;
}

.overlay-content h4 {
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.form-container {
  max-width: 50%;
  margin: 0 auto;
  background-color: white; /* White background */
   border-radius: 40px; /* Rounded corners */
   padding: 10px; /* Padding inside the container */
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for better contrast */
   justify-content: center;
   align-items: center;
   flex-direction: column;
   text-align: center; /* Center text */
}

.email-input {
  padding: 15px;
  border: none;
  width: 60%;
  font-size: 16px;
  margin-right: 10px;
  color: #333;
}
input.email-input:focus-visible {
  outline: unset;
}

.explore-button {
  background-color: #d22020;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

.explore-button:hover {
  background-color: #a11818;
}

.btn-navigation{color:#fff;font-weight:700;}
.logo-header{margin-top:5px;}
.header-icon{margin-bottom:4px;}
.location{color:#ffffff;margin-top:15px;font-weight:400;}
.btn-location{color:#ffffff;text-decoration:underline;font-style:italic;font-size:14px;}
.navbar-default .navbar-toggle{border-color:#fff;}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover{background-color:#114960;border-color:#114960;color:#fff;}
.menu-mobile{color:#fff;}
.carousel .carousel-control, .slider-content .btn{visibility:hidden;}
.carousel:hover .carousel-control,.carousel:hover .slider-content .btn{visibility:visible;}
#first-slider .slide1{}
#first-slider .slide1:hover{}
.slider-content{text-align:center;position:absolute;bottom:40px;left:0;}
#first-slider .main-container{padding:0;}
#first-slider .slide1 h3,
#first-slider .slide2 h3,
#first-slider .slide3 h3,
#first-slider .slide4 h3{color:#fff;font-size:36px;text-transform:uppercase;font-weight:700;}
#first-slider .slide1 h4,
#first-slider .slide2 h4,
#first-slider .slide3 h4,
#first-slider .slide4 h4{color:#fff;font-size:30px;text-transform:uppercase;font-weight:700;}
#first-slider .slide1 .text-left,
#first-slider .slide3 .text-left{padding-left:15px;}
#first-slider .carousel-indicators{bottom:-47px;}
#first-slider .carousel-control.right,
#first-slider .carousel-control.left{background-image:none;}
#first-slider .carousel .item{min-height:444px;height:100%;width:100%;}
.carousel-inner a .item .container{display:flex;justify-content:center;align-items:center;position:absolute;bottom:0;top:0;left:0;right:0;}
#first-slider h3{animation-delay:1s;}
#first-slider h4{animation-delay:2s;}
#first-slider h2{animation-delay:3s;}
#first-slider .carousel-control{width:6%;text-shadow:none;}
#first-slider h1{text-align:center;margin-bottom:30px;font-size:30px;font-weight:bold;}
#first-slider .p{padding-top:125px;text-align:center;}
#first-slider .p a{text-decoration:underline;}
#first-slider .carousel-indicators li{width:14px;height:14px;background-color:rgba(255, 255, 255, .4);border:none;}
#first-slider .carousel-indicators .active{width:16px;height:16px;background-color:#fff;border:none;}
.carousel-fade .carousel-inner .item{-webkit-transition-property:opacity;transition-property:opacity;}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right{opacity:0;}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right{opacity:1;}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right{left:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}
.carousel-fade .carousel-control{z-index:2;}
.carousel-control .fa-angle-right,
.carousel-control .fa-angle-left{position:absolute;top:50%;z-index:5;display:inline-block;}
.carousel-control .fa-angle-left{left:50%;width:38px;height:38px;margin-top:-15px;font-size:30px;color:#fff;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:53px;}
.carousel-control .fa-angle-right{right:50%;width:38px;height:38px;margin-top:-15px;font-size:30px;color:#fff;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:53px;}
.carousel-control{opacity:1;filter:alpha(opacity=100);}
#first-slider .slide1{background:linear-gradient(rgba(17, 73, 96, 0.40), rgba(17, 73, 96, 0.40)), url(../img/slider-1.jpg);background-size:cover;background-position:center top;background-repeat:no-repeat;}
#first-slider .slide2{background:linear-gradient(rgba(17, 73, 96, 0.40), rgba(17, 73, 96, 0.40)), url(../img/slider-2.jpg);background-size:cover;background-position:center top;background-repeat:no-repeat;}
.h-event{padding:5% 0 0 0;}
.h-event-title{color:#ffffff;font-size:24px;margin-bottom:50px;}
.c-space{margin-bottom:4%;}
.tw-d-wrapper{background:#fff;border-top-right-radius:8px;border-bottom-right-radius:8px;}
.two-col-event-c-img,
.tw-d-wrapper{min-height:401px;width:100%;}
.one-col-event-c-img{border-top-left-radius:8px;border-top-right-radius:8px;width:100%;min-height:236px;}
.two-col-event-c-img{border-top-left-radius:8px;border-bottom-left-radius:8px;}
.one-col-event-c-info{background:#fff;border-bottom-left-radius:8px;border-bottom-right-radius:8px;}
.card-space{padding:4%;}
.event-card-title{margin-top:5px;font-size:22px;color:#705FFF;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.event-card-alert{color:#E5405D !important;}
.event-card-divider{margin-top:15px;margin-bottom:5px;}
.event-card-month{text-transform:uppercase;}
.event-card-day, .event-card-month{color:#114960 !important;}
.event-card-price,
.event-card-alert,
.date-left > p,
.date-right > p{font-weight:600;font-size:11px;color:#4A4A4A;}
.event-card-price{font-size:13px;}
.event-card-price > img{margin-top:-3px;padding-right:3px;}
.date-left > .event-card-day,
.date-right > .event-card-location{margin-bottom:0px;text-overflow:ellipsis;white-space:nowrap;}
.event-card-location, .event-card-time, .event-card-day, .event-card-month{font-weight:700 !important;}
.event-card-time{font-weight:600;font-size:14px;color:#4A4A4A;}
.no-p-right{padding-right:0px;}
.no-p-left{padding-left:0px;}
.more-date-link{color:#4A4A4A;text-decoration:underline;}
.view-all-event{margin-top:6%;margin-bottom:8%;}
.btn-view-all{width:160px;font-size:20px;background:#705FFF;color:#fff;position:absolute;left:0;right:0;margin:0 auto;bottom:4px;font-family: 'Exo', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;border-radius:15px}
.view-more-stroke{border-color:#0E526E;}
.event-title{color:#fff;text-transform:uppercase;margin-bottom:30px;}
.pagination>li>a, .pagination>li>span{color:#114960;}
.subscribe{padding:3% 0;background:#000000;}
.subscribe-form{margin-top:30px;}
.subscribe-info > h3,
.subscribe-info > p{color:#fff;}
.subscribe-info > h3{font-size:30px;}
.subscribe-input{height:45px;border-radius:8px;background:#fff !important;color:#333 !important;}
.sr-section{background:#114960;}
.pa{padding:15% 15% 5% 15%;}
.login-title{font-size:18px;text-align:center;color:#4A4A4A;margin-bottom:30px;}
.forgot-password{float:right;font-weight:300;color:#4A4A4A;text-decoration:underline;font-size:12px;margin-top:10px;margin-bottom:20px;}
.or{position:absolute;background:#fff;width:50px;height:76px;padding:21px 13px 19px 15px;border-radius:25px;margin:0 auto;left:0;right:0;font-weight:700;}
.divider{margin-top:30px;margin-bottom:30px;}
.form-control{display:block;width:100%;height:50px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#9B9B9B;font-weight:400;border:1px solid #D8D8D8;border-radius:8px;}
.creat-acc{padding:10px 10px 20px 10px;text-align:center;}
.creat-acc > h3{margin-top:0px;margin-bottom:0px;font-weight:400;font-size:16px;color:#4A4A4A !important;}
.creat-acc > p{padding-top:10px;}
.creat-acc > p > .btn-link{color:#114960;padding-top:20px;text-decoration:underline;font-weight:600;}
.register-container{padding:4%;}
.regsiter-title{text-align:center;color:#114960;font-size:24px;margin-top:0px;margin-bottom:30px;}
.register-terms{font-size:12px;color:#4A4A4A;font-weight:400;}
.plain-select{display:inline-block;vertical-align:middle;position:relative;width:100%;}
.plain-select select{height:50px;font-size:14px;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;width:100%;border-radius:8px;display:block;width:100%;border:1px solid #c8c8c8;color:#4a4a4a;padding:8px 20px 7px 10px;margin:0;line-height:normal;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:8px;}
.ie8 .plain-select select{padding-right:3px}
.plain-select select:focus{background:#f9f9f9;outline:none;box-shadow:0 0 10px rgba(0, 0, 0, 0.3), inset 0 0 7px rgba(100, 100, 100, 0.3);border-color:#00c0f3;}
.plain-select::-ms-expand{display:none;}
.plain-select:after{content:"";position:absolute;z-index:2;right:8px;top:50%;margin-top:-3px;height:0;width:0;border-top:8px solid #114960;border-left:8px solid transparent;border-right:8px solid transparent;pointer-events:none;}
label{display:block;}
.label-stacked{display:block;padding:0;font-size:16px;margin-bottom:5px;font-weight:400;color:#4A4A4A;letter-spacing:0.025em;}
.e-page-hero{padding:7% 0;background:linear-gradient(rgba(17, 73, 96, 0.70),
rgba(17, 73, 96, 0.70)), url(../img/e-bg-img.jpg);background-position:bottom;background-repeat:no-repeat;background-position:center;background-size:cover;}
.page-title{color:#fff;}
.e-page-container{padding-bottom:5%;margin-top:-80px;}
.round-w-container{background:#fff;padding:4%;margin-top:20px;border-radius:8px;}
.faq-title{margin-top:10px;}
.panel-group{margin-bottom:0px;}
.panel-default>.panel-heading{color:#fff;background-color:#114960;border-color:#114960;}
.card-sp-container{background:#fff;padding:4%;margin-top:20px;border-radius:8px;}
.same-size{height:300px;}
.issue-chat{background:#114960;color:#fff;}
.issue-chat > .b-title{background:#114960;color:#fff;}
.b-title{font-weight:700;font-size:18px;color:#114960;}
.issue-chat > p > a{color:#fff;text-decoration:underline;}
.contact{padding:5% 0 10% 0;background:#114960;}
.pages-title{color:#fff;text-transform:uppercase;}
.contact-form{background:#EDEDED;padding-bottom:5%;}
.contact-form-container{background:#fff;padding:4%;border-radius:8px;margin-top:-80px;}
.required{color:#E5405D;}
.about-section{padding:5% 0;}
.b-w-container{background:#fff;padding:4%;margin-top:20px;border-radius:8px;}
.business-title{font-size:36px;}
.b-fangig-title{color:#00ADEE;}
.business-email-title{font-size:18px;color:#4A4A4A;font:400;}
.business-link{color:#00ADEE;font-size:24px;}
.event-top{background:#000;height:100px;}
.event-container{position:relative;top:-30px;width:100%;padding:0;margin-bottom: -30px;z-index:1}
.event-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay with 50% opacity */
    z-index: -1; /* Place the overlay behind the content */
}
.event-page-img{width:100%;border-radius:8px;}
.event-l-main-information{background:transparent;color: white;}
.event-page-title{margin-top:10px;margin-bottom:0px;padding:10px 10px 10px 0;font-size:29px;color:#FFFFFF;}
.event-l-space{margin-bottom:20px;}
.event-stroke{margin:10px 0 20px 0;}
.event-page-location, .event-page-date, .event-page-time{margin-top:0px;font-size:16px;font-weight:600;}
.event-page-address{font-size:12px;}
.event-page-address-link > a{font-size:14px;font-weight:600;text-decoration:underline;}
.event-page-right-spacing{padding:3% 0;}
.event-list-extra > li > a{background:#EDEDED;padding:10px;color:#4A4A4A;padding:10px 20px;font-size:12px;font-weight:600;border-radius:25px;}
.event-list-extra > li{margin-top:10px;margin-bottom:20px;}
.event-page-mapiframe > div > div > iframe{border-bottom-left-radius:8px;border-bottom-right-radius:8px;margin-top:0px;}
.round-corners{border-radius:8px;}
.l-space{margin-top:20px;}
.r-space{margin-bottom:20px;box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);}
.event-page-s-title{padding:10px 0px;padding-top:15px;padding-left:0;color:#FFFFFF;font-size:22px;margin-top:0px;margin-bottom:0px;}
.event-divider-s-title{margin-top:3px;}
.btn-share{margin-bottom:10px;}
.btn-share-facebook{margin-bottom:10px;}
.btn-share-fb, .btn-share-twitter{padding:10px 20px;font-weight:400;}
.btn-share-twitter{margin-bottom:10px;background:#42B0E2;border:1px solid #42B0E2;}
.event-page-location-ticket{margin-top:0px;margin-bottom:5px;font-size:16px;}
.event-page-day-ticket{margin-bottom:0px;}
.event-page-day-ticket, .event-page-month-ticket{font-weight:600;color:#114960;}
.event-page-month-ticket{text-transform:uppercase;}
.event-page-time-ticket{font-weight:600;font-size:14px;}
.vip-includes{font-size:13px;margin-bottom:20px;margin: 0 10px 18px;border-bottom: 1px solid #eee;padding: 10px 0;}
.event-page-tickets-left{position:absolute;right:10px;top:10px;}
.event-page-ticket-type{margin-bottom:0px;}
.event-page-ticket-price{margin-top:0px;font-size:20px;color:#4A4A4A;}
.event-strong{font-weight:600;}
.btn-gustazos, .btn-gustazos:active, .btn-gustazos:hover{background:#052C53;color:#fff;font-weight:600;font-size:14px;text-transform:uppercase;}
.event-left-space{margin-bottom:10px;}
.event-page-icon{margin-top:-5px;}
.btn-buy, .btn-buy:active, .btn-buy:hover{text-transform:uppercase;font-size:14px;background:#705FFF;border-color:#114960;color:#fff;}
.event-page-tickets-left{position:absolute;right:15px;top:10px;}
.cart-ticket-price{margin-bottom:0px;}
.qty-tickets-item{margin-top:10px;}
.et-btn-more{padding: 0px;border:none;color:#000;line-height:1px;font-size:32px;width:39px;height:39px;}
.ticket-q-input{display:block;height:38px;padding:6px 5px;font-size:14px;text-align:center;line-height:1.42857143;color:#9B9B9B;font-weight:600;border:1px solid #D8D8D8;border-radius:8px;}
.ticket-modal-footer > p{margin-top:15px;font-weight:400;}
.ticket-modal-list{padding-top:10px;padding-bottom:10px;}
.btn-modal-checkout, .btn-modal-checkout:active, .btn-modal-checkout:hover{background:#114960;border-color:#114960;text-transform:uppercase;}
.ticket-cart-img{touch-action:none;}
.close{color:#4A4A4A;opacity:1;}
.user-top{padding:8% 4%;border-bottom:1px solid #EDEDED;}
.user-profile-img{width:100px;height:100px;}
.user-profile-information{text-align:center;}
.user-profile-information > h1{color:#00ADEE;font-size:18px;margin-bottom:0px;}
.user-profile-information > p{color:#4A4A4A;font-size:16px;}
.user-profile-menu{padding-left:0px;list-style:none;}
.user-profile-menu > li{padding:15px 0;padding-left:8%;border-bottom:1px solid #EDEDED;}
.user-profile-menu > li > a{color:#4A4A4A;}
.user-profile-icon-menu{padding-right:10px;}
.user-profile-menu > li:last-child{border-bottom:0px;}
.user-profile-btn{background:#fff;color:#114960;border:1px solid #114960;}
.user-profile-btn:hover{background:#fff;color:#114960;border:1px solid #114960;}
.well{padding:0px;border-radius:0px;}
.empty-state{padding:5%;}
.empty-state > h3{font-size:18px;}
.empty-state > a{font-size:16px;text-decoration:underline;color:#114960;font-weight:600;margin-top:20px;}
.empty-state > h3, .empty-state > p{color:#9B9B9B;}
.account-wrapper{padding:3%;}
.user-ticket-name, .credit-card-name{font-size:14px;margin-bottom:0px;margin-top:0px;color:#00ADEE;}
.btn-active-ticket{background:transparent;border-color:#114960;color:#114960;font-weight:600;}
.table-account{margin-top:20px;}
table tr{background:#ffffff;}
table th,
table td{text-align:left;}
table th{font-size:14px;letter-spacing:.1em;text-transform:none;}
.center-align > td{}
.table>tbody>tr>td{border-top:1px solid #EDEDED;border-bottom:0px;vertical-align:baseline;}
.btn-space-bottom{margin-bottom:20px;}
.btn-edit-profile{font-size:14px;font-weight:600;color:#4A4A4A;margin-top:10px;}
.wallet-wrapper{padding-top:0%;padding-bottom:5%;}
.btn-delete{color:#E5405D;border-color:#E5405D;}
.tk-list{background:#114960;}
.ticket-list-header, .ticket-list-footer{background:#000000;padding:3% 0;}
.n{padding-left:0px;padding-right:0px;}
.ticket-list-wrapper, .ticket-list-container{background:#fff;}
.ticket-list-wrapper{padding:3% 0;}
.ticket-l-title{text-align:center;color:#114960;font-size:18px;font-weight:400;margin-bottom:0px;}
.ticket-list-arrow{margin-top:-6px;}
.ticket-list-sub-title{font-size:16px;color:#00ADEE;margin-top:0px;}
.ticket-list-divider{margin-top:10px;}
.qb-code-img{margin-top:20px;margin-bottom:10px;}
.btn-download{margin-top:20px;}
.ticket-list-number{font-size:16px;font-weight:600;color:#4A4A4A;}
.ticket-list-user-title{font-size:14px;color:#4A4A4A;margin-bottom:0px;font-weight:600;}
.ticket-list-user{font-size:18px;color:#114960;margin-top:0px;font-weight:600;}
.ticket-location-address{font-size:13px;}
.space-around{padding-right:30px;padding-left:30px;}
.ticket-list-footer-item > h3, .ticket-list-footer-item > p{color:#ffffff;}
.ticket-list-footer-item > h3{font-size:18px;}
.btn-download{text-transform:uppercase;}
.ticket-help-email, .ticket-help-email:active{color:#fff;text-decoration:underline;}
footer{padding:4% 0;background:#aec7d1;}
.footer-item > .we-accept{margin-top:20px;color:#fff;font-size:12px;}
.footer-item > .ssl{margin-top:30px;}
.footer-item > .menu-footer{list-style:none;padding-left:0px;}
.footer-item > h4{color:#fff;font-size:18px;margin-bottom:18px;}
.footer-item > .menu-footer > li{margin-bottom:10px;}
.footer-item > .menu-footer > li > a{color:#fff;font-size:16px;font-weight:400;}
.footer-item > .menu-footer > li > a:hover{color:#fff;}
.section-copyright{background:#000;color: white}
.footer-copyright{color:#ffffff;margin-top:10px;line-height:20px;}
.terms{color:#fff;text-decoration:underline;}
.terms:hover{color:#fff;}
.footer-social-frame{width:100%;height:214px;}
.checkout-top{background:#000;height:250px;}
.checkout-l-main-information, .thankyou-main-information{background:#ffffff;}
.checkout-title{color:#fff;text-align:center;margin-top:4%;text-transform:uppercase;}
.checkout-item > h3{font-weight:600;font-size:16px;color:#114960;margin-top:0px;}
.checkout-total > h3{font-size:18px;margin-top:0px;margin-bottom:15px;color:#114960;}
.checkout-price-per-ticket > .price-per-ticket-title, .seating-section-title{font-weight:600;}
.credit-card-btn{margin-bottom:20px;}
.form-control{color:#114960;}
.icon-security{position:absolute;right:29px;top:52px;}
.no-space > p{font-size:12px;margin-top:5px;}
.no-space > p > img{margin-top:-2px;}
.checkout-l-side-title{font-size:14px;}
.checkout-event-title{color:#00ADEE;}
.checkout-event-date{font-weight:600;}
.seating-title{margin-bottom:5px;}
.btn-dark{background:#114960;border-color:#114960;}
.thankyou-p{padding:2%;}
.event-thank-you-title{margin-top:14px;font-weight:700;font-size:18px;}
.fg-alert{border-radius:8px;background:#E5405D;border-color:#E5405D;padding:2%;}
.fg-alert > span > h4{margin-bottom:0px;font-size:16px;color:#ffffff;font-weight:600;}
.fg-alert > span > h4 > img{margin-top:-2px;}
.thanyou-title{color:#114960;font-size:22px;font-weight:700;}
.send-email-confirmation{font-weight:400;font-size:14px;margin-bottom:0px;}
.email-confirmation{font-weight:600;font-size:18px;margin-bottom:20px;}
.thankyou-space{margin-bottom:10%;}
.thankyou-space > h3, .thankyou-ticket-type > h3, .thankyou-event-location, .thankyou-event-date, .thankyou-event-time, .thankyou-receipt{margin-top:0px;font-weight:600;font-size:14px;color:#4A4A4A;}
.thankyou-space > p, .thankyou-ticket-type > p, .thankyou-event-location-title, .thankyou-event-date-title, .thankyou-event-time-title, .thankyou-receipt-title{margin-bottom:0px;font-weight:400;font-size:14px;color:#4A4A4A}
.thankyou-event-title{font-size:28px;color:#114960;margin-top:0px;margin-bottom:20px;}
.online-receipt-item, .thankyou-event-item{margin-bottom:4%;}
.thankyou-ticket-type{margin-bottom:2%;}
.alert-fg{background:#114960;border-color:#114960;}
.ty-bottom-border{border-bottom:1px solid #D7D7D7;margin-top:10px;margin-bottom:20px;}
.thanyou-user-info > h3,.thanyou-ticket-info > h3{font-size:14px;margin-top:0px;font-weight:600;}
.thanyou-user-info > p, .thanyou-ticket-info > p{font-size:14px;margin-bottom:5px;}
.thanyou-user-info, .thanyou-ticket-info{margin-bottom:20px;word-wrap: break-word !important;}
.ticket-type-list > li >a{background:#EDEDED;padding:10px;color:#4A4A4A;padding:7px 12px;font-size:11px;font-weight:600;border-radius:25px;}
.ticket-type-list > li{margin-top:10px;margin-bottom:10px;}
.thankyou-seating-title{font-weight:600;font-size:18px;margin-top:0px;}
#header-profile-information{padding:14px !important;}
#dropdownMenu1{color:#FFF;}
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover{background-color: transparent;}
.event-card-title{text-transform:uppercase;}
#google-login-btn{overflow:hidden;white-space:nowrap;border:1px solid #D8D8D8;border-radius:50px !important;}
.break-word,.break-word a{word-wrap: break-word !important;}
.no-pad {padding: 0;}.label-default{background-color: #d1d1d1;}
#phonehelp,#first_namehelp,#last_namehelp,#addresshelp,#zip_codehelp{float: right;top: -32px;right: 20px;color: #3c763d;}
.discount-item {padding: 10px 0 40px;}
.round-top {border-radius: 8px 8px 0px 0px;}.white {background-color: #fff;}
@media only screen and (max-width:1024px){.dropdown-menu li a{color:#ffffff !important;}}
@media only screen and (max-width:1200px){}
@media only screen and (max-width:1024px){.one-col-event-c-img{min-height:242px;}
.view-all-event{margin-top:6%;margin-bottom:9%;}
.btn-view-all{bottom:-18px;}
.e-page-container{margin-top:-50px;}
.btn-dektop-buy{font-size:14px;}
}
@media only screen and (max-width:992px){.e-page-container{margin-top:-50px;}
}
/* @media screen and (max-width:600px){table{border:0;}
table thead{border:none;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;}
table tr{border-bottom:0px;display:block;margin-bottom:2em;}
table td{border-bottom:1px solid #ddd;display:block;font-size:12px;font-weight:600;text-align:right;color:#4A4A4A;-webkit-font-smoothing:antialiased;}
table td:before{content:attr(data-label);float:left;font-weight:600;text-transform:none;font-size:12px;color:#4A4A4A;-webkit-font-smoothing:antialiased;}
table td:last-child{border-bottom:0;}
}*/
@media only screen and (max-width:768px){.h-event-title,
.m-change-location{text-align:center;margin-bottom:6%;font-size: 18px}
.m-change-location{color:#00ADEE;font-size:18px;margin-bottom:30px;}
.h-event-title{margin-bottom:2%;}
.c-space{margin-bottom:6%;}
.one-col-event-c-img{min-height:240px;}
.two-col-event-c-img{min-height:400px;border-top-left-radius:8px;border-top-right-radius:0px;border-bottom-left-radius:8px;}
.tw-d-wrapper{border-top-left-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:8px;border-top-right-radius:8px;min-height:auto;}
.one-col-event-c-info{border-bottom-right-radius:8px;border-bottom-left-radius:8px;}
.view-all-event{margin-top:6%;margin-bottom:8%;}
.btn-view-all{bottom:-18px;}
.e-page-container{padding:5% 0;margin-top:0px;}
.e-page-hero{padding-bottom:5%;}
.contact{padding:5% 0 8% 0;}
.contact-form-container{margin-top:-30px;}
.subscribe{padding:10% 0;}
.tablet{padding:0px;margin-top:20px;}
.ticket-q-input-sm{width:45px !important;}
}
@media only screen and (max-width:738px){.two-col-event-c-img{height:240px;border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:0px;}
.tw-d-wrapper{border-top-left-radius:0px;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top-right-radius:0px;min-height:auto;}
.no-p-right{padding-right:15px;}
.no-p-left{padding-left:15px;}
}
@media only screen and (max-width:640px){.h-event-title{margin-bottom:2%;}
.two-col-event-c-img{height:240px;border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:0px;}
.tw-d-wrapper{border-top-left-radius:0px;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top-right-radius:0px;min-height:auto;}
.no-p-right{padding-right:15px;}
.no-p-left{padding-left:15px;}
}
@media only screen and (max-width:480px){.navbar>.container-fluid .navbar-brand{margin-top:0px;}
.h-t{margin-top:4%;margin-bottom:5%;}
.h-event-title,
.m-change-location{text-align:center;margin-bottom:10px;}
.m-change-location{color:#00ADEE;font-size:18px;margin-bottom:30px;}
.two-col-event-c-img{min-height:240px;border-top-left-radius:8px;border-top-right-radius:8px;border-bottom-left-radius:0px;}
.tw-d-wrapper{border-top-left-radius:0px;border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top-right-radius:0px;min-height:auto;}
.c-space{margin-bottom:12%;}
.view-all-event{margin-top:14%;margin-bottom:15%;}
.btn-view-all{bottom:-18px;}
.event-title{text-align:center;}
.subscribe{padding:10% 0;}
.login-container{margin-top:10%;margin-bottom:10%;}
.pa{padding:9% 5%;}
.register-container{margin-top:10%;margin-bottom:10%;}
.contact{padding:5% 0 15% 0;}
.contact-form-container{margin-top:-30px;}
.subscribe{padding:10% 0;}
.e-page-container{padding:5% 0;margin-top:0px;}
.about-section{padding:10% 0;}
.business-email-title{font-size:16px;}
.event-top{height:0px;}
.event-container{top:0px;margin-bottom:10px;}
.event-page-img{width:100%;
  /* height:250px; */
  border-top-left-radius:0px;border-top-right-radius:0px;}
.mobile-full{padding:0px;}
.round-corners{border-radius:0px;}
.fix-btn{position:fixed;width:100%;z-index:1;bottom:0px;left:0px;right:0px;padding:2px;background:#fff;}.fix-btn .btn-buy{padding: 14px 16px;}
.fix-btn > button, .fix-btn > button:active, .fix-btn > button:hover{background:#114960;border-color:#114960;text-transform:uppercase;letter-spacing:1px;font-size:16px;}
.fix-up{position:fixed;width:100%;z-index:1;top:0px;left:0px;right:0px;background:#fff;text-align:center;border-bottom:1px solid #D8D8D8;}
.fix-seats{position:fixed;width:100%;z-index:1;bottom:63px;left:0px;right:0px;background:#fff;text-align:center;padding-top:4px;border-bottom:1px solid #D8D8D8;}
.btn-gustazos{margin-bottom:20px;}
.btn-seating{margin-bottom:20px;}
.cart-ticket-type{margin-bottom:0px;}
.cart-ticket-price{margin-top:0px;}
.ticket-q-input{width:40px;}
.ticket-qty-col-l{text-align:left;}
.modal-event-title{font-size:16px;margin-bottom:5px;margin-top:5px;color:#00ADEE;}
.modal-event-date{font-size:14px;margin-bottom:0px;margin-top:0px;padding-bottom:5px;}
.event-modal-divider{margin-bottom:5px;margin-top:0px;}
.select-ticket-container{padding-bottom:40%;}
.btn-mobile-checkout{width:100%;border-radius:0px;}
.event-modal-divider-2{margin-top:8px;}
.close{font-size:27px;}
.btn-corner{border-radius:0px;padding-top: 10px;padding-bottom: 10px;}
.modal-mobile{position:fixed;top:0;right:0;bottom:0;left:0;overflow:hidden;}
.modal-dialog-mobile{position:fixed;margin:0;width:100%;height:100%;padding:0;}
.modal-content-mobile{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:0;box-shadow:none;}
.modal-header-mobile{position:absolute;top:0;right:0;left:0;padding:10px;background:#fff;border:0;}
.modal-title-mobile{font-weight:700;font-size:18px;color:#114960;}
.modal-body-mobile{position:absolute;top:100px;bottom:46px;width:100%;font-weight:300;overflow:auto;padding-bottom:15%;}
.modal-footer-mobile{position:absolute;right:0;bottom:0;left:0;height:auto;padding:0px;background:#ffffff;}
::-webkit-scrollbar{-webkit-appearance:none;width:10px;background:#f1f3f5;border-left:1px solid darken(#f1f3f5, 10%);}
::-webkit-scrollbar-thumb{background:darken(#f1f3f5, 20%);}
.user-top{border-bottom:0px;}
.btn-active-ticket{margin-top:0px;}
.table>tbody>tr>td{padding:8px 0;}
.ticket-list-mobile-full{padding:1px;margin-top:0px;margin-right:0px;}
footer{padding:8% 0;}
.footer-item{padding-top:5%;padding-bottom:5%;}
.footer-item > .ssl{margin-top:15px;}
.checkout-top{height:80px;}
.checkout-title{text-align:left;margin-top:10%;font-size:20px;margin-left:0px;}
.online-receipt-item, .thankyou-event-item{margin-bottom:4%;}
.thankyou-p{padding-bottom:5%;}
.alert-fg{border-radius:0px !important;}
}
@media only screen and (max-width:320px){.event-card-price,
.event-card-alert,
.event-card-time,
.date-left > .event-card-day,
.date-left > .event-card-month,
.date-right > .event-card-location{font-size:12px;}
}
/* leaflet CSS */
.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg,.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none !important;max-height:none !important}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,0.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;-moz-box-sizing:border-box;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-tile{will-change:opacity}.leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}.leaflet-zoom-anim .leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,0.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,0.25,1);transition:transform .25s cubic-bezier(0,0,0.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{-webkit-transition:none;-moz-transition:none;transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline:0}.leaflet-container a{color:#0078a8}.leaflet-container a.leaflet-active{outline:2px solid orange}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,0.5)}.leaflet-container{font:12px/1.5 "Helvetica Neue",Arial,Helvetica,sans-serif}.leaflet-bar{box-shadow:0 1px 5px rgba(0,0,0,0.65);border-radius:4px}.leaflet-bar a,.leaflet-bar a:hover{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:black}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:0}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:bold 18px 'Lucida Console',Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px rgba(0,0,0,0.4);background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(../img/layers.png);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(../img/layers-2x.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(../img/marker-icon.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,0.7);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover{text-decoration:underline}.leaflet-container .leaflet-control-attribution,.leaflet-container .leaflet-control-scale{font-size:11px}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:0;line-height:1.1;padding:2px 5px 1px;font-size:11px;white-space:nowrap;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box;background:#fff;background:rgba(255,255,255,0.5)}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:0;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,0.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 19px;line-height:1.4}.leaflet-popup-content p{margin:18px 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:white;color:#333;box-shadow:0 3px 14px rgba(0,0,0,0.4)}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;padding:4px 4px 0 0;border:0;text-align:center;width:18px;height:14px;font:16px/14px Tahoma,Verdana,sans-serif;color:#c3c3c3;text-decoration:none;font-weight:bold;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover{color:#999}.leaflet-popup-scrolled{overflow:auto;border-bottom:1px solid #ddd;border-top:1px solid #ddd}.leaflet-oldie .leaflet-popup-content-wrapper{zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678,M12=0.70710678,M21=-0.70710678,M22=0.70710678)}.leaflet-oldie .leaflet-popup-tip-container{margin-top:-1px}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px rgba(0,0,0,0.4)}.leaflet-tooltip.leaflet-clickable{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}

/* slideshow */
@-webkit-keyframes left-right{0%{-webkit-transform:translateY(-20%) translateX(-10%);transform:translateY(-20%) translateX(-10%)}100%{-webkit-transform:translateY(0%) translateX(10%);transform:translateY(0%) translateX(10%)}}@-o-keyframes left-right{0%{-o-transform:translateY(-20%) translateX(-10%);transform:translateY(-20%) translateX(-10%)}100%{-o-transform:translateY(0%) translateX(10%);transform:translateY(0%) translateX(10%)}}@keyframes left-right{0%{-webkit-transform:translateY(-20%) translateX(-10%);-o-transform:translateY(-20%) translateX(-10%);transform:translateY(-20%) translateX(-10%)}100%{-webkit-transform:translateY(0%) translateX(10%);-o-transform:translateY(0%) translateX(10%);transform:translateY(0%) translateX(10%)}}@-webkit-keyframes right-left{0%{-webkit-transform:translateY(0%) translateX(10%);transform:translateY(0%) translateX(10%)}100%{-webkit-transform:translateY(-20%) translateX(-10%);transform:translateY(-20%) translateX(-10%)}}@-o-keyframes right-left{0%{-o-transform:translateY(0%) translateX(10%);transform:translateY(0%) translateX(10%)}100%{-o-transform:translateY(-20%) translateX(-10%);transform:translateY(-20%) translateX(-10%)}}@keyframes right-left{0%{-webkit-transform:translateY(0%) translateX(10%);-o-transform:translateY(0%) translateX(10%);transform:translateY(0%) translateX(10%)}100%{-webkit-transform:translateY(-20%) translateX(-10%);-o-transform:translateY(-20%) translateX(-10%);transform:translateY(-20%) translateX(-10%)}}.sy-box.sy-loading{background:url("../images/sy-loader.gif") 50% 50% no-repeat;-webkit-background-size:32px 32px;background-size:32px;min-height:40px}.sy-box.sy-loading .sy-pager,.sy-box.sy-loading .sy-slides-wrap{visibility:hidden}.sy-slides-wrap{position:relative;height:100%;width:100%}.sy-slides-wrap:hover .sy-controls{display:block}.sy-slides-crop{height:100%;width:100%;position:absolute;overflow:hidden}.sy-list{width:100%;height:100%;list-style:none;margin:0;padding:0;position:absolute}.sy-list.horizontal{-webkit-transition:left ease;-o-transition:left ease;transition:left ease}.sy-list.vertical{-webkit-transition:top ease;-o-transition:top ease;transition:top ease}.sy-slide{position:absolute;width:100%;z-index:2}.sy-slide.kenburns{width:140%;left:-20%}.sy-slide.kenburns.useCSS{-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.sy-slide.kenburns.useCSS.sy-ken:nth-child(1n){-webkit-animation-name:left-right;-o-animation-name:left-right;animation-name:left-right;-webkit-animation-fill-mode:forwards;-o-animation-fill-mode:forwards;animation-fill-mode:forwards}.sy-slide.kenburns.useCSS.sy-ken:nth-child(2n){-webkit-animation-name:right-left;-o-animation-name:right-left;animation-name:right-left;-webkit-animation-fill-mode:forwards;-o-animation-fill-mode:forwards;animation-fill-mode:forwards}.sy-slide.sy-active{z-index:3}.sy-slide > img{margin:0;padding:0;display:block;width:100%;border:0}.sy-slide > a{margin:0;padding:0;display:block;width:100%}.sy-slide > a > img{margin:0;padding:0;display:block;width:100%;border:0}.sy-controls{display:none;list-style:none;height:100%;width:100%;position:absolute;padding:0;margin:0}.sy-controls li{position:absolute;width:10%;min-width:4.2em;height:100%;z-index:33}.sy-controls li.sy-prev{left:0;top:0}.sy-controls li.sy-prev a:after{background-position:-5% 0}.sy-controls li.sy-next{right:0;top:0}.sy-controls li.sy-next a:after{background-position:105% 0}.sy-controls li a{position:relative;width:100%;height:100%;display:block;text-indent:-9999px}.sy-controls li a:link,.sy-controls li a:visited{opacity:0.4}.sy-controls li a:focus,.sy-controls li a:hover{opacity:0.8;outline:none}.sy-controls li a:after{content:"";background-image:url("../images/arrows.svg");background-repeat:no-repeat;-webkit-background-size:cover;background-size:cover;text-align:center;text-indent:0;line-height:2.8em;color:#111;font-weight:800;position:absolute;background-color:#fff;width:2.8em;height:2.8em;left:50%;top:50%;margin-top:-1.4em;margin-left:-1.4em;border-radius:50%}@media only screen and (max-device-width: 600px){.sy-controls{display:block}.sy-controls li{min-width:2.1em}.sy-controls li a:after{width:1.4em;height:1.4em;margin-top:-0.7em;margin-left:-0.7em}}.sy-caption-wrap{position:absolute;bottom:2em;z-index:12;left:50%}.sy-caption-wrap .sy-caption{position:relative;left:-50%;background-color:rgba(0, 0, 0, 0.54);color:#fff;padding:0.4em 1em;border-radius:1.2em}.sy-caption-wrap .sy-caption a:link,.sy-caption-wrap .sy-caption a:visited{color:#e24b70;font-weight:600;text-decoration:none}.sy-caption-wrap .sy-caption a:focus,.sy-caption-wrap .sy-caption a:hover{text-decoration:underline}@media only screen and (max-device-width: 600px), screen and (max-width: 600px){.sy-caption-wrap{left:0;bottom:0.4em}.sy-caption-wrap .sy-caption{left:0;padding:0.2em 0.4em;font-size:0.92em;border-radius:0}}.sy-pager{clear:both;display:block;width:100%;margin:1em 0 0;padding:0;list-style:none;position:absolute;text-align:center}.sy-pager li{display:inline-block;width:1.2em;height:1.2em;margin:0 1em 0 0;border-radius:50%}.sy-pager li.sy-active a{background-color:#e24b70}.sy-pager li a{width:100%;height:100%;display:block;background-color:#ccc;text-indent:-9999px;-webkit-background-size:2em 2em;background-size:2em;border-radius:50%}.sy-pager li a:link,.sy-pager li a:visited{opacity:1.0}.sy-pager li a:focus,.sy-pager li a:hover{opacity:0.6}.sy-filler{width:100%}.sy-filler.ready{-webkit-transition:padding 600ms ease;-o-transition:padding 600ms ease;transition:padding 600ms ease}
.sy-caption{font-size:14px !important;background:#00ADEE !important;border-color:#00ADEE !important;padding:10px 16px !important;font-size:18px;line-height:1.3333333;border-radius:6px !important;}.sy-caption-wrap .sy-caption a:link,.sy-caption-wrap .sy-caption a:visited{color:#fff !important}

/* Ensure the pager is centered below the slider */
.sy-pager {
    display: flex !important;
    justify-content: center !important; /* Centers the pager horizontally */
    margin-top: 20px !important; /* Adds some space between the slider and pager */
    list-style: none !important; /* Removes the bullet points from the pager */
    padding: 0 !important;
    position: relative !important;
}

/* Style individual pager items */
.sy-pager li {
    margin: 0 5px !important; /* Adds spacing between pager dots */
}

/* Inactive pager dots */
.sy-pager li a {
    display: inline-block !important;
    width: 12px !important;  /* Adjusted size for better visibility */
    height: 12px !important;
    background-color: #d3d3d3 !important; /* Default inactive color */
    border-radius: 50% !important; /* Makes pager items circular */
    text-indent: -9999px !important; /* Hides text */
}

/* Active pager dot (first color in the image) */
.sy-pager li.sy-active a {
    background-color: #705FFF !important; /* Active color from your image */
}

/* Hover effect (optional) */
.sy-pager li a:hover {
    background-color: #0056b3 !important; /* Color when hovering */
}
.sy-controls {
  display: none !important; /* Hides both previous and next arrows */
}
/***** footer ***/
.footer {
  background-color: #000;
  padding: 20px 0;
  color: #fff;
  position: relative; /* Added to position the purple line */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.footer-logo {
  width: 240px;
  margin-bottom: 15px;
}

.app-links img {
  margin-right: 10px;
  width: 150px;
}

.footer-divider .divider {
  width: 2px;
  height: 100%;
  background-color: red;
}

.footer-right {
  text-align: right;
  margin-top: 50px;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  display: inline-block;
  margin-left: 30px;
}

.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
  font-size: 16px;
}

.footer-social {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}

.footer-social li {
  margin-left: 10px;
}

.social-icon {
  display: inline-block;
  background-color: #fff;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  text-decoration: none;
}

/* Add purple dashed line on top */
.purple-line {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 1px; /* Control the height of the dashes */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='1' viewBox='0 0 10 3'%3E%3Cline x1='0' y1='1.5' x2='10' y2='1.5' stroke='%238a43e8' stroke-width='3' stroke-dasharray='10,3'/%3E%3C/svg%3E");
  background-size: 30px 3px; /* Adjust the size of dashes and gaps */
}

.purple-line-normal {
  clear: both;
  position: relative;
  z-index: 1;
    top: 15px;
  width: 100%;
  height: 1px; /* Control the height of the dashes */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='1' viewBox='0 0 10 3'%3E%3Cline x1='0' y1='1.5' x2='10' y2='1.5' stroke='%238a43e8' stroke-width='3' stroke-dasharray='10,3'/%3E%3C/svg%3E");
  background-size: 30px 3px; /* Adjust the size of dashes and gaps */
}


/* Red center divider for desktop */
.red-line {
  width: 2px;
  height: 100px;
  background-color: red;
  margin: 0 auto;
  display: block;
}
/*** ends footer **/
/** login **/
/* Section styling */
.sr-section {
  align-items: center;
  background: #000;
}
.sr-section,
.sr-section .row {
  display: flex;
      margin: 5%;
}

/* Left side with background image */
.login-left {
  background-image: url(https://res.cloudinary.com/citywiz/image/upload/v1755725148/crowd.jpg);
  background-size: cover;
  background-position: center;
  height: 100%; /* Ensure it takes up the full height */
  flex: 1; /* Allow it to take up equal space as the form */
}

/* Right side form */
.login-right {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d6d6d6;
  padding: 40px;
  flex: 1; /* Allow it to take up equal space as the image */
  height: 100%;
}

.login-container {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.login-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
}

/* Form input styles */
.form-group input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 25px;
  background-color: #705fff;
  color: #fff;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Checkbox styling */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Hide the default checkbox */
.form-check-input {
  display: none;
}

/* Style the label and add space between the checkbox and the text */
.form-check-label {
  display: inline-block;
  position: relative;
  padding-left: 30px; /* Adjust as needed */
  cursor: pointer;
  font-size: 16px;
}

/* Custom checkbox design */
.form-check-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px; /* Adjust the size */
  height: 20px;
  border: 2px solid #d0d0d0; /* Border for the unchecked box */
  border-radius: 4px; /* Rounded corners */
  background-color: transparent;
}

/* Checkmark icon when the checkbox is selected */
.form-check-input:checked + .form-check-label::before {
  background-color: #705fff; /* Purple background to match site theme */
  border-color: #705fff; /* Match the background color */
}

/* Add the checkmark (optional using a pseudo-element) */
.form-check-input:checked + .form-check-label::after {
  content: "\2714"; /* Unicode checkmark */
  position: absolute;
  top: 0px;
  left: 4px;
  font-size: 16px; /* Adjust size as needed */
  color: white; /* White checkmark */
}
.login-footer{
  /*color: white;*/
}


/* Submit button */
.btn-primary {
  background-color: #ff4444;
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-size: 18px;
  margin-top: 20px;
}

.btn-primary:hover {
  background-color: #ff2222;
}

/* Footer link */
.login-footer {
  margin-top: 20px;
}

.login-footer a {
  color: #8a43e8;
  text-decoration: underline;
}

/* Show/Hide Password toggle (Optional) */
.show-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.top-reg{
  height:200px;
  margin:0 5% !important;
}
.bottom-reg{
  margin:0 5% 5% 5% !important;
}

/* Mobile Login Responsive Styles */
.login-desktop-row {
  min-height: 600px; /* Better than fixed 700px for desktop */
}

/* Fix desktop layout issues */
.login-desktop-row .login-left {
  height: 600px; /* Ensure consistent height with the row */
}

.login-desktop-row .login-right {
  height: 600px; /* Match the left side height */
  display: flex;
  align-items: center; /* Center the form vertically */
}

.login-left-mobile {
  height: 200px; /* Adjust as needed for mobile background */
  background-image: url(https://res.cloudinary.com/citywiz/image/upload/v1755725148/crowd.jpg);
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

.login-right-mobile {
  padding: 20px;
  background-color: #d6d6d6;
}

.login-right-mobile .login-container {
  margin-top: 0;
  margin-bottom: 0;
}

/* Ensure consistent spacing between sections */
.top-login {
  margin-bottom: 0;
}

.bottom-login {
  margin-top: 0;
  margin-bottom: 5%;
}

/* Mobile specific form adjustments */
@media (max-width: 767px) {
  .login-right-mobile .form-group input {
    padding: 12px 15px; /* Slightly smaller padding for mobile */
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .login-right-mobile .login-title {
    font-size: 24px; /* Slightly smaller title on mobile */
  }
  
  .login-right-mobile .login-subtitle {
    font-size: 14px; /* Smaller subtitle for mobile */
  }
}
/*** login ends **/

/* Autocomplete Search Results Dropdown */
#liv2nite-search-bar {
    position: relative;
}

#liv2nite-search-bar .search-results {
    position: absolute;
    top: 100%;
    left: 42px; /* Start after the date picker button */
    right: 42px; /* End before the search button */
    margin: 0 -25px; /* Desktop: extend to match search bar width */
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

#liv2nite-search-bar .search-results.show {
    display: block;
}

/* Individual search result item */
#liv2nite-search-bar .search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

#liv2nite-search-bar .search-result-item:hover,
#liv2nite-search-bar .search-result-item:focus {
    background-color: #f8f9fa;
    text-decoration: none;
    color: inherit;
    outline: none;
}

#liv2nite-search-bar .search-result-item:last-child {
    border-bottom: none;
}

/* Thumbnail image */
#liv2nite-search-bar .result-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
    background-color: #f0f0f0;
}

/* Result content area */
#liv2nite-search-bar .result-content {
    flex: 1;
    min-width: 0;
}

/* Event title */
#liv2nite-search-bar .result-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Venue name */
#liv2nite-search-bar .result-venue {
    font-size: 14px;
    color: #666;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Event date/time info */
#liv2nite-search-bar .result-date-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Date display */
#liv2nite-search-bar .result-date {
    font-size: 13px;
    color: #705fff;
    font-weight: 500;
}

/* Status/time display */
#liv2nite-search-bar .result-status {
    font-size: 13px;
    color: #28a745;
    font-weight: 500;
}

/* No results message */
#liv2nite-search-bar .no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Loading state */
#liv2nite-search-bar .search-loading {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Error state */
#liv2nite-search-bar .search-error {
    padding: 20px;
    text-align: center;
    color: #dc3545;
    font-size: 14px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    margin: 5px;
    border-radius: 4px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    #liv2nite-search-bar .search-results {
        left: 0;
        right: 0;
        margin: 0 16px; /* Mobile: inset to match search bar width */
        max-height: 500px;
    }
    
    #liv2nite-search-bar .search-result-item {
        padding: 10px 12px;
    }
    
    #liv2nite-search-bar .result-thumbnail {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    
    #liv2nite-search-bar .result-title {
        font-size: 14px;
    }
    
    #liv2nite-search-bar .result-venue {
        font-size: 13px;
    }
    
    
}

/***  event page ****/
.scrollable-content {
    max-height: 340px; /* Limit the height to 200px */
    overflow-y: auto;  /* Enable vertical scrolling */
    padding-right: 15px; /* Optional: Add padding to prevent the scrollbar from overlapping content */
}
.date-container {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #fff;
}

.date-box {
    background-color: #e31b23; /* Red background for the month */
    color: #fff;
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60px;
}

.month {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.day {
    background-color: #333;
    padding: 10px;
    width: fit-content;
    font-weight: bold;
}

.event-details {
    color: #fff;
}

.buy-tickets-text {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.event-date {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

/*** ends event page **/
/*** tickects page ***/
#ticketCarousel .carousel-inner .item {
    text-align: center;
    padding: 20px;
    border: 0px;
    border-radius: 0px 0px 10px 10px;
    background: transparent;
}
.ticket-list-wrapper, .ticket-list-container {
  background: #000;
}
.ticket-list-container .ticket-list-wrapper {
  padding-top: 0px;
      margin-bottom: 100px;
}
.ticket-list-container .container-fluid{
  max-width: 800px;
}
.ticket-head{
  background: #705fff;
  border-radius: 10px 10px 0 0;
  padding: 30px 0px;
  position: relative; /* Needed for positioning the pseudo-element */
    overflow: hidden; /* Ensures the cutout doesn't overflow */
}
.ticket-head::before {
      content: '';
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 40px;
      background: #000;
      border-radius: 0 0 40px 40px;
      z-index: 2222222;
}
.ticket-head .ticket-l-title{
  color:#ffffff;
  margin: 0;
  font-weight: bold;
  line-height: 20px;
  position: relative;
    z-index: 2;
}
#ticketCarousel .carousel-indicators {
    top: 0px;
}

#ticketCarousel .carousel-indicators li {
    background-color: #d3d3d3;
    width: 12px;
    height: 12px;
    border: none;
    margin:0px;
}

#ticketCarousel .carousel-indicators .active {
    background-color: #705fff; /* Bootstrap's primary color */
}

#ticketCarousel .carousel-control {
    background-image: none !important;
}

#ticketCarousel .carousel-control .glyphicon {
    color: #705fff;
    font-size: 30px;
    top: 35%;
    transform: translateY(-35%);
}

#ticketCarousel .ticket-labels {
    font-weight: bold;
    margin-bottom: 5px;
}

#ticketCarousel .ticket-name {
    margin-bottom: 15px;
    text-transform: capitalize;
}

#ticketCarousel .btn-download {
    margin-top: 20px;
}

.ticket-count-message {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.ticket-body{
  background: #fff;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 768px) {
    .ticket-count-message {
        font-size: 14px;
    }
}
.qr-code-container {
    position: relative; /* Establishes a positioning context for the overlay */
    display: inline-block; /* Ensures the container wraps tightly around the images */
}

.qr-code {
    display: block; /* Ensures the QR code takes up the full width of the container */
    width: 100%; /* Adjust as needed */
    max-width: 300px; /* Match the typical QR code size; adjust based on your design */
    height: auto; /* Maintain aspect ratio */
}

.qr-overlay {
    position: absolute; /* Positions the GIF over the QR code */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for the GIF's own dimensions to center it */
    width: 100%; /* Match the QR code width */
    max-width: 300px; /* Match the QR code max-width */
    height: auto; /* Maintain aspect ratio */
    opacity: 0.5; /* Slight transparency so the QR code is still scannable */
    pointer-events: none; /* Allows the QR code to be scanned through the overlay */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #ticketCarousel .carousel-inner .item {
        padding: 20px;
    }
    #ticketCarousel .col-md-3 {
        width: 50%;
        float: left;
    }
}
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-attended {
    background: #28a745; /* Green background */
    color: #fff;
}

.status-missed {
    background: #dc3545; /* Red background */
    color: #fff;
}

@media screen and (max-width: 600px) {
    .status-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
}
/*** ends tickets page ***/
/***** my events *****/
/* Event Container */
.event-container {
    background: #000000;
    color: #ffffff;
    padding: 40px 20px;
    position: relative;
    margin-bottom: 0;
}

.event-container::before {
    display: none; /* Remove the dark overlay since the background is already black */
}

/* User Profile Header */
.user-profile-header {
    background: #1a1a1a; /* Slightly lighter black for contrast */
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.user-profile-img {
    width: 120px;
    height: 120px;
    border: 3px solid #705fff;
    margin-bottom: 15px;
}

.user-profile-name {
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.user-profile-email {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #cccccc;
    margin: 0 0 15px 0;
}

.btn-edit-profile {
    background: #705fff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-edit-profile:hover {
    background: #6355e7;
    color: #ffffff;
}

/* Ticket Tabs */
.ticket-tabs {
    border-bottom: 2px solid #333;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
}

.ticket-tabs li a {
    color: #ffffff;
    font-family: 'Exo', sans-serif;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px 10px 0 0;
    transition: background 0.3s ease;
}

.ticket-tabs li.active a,
.ticket-tabs li a:hover {
    background: #705fff;
    color: #ffffff;
    border: none;
}

/* Ticket Card Container */
.ticket-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ticket-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.ticket-event-title {
    font-family: 'Exo', sans-serif;
    font-size: 20px;
    color: #705fff;
    margin: 0 0 15px 0;
}

.ticket-event-title a {
    color: #705fff;
    text-decoration: none;
}

.ticket-event-title a:hover {
    color: #e31e26;
}

.ticket-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #cccccc;
    margin: 5px 0;
}

.ticket-details p strong {
    color: #ffffff;
}

/* Ensure the new fields (Order ID, Tickets) have consistent spacing */
.ticket-details p:not(:last-child) {
    margin-bottom: 8px;
}

.ticket-details p strong {
    color: #ffffff;
}
.status-mixed {
    background: #f0ad4e; /* Yellow background for "Mixed" status */
    color: #fff;
}
.btn-view-ticket {
    background: #705fff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-view-ticket:hover {
    background: #6355e7;
    color: #ffffff;
}

.btn-find-events {
    background: #e31e26;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    margin-left: 10px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-find-events:hover {
    background: #c81a20;
    color: #ffffff;
}

/* Empty State */
.empty-state {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.empty-state img {
    max-width: 100px;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

.empty-state p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
}

.empty-state-link {
    color: #e31e26;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.empty-state-link:hover {
    color: #c81a20;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .event-container {
        padding: 20px 10px;
        padding-top: 0px;;
    }

    .user-profile-header {
        padding: 20px;
    }

    .user-profile-img {
        width: 80px;
        height: 80px;
    }

    .user-profile-name {
        font-size: 20px;
    }

    .user-profile-email {
        font-size: 14px;
    }

    .btn-edit-profile {
        padding: 8px 16px;
        font-size: 12px;
    }

    .ticket-tabs li a {
        font-size: 16px;
        padding: 8px 15px;
    }

    .ticket-card {
        padding: 15px;
    }

    .ticket-event-title {
        font-size: 18px;
    }

    .ticket-details p {
        font-size: 12px;
    }

    .btn-view-ticket,
    .btn-find-events {
        padding: 8px 16px;
        font-size: 12px;
    }

    .empty-state {
        padding: 20px;
    }

    .empty-state h3 {
        font-size: 20px;
    }

    .empty-state p {
        font-size: 14px;
    }

    .empty-state-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .user-profile-img {
        width: 60px;
        height: 60px;
    }

    .user-profile-name {
        font-size: 18px;
    }

    .user-profile-email {
        font-size: 12px;
    }

    .ticket-tabs {
        flex-direction: column;
        align-items: center;
    }

    .ticket-tabs li {
        width: 100%;
        text-align: center;
    }

    .ticket-tabs li a {
        display: block;
        border-radius: 10px;
        margin-bottom: 5px;
    }

    .ticket-card-container {
        grid-template-columns: 1fr;
    }
}
/* Event Group */
.event-group {
    margin-bottom: 40px;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Event Group Header */
.event-group-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.event-date {
    text-align: center;
    margin-right: 20px;
    position: relative;
}

.event-image-mobile {
    display: none; /* Hidden by default (desktop) */
    margin-bottom: 10px;
}

.event-image-mobile img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.event-day {
    display: block;
    font-family: 'Exo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.event-month {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1;
    margin-top: 5px;
}

.event-year {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #999999;
    line-height: 1;
    margin-top: 5px;
}

.event-image-desktop {
    margin-right: 20px;
}

.event-image-desktop img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.event-info {
    flex: 1;
}

.event-title {
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    color: #705fff;
    margin: 0 0 5px 0;
    text-align: left;
}

.event-tour {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.event-details {
    display: flex;
    gap: 20px;
}

.event-venue,
.event-time {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #cccccc;
}

.event-venue i,
.event-time i {
    color: #e31e26;
    margin-right: 5px;
}

/* Order List */
.order-list {
    border-top: 1px solid #333333;
    padding-top: 10px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333333;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #cccccc;
}

.order-id,
.order-tickets,
.order-purchase-date,
.order-status {
    flex: 1;
    min-width: 120px;
}

.order-status .status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.btn-view-ticket,
.btn-find-events {
    padding: 5px 15px;
    font-size: 12px;
    margin-left: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .event-group-header {
        flex-direction: row; /* Keep as row on mobile */
        align-items: flex-start;
    }

    .event-date {
        margin-right: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .event-image-mobile {
        display: block; /* Show on mobile */
    }

    .event-image-desktop {
        display: none; /* Hide on mobile */
    }

    .event-day {
        font-size: 28px;
    }

    .event-month {
        font-size: 14px;
    }

    .event-year {
        font-size: 12px;
    }

    .event-title {
        font-size: 20px;
    }

    .event-tour {
        font-size: 14px;
    }

    .event-details {
        flex-direction: column;
        gap: 10px;
    }

    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .order-id,
    .order-tickets,
    .order-purchase-date,
    .order-status {
        min-width: 100%;
    }

    .btn-view-ticket,
    .btn-find-events {
        margin-left: 0;
        margin-top: 5px;
    }
}

@media screen and (max-width: 480px) {
    .event-day {
        font-size: 24px;
    }

    .event-month {
        font-size: 12px;
    }

    .event-year {
        font-size: 10px;
    }

    .event-title {
        font-size: 18px;
    }

    .event-tour {
        font-size: 12px;
    }

    .event-venue,
    .event-time {
        font-size: 12px;
    }

    .event-image-mobile img {
        width: 50px;
        height: 50px;
    }
}
/***** ends my events ****/
/***** side menu **** /
/* Default navbar styling */
.navbar-default {
    background-color: #000;
    border-color: #000;
    min-height: 100px;
}

/* Desktop view: Apply flexbox for navbar */
@media (min-width: 768px) {
    .navbar-default {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-center {
        float: none;
        text-align: center;
    }

    .navbar-center > li {
        float: none;
        display: inline-block;
    }

    /* Ensure the sidebar behaves like a normal navbar in desktop view */
    .sidebar-menu {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        padding-top: 0 !important;
        left: 0 !important;
    }

    .sidebar-menu .nav {
        display: flex; /* Restore horizontal layout for desktop */
    }

    .sidebar-menu .nav > li {
        float: left; /* Restore Bootstrap's float for desktop */
    }

    .sidebar-menu .nav > li > a {
        color: #fff !important; /* Default link color for desktop */
        border-bottom: none !important;
    }

    /* Active link styling for desktop */
    .sidebar-menu .nav > li > a.active {
        color: #e30613 !important; /* Red color for active link in desktop */
    }

    /* Hover effect for desktop */
    .sidebar-menu .nav > li > a:hover,
    .sidebar-menu .nav > li > a:focus {
        color: #e30613 !important; /* Red color on hover in desktop */
        background-color: transparent !important;
    }

    /* Ensure the close button is hidden in desktop view */
    .close-sidebar {
        display: none !important; /* Double-check it’s hidden in desktop view */
    }
}

/* Mobile view: Remove flexbox and adjust alignment */
@media (max-width: 767px) {
    /* Remove flexbox properties in mobile view */
    .navbar-default {
        display: block; /* Disable flexbox in mobile view */
    }

    /* Remove padding and margins from the navbar and container */
    .navbar {
        margin-bottom: 0; /* Remove Bootstrap's default margin */
    }

    .navbar > .container {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-header {
        position: relative;
        text-align: center;
        padding: 0; /* Remove default padding */
        margin: 0; /* Remove default margin */
        min-height: 100px; /* Match the min-height of the navbar */
        display: flex; /* Use flexbox for the header to center the logo */
        align-items: center; /* Vertically center the contents */
        justify-content: center; /* Center the logo horizontally */
    }

    .navbar-toggle {
        position: absolute;
        left: 0; /* Align to the left edge */
        top: 50%;
        transform: translateY(-50%);
        margin: 0; /* Remove Bootstrap's default margin */
        padding: 0 10px; /* Adjust padding for the button */
        border: none; /* Remove border */
        background: transparent !important; /* Ensure no background */
    }

    /* Style the "Menu" text */
    .navbar-toggle .menu-mobile {
        color: #fff; /* White color to match the design */
        font-size: 16px; /* Adjust font size */
        font-weight: bold; /* Make it bold to match the design */
        text-transform: uppercase; /* Match the uppercase style */
        display: inline-block;
        padding: 10px 0; /* Adjust padding for better alignment */
    }

    .brand-logo {
        display: inline-block;
        margin: 0; /* Remove margins to ensure centering */
    }

    .navbar-right {
        position: absolute;
        right: 0; /* Align to the right edge */
        top: 50%;
        transform: translateY(-50%);
        margin: 0; /* Remove Bootstrap's default margin */
        padding: 0 10px; /* Adjust padding to align to the edge */
    }

    /* Ensure the icons inside navbar-right are styled properly */
    .navbar-right .nav {
        margin: 0; /* Remove any default margin */
    }

    .navbar-right .nav > li {
        display: inline-block; /* Keep icons inline */
    }

    .navbar-right .nav > li > a {
        padding: 10px; /* Adjust padding for the icons */
        color: #fff; /* White color for icons */
        font-size: 18px; /* Adjust icon size */
    }

    .navbar-right .nav > li > a:hover,
    .navbar-right .nav > li > a:focus {
        color: #e30613; /* Red color on hover to match the active link */
    }

    /* Sidebar menu styling for mobile */
    .sidebar-menu {
        position: fixed;
        top: 0;
        left: -250px; /* Start off-screen */
        width: 250px;
        height: 100%;
        background-color: #2a2a2a; /* Dark background to match the image */
        padding-top: 60px; /* Space for the navbar height */
        transition: left 0.3s ease-in-out; /* Smooth slide animation */
        z-index: 1000; /* Ensure it appears above other content */
    }

    /* When the sidebar is open */
    .sidebar-menu.in {
        left: 0; /* Slide in */
    }

    /* Override navbar-nav to stack links vertically */
    .sidebar-menu .nav {
        display: block; /* Stack vertically */
        width: 100%;
    }

    .sidebar-menu .nav > li {
        display: block; /* Ensure each list item takes full width */
        float: none; /* Remove Bootstrap's float */
    }

    /* Style the menu items in the sidebar */
    .sidebar-menu .nav > li > a {
        color: #fff; /* White text for menu items */
        padding: 15px 20px;
        border-bottom: 1px solid #444; /* Separator between items */
        display: block; /* Ensure the link takes full width */
        font-size: 16px; /* Match the font size in the image */
        text-align: left; /* Align text to the left */
    }

    /* Active link styling */
    .sidebar-menu .nav > li > a.active {
        color: #e30613; /* Red color for active link */
        background-color: transparent; /* No background change for active */
    }

    /* Hover effect for non-active links */
    .sidebar-menu .nav > li > a:hover,
    .sidebar-menu .nav > li > a:focus {
        color: #e30613; /* Red color on hover */
        background-color: #3a3a3a; /* Slightly lighter background on hover */
    }

    /* Remove the navbar-center class effect in mobile view */
    .sidebar-menu .navbar-center {
        text-align: left; /* Align links to the left in the sidebar */
        margin-left: 0;
    }

    /* Close button styling */
    .close-sidebar {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        color: #fff; /* White color to match the menu links */
        font-size: 24px; /* Larger size for the × icon */
        line-height: 1;
        padding: 5px 10px;
        cursor: pointer;
    }

    .close-sidebar:hover,
    .close-sidebar:focus {
        color: #e30613; /* Red color on hover to match the active link */
        outline: none;
    }
}

/* Overlay styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999; /* Below the sidebar but above other content */
    display: none;
}
.close-sidebar {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
}


/***** ends side menu ******/
/**** mobile moda l margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    width: 95%; *****/
/* Mobile view: Style the modal */
@media (max-width: 767px) {
    /* Position the modal dialog with 100px space from the top */
    .modal-dialog-mobile {
        margin-top: 100px; /* 100px space from the top */
        margin-left: auto;
        margin-right: auto;
        max-width: 500px; /* Optional: Set a max-width for larger mobile screens */
    }

    /* Apply border radius to the top of the modal content */
    .modal-content-mobile {
        border-top-left-radius: 20px; /* Rounded top-left corner */
        border-top-right-radius: 20px; /* Rounded top-right corner */
        border-bottom-left-radius: 0; /* Ensure bottom corners are not rounded */
        border-bottom-right-radius: 0; /* Ensure bottom corners are not rounded */
        overflow: hidden; /* Ensure content respects the border radius */
    }

    /* Optional: Ensure the modal header, body, and footer respect the border radius */
    .modal-header-mobile {
        border-top-left-radius: 20px; /* Match the content’s border radius */
        border-top-right-radius: 20px;
    }

    /* Optional: Style the close button to align with the rounded design */
    .modal-header-mobile .close {
        margin-top: 5px;
        margin-right: 10px;
        color: #fff; /* White color for the close button */
        opacity: 1; /* Ensure the close button is fully visible */
    }

    .modal-header-mobile .close:hover,
    .modal-header-mobile .close:focus {
        color: #e30613; /* Red color on hover to match the theme */
    }
    .modal-footer-mobile {
      bottom: 100px;
      padding:10px;
    }
}
/***** ends mobile modal ****/
.form-group input.ticket-q-input {
  background-color: #eee;
  border-radius: 8px;
  box-shadow: none;
  color: #000;

}
.form-group .btn:focus{
  outline: none;
  background: none;
  border: none;
}
/**** event page Overrides ****/
/* Styles for all event cards */
.event-card {
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
  transition: transform 0.2s;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-card-img {
  height: 240px; /* Adjust based on your image size */
  background-size: cover !important;
  background-position: top !important;
}

.event-card-content {
  padding: 15px;
}

.date-section {
   border-right: 1px solid #f0f0f0;
  padding: 10px 0;
}

.event-card-month {
  font-size: 16px;
  font-weight: bold;
  color: #666 !important;
  margin: 0;
  line-height: 1;
}

.event-card-day {
  font-size: 18px;
  font-weight: bold;
  color: #333 !important;
  margin: 10px 0;
  line-height: 1;
}

.event-card-time {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1;
}

.event-details {
  padding-left: 15px;
  display:block;
}

.event-card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #333;
}

.event-card-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.event-card-location {
  font-size: 14px;
  color: #666;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.event-card-price {
  font-size: 14px;
  color: #333;
  margin: 0 0 5px 0;
}

.event-card-price img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.event-card-alert {
  font-size: 12px;
  color: #e74c3c;
  margin: 0;
}

.c-space {
  margin-bottom: 20px;
}

/* Styles for multi-date cards */
.date-block {
  margin-bottom: 10px;
}

.date-divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}

.view-more-dates {
  margin-top: 10px;
}

.more-date-link {
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
}

.more-date-link:hover {
  text-decoration: underline;
}
/**** ends events page Overrides ****/
/***** search bar liv2nite ****/
/* Scope all styles to the liv2nite-search-bar ID */
#liv2nite-search-bar .container {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Style the input group (entire search bar container) */
#liv2nite-search-bar .input-group {
  width: 100%;
  border: 1px solid #000;
  border-radius: 8px;
  overflow: visible;
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
}

/* Style the date filter button container */
#liv2nite-search-bar .input-group-btn {
  position: relative;
  display: inline-block;
  min-width: 55px;
}

/* Style the date filter button */
#liv2nite-search-bar .input-group-btn .btn {
  border: none;
  background: #fff;
  color: #000;
  font-weight: normal;
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  height: 40px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0px;
}
#liv2nite-search-bar .input-group-btn .btn:focus{
  outline: none;
}

/* Style the caret in the date filter button */
#liv2nite-search-bar .input-group-btn .btn .caret {
  border-top-color: #000;
  margin-left: 5px;
}

/* Style the input field */
#liv2nite-search-bar .input-group .form-control {
  border: none;
  box-shadow: none;
  padding-left: 40px;
  background: #fff url('https://cdn-icons-png.flaticon.com/512/54/54481.png') no-repeat 10px center;
  background-size: 16px;
  color: #000;
  height: 40px;
  flex: 1;
}

/* Style the search button */
#liv2nite-search-bar .input-group-btn .btn-danger {
  background: #d9534f;
  border: none;
  border-radius: 8px;
  padding: 10px 30px;
  font-weight: normal;
  color: #fff;
  height: 40px;
  line-height: 20px;
}
/**** ends search bar ******/
/**** categories scroller ****/
/* Scope styles to the event categories scroller */
/* Scope styles to the event categories scroller */
#event-categories-scroller {
  background: #000;
  margin-top: 40px;
}

/* Wrapper to contain the scroller and hide overflow */
#event-categories-scroller .scroller-wrapper {
  overflow: hidden; /* Hide any overflow outside the wrapper */
  height: 150px; /* Match the card height to prevent vertical overflow */
}

/* Enable horizontal scrolling and hide the scrollbar */
#event-categories-scroller .category-scroller {
  overflow-x: scroll; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  white-space: nowrap; /* Prevent wrapping of cards */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  -ms-overflow-style: none; /* Hide scrollbar in Edge/IE */
  cursor: grab; /* Indicate the element is draggable */
  height: 150px; /* Match the card height */
}

/* Hide scrollbar in Chrome, Safari, and Opera */
#event-categories-scroller .category-scroller::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

/* Additional fallback for older browsers */
#event-categories-scroller .category-scroller {
  -ms-overflow-style: -ms-autohiding-scrollbar; /* Hide scrollbar in older Edge */
}

/* Change cursor while dragging */
#event-categories-scroller .category-scroller.active {
  cursor: grabbing;
}

/* Style the category cards */
#event-categories-scroller .category-card {
  display: inline-block; /* Use inline-block for horizontal layout */
  vertical-align: top; /* Align cards to the top */
  width: 50%; /* Default width for mobile (equivalent to col-xs-6) */
  margin-right: 10px; /* Replace mx-2 with a fixed margin */
}

/* Responsive widths for larger screens */
@media (min-width: 768px) {
  #event-categories-scroller .category-card {
    width: 33.333%; /* Equivalent to col-md-4 */
  }
}

@media (min-width: 992px) {
  #event-categories-scroller .category-card {
    width: 25%; /* Equivalent to col-lg-3 */
  }
}

/* Style the card */
#event-categories-scroller .category-card .card {
  height: 150px; /* Fixed height for consistency */
  border: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Add a dark overlay using a linear gradient */
#event-categories-scroller .category-card .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); /* Dark overlay */
  z-index: 1;
}

/* Style the card overlay (for text) */
#event-categories-scroller .category-card .card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center; /* Center text horizontally */
}

/* Style the category title */
#event-categories-scroller .category-card .card-title {
  font-size: 1.75rem; /* Slightly larger to match the image */
  font-weight: 700; /* Bold */
  text-transform: uppercase; /* Match the uppercase style in the image */
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove any padding */
  line-height: 1; /* Ensure the text is vertically centered */
  color: #fff; /* Ensure the text is white */
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for the element's own dimensions */
}

/* Background images for each category */
#event-categories-scroller .category-card:nth-child(1) .card {
  background-image: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?q=80&w=2070&auto=format&fit=crop'); /* Sports */
}

#event-categories-scroller .category-card:nth-child(2) .card {
  background-image: url('https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?q=80&w=2070&auto=format&fit=crop'); /* Concerts */
}

#event-categories-scroller .category-card:nth-child(3) .card {
  background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=2074&auto=format&fit=crop'); /* Arts & Theater */
}

#event-categories-scroller .category-card:nth-child(4) .card {
  background-image: url('https://images.unsplash.com/photo-1505731110654-99d7f7f8e39c?q=80&w=2070&auto=format&fit=crop'); /* Family */
}

#event-categories-scroller .category-card:nth-child(5) .card {
  background-image: url('https://images.unsplash.com/photo-1728674114827-e34c17a67534?q=80&w=2070&auto=format&fit=crop'); /* Comedy */
}

#event-categories-scroller .category-card:nth-child(6) .card {
  background-image: url('https://images.unsplash.com/photo-1632383380175-812d44ec112b?q=80&w=2070&auto=format&fit=crop'); /* Expo */
}
/**** ends categories scroller ****/

/* Modern Flash Message Styles */
.flash-message {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 16px 20px;
    margin: 16px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.flash-message i {
    font-size: 20px;
    min-width: 20px;
}

.flash-message .close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.flash-message .close:hover {
    opacity: 1;
}

/* Error Messages */
.flash-message.error-message {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.flash-message.error-message i {
    color: #e74c3c;
}

/* Success Messages */
.flash-message.success-message {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.flash-message.success-message i {
    color: #2ecc71;
}

/* Warning Messages */
.flash-message.warning-message {
    background: rgba(241, 196, 15, 0.1);
    border-color: rgba(241, 196, 15, 0.3);
    color: #f1c40f;
}

.flash-message.warning-message i {
    color: #f1c40f;
}

/* Info Messages */
.flash-message.info-message {
    background: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.3);
    color: #3498db;
}

.flash-message.info-message i {
    color: #3498db;
}

/* Seating specific messages */
.flash-message.seating-error {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.flash-message.seating-success {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

/* Hover effects */
.flash-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flash-message {
        border-radius: 12px;
        padding: 12px 16px;
        margin: 12px 0;
        font-size: 14px;
    }
    
    .flash-message i {
        font-size: 16px;
        min-width: 16px;
    }
}

/* Ticket Carousel Indicator Fix */
#ticketCarousel .carousel-indicators {
    top: 0px;
    max-height: 30px;
}

/* ===== PREMIUM MOBILE TICKET BUTTON ANIMATIONS ===== */

/* Premium Mobile Ticket Button Animations */
@keyframes buttonShimmer {
    0% { 
        transform: translateX(-150%);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(150%);
        opacity: 0;
    }
}

@keyframes buttonFloatingOrb {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.12;
    }
    33% { 
        transform: translateX(60px) translateY(-8px) scale(1.1);
        opacity: 0.25;
    }
    66% { 
        transform: translateX(35px) translateY(12px) scale(0.9);
        opacity: 0.18;
    }
}

@keyframes notchPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-3px) rotate(2deg);
    }
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(255,255,255,0.3);
    }
    50% { 
        text-shadow: 0 0 10px rgba(255,255,255,0.5), 0 0 15px rgba(139, 92, 246, 0.3);
    }
}

/* Enhanced Button Hover Effects */
#mobileTicketButton:hover {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(112, 95, 255, 0.4);
}

#mobileTicketButton:hover .shimmer-overlay {
    animation-duration: 4s;
}

#mobileTicketButton:hover .floating-orb {
    animation-duration: 6s;
}

#mobileTicketButton:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

/* Mobile Ticket Button Animation Classes */
.premium-bg-layer {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: linear-gradient(135deg, #705fff 0%, #8b5cf6 50%, #705fff 100%); 
    z-index: 0;
}

.shimmer-overlay {
    position: absolute; 
    top: -20%; 
    right: -20%; 
    width: 140%; 
    height: 140%; 
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(255,255,255,0.15) 55%, 
        rgba(255,255,255,0.1) 60%, 
        transparent 70%, 
        transparent 100%
    ); 
    animation: buttonShimmer 3s ease-in-out infinite; 
    z-index: 1;
}

.floating-orb {
    position: absolute; 
    top: 25%; 
    left: 20%; 
    width: 18px; 
    height: 18px; 
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%); 
    border-radius: 50%; 
    animation: buttonFloatingOrb 10s ease-in-out infinite; 
    z-index: 1;
}

.ticket-notch {
    position: absolute; 
    top: -25px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 80px; 
    height: 40px; 
    background: #262626; 
    border-radius: 0 0 40px 40px; 
    z-index: 2;
}

.ticket-icon {
    font-size: 24px; 
    width: 24px; 
    height: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    z-index: 3;
}

.ticket-main-text {
    font-weight: 700; 
    font-size: 16px; 
    line-height: 1.2; 
    margin-bottom: 2px;
}
