@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1b003a;
    background-size: 300% 300%;
    position: relative;
    color: #fff;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

tbody, td, tfoot, th, thead, tr {
    border-color: rgba(255, 255, 255,.32);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #1f1c2c, #3b3a5a);
}


a {
    color: rgba(255,255,255,.87);
}
/* Utils */
.btn-primary {
    background-color: #0f98ce;
    border: 1px solid #0f98ce;
}

.btn-primary:hover {
    background: #1f265e;
    border: 1px solid #1f265e;
}

.text-primary {
    color: #0f98ce !important;
}

.bg-primary {
    background: #0f98ce;
}

.bg-dark {
    background-color: #1f265e !important;
}

 .table-responsive::-webkit-scrollbar {
    width: 12px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-track {
    background-color: #FFF;
    border-radius: 10px;
}

.uppage-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    text-decoration: none;
    font-size: 22px;
    padding: 8px 15px;
    background-color: #1f265e;
    color: #FFF;
    z-index: 9999;
    border-radius: 5px;
    box-shadow: 0 3px 4px rgba(0,0,0,.23);
}

.mainContent {
    flex: 1;
}

.uppage-btn:hover {
    color: #FFF;
    background-color: #0f98ce;
}

/* Modal */

#modalscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 100%;
    background-color:rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: all ease .4s;
}

#sidebar-left {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 350px;
    height: 100%;
    /* padding: 15px; */
    background-color: #FFF;
    box-shadow: 0 3px 4px rgba(0,0,0,.23);
    overflow: auto;
}

.sidebar-left-menu a {
    text-decoration: none;
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 8px 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    transition: all ease .4s;
    border-radius: 25px;
}

.sidebar-left-menu a:hover {
    background-color: #000;
    color: rgba(255,255,255,.87);
}

.sidebar-left-menu a i {
    margin-right: 15px;
}

.sidebar-left-menu .call-menu-button {
    background: #0097e6;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
}

.sidebar-menu-header {
    text-align: center;
    padding: 50px;
    background-color: #1f265e;
    color: #FFF;
    margin-bottom: 10px;
}

.sidebar-menu-search {
    padding: 8px;
    margin-bottom: 10px;
}

.sidebar-menu-search #search {
    padding: 8px 15px;
    font-weight: bold;
    font-size: 13px;
    color: #1f265e;
    border-radius: 25px !important;
}

.btn-close-menu {
    display: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 13px;
    border-radius: calc(50%);
    position: absolute;
    top: 10px;
    right: 10px;
    box-shadow: 0 3px 4px rgba(0,0,0,.23);
}

.header-menu-sidebar {
    width: 100%;
    height: 180px;
    background: #0097e6;
    color: #FFF;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.header-menu-sidebar h3 {
    font-weight: 800;
    font-size: 18px;
}

.header {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    /* padding: 25px; */
    width: 100%;
    margin-bottom: 25px;
    margin-top: 1.3rem;
}


.header .logo {
    width: 15%;
}

.header .menu {
    width: 80%;
    text-align: right;
}

#openLeftSidebar {
    text-decoration: none;
    display: inline-block;
    padding: 8px;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    border-radius: 25px;

    transition: all ease .4s;
}

