.events button{
    color: #8896AB !important;
    background: #FFFFFF !important;
}   
.events button[aria-selected=true]{
    background: #3B82F6 !important;
    color: #FFFFFF !important;
}

.carousel-indicators button{
    background: #FFFFFF !important;
}   
.carousel-indicators button[aria-current=true]{
    background: #723AC6 !important;
}
.navbar-nav > .active > a {
    color: #723AC6;
  }
 .qtybtn {
    border: 1px solid #ddd !important;
    /* padding: 5px 15px; */
    font-size: 20px;
    border-radius: 2px;
    cursor: pointer;
}
.lds-ripple {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    /* position: relative; */
    width: 80px;
    height: 80px;
}
#app{
    opacity: 0;
}
.lds-ripple div {

    position: absolute;
    border: 6px solid var(--primary_color);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
.select2-container--default .select2-selection--single {
    border: none !important;
}
@media (min-width: 600px) {
    .customheight{
        height: 80vh !important;
    }
}


.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }

.mySlides {
    display: none;
  }

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 25px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    margin-top: -20px;
    background-color: rgb(0 0 0 / 33%);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 6px;
}

.prev {
    left: 60px;
}

.next {
    right: 60px;
}

img.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.64);
}

.modal-content {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100%;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.centered-image {
    display: block;
    object-fit: contain;
    margin: auto;
    width: 650px !important;
    max-height: 400px !important;
}

@media (min-width: 280px ) and (max-width: 600px) {
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 52%;
        transform: translateY(-50%);
        color: white;
        font-weight: bold;
        font-size: 15px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        margin-top: -20px;
        background-color: rgba(0, 0, 0, 0.64);
        width: 30px;
        height: 27px;
        text-align: center;
        border-radius: 6px;
    }

    .prev {
        left: 34px;
    }

    .next {
        right: 34px;
    }
}
.hover\:bg-primary:hover
{
    background: red !important;
}



@media (max-width: 600px) {
    .checkoutModal {
        display: none !important;
    }
    .ticket-table th, .ticket-table td {
        padding: 8px !important;
    }
}
@media (max-width: 1024px) {
        .ticket-table th, .ticket-table td {
        padding: 8px !important;
    }
}
@media (max-width: 768px) {
    .ticket-table th, .ticket-table td {
        padding: 8px !important;
    }
}

/* Estilos para el modal de login */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.login-modal-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.login-modal-container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: auto;
}

.login-modal-overlay.show .login-modal-container {
    transform: scale(1) translateY(0);
}

.login-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #6c757d;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.login-modal-close:hover {
    background: #e9ecef;
    color: #dc3545;
    transform: scale(1.1);
}

.login-modal-content {
    padding: 0;
}

/* Ajustes para el contenido del modal */
.login-modal-content .account-section {
    margin: 0;
    padding: 0;
}

.login-modal-content .container {
    max-width: none;
    padding: 0;
}

.login-modal-content .padding-top {
    padding-top: 40px;
}

.login-modal-content .padding-bottom {
    padding-bottom: 40px;
}

.login-modal-content .account-area {
    padding: 0 30px;
}

/* Mejorar los estilos del formulario */
.login-modal-content .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.login-modal-content .form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.login-modal-content .form-group input:hover {
    border-color: #ced4da;
}

.login-modal-content .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.login-modal-content .form-group label span {
    color: #dc3545;
}

/* Estilos para el botón de submit */
.login-modal-content input[type="submit"] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.login-modal-content input[type="submit"]:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Estilos para el checkbox */
.login-modal-content .checkgroup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.login-modal-content .checkgroup input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.login-modal-content .forget-pass {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.login-modal-content .forget-pass:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Estilos para los enlaces */
.login-modal-content .option {
    text-align: center;
    margin: 20px 0;
    color: #666;
    font-size: 14px;
}

.login-modal-content .option a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.login-modal-content .option a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Estilos para el separador */
.login-modal-content .or {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.login-modal-content .or span {
    background: white;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.login-modal-content .or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
    z-index: 0;
}

/* Estilos para los iconos sociales */
.login-modal-content .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.login-modal-content .social-icons li {
    list-style: none;
}

.login-modal-content .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.login-modal-content .social-icons li:nth-child(1) a {
    background: #3b5998;
}

.login-modal-content .social-icons li:nth-child(2) a {
    background: #db4437;
}

.login-modal-content .social-icons li:nth-child(3) a {
    background: #000;
}

.login-modal-content .social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive para el modal */
@media (max-width: 640px) {
    .login-modal-container {
        width: 95%;
        margin: 10px;
    }
    
    .login-modal-content .account-area {
        padding: 0 20px;
    }
    
    .login-modal-content .padding-top {
        padding-top: 30px;
    }
    
    .login-modal-content .padding-bottom {
        padding-bottom: 30px;
    }
}

/* Estilos para las pestañas de My Tickets */
.tab-button {
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #6c757d;
}

.tab-button.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.tab-button:hover {
    background: #e9ecef;
    color: #495057;
}

.tab-button.active:hover {
    background: #0056b3;
    color: white;
}

.tab-content {
    transition: all 0.3s ease;
}

/* Estilos para las notificaciones */
.notification-enter {
    transform: translateX(100%);
    opacity: 0;
}

.notification-enter-active {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.3s ease;
}

.notification-exit {
    transform: translateX(0);
    opacity: 1;
}

.notification-exit-active {
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}