.hello {
    padding: 30px;
    border-radius: 20px;
    position: relative; /* Necesario para superposiciones */
    background: linear-gradient(145deg, rgba(66, 20, 94, 0.9) 0%, rgba(27, 0, 58, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Para evitar que los efectos salgan de los bordes */
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

/* Animación del gradiente */
@keyframes floatingGradient {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

/* Hover */
.hello:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Títulos */
.hello h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f9f871;
    text-transform: uppercase;
}

/* Texto descriptivo */
.hello p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Iconos */
.hello .icon > i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ff6bcb;
    transition: color 0.3s, transform 0.3s;
}

.hello .icon > i:hover {
    color: #f9f871;
    transform: scale(1.2);
}

/* Botones */
.hello a {
    text-decoration: none;
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    font-weight: bold;
    background-color: rgba(66, 20, 94, 1);
    color: #ffffff;
    border-radius: 25px;
    transition: background-color 0.3s, border 0.3s, transform 0.3s;
}

.hello a:hover {
    background-color: #f9f871;
    color: #1b003a;
    border: 2px solid #1b003a;
    transform: scale(1.1);
}


#openLeftSidebar:hover {
    padding: 8px;
    text-align: center;
    background-color: #FFF;
    color: #000;
}

.loginButton {
    text-decoration: none;
    padding: 8px 15px;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: bold;
    border-radius: 25px;
    transition: all ease .4s;
    margin-right: 15px;
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    background: #0f98ce;
}

.loginButton i {
    font-size: 18px !important;
    margin-right: 10px;
}

.loginButton:hover {
    padding: 8px 25px;
    text-align: center;
    background-color: #FFF;
    color: #000;
}


.pattern {
    width: 100%;
    height: 500px;
    background: #4b6cb7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #182848, #4b6cb7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #182848, #4b6cb7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-image: url('https://i.imgur.com/YuJIDbR.png');
    background-size: cover;
    /* background-attachment: fixed; */

}

.about {
    background-color: #000;
    padding: 80px;
    text-align: center;
    color: #f2cb30;
}

.about h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.about p {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
}

.ratio {
    /* height: 610px; */
    overflow: hidden;
}

.separator {
    width: 100%;
    height: 5px;
    background-color: #eaeaea;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 25px;
}

.separator-2 {
    width: 100%;
    height: 3px;
    background-color: #eaeaea;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 25px;
}

.card {
    border-radius: 5px !important;
    /* box-shadow: 0 3px 4px rgba(0,0,0,.23) !important; */
    transition: all ease .4s !important;
}

.main-product-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin-top: 25px;
    color: #1f265e;
}

.main-card {
    position: relative;
    border-left: 1px solid rgba(31, 38, 94,.23) !important;
    border-right: 1px solid rgba(31, 38, 94,.23) !important;
    border-top: none !important;
    border-bottom: 5px solid rgba(31, 38, 94,.23) !important;
    box-shadow: none !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.main-card:hover {
    border-left: 1px solid rgba(31, 38, 94, 1) !important;
    border-right: 1px solid rgba(31, 38, 94, 1) !important;
    border-top: none !important;
    border-bottom: 5px solid rgba(31, 38, 94, 1) !important;
}

.main-card .card-title {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    color: #0f98ce;
}

.main-card .cm-list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 15px;
}

.main-card .cm-list > span {
    width: 49%;
    background-color: #0f98ce;
    padding: 8px;
    font-size: 13px;
    /* font-weight: bold; */
    color: #FFF;
    border-radius: 25px;
}

.main-card .cm-list2 {
    background-color: #1f265e !important;
}

.main-card .cm-description {
    font-size: 12px;
    color: #1f265e;
    margin-bottom: 15px;
    display: block;
    border-left: 3px solid #1f265e;
    padding-left: 8px;
}

.main-card .cm-price {
    font-size: 22px;
    font-weight: bolder;
    margin-bottom: 15px;
    display: inline-block;
    color: #0f98ce;
}

.main-card .cm-user {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1f265e;
}

.main-card .cm-user > i {
    background-color: #1f265e;
    color: #FFF;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: calc(50%);
    margin-right: 8px;
}

.cm-suggest {
    position: absolute;
    /* top: 0; */
    background-color: rgba(15, 152, 206,.87);
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    color: #FFF;
    padding: 15px;
    right: 15px;
    top: 15px;
}

.btn-custom-blue {
    background-color: #0f98ce !important;
    border: 1px solid #0f98ce !important;
    transition: all ease .4s;
    font-size: 15px !important;
    font-weight: 500;
    padding: 10px !important;
}

.btn-custom-blue:hover {
    background: #1f265e !important;
    border: 1px solid #1f265e !important;
}

.main-space {
    padding: 45px 0 !important;
}

#form-checkout {
    display: flex;
    flex-direction: column;
  }

  .container-box {
    height: 28px;
    display: inline-block;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    margin-bottom: 15px;
  }


  .team-member {
    margin-bottom: 3rem;
    text-align: center;
  }
  .team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
  }
  .team-member h4, .team-member .h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  .img-brand {
    height: 2.75rem;
  }



.form-control {
    border-radius: .375rem !important;
}

#phone {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    margin-left: -5px;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
select:focus,
select.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  box-shadow: inset 0 -1px 0 #ddd !important;
}

.dark-input {
    background: #FFF !important;
    color: #000 !important;
    font-size: 13px !important;
    border-radius: 5px !important;
}

[type=text].dark-input:focus,
[type=password].dark-input:focus,
[type=email].dark-input:focus,
[type=tel].dark-input:focus,
[contenteditable].dark-input:focus {
    box-shadow: inset 0 -1px 0 transparent !important;
}

#webpage-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#btnCreateOrder {
    font-weight: 500;
}

#btnCreateOrder i {
    margin-right: 10px;
}

.pie-page {
    width: 100%;
    color: rgba(255,255,255,.87);
    background-color: rgba(0, 0, 0, .1);
    font-size: 13px;
}

.copyright {
    background-color: rgba(0, 0, 0, .1);
    text-align: center;
    padding: 25px;
}

.copyright p {
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,.87);
    font-size: 13px;
}

#como-vender {
    position: relative;
    background-color: #1f265e;
}

#como-vender h2 {
    color: #FFF !important;
}

#como-vender canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.btn-custom-contact {
    display: inline-block;
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 auto;
    width: 100%;
    background: #FFF !important;
    border: 1px solid rgba(255,255,255,.23) !important;
    color: #000;
    transition: all ease .4s;
}

.btn-custom-contact:hover {
    color: #FFF;
    background-color: #1f265e !important;
}

/* Profile */

.profile-container {
    padding: 25px;
}

.sidebar-profile {
    padding-right: 15px;
    border-right: 1px solid #eaeaea;
}

.sidebar-profile .profile-avatar img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5px;
    /* border-radius: calc(50%); */
}

.sidebar-profile .profile-avatar span, div, h4 {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.sidebar-profile .profile-avatar h4 {
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #1f265e;
}

.sidebar-profile .profile-avatar .address {
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
    color: #444;
}

.sidebar-profile .profile-avatar .events {
    font-size: 13px;
    color: #444;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.sidebar-profile .profile-avatar .events > span {
    color: #1f265e;
    font-weight: bold;
}

.sidebar-profile .sidebar-nav a {
    text-decoration: none;
    padding: 8px;
    color: #1f265e;
    border: 2px solid #1f265e;
    margin-bottom: 8px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 800;
    transition: all ease .4s;

    /* Flexbox */
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}


.sidebar-profile .sidebar-nav a:hover {
    background-color: #1f265e;
    color: #FFF;
    box-shadow: 0 3px 4px rgba(31, 38, 94,.23);
}

@media screen and (max-width: 768px) {

    .ticket-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 16px 12px;
        gap: 12px;
    }

    .ticket-select-wrapper {
        width: 100%;
    }

    .custom-select-wrapper select.custom-select {
        width: 100%;
        font-size: 15px;
    }

    .ticket-name, .ticket-price {
        font-size: 16px;
    }

    .badge {
        width: 100%;
        text-align: center;
    }

    .pattern {
        background-position: center top !important;
    }

    .card-title {
        font-size: 15px !important;
    }

    .header .logo {
        width: 40%;
    }

    .header .logo img {
        width: 80% !important;
    }

    .header .menu {
        width: 60%;
    }

    #prefix {
        width: 40% !important;
    }

    .logo-in-footer a > img{
        width: 50% !important;
    }

    .detailButton {
        display: block !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 500px)
{

    .pattern h3 {
        font-size: 22px !important;
        font-weight: 300 !important;
    }

    .header .logo {
        width: 60%;
    }

    .header .menu {
        width: 40%;
    }

    .header-menu-sidebar {
        height: 80px;
        box-shadow: 0 3px 4px rgba(0,0,0,.23);
    }

    .header-menu-sidebar h3 {
        font-weight: 500;
    }

    .logo-footer img {
        width: 100% !important;
    }

    .btn-close-menu {
        display: inline-block;
    }

    #sidebar-left {
        width: 100% !important;
        max-width: 100% !important;
    }

    .sidebar-left-menu {
        width: 100% !important;
    }

    #contact-form {
        padding: 10px !important;
    }

    .level .counter-container {
        text-align: center;
        width: 100%;
        margin-bottom: 8px;
    }

    .pattern {
        height: 300px;
        background-size: cover;
        background-position: 74% !important;
    }

    .main-card .card-title {
        font-size: 22px !important;
    }

    .loginButton {
        display: none !important;
    }

    .fixed-mobile {
        margin-top: -70px !important;
    }

    .pattern form {
        top: 165px !important;
    }

}

@media screen and (max-width: 425px)
{
    .event-sidebar {
        margin-top: -40px;
    }

    .event-sidebar .event-thumbnail > img {
        box-shadow: 0 3px 4px rgba(0,0,0,.1);
    }
}

@media screen and (max-width: 320px) {
    .emptyboximg {
        width: 100% !important;
        height: auto !important;
    }
}

.level {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-around;
    padding: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    text-transform: uppercase;
    background: #FFF;
    color: #1f265e;
}

.level .counter-container {
    text-align: center;
}

.level .counter-container .counter {
    color: #1f265e;
    font-size: 28px;
    font-weight: bold;
}

span.title-counter {
    color: #1f265e;
    font-size: 22px;
    font-weight: bold;
}

/* Custom new */

.card-container-main {
    width: 100%;
    height: 400px;
    background-size: cover !important;
    object-fit: cover;
    border-radius: 5px;
    position: relative;
    background-color: rgba(0,0,0,.57);
    transition: all ease .4s;
}

.card-container-main img {
    width: 100%;
    object-fit: cover;
    background-size: cover;
    display: block;
    position: absolute;
    top:0;
    left: 0;
    z-index: -1;
    height: 400px;
    border-radius: 5px;
}

.card-container-main .content-card-main {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
    position: absolute;
    width: 100%;
    /* top: 0; */
    left: 0;
    height: 100%;
    bottom: 0;

    transition: all ease .4s;
    border-radius: 5px;
}

.card-container-main:hover {
    background-color: transparent !important;
}

.card-container-main .content-card-main .card-content-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
}

.card-container-main .content-card-main .card-content-info > h3 {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #FFF;
    padding: 0;
    margin: 0;
}

.card-container-main .content-card-main .card-content-info .price {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #f2cb30;
    font-size: 22px;
}

.card-container-main .content-card-main .card-content-info .external-info {
    color: #FFF;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    padding-bottom: 15px;
    /* border-bottom: 1px solid rgba(255,255,255,.1); */
}

.card-container-main .content-card-main .card-content-info .actions {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.card-container-main .content-card-main .card-content-info .action-buy {
    display: inline-block;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 25px;
    background-color: #0097e6;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 13px;
    border: 2px solid #0097e6;
    transition: all ease .4s;
}

.card-container-main .content-card-main .card-content-info .action-buy:hover {
    background-color: transparent;
    border: 2px solid #0097e6;
    padding: 8px 35px;
}

.card-container-main .content-card-main .card-content-info .action-no-stock {
    display: inline-block;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 25px;
    background-color: #ff4757;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 13px;
    border: 2px solid #ff4757;
    transition: all ease .4s;
}

.card-container-main .content-card-main .card-content-info .action-no-stock:hover {
    background-color: #ff4757;
    border: 2px solid #ff4757;
    padding: 8px 35px;
}

.card-container-main .content-card-main .card-content-info .action-end {
    display: inline-block;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 25px;
    background-color: #ff4757;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 13px;
    border: 2px solid #ff4757;
    transition: all ease .4s;
}

.card-container-main .time-start {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0,0,0,.57);
    padding: 5px 25px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    font-size: 13px;
    color: #FFF;
    box-shadow: 0 3px 4px rgba(0,0,0,0.23);
    font-weight: bolder;
    border-radius: 25px;
}

/* Dashboard Cliente */

.section-title {
    display: block;
    width: 100%;
    padding: 8px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    color: #FFF;
    text-align: center;
    margin-bottom: 25px;
}

.timer_ticketnet {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.timer_ticketnet span {
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    font-size: 17px;
    border: 1px solid #eaeaea;
    /* width: 50px; */
    /* height: 50px; */
    padding: 8px 25px;
    border-radius: 50px;
    color: #222;
}

.loginContainer {
    background: #FFF;
    padding: 25px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.1);
    border-radius: 25px;
}

.loginContainer h1 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #0c85d0;
}

.loginContainer .icon-lock {
    width: 100%;
    text-align: center;
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.5rem;
    color: #0c85d0;
    padding: 25px;
}

.loginContainer .icon-lock i {
    text-align: center;
    margin: 0 auto;
}

.loginContainer #phone, #otp {
    margin: 0 !important;
    border-radius: 3px !important;
    margin-bottom: 25px !important;
    padding: 10px;
    border: 2px solid #eaeaea;
}

.btnGetPass {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
    font-weight: bold;
    background: #eaeaea;
    color: #222;
    border-radius: 5px;
    transition: all ease .4s;
    box-shadow: 0 1px 2px rgba(0,0,0,.23);
}

.btnGetPass:hover {
    background: #0c85d0;
    color: #FFF;
}


.searchForm {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    width: 10%;
}

.searchForm .form-control {
    border-radius: 150px !important;
    font-size: 18px !important;
    text-align: center;
    border: 1px solid rgba(255,255,255,.57);
    padding: 8px;
}

.btnHelp {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    width: 50px;
    height: 50px;
    font-weight: bold;
    background: #25d366;
    color: #FFF;
    border-radius: calc(50%);
    transition: all ease .4s;
    box-shadow: 0 1px 2px rgba(0,0,0,.23);
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 3;
    transition: all ease .4s;
}

.btnHelp:hover {
    background: #075e54;
    color: #FFF;
    transform: scale(1.1);
}

.btnCart {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    width: 50px;
    height: 50px;
    font-weight: bold;
    background: #FFA500;
    color: #FFF;
    border-radius: calc(50%);
    transition: all ease .4s;
    box-shadow: 0 1px 2px rgba(0,0,0,.23);
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 3;
    transition: all ease .4s;
}

.btnCart:hover {
    background: #FFD700;
    color: #FFF;
    transform: scale(1.1);
}

/* New design boxes */

.ticket-box {
    background: #2e0162;
    padding-bottom: 10px;
    margin-top: -100px;
    position: relative;
    z-index: 1;
    margin-right: 15px;
    margin-left: 15px;
    border-radius: 25px;    
}

.ticket-detail {
    padding: 25px;
}

.ticket-detail .ticket-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 22px;
    font-weight: bolder;
    color: #FFF;
    margin-bottom: 15px;
}

.ticket-detail p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,.87);
    margin-bottom: 15px;

}

.thumbnail-ticket {
    position: relative;
    margin-top: 25px;
}

.thumbnail-ticket img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all ease 0.4s;
    border-radius: 25px;
}

/* Pseudo-elemento para el degradado */
.thumbnail-ticket::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* El degradado cubre el 50% inferior */
    background: linear-gradient(to top, #1b003a, transparent);
    border-radius: 25px; /* Igual al de la imagen */
    pointer-events: none; /* Permite interactuar con la imagen */
}

.btnBuyTicket {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: bold;
    background: #FFF;
    color: #222;
    transition: all ease .4s;
    /* margin-bottom: 15px; */
    text-decoration: none;
    text-align: center;
    background-color: #0097e6;
    color: #FFF;
    border-radius: 150px;
}

.btnBuyTicket:hover {
    background-color: #1f265e;
    color: #FFF;
}

.btnSoldOut {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: bold;
    background: #FFF;
    color: #222;
    transition: all ease .4s;
    /* margin-bottom: 15px; */
    text-decoration: none;
    text-align: center;
    background-color: #e74c3c;
    color: #FFF;

    border-radius: 150px;
}

.btnSoldOut:hover {
    background-color: #c0392b;
    color: #FFF;
}

.btnEnd {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: bold;
    background: #FFF;
    color: #222;
    transition: all ease .4s;
    /* margin-bottom: 15px; */
    text-decoration: none;
    text-align: center;
    background-color: #55efc4;
    color: #000;

    border-radius: 150px;
}

.btnEnd:hover {
    background-color: #00b894;
    color: #FFF;
}

.btnSoon {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: bold;
    background: #FFF;
    color: #222;
    transition: all ease .4s;
    /* margin-bottom: 15px; */
    text-decoration: none;
    text-align: center;
    background-color: #6c5ce7;
    color: #FFF;

    border-radius: 150px;
}

.btnSoon:hover {
    background-color: #a29bfe;
    color: #FFF;
}


.swiper {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 25px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
  }


/* Events show */

.event-sidebar {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
}

.event-thumbnail img {
    border-radius: 10px;
    width: 100% !important;
}

.bannerEvent img {
    border-radius: 25px;
}

.ticket-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: all 0.2s ease;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35); */
    cursor: pointer;
}

.ticket-card:hover {
    transform: scale(1.01);
}

.ticket-name {
    font-size: 15px;
    display: flex;
    align-items: center;
}

.ticket-price {
    font-size: 16px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.ticket-select-wrapper {
    min-width: 140px;
}

/* --- Custom styled select --- */
.custom-select-wrapper select.custom-select {
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 9L13 1' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
    transition: box-shadow 0.2s ease;
}

.custom-select-wrapper select.custom-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #50bfff;
}

.event-container {
    /* From https://css.glass */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    padding: 25px;
    border-radius: 10px;
}

.event-basic-info {
    color: #FFF;
}

.event-basic-info .event-title {
    font-weight: bold;
    font-size: 1.3rem;
    color: #FFF;
    padding: 0;
    margin: 0;
    padding-bottom: 8px;
}

.event-basic-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 25px;
}

.event-basic-info ul li {
    margin-bottom: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.event-basic-info ul li > i {
    margin-right: 15px;
    font-size: 25px;
}

.event-sidebar .productTags {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 25px;
}

.event-content-title h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.event-content-title h3 > i {
    margin-right: 15px;
    font-size: 25px;
}

.infoProduct {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.qr-code-container {
    max-width: 100%;
    width: auto;
    border-radius: 25px;
}

.qr-code-container svg {
    width: 100%; 
}

.offerValue {
    font-size: 10px; color: #888; position: relative; top: -5px; left: 5px;
}

.mobileNavbar {
    display: none !important;
}

.products-avaible {
    margin-top: 25px;
}

@media screen and (max-width: 357px) {
    .formTickets th, td {
        font-size: 12px !important;
    }

    .formTickets th span {
        display: block !important;
        width: 10px !important;
        height: 10px !important;
        margin: 0 !important;
        width: 50% !important;
        border-radius: 100px !important;
    }

    #submitOrder {
        display: block !important;
        width: 100% !important;
        border-radius: 25px !important;
    }

    .formTickets .offerValue {
        display: none !important;
    }

    #detailModal .list-group-item {
        font-size: 10px;
    }
}

@media screen and (max-width: 650px) {
    .mobileNavbar {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        background-color: rgba(31, 38, 94, 0.6);
        backdrop-filter: blur(10px);
        text-align: center;
        padding: 5px;
        border-radius: 250px;
        z-index: 10px;
    }

    .mobileNavbar a {
        text-decoration: none;
        display: inline-block;
        padding: 8px 35px;
        transition: all ease .4s;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #FFF;
        border-radius: 25px;
    }

    .mobileNavbar a:hover {
        color: rgba(255,255,255,.57);
        
    }

    .mobileNavbar a > span {
        display: block;
        font-size: 9px;
    }
}

@media screen and (max-width: 500px) {

    .mobileNavbar {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }

    .mobileNavbar a > span {
        display: block;
        font-size: 9px;
    }
}

@media screen and (max-width: 360px) {
    #supportButton {
        display: none !important;
    }
}

@media screen and (max-width: 250px) {
    .mobileNavbar {
        display: none;
    }
}

.about-card {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 25px;
    margin-bottom: 50px;
    background-color: #FFF;
    border-radius: 25px;
    transition: all ease .4s;
}

.about-card:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 4px rgba(0,0,0,.23);
}

.about-card .about-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-card .about-image > img {
    width: 200px;
    border-radius: calc(50%);
}


.about-card .about-data {
    margin: 25px 0;
}

.about-card .about-data h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #1f265e;
}