/* /Components/Candybar/CandyBar.razor.rz.scp.css */
.seccion-peliculas[b-ogncq3tp3d] {
    --columnas-peliculas: 6;
    --gap-peliculas: 8px;
}

    .seccion-peliculas .peliculas-container[b-ogncq3tp3d] {
        position: relative;
    }

    .seccion-peliculas .peliculas-container .items-wrapper[b-ogncq3tp3d] {
        z-index: 2;
        position: relative;
        padding-left: 10px;
        padding-right: 10px;
    }

    .seccion-peliculas .peliculas-container .items-navigation[b-ogncq3tp3d] {
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        padding-left: 6px;
        padding-right: 6px;
        position: absolute;
        justify-content: space-between;
        align-items: center;
        margin-right: calc(var(--mdb-gutter-x)*-0.5);
        margin-left: calc(var(--mdb-gutter-x)*-0.5);
        color: var(--color-titulo-principal);
    }

    .seccion-peliculas .peliculas-container .items-navigation .navigation-button button[b-ogncq3tp3d] {
        border: none;
        color: inherit;
        background: none;
    }

    .seccion-peliculas .peliculas-container .items-navigation .navigation-button i[b-ogncq3tp3d] {
        transform: scaleY(2.5);
    }

    .seccion-peliculas .peliculas-container .items-wrapper .items-container[b-ogncq3tp3d] {
        display: grid;
        column-gap: var(--gap-peliculas);
    }

    .seccion-peliculas .peliculas-container .items-wrapper .items-container.monofila[b-ogncq3tp3d] {
        overflow-x: auto;
        grid-auto-flow: column;
        /* formula para ancho items:

            item-width = (w - g(c-1))/c 
            donde:
                w = ancho contenedor
                g = gap
                c = columnas
        */
        grid-template-columns: repeat(var(--columnas-peliculas), calc((100% - var(--gap-peliculas)*(var(--columnas-peliculas) - 1))/var(--columnas-peliculas)));
        grid-auto-columns: calc((100% - var(--gap-peliculas)*(var(--columnas-peliculas) - 1))/var(--columnas-peliculas));
    }

    .seccion-peliculas .peliculas-container .items-wrapper .items-container.multifila[b-ogncq3tp3d] {
        row-gap: var(--gap-peliculas);
        grid-template-columns: repeat(var(--columnas-peliculas), 1fr);
    }

    .seccion-peliculas .peliculas-container .items-wrapper .items-container .item-pelicula[b-ogncq3tp3d] {
        margin: 0;
        width: 100%;
        height: auto;
        cursor: pointer;
        aspect-ratio: 2/3;
    }

    .seccion-peliculas .peliculas-container .items-wrapper .items-container .item-pelicula img[b-ogncq3tp3d] {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .seccion-peliculas .peliculas-container .items-wrapper .items-container .item-pelicula figcaption[b-ogncq3tp3d] {
        display: none;
    }

@media only screen and (max-width: 1024px) {
    .seccion-peliculas[b-ogncq3tp3d] {
        --columnas-peliculas: 4;
    }
}

@media only screen and (min-width: 1024px) {
    .seccion-peliculas[b-ogncq3tp3d] {
        --columnas-peliculas: 6;
    }
}

@media only screen and (max-width: 420px) {
    .seccion-peliculas[b-ogncq3tp3d] {
        --columnas-peliculas: 3;
    }
}
/* /Components/Candybar/GrupoProducto.razor.rz.scp.css */
.titulo-seccion[b-01ii9yhd7s]{
    text-align:center;
}
.seccion-grupos-productos[b-01ii9yhd7s] {
    --columnas-peliculas: 6;
    --gap-peliculas: 8px;
}

    .seccion-grupos-productos .grupo-producto-container[b-01ii9yhd7s] {
        position: relative;
    }

        .seccion-grupos-productos .grupo-producto-container .items-wrapper[b-01ii9yhd7s] {
            z-index: 2;
            position: relative;
            padding-left: 10px;
            padding-right: 10px;
        }

        .seccion-grupos-productos .grupo-producto-container .items-navigation[b-01ii9yhd7s] {
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            padding-left: 6px;
            padding-right: 6px;
            position: absolute;
            justify-content: space-between;
            align-items: center;
            margin-right: calc(var(--mdb-gutter-x)*-0.5);
            margin-left: calc(var(--mdb-gutter-x)*-0.5);
            color: var(--color-titulo-principal);
        }

            .seccion-grupos-productos .grupo-producto-container .items-navigation .navigation-button button[b-01ii9yhd7s] {
                border: none;
                color: inherit;
                background: none;
            }

            .seccion-grupos-productos .grupo-producto-container .items-navigation .navigation-button i[b-01ii9yhd7s] {
                transform: scaleY(2.5);
            }

        .seccion-grupos-productos .grupo-producto-container .items-wrapper .items-container[b-01ii9yhd7s] {
            display: grid;
            column-gap: var(--gap-peliculas);
        }

            .seccion-grupos-productos .grupo-producto-container .items-wrapper .items-container.multifila[b-01ii9yhd7s] {
                row-gap: var(--gap-peliculas);
                grid-template-columns: repeat(var(--columnas-peliculas), 1fr);
            }

            .seccion-grupos-productos .grupo-producto-container .items-wrapper .items-container .item-pelicula[b-01ii9yhd7s] {
                margin: 0;
                width: 100%;
                height: auto;
                cursor: pointer;
                aspect-ratio: 2/3;
            }

                .seccion-grupos-productos .grupo-producto-container .items-wrapper .items-container .item-pelicula img[b-01ii9yhd7s] {
                    width: 100%;
                    height: 100%;
                    object-fit: fill;
                }

                .seccion-grupos-productos .grupo-producto-container .items-wrapper .items-container .item-pelicula figcaption[b-01ii9yhd7s] {
                    display: none;
                }

.card[b-01ii9yhd7s]{
    background-color:transparent;
    box-shadow:none;
}
@media only screen and (max-width: 1024px) {
    .seccion-grupos-productos[b-01ii9yhd7s] {
        --columnas-peliculas: 2;
    }
}

@media only screen and (min-width: 1024px) {
    .seccion-grupos-productos[b-01ii9yhd7s] {
        --columnas-peliculas: 4;
    }
}

@media only screen and (max-width: 420px) {
    .seccion-grupos-productos[b-01ii9yhd7s] {
        --columnas-peliculas: 2;
    }
}
/* /Components/Cartelera/Banner.razor.rz.scp.css */
.container[b-vcurbp2mbb] {
    max-width: 1320px;
}

.color-icono[b-vcurbp2mbb] {
    color: var(--color-primario, white);
    width: 4rem !important;
    height: 4rem !important;
}

    .color-icono[b-vcurbp2mbb]::after {
        font-size: 60px !important;
    }

    .redes-sociales[b-vcurbp2mbb] {
        position: absolute;
        right: 8px;
        bottom: 0;
        z-index: 1;
    }

.icono-red-social[b-vcurbp2mbb]{
    font-size:40px;
    color: var(--color-secundario, gray);
}

    .icono-red-social:hover[b-vcurbp2mbb] {
        color: var(--color-primario, gray);
    }

@media (min-width: 412px) {
    .w-100[b-vcurbp2mbb] {
        width: 100% !important;
        height: auto;
        max-height:400px;
    }
}

@media only screen and (min-width: 1200px) {
    .padding-top-mas[b-vcurbp2mbb] {
        margin-top: 80px;
    }

    .margin-bootom-menos[b-vcurbp2mbb] {
        margin-bottom: -80px;
    }
}
/* /Components/Cartelera/ImpresionEntradas.razor.rz.scp.css */
.seccion-container[b-2e5n4yqt0u] {
    height: 135px;
}

.titulo[b-2e5n4yqt0u] {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 3px;
    color: var(--color-titulo-principal, --color2);
}

.error[b-2e5n4yqt0u] {
    font-size: 23px;
    color:red;
    margin:0;
    padding:0;
}

.contenedor-impresion-entradas[b-2e5n4yqt0u] {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0 0;
}

.borde-impresion-entradas[b-2e5n4yqt0u] {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%23FFFFFF' stroke-width='4' stroke-dasharray='20' stroke-dashoffset='8' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 20px;
    padding: 10px 30px 20px 30px;
}

.formulario-impresion-entradas[b-2e5n4yqt0u] {
    display: flex;
    justify-content: center;
}

.input-impresion-entradas[b-2e5n4yqt0u] {
    width:450px;
    text-align: center;
}

.btn-imprimir[b-2e5n4yqt0u] {
    margin-left: 1rem;
    font-size: 20px;
    height:50px;
    border-radius: 5rem;
    display:none;
}

input[type=number][b-2e5n4yqt0u]::-webkit-outer-spin-button,
input[type=number][b-2e5n4yqt0u]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number][b-2e5n4yqt0u] {
    -moz-appearance: textfield;
}

[b-2e5n4yqt0u] .e-input-group,
[b-2e5n4yqt0u] .e-input-group.e-control-wrapper {
    background-color: white !important;
    color: black;
}

@keyframes parpadeo-b-2e5n4yqt0u {
    0%, 100% {
        color: white;
    }

    50% {
        color: gray;
    }
}

.parpadeo[b-2e5n4yqt0u] {
    animation: parpadeo-b-2e5n4yqt0u 1s infinite;
}
/* /Components/Cartelera/Popup.razor.rz.scp.css */

.modal-content[b-m1hl4hj9sh] {
    background: var(--fondo-layout-desktop);
    background-size: contain;
    border: 8px solid var(--color-secundario, gray);
}

.btn-cerrar[b-m1hl4hj9sh] {
    height: 26px;
    width: 26px;
    background: transparent;
    border: none;
    color: var(--color-primario);
}

.msg-img[b-m1hl4hj9sh] {
    min-width: 100%;
}

.msg-txt[b-m1hl4hj9sh] {
    margin: 1rem 0;
    padding: 0;
}

.btn-container[b-m1hl4hj9sh] {
    text-align: center;
    padding-bottom: 1rem;
}

    .btn-container .btn[b-m1hl4hj9sh] {
        margin-left: 5px;
    }

.modal-title[b-m1hl4hj9sh] {
    color: var(--color-titulo-principal, black);
}

@media (max-width: 378px) {
    .btn-container[b-m1hl4hj9sh] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .btn-container .btn[b-m1hl4hj9sh] {
            margin-left: 0; 
            margin-bottom: 10px; 
            width: 100%; 
        }
}
/* /Components/Cartelera/SeccionPeliculas.razor.rz.scp.css */
/* Chrome safari scrollbar */
[b-to6poh9cj1]::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.tag-estreno[b-to6poh9cj1],.tag-preventa[b-to6poh9cj1] {
    position: absolute;
}

#ddl-formatos[b-to6poh9cj1]{
    display:none;
}

[b-to6poh9cj1] .ddlFomartos.e-input-group, .background.e-input-group.e-control-wrapper[b-to6poh9cj1] {
    border-radius: 10px;
}

h1[b-to6poh9cj1] {
    font-size: calc(1.275rem + .3vw) !important;
}

.btn-formato[b-to6poh9cj1] {
    color: whitesmoke;
    background: var(--color-secundario, --color1);
    width: 100%;
    border: none;
    min-height: 45px;
    font-size: 13px;
}

    .btn-formato-selected[b-to6poh9cj1], .btn-formato:hover[b-to6poh9cj1] {
        background: var(--color-primario, --color1);
        filter: invert(15%);
    }

.item-formato-container[b-to6poh9cj1] {
    margin-bottom: 10px;
}

.seccion-peliculas[b-to6poh9cj1] {
    --columnas-peliculas: 3;
    --gap-peliculas: 8px;
}

    .seccion-peliculas .peliculas-container[b-to6poh9cj1] {
        position: relative;
    }

        .seccion-peliculas .peliculas-container .items-wrapper[b-to6poh9cj1] {
            z-index: 2;
            position: relative;
            padding-left: 10px;
            padding-right: 10px;
        }

        .seccion-peliculas .peliculas-container .items-navigation[b-to6poh9cj1] {
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            padding-left: 6px;
            padding-right: 6px;
            position: absolute;
            justify-content: space-between;
            align-items: center;
            margin-right: calc(var(--mdb-gutter-x)*-0.5);
            margin-left: calc(var(--mdb-gutter-x)*-0.5);
            color: white;
            /*color: var(--color-titulo-principal);*/
        }

            .seccion-peliculas .peliculas-container .items-navigation .navigation-button button[b-to6poh9cj1] {
                border: none;
                color: inherit;
                background: none;
            }

            .seccion-peliculas .peliculas-container .items-navigation .navigation-button i[b-to6poh9cj1] {
                transform: scaleY(2.5);
            }

        .seccion-peliculas .peliculas-container .items-wrapper .items-container[b-to6poh9cj1] {
            display: grid;
            column-gap: var(--gap-peliculas);
        }

            .seccion-peliculas .peliculas-container .items-wrapper .items-container.monofila[b-to6poh9cj1] {
                overflow-x: auto;
                grid-auto-flow: column;
                /* formula para ancho items:

                    item-width = (w - g(c-1))/c 
                    donde:
                        w = ancho contenedor
                        g = gap
                        c = columnas
                */
                grid-template-columns: repeat(var(--columnas-peliculas), calc((100% - var(--gap-peliculas)*(var(--columnas-peliculas) - 1))/var(--columnas-peliculas)));
                grid-auto-columns: calc((100% - var(--gap-peliculas)*(var(--columnas-peliculas) - 1))/var(--columnas-peliculas));
            }

            .seccion-peliculas .peliculas-container .items-wrapper .items-container.multifila[b-to6poh9cj1] {
                row-gap: var(--gap-peliculas);
                grid-template-columns: repeat(var(--columnas-peliculas), 1fr);
            }

            .seccion-peliculas .peliculas-container .items-wrapper .items-container .item-pelicula[b-to6poh9cj1] {
                margin: 0;
                width: 100%;
                height: auto;
                cursor: pointer;
                aspect-ratio: 2/3;
                position:relative;
            }

                .seccion-peliculas .peliculas-container .items-wrapper .items-container .item-pelicula img[b-to6poh9cj1] {
                    width: 100%;
                    height: 100%;
                    object-fit: fill;
                }

                .seccion-peliculas .peliculas-container .items-wrapper .items-container .item-pelicula figcaption[b-to6poh9cj1] {
                    display: none;
                }

@media only screen and (max-width: 1024px) {
    .seccion-peliculas[b-to6poh9cj1] {
        --columnas-peliculas: var(--columnas-peliculas-tablet);
    }
}

@media only screen and (min-width: 1024px) {
    .seccion-peliculas[b-to6poh9cj1] {
        --columnas-peliculas: var(--columnas-peliculas-desktop);
    }
}

@media only screen and (max-width: 500px) {
    .seccion-peliculas[b-to6poh9cj1] {
        --columnas-peliculas: var(--columnas-peliculas-movil);
    }

    #btns-formatos[b-to6poh9cj1]{
        display:none;
    }

    #ddl-formatos[b-to6poh9cj1] {
        display: flex;
    }
}
/* /Components/Cartelera/TabCartelera.razor.rz.scp.css */
[b-3cqbx58m5x] .titulo-secundario {
    font-size: 1rem;
    font-family: var(--clave-fuente) !important;
}

.seccion-container[b-3cqbx58m5x]{
    padding-top:10px;
}

hr[b-3cqbx58m5x] {
    border:solid 1px white;
    margin: 20px 100px;
}

[b-3cqbx58m5x] .e-input::placeholder {
    color: #757471 !important;
}
/* /Components/Horarios/FechasComponent.razor.rz.scp.css */
/* Chrome safari scrollbar */
[b-s2o5fa2jr0]::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.fechas-pelicula-container[b-s2o5fa2jr0] {
    overflow: scroll;
    background: none;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.divBtnScroll[b-s2o5fa2jr0] {
    align-self: center;
    cursor: pointer;
    text-align: center;
}

.btnScroll[b-s2o5fa2jr0] {
    background: none;
    border: none;
    width: 20px;
}

[b-s2o5fa2jr0] .e-btn {
    margin-right: 10px !important;
    background: none;
    filter: invert(15%);
    border: none;
}

[b-s2o5fa2jr0] .group-option > .e-btn {
    border-bottom: 2px solid var(--color-secundario, --color1) !important;
}

[b-s2o5fa2jr0] .e-btn-group .e-btn:active,
[b-s2o5fa2jr0] .e-btn-group .e-btn:focus,
[b-s2o5fa2jr0] .e-btn:hover,
[b-s2o5fa2jr0] .e-btn-group input:checked + label.e-btn,
[b-s2o5fa2jr0] .e-btn-group input:active + label.e-btn {
    background: none;
    color: var(--color-primario, --color1);
    box-shadow: none;
    border-bottom: none !important;
}

/*contenedor fechas de peliculas*/
[b-s2o5fa2jr0] .e-btn {
    color: var(--color-secundario, --color1);
}

[b-s2o5fa2jr0] label.e-btn {
    border-radius: 0 !important;
    margin: 0 !important;
    min-width: 96px;
}

[b-s2o5fa2jr0] .e-btn.e-flat.e-primary {
    color: white;
    border-radius: var(--border-radius, 5px);
    background: var(--color-secundario, --color1);
    filter: invert(15%);
}

    [b-s2o5fa2jr0] .e-btn.e-flat.e-primary:active,
    [b-s2o5fa2jr0] .e-btn.e-flat.e-primary.e-active,
    [b-s2o5fa2jr0] .e-css.e-btn.e-flat.e-primary:active,
    [b-s2o5fa2jr0] .e-css.e-btn.e-flat.e-primary.e-active,
    [b-s2o5fa2jr0] .e-btn.e-flat.e-primary:focus,
    [b-s2o5fa2jr0] .e-css.e-btn.e-flat.e-primary:focus,
    [b-s2o5fa2jr0] .e-btn.e-flat.e-primary:hover,
    [b-s2o5fa2jr0] .e-css.e-btn.e-flat.e-primary:hover {
        background: var(--color-primario, --color1);
        border: none;
        box-shadow: none;
    }

.seleccionada[b-s2o5fa2jr0] {
    transform: translateX(-50%);
    border-radius: 100%;
    position: relative;
    background: var(--color-primario, --color1);
    height: 8px;
    content: '';
    width: 8px;
    left: 50%;
}
/* /Components/Horarios/FuncionesComponent.razor.rz.scp.css */
.tag-estreno[b-bp2qkway2q], .tag-preventa[b-bp2qkway2q] {
    position: absolute;

}

.imagen-pelicula[b-bp2qkway2q] {
    width: 100%;
    max-width: 350px;
}

.items-container .item-pelicula[b-bp2qkway2q] {
    margin: 0;
    width: 100%;
    height: auto;
    position: relative;
}

.label-formato[b-bp2qkway2q] {
    background: var(--color-primario, --color1);
}

.informacion-pelicula[b-bp2qkway2q] {
    color: var(--color-parrafo);
}

.horarios-peliculas-container[b-bp2qkway2q] {
    text-align: center;
    padding: 30px;
    padding-top: 20px;
}

[b-bp2qkway2q] .e-btn {
    margin-right: 10px !important;
    background: none;
    filter: invert(15%);
    border: none;
}

[b-bp2qkway2q] .group-option > .e-btn {
    border-bottom: 2px solid var(--color-secundario, --color1) !important;
}

[b-bp2qkway2q] .e-btn-group .e-btn:active,
[b-bp2qkway2q] .e-btn-group .e-btn:focus,
[b-bp2qkway2q] .e-btn:hover,
[b-bp2qkway2q] .e-btn-group input:checked + label.e-btn,
[b-bp2qkway2q] .e-btn-group input:active + label.e-btn {
    background: none;
    color: var(--color-primario, --color1);
    box-shadow: none;
    border-bottom: none !important;
}

/*contenedor fechas de peliculas*/
[b-bp2qkway2q] .e-btn {
    color: var(--color-secundario, --color1);
}

[b-bp2qkway2q] label.e-btn {
    border-radius: 0 !important;
    margin: 0 !important;
    min-width: 96px;
}

[b-bp2qkway2q] .e-btn.e-flat.e-primary {
    color: white;
    border-radius: var(--border-radius, 5px);
    background: var(--color-secundario, --color1);
    filter: invert(15%);
}

    [b-bp2qkway2q] .e-btn.e-flat.e-primary:active,
    [b-bp2qkway2q] .e-btn.e-flat.e-primary.e-active,
    [b-bp2qkway2q] .e-css.e-btn.e-flat.e-primary:active,
    [b-bp2qkway2q] .e-css.e-btn.e-flat.e-primary.e-active,
    [b-bp2qkway2q] .e-btn.e-flat.e-primary:focus,
    [b-bp2qkway2q] .e-css.e-btn.e-flat.e-primary:focus,
    [b-bp2qkway2q] .e-btn.e-flat.e-primary:hover,
    [b-bp2qkway2q] .e-css.e-btn.e-flat.e-primary:hover {
        background: var(--color-primario, --color1);
        border: none;
        box-shadow: none;
    }

@media only screen and (min-width: 350px) {
    [b-bp2qkway2q] .e-btn.e-flat.e-primary {
        width: 100px;
        min-width: max-content;
    }
}

@media only screen and (min-width: 500px) {
    [b-bp2qkway2q] .e-btn.e-flat.e-primary {
        width: 110px;
        min-width: max-content;
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) {

    [b-bp2qkway2q] .e-btn.e-flat.e-primary {
        width: 130px;
        min-width: max-content;
        font-size: 15px;
    }
}
/* /Components/Layout/FooterNav.razor.rz.scp.css */
.footer-area[b-75ztmn4me1] {
    height: 50px;
    padding-top:4px;
}
    .footer-area .footer-movil .container ul .active[b-75ztmn4me1] {
        background-color: #696969;
        border-radius: 15px;
    }

.footer-area ul li a i[b-75ztmn4me1] {
    margin-bottom: 0;
}

.footer-movil[b-75ztmn4me1]{
    height:100%;
}

.background[b-75ztmn4me1] {
    background-color: black;
}

.titulo-footer[b-75ztmn4me1], .titulo-footer:hover[b-75ztmn4me1] {
    font-size:18px;
    color: var(--color-titulo-principal, black);
}

.titulo-footer-apps[b-75ztmn4me1] {
    font-size: 21px;
    color: var(--color-titulo-principal, black);
}

.seccion-footer[b-75ztmn4me1]{
    text-align:center;
    min-width:154px;
}

.cuerpo-seccion-footer[b-75ztmn4me1] {
    padding-top: 10px;
}

.seccion-apps[b-75ztmn4me1] {
    background-color: var(--color-primario, --color1);
    border-top-left-radius: 121px;
    border-bottom-left-radius: 121px;
    padding-top: 2vw;
    padding-left: 5vw;
}

.nav-tabs .nav-item.show .nav-link[b-75ztmn4me1], .nav-tabs .nav-link.active[b-75ztmn4me1] {
    color: red;
    background-color: black;
    border-color: none;
    border: 1px solid white;
    border-bottom: none;
}

.nav-tabs .nav-link[b-75ztmn4me1] {
    border-bottom-color: white;
    color: white;
}

.row .col .select[b-75ztmn4me1] {
    padding: 5px;
    color: white;
    border-bottom: white 4px dotted;
}
.puntero[b-75ztmn4me1] {
    cursor: pointer;
    color: var(--color-primario, --color1);
}
    .puntero:hover[b-75ztmn4me1] {
        color: var(--color-titulo-principal, black);
    }
    .nav-tabs .nav-link:hover[b-75ztmn4me1] {
        background-color: transparent;
        border-color: transparent;
        border-bottom-color: transparent;
        border-bottom-color: white;
    }

.padding[b-75ztmn4me1]{
    padding:5px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom:35px
}

.font-size-12[b-75ztmn4me1]{
    font-size:12px;
}
.footer-desktop[b-75ztmn4me1]{
    margin-bottom:0px;
}

.copyright-info[b-75ztmn4me1]{
    /*margin-top:60px;*/
}
/* /Components/Layout/Header.razor.rz.scp.css */
header[b-6qsgc81ckb]{
}

.header-desktop[b-6qsgc81ckb]{
    position:relative;
    height:117px;
}

.header-area[b-6qsgc81ckb],
.header-area .container > div[b-6qsgc81ckb] {
    position: relative;
    height: 100%;
}

.header-area .header-center-section[b-6qsgc81ckb] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-area .header-center-section .header-title[b-6qsgc81ckb] {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.header-area .header-center-section .header-title h1[b-6qsgc81ckb] {
    font-size: inherit;
    margin: 0;
}

.navbar[b-6qsgc81ckb]{
    background-color: black;
}

.btn-header[b-6qsgc81ckb] {
    font-size: 16px;
    text-transform: none;
}

.gray[b-6qsgc81ckb] {
    background-color: gray;
}
.botonHedear[b-6qsgc81ckb] {
    margin: 10px;
    color: white;
}
.red[b-6qsgc81ckb] {
    background-color: red;
    margin-right: 10px;
    color: white;
}

.img-logo[b-6qsgc81ckb]{
    height:100px;
}

.nav-link[b-6qsgc81ckb] {
    color: white;
    cursor:pointer;
}

.ul-header > li[b-6qsgc81ckb] {
    font-size: 23px;
}

.btn-logout[b-6qsgc81ckb] {
    position: relative;
    display: inline-block;
    color: #f1f1f1;
    cursor: pointer;
    margin-left: 10px;
}

    .btn-logout:hover[b-6qsgc81ckb] {
        background-color: var(--color-secundario);
    }

/*menu Usuario*/
.btn-usuario[b-6qsgc81ckb] {
    height: 35px;
    display: flex;
    background: red;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    font-size: 20px;
    border-radius: 25px;
    border: 2px solid #f1f1f1;
    padding:3px;
}
.dropbtn[b-6qsgc81ckb] {
    
    color: #f1f1f1;
    font-size: 25px;
    border: none;
}

.dropdown[b-6qsgc81ckb] {
    position: relative;
    width: 200px;
    display: inline-block;
    cursor: pointer;

}

.nombre-usuario[b-6qsgc81ckb] {
    color: #f1f1f1;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    line-height: normal;
    padding: 0 4px;
    white-space: nowrap;
}

.dropdown-content[b-6qsgc81ckb] {
    display: none;
    position: absolute;
    /*background-color: #0a47a1;*/
    background: var(--fondo-layout-desktop);
    background-repeat: no-repeat;
    background-size: cover;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 100%;
    margin-top: 1px;
}

    .dropdown-content a[b-6qsgc81ckb], .dropdown-content div[b-6qsgc81ckb] {
        color: #f1f1f1;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        margin: 10px;
        background-color: var(--color-secundario);
    }
        .dropdown-content a:hover[b-6qsgc81ckb], .dropdown-content div:hover[b-6qsgc81ckb] {
            background-color: var(--color-primario);
            color: #f1f1f1;
        }

.dropdown:hover .dropdown-content[b-6qsgc81ckb] {
    display: block;
}
.pa[b-6qsgc81ckb]{
    padding:0.5rem;
}
@media only screen and (max-width: 1300px) {
    .pa[b-6qsgc81ckb]{
        padding-top: 0.5rem;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0.5rem;
    }

    .dropdown[b-6qsgc81ckb] {
        min-width: 184px;
    }
}
/* /Components/Layout/SfPasswordTexBox.razor.rz.scp.css */
[b-zcpcvbzvzq] .password-invisible .la.la-eye-slash {
    display: none;
    border-left-width: 0;
    border-right-width: 0;
}

[b-zcpcvbzvzq] .password-invisible .la.la-eye {
    border-left-width: 0;
    border-right-width: 0;
}

[b-zcpcvbzvzq] .password-visible .la.la-eye {
    display: none;
}

[b-zcpcvbzvzq] .password-visible .la.la-eye-slash {
    border-left-width: 0;
    border-right-width: 0;
}
/* /Components/Layout/SidebarNav.razor.rz.scp.css */
.background.e-input-group[b-zg6cc7dhh1], .background.e-input-group.e-control-wrapper[b-zg6cc7dhh1] {
    color: white;
    background: none !important;
    border-color: #6c757d !important;
    border-radius: 10px;
}

.collapsible-content[b-zg6cc7dhh1] {
    display: none;
}

.imagen-app[b-zg6cc7dhh1] {
    max-width:70%;
}

.contenedor-imagen-app[b-zg6cc7dhh1] {
    text-align: center;
    margin-top:15px;
}
/* /Components/PaginasInformativas/AgrupadorHorizontalComponent.razor.rz.scp.css */
.container[b-767gdnw77j] {
    padding-top: 1rem;
}

.titulo[b-767gdnw77j] {
    color: var(--color-parrafo);
    font-size: 2rem;
}

.row[b-767gdnw77j] {
    align-items: center;
}

.nav-link.active[b-767gdnw77j]::before {
    content: '\2022';
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primario, --color1);
    font-size: 30px;
}

.nav-link[b-767gdnw77j] {
    color: var(--color-parrafo);
    max-width: 180px;
    margin: 0;
    padding: 0 5px 0 5px;
    font-size: 1.3rem;
    cursor: pointer;
}

    .nav-link.active[b-767gdnw77j] {
        color: var(--color-primario, --color1);
    }

.nav-item[b-767gdnw77j] {
    width: max-content;
    text-align: center;
    position: relative;
    margin: auto 0 auto 0;
    padding: 0 10px;
}

.borde:not(:last-child)[b-767gdnw77j] {
    height: 1.5rem;
    border-right: solid;
    border-width: 1px;
    margin: auto 0 auto 0;
    padding: 0;
}

hr[b-767gdnw77j] {
    color: var(--color-primario, --color1);
    height: 0.5px;
    opacity: 1;
    margin: 0;
}


@media (max-width: 992px) {
    .navegacion[b-767gdnw77j] {
        display: none;
    }

    .titulo[b-767gdnw77j] {
        width: 100%;
    }
}
/* /Components/PaginasInformativas/FormInterpreter/CampoArchivo/CampoArchivoComponent.razor.rz.scp.css */
.titulo[b-i646g6d4mi],
[b-i646g6d4mi] .campo-archivo-component,
[b-i646g6d4mi] .e-upload .e-file-drop,
[b-i646g6d4mi] .e-upload .e-upload-files .e-upload-file-list .e-file-container .e-file-size {
    color: var(--color-parrafo);
}
    [b-i646g6d4mi] .campo-archivo-component {
        border-radius: 1rem;
    }

[b-i646g6d4mi] .e-upload .e-upload-files .e-upload-file-list {
    border-bottom: none;
}

    [b-i646g6d4mi] .campo-archivo-component .e-upload-browse-btn {
        background: var(--color-primario, --color1);
        border-color: var(--color-primario, --color1);
    }

    [b-i646g6d4mi] .campo-archivo-component .e-upload-browse-btn:hover,
    [b-i646g6d4mi] .campo-archivo-component .e-upload-browse-btn:focus,
    [b-i646g6d4mi] .campo-archivo-component .e-upload-browse-btn:active {
        background: var(--color-primario, --color1);
        box-shadow: 0px 0px 30px 2px rgba(0, 0, 0, 0.45) inset !important;
    }

[b-i646g6d4mi] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoColor/CampoColorComponent.razor.rz.scp.css */
[b-ngwp52bbht] .e-colorpicker-container .e-split-btn-wrapper .e-split-colorpicker.e-split-btn,
[b-ngwp52bbht] .e-colorpicker-container .e-btn.e-icon-btn {
    border-color: #adb5bd;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoEmail/CampoEmailComponent.razor.rz.scp.css */
[b-evm0ha2tvz] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoFechaHora/CampoFechaHoraComponent.razor.rz.scp.css */
[b-77oqrqg5te] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoFecha/CampoFechaComponent.razor.rz.scp.css */
[b-88uldervhk] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoHora/CampoHoraComponent.razor.rz.scp.css */
[b-7bgwk5sufr] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoListaMultiple/CampoListaMultipleComponent.razor.rz.scp.css */
[b-dgtqb10jem] .e-multi-select-wrapper .e-chips {
    border-radius: 1rem;
}

[b-dgtqb10jem] .e-multiselect input.e-multiselect::placeholder {
    color: #fff;
    font-family: var(--clave-fuente) !important;
}

[b-dgtqb10jem] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoListaSimple/CampoListaSimpleComponent.razor.rz.scp.css */
[b-uikin0rzgh] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoNumero/CampoNumeroComponent.razor.rz.scp.css */
/* Estilos para remover los botones de incremento/decremento */

/* Para Chrome, Safari, Edge, Opera */
[b-j7wslk40df] input[type="number"]::-webkit-inner-spin-button,
[b-j7wslk40df] input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Para Firefox */
[b-j7wslk40df] input[type="number"] {
    -moz-appearance: textfield;
}

[b-j7wslk40df] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoPassword/CampoPasswordComponent.razor.rz.scp.css */
[b-8gbaqd3h5p] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoSeleccionMultiple/CampoSeleccionMultipleComponent.razor.rz.scp.css */
[b-ays0j3yqup] .campo-seleccion-multiple-component {
    color: var(--color-parrafo);
    margin-right: 10px;
}

[b-ays0j3yqup] .borde-error.e-checkbox-wrapper .e-frame {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoSeleccionSimple/CampoSeleccionSimpleComponent.razor.rz.scp.css */
[b-bhw36qgypt] .campo-seleccion-simple-component {
    color: var(--color-parrafo);
    margin-right: 10px;
}

[b-bhw36qgypt] .borde-error .e-radio+label::before {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoTelefono/CampoTelefonoComponent.razor.rz.scp.css */
[b-hhmh0eftzt] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoTextoEnriquecido/CampoTextoEnriquecidoComponent.razor.rz.scp.css */
[b-h0ff5enefh] .borde-error {
    border-color:red !important;
    border: solid 1px;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoTextoLargo/CampoTextoLargoComponent.razor.rz.scp.css */
[b-4prme4en9i] .campo-texto-largo-component {
    border-radius: 1rem !important;
}

[b-4prme4en9i] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoTexto/CampoTextoComponent.razor.rz.scp.css */
[b-5gmhbw8u37] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/CampoUrl/CampoUrlComponent.razor.rz.scp.css */
[b-srdmpxvb6s] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Components/PaginasInformativas/FormInterpreter/MensajeValidacion/MensajeValidacionComponent.razor.rz.scp.css */
.mensaje-validacion[b-pnjvmcwokj] {
    color: red;
    padding: 0px 10px;
}
/* /Components/PaginasInformativas/Interpreter/CarruselEscalonado/CarruselEscalonadoComponent.razor.rz.scp.css */
.row[b-m90esm7xeo] {
    padding: 0 10px;
}

.contenedor-img[b-m90esm7xeo] {
    margin: 0;
    padding: 0 0;
}

.carousel .carousel-item[b-m90esm7xeo] {
    transition: transform 1.5s ease-in-out;
}

img[b-m90esm7xeo] {
    width: 100%;
    height: auto;
}

.impar[b-m90esm7xeo] {
    margin-top: 5rem;
}
/* /Components/PaginasInformativas/Interpreter/Enlace/EnlaceComponent.razor.rz.scp.css */
span[b-jtlzh8b9pk] {
    color: var(--color-primario, --color1);
    cursor: pointer;
}
/* /Components/PaginasInformativas/Interpreter/FormularioCS/FormularioCSComponent.razor.rz.scp.css */
.borde-form[b-sqtxzo0qzy] {
    border: 2px solid white;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 25px 20px 20px 20px;
    box-sizing: border-box;
}

button:disabled[b-sqtxzo0qzy]{
    background-color:#525252;
}
/* /Components/PaginasInformativas/Interpreter/FormularioTCN/FormularioTCNComponent.razor.rz.scp.css */
.borde-form[b-8o3ijvdagn] {
    border: 2px solid white;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 25px 20px 20px 20px;
    box-sizing: border-box;
}

button:disabled[b-8o3ijvdagn] {
    background-color: #525252;
}
/* /Components/PaginasInformativas/Interpreter/GaleriaInformacionSucursales/InformacionSucursal/InformacionSucursalComponent.razor.rz.scp.css */
.contenedor-componente[b-fktul0riyu] {
    align-items: center;
    margin-bottom: 1rem;
}

.imagen-redonda[b-fktul0riyu] {
    border-radius: 50%;
    width: 130px;
}

h3[b-fktul0riyu] {
    color: var(--color-parrafo);
}

span[b-fktul0riyu] {
    font-size: 1rem;
    line-height: 1;
    color: var(--color-parrafo);
}

p[b-fktul0riyu] {
    color:var(--color-primario, --color1); 
    font-size:1.5rem;
    margin:0;
    padding:0;
    line-height:1.3;
}


@media (max-width: 991px) {
    .imagen-redonda[b-fktul0riyu] {
        border-radius: 0%;
        width: 25rem;
        margin-bottom: 1rem;
    }

    .fila-descripcion[b-fktul0riyu] {
        margin-top: 1rem;
    }

    .fila-horarios-telefonos[b-fktul0riyu] {
        margin-top: 1rem;
        margin-bottom: 1rem;
        align-items: center;
        text-align: center;
    }
}
/* /Components/PaginasInformativas/Interpreter/GaleriaTarjetasInformativas/TarjetaInfo/TarjetaInfoComponent.razor.rz.scp.css */
.tarjeta[b-clqsbn77t4] {
    border: solid;
    border-color: #fff;
    border-radius: 5px;
}

.tarjeta-imagen[b-clqsbn77t4] {
    border-radius: 5px;
    margin: -4px 0px 0px -4px;
    display: block;
    width: calc(100% + 8px);
    height: auto;
    max-width: none;
}

.tarjeta-contenido .row[b-clqsbn77t4] {
    display: flex;
    align-items: center;
    margin: 0;
    height: 175px;
    overflow: hidden;
}

.tarjeta-titulo[b-clqsbn77t4] {
    color: var(--color-primario, --color1);
    font-size: 1rem;
    padding: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tarjeta-texto[b-clqsbn77t4] {
    color: var(--color-parrafo);
    font-size: 1rem;
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}


@media (max-width: 576px) {
    .tarjeta-contenido .row[b-clqsbn77t4] {
        height: auto;
        overflow: auto;
    }
    
    .tarjeta-titulo[b-clqsbn77t4] {
        font-size: 1.3rem;
    }

    .tarjeta-texto[b-clqsbn77t4] {
        font-size: 1.2rem;
        display: block;
        overflow: visible;
        text-overflow: initial;
        white-space: normal;
        line-height: 1.2;
    }
    
}

@media (max-width: 768px) {
    .tarjeta-texto[b-clqsbn77t4] {
        line-height: 1.2;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 992px) {
    .tarjeta-texto[b-clqsbn77t4] {
        line-height: 1.2;
        -webkit-line-clamp: 5;
    }
}
/* /Components/PaginasInformativas/Interpreter/GaleriaTarjetasProductos/TarjetaProd/TarjetaProdComponent.razor.rz.scp.css */
.tarjeta[b-m3nd709j2b] {
    border: solid;
    border-color: white;
    border-radius: 5px;
}

.tarjeta-imagen[b-m3nd709j2b] {
    border-radius: 5px;
    margin: -4px 0px 0px -4px;
    display: block;
    width: calc(100% + 8px);
    height: auto;
    max-width: none;
}

.tarjeta-contenido .row[b-m3nd709j2b] {
    display: flex;
    align-items: center;
    margin: 10px;
    min-height:80px;
}

.contenedor-titulo[b-m3nd709j2b], .contenedor-boton[b-m3nd709j2b] {
    padding:0;
}

.contenedor-boton[b-m3nd709j2b] {
    text-align: center;
}



p[b-m3nd709j2b] {
    color: #fff;
    font-size: 1rem;
    padding: 0;
    margin: 0;
}

@media (max-width: 991px) {
    .tarjeta-contenido .row[b-m3nd709j2b] {
        text-align: center !important;
    }
    .contenedor-boton[b-m3nd709j2b] {
        margin-top: 1rem;
    }
}
/* /Components/PaginasInformativas/Interpreter/Mapa/MapaComponent.razor.rz.scp.css */
.mapa-component[b-te7axlpgjt] {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}
/* /Components/PaginasInformativas/ReCaptcha/ReCaptchaV2Component.razor.rz.scp.css */
.recaptcha[b-pkq3exv3qv] {
    margin: 0 auto !important;
    width: 300px !important;
}
/* /Components/Perfil/ActualizarDatos.razor.rz.scp.css */

.col-12[b-8n1bpdm423] {
    margin-bottom: 10px;
}

.titulo-fecha[b-8n1bpdm423] {
    background: var(--color-secundario);
    padding: 1px 0 0 7px;
    border-radius: 5rem;
    width: 100%;
    height: 32px;
    border-color: var(--color-secundario);
}

[b-8n1bpdm423] input {
    color: var(--color-parrafo) !important;
}

[b-8n1bpdm423] .borde-error {
    border: 5px solid red;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}


.back-button[b-8n1bpdm423] {
    padding: 0;
    font-size: 24px;
    box-shadow: none;
    background: no-repeat;
    background-color: var(--color-primario);
    width: 40px;
}
/* /Components/Perfil/CambiarContrasena.razor.rz.scp.css */
.row[b-2o2nai7rb8]{
    margin-bottom:15px;
}


.centrar-informacion[b-2o2nai7rb8] {
    display: flex;
    justify-content: center;
}

@media only screen and (min-width: 992px){
    .row[b-2o2nai7rb8]{
        margin-left:60px;
    }
}
/* /Components/Perfil/InformacionUsuario.razor.rz.scp.css */
label[b-qio8bg9z0p] {
    font-weight: bold;
}

ul li[b-qio8bg9z0p]{
    font-size:20px;
}

.centrar-informacion[b-qio8bg9z0p] {
    display:flex;
    justify-content:center;
}

.btn[b-qio8bg9z0p] {
    background: var(--color-primario);
    color: #fff;
}
/* /Components/Perfil/MiPerfil.razor.rz.scp.css */
.body-perfil[b-juxw9vjjgq] {
    min-width: 100%;
    justify-content: center;
}

.nav-pills .nav-link[b-juxw9vjjgq] {
    text-transform: none;
}

.nav-link[b-juxw9vjjgq] {
    color:#f1f1f1;
    background: var(--color-secundario);
}

.nav-link:hover[b-juxw9vjjgq] {
    background: var(--color-primario);
}

.nav-pills .nav-link.active[b-juxw9vjjgq], .nav-pills .show > .nav-link[b-juxw9vjjgq] {
    background: var(--color-primario);
}

@media only screen and (max-width: 577px) {
    .body-perfil[b-juxw9vjjgq] {
        max-width: 100%;
    }

    .row[b-juxw9vjjgq]{
        margin:0;
    }
}
/* /Components/Perfil/MisCompras.razor.rz.scp.css */
.card[b-lmfwv97epw], .list-group-item[b-lmfwv97epw] {
    background: rgba(0, 0, 0, .2);
}

.cabecera-reserva[b-lmfwv97epw] {
    min-height: 140px;
}

.list-group-item[b-lmfwv97epw] {
    background: none;
    color: var(--color-parrafo);
}

.codigo-impresion[b-lmfwv97epw] {
    background-color: var(--color-secundario);
    margin-bottom:10px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.div-qr[b-lmfwv97epw]{
    text-align:center;
}
/* /Components/Venta/Cronometro.razor.rz.scp.css */
.container-cronometro[b-sh6oyuhtyk] {
    position: sticky;
    top: 89px;
    width: 100%;
    /*height: 40px;*/
    z-index: 3;
}

.cronometro[b-sh6oyuhtyk] {
    background-color: var(--color-primario);
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px;
    color: white;
    top: 1px;
    left: calc(100% - 60px);
    position: absolute;
}

.ConNextButton[b-sh6oyuhtyk] {
    left: calc(100% - 111px) !important;
}

@media only screen and (max-width: 1024px) {
    .container-cronometro[b-sh6oyuhtyk] {
        top: var(--top-tablet);
        background: var(--fondo-layout-tablet);
    }
}

@media only screen and (min-width: 1024px) {
    .container-cronometro[b-sh6oyuhtyk] {
        top: var(--top-desktop);
        background: none;
    }
}

@media only screen and (max-width: 420px) {
    .container-cronometro[b-sh6oyuhtyk] {
        top: var(--top-movil);
        background: var(--fondo-layout-tablet);
    }
}
/* /Components/Venta/DatosFacturacion.razor.rz.scp.css */
.form-control[b-q0rnv70q5k] {
    color: white;
    background-color: var(--color-secundario, --color1);
    border: 1px solid var(--color-secundario, --color1);
    border-radius: 5rem !important;
}
.form-control[b-q0rnv70q5k]::placeholder {
    /*color: var(--color-titulo-principal, white);*/
    color: white;
}

.select-style[b-q0rnv70q5k] {
    background-color: var(--color-secundario, --color1);
    color: white;
    text-align:center;
    border: 1px solid var(--color-secundario, --color1);
}
/* /Components/Venta/DatosFacturacionKiosko.razor.rz.scp.css */
.form-control[b-bebov164ia] {
    color: white;
    background-color: var(--color-secundario, --color1);
    border: 1px solid var(--color-secundario, --color1);
    border-radius: 5rem !important;
}

    .form-control[b-bebov164ia]::placeholder {
        /*color: var(--color-titulo-principal, white);*/
        /*color: white;*/
    }

.selector-tipo-documento[b-bebov164ia] {
    background-color: var(--color-secundario, --color1);
    color: white;
    text-align: center;
    border: 1px solid var(--color-secundario, --color1);
    padding: 0 5px;
    width: 15%;
}

.color-validacion[b-bebov164ia] {
    color: red !important;
    padding: 0px 10px
}

input[type=number][b-bebov164ia]::-webkit-outer-spin-button,
input[type=number][b-bebov164ia]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number][b-bebov164ia] {
    -moz-appearance: textfield;
}

.boton-busqueda[b-bebov164ia] {
    background: none;
    border: none;
    cursor: pointer;
    color: #737373;
    margin-left: -40px !important;
    z-index: 3;
    width: 40px;
    display:none;
}

.texto-ayuda[b-bebov164ia] {
    text-align: center;
    font-style: italic;
    color: #737373;
    margin:0;
    padding:0;
}



[b-bebov164ia] .e-input::placeholder {
    color: #757471 !important;
}

[b-bebov164ia] .e-input-group, .e-input-group.e-control-wrapper[b-bebov164ia] {
    border-radius: 5rem !important;
}

/* Estilos para remover los botones de incremento/decremento */

/* Para Chrome, Safari, Edge, Opera */
[b-bebov164ia] input[type="number"]::-webkit-inner-spin-button,
[b-bebov164ia] input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Para Firefox */
[b-bebov164ia] input[type="number"] {
    -moz-appearance: textfield;
}


.div-nro-documento[b-bebov164ia] {
    flex:2;
}
/* /Components/Venta/EleccionComposicion.razor.rz.scp.css */
.card-body[b-giuvyan4xc] {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 15px;
    padding: 0.5rem;
    font-size: smaller;
}

.card-title[b-giuvyan4xc] {
    font-weight: bolder;
}

.accordion-item[b-giuvyan4xc] {
    background-color: transparent;
    border: 0px;
}
.accordion-button[b-giuvyan4xc] {
    padding: 0.4rem 0.4rem;
    font-size: 0.9rem;
    color: white; 
    background-color: rgba(0, 0, 0, .2);
    border-radius: 15px;
}
.accordion-button:not(.collapsed)[b-giuvyan4xc] {
    color: white;
    background-color: transparent;
    box-shadow: none;
}

.form-check-input[type="radio"]:checked[b-giuvyan4xc]::after {
    border-color: var(--color-primario);
    background-color: var(--color-primario);
}

.form-check-input:checked[b-giuvyan4xc] {
    border-color: var(--color-primario);
}
    .form-check-input:checked:focus[b-giuvyan4xc]::before {
        box-shadow: 0 0 0 13px var(--color-primario);
    }

@media screen and (min-width: 575px) {
    .scrolear[b-giuvyan4xc] {
        overflow-y: scroll;
        height: 420px;
        scrollbar-width: thin;
        scrollbar-color: #c0c0c0 transparent;
    }

        .scrolear[b-giuvyan4xc]::-webkit-scrollbar {
            width: 5px;
        }

        .scrolear[b-giuvyan4xc]::-webkit-scrollbar-track {
            background: none;
        }

        .scrolear[b-giuvyan4xc]::-webkit-scrollbar-thumb {
            border-radius: 30px;
            background: #c0c0c0;
        }

    .ocultar[b-giuvyan4xc] {
        display: none;
    }
}
/* /Components/Venta/FinalizacionCompra.razor.rz.scp.css */
.seccion-finalizacion[b-oenv48ovgh] {
    top: 45vh !important;
    position: absolute;
}

@media only screen and (max-width: 1200px) {
    .container[b-oenv48ovgh] {
        background: none;
    }

    .seccion-finalizacion[b-oenv48ovgh] {
        width: 80%;
    }
}

@media only screen and (min-width: 1200px) {
    .container[b-oenv48ovgh] {
        background: var(--fondo-layout-desktop);
        background-position-x: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100vw;
        position: relative;
        height: 100vh;
        left: calc((100% - 100vw)/2);
        max-width: none;
    }
    .seccion-finalizacion[b-oenv48ovgh]{
        top:55vh!important;
    }
    :host-context(.page-content)[b-oenv48ovgh] {
        margin-bottom: 0 !important;
    }
    :root[b-oenv48ovgh] {
        --margin-bottom: 0;
    }
}

@media only screen and (max-width: 420px) {
    .container[b-oenv48ovgh] {
        background: none;
    }
    
}

.imagen-icono-finalizacion[b-oenv48ovgh] {
    height: auto !important;
    width: 300px !important;
    margin-bottom:20px;
}
/* /Components/Venta/MetodoPago.razor.rz.scp.css */

.btn[b-8i5fgxgavy] {
    background: var(--color-primario);
    /*margin-left: 10px !important;*/
    color: #fff;
    width:98%;
    position: relative;
    z-index:1;
}

.btn-check:active + .btn-outline-danger[b-8i5fgxgavy], .btn-check:checked + .btn-outline-danger[b-8i5fgxgavy] {
    color: #fff;
    background-color: var(--color-secundario);
    top: -10px;
}
.btn-outline-danger[b-8i5fgxgavy] {
    color: #fff;
    border: none;
}

.btn-secondary[b-8i5fgxgavy] {
    background-color: var(--color-secundario, --color1) !important;
}
/* /Components/Venta/MetodoPagoKiosko.razor.rz.scp.css */
.btn[b-59xsfl0w1o] {
    background: var(--color-primario);
    color: #fff;
    width: 98%;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.btn-check:active + .btn-outline-danger[b-59xsfl0w1o], .btn-check:checked + .btn-outline-danger[b-59xsfl0w1o] {
    color: #fff;
    background-color: var(--color-secundario);
    top: -10px;
}

.btn-outline-danger[b-59xsfl0w1o] {
    color: #fff;
    border: none;
}

.btn-secondary[b-59xsfl0w1o] {
    background-color: var(--color-secundario, --color1) !important;
}

.img-pago[b-59xsfl0w1o] {
    width: 50px;
}

.btnPagoInsertandoTarjeta[b-59xsfl0w1o], .btnPagoQr[b-59xsfl0w1o], .btnCancelarPagoQr[b-59xsfl0w1o], .btnPagoQrRedEnlace[b-59xsfl0w1o] {
    margin-top: 15px;
}
/* /Components/Venta/ModalReservaActiva.razor.rz.scp.css */
.detalle-reserva-activa[b-oxw2ge6ezt] {
    color: var(--color-primario);
    padding: 0;
    margin: 0;
}
/* /Components/Venta/ResumenCompra.razor.rz.scp.css */
.card-body[b-dcpsb9slj6] {
    padding: 0;
}
.card[b-dcpsb9slj6] {
    border: 0;
    box-shadow: 0 2px 15px -3px rgba(0,0,0,.07),0 10px 20px -2px rgba(0,0,0,.04);
    background-color: rgba(0, 0, 0, .2);
    border-radius:20px;
}
.card-text[b-dcpsb9slj6] {
    color: white;
}
.card-title[b-dcpsb9slj6] {
    margin-bottom: .5rem;
    color: white;
}

.compra-mixta[b-dcpsb9slj6]{
    margin-left:30px;
}

.text-muted[b-dcpsb9slj6] {
    color: #bdb8b8 !important;
}

.item-listado[b-dcpsb9slj6] {
    display: flex;
    justify-content: space-between;
}

.alto[b-dcpsb9slj6] {
    max-height: 168px;
    min-height: 168px;
}


/* /Components/Venta/ResumenSeleccionButacas.razor.rz.scp.css */
.resumen-titulo[b-malbw3rp3f] {
    text-align: center;
}

.resumen-container[b-malbw3rp3f] {
    display: flex;
    flex-direction: column;
    justify-content: left;
    background-color: rgba(0, 0, 0, .2);
    padding: 14px;
    border-radius: 18px;
}

    .resumen-container label[b-malbw3rp3f] {
        font-weight: bold;
    }

    .resumen-container p[b-malbw3rp3f] {
        margin: 0;
        padding: 0;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-titulo-secundario);
    }


.cantidad-container[b-malbw3rp3f] {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-top: 12px;
}


[b-malbw3rp3f] .e-input-group.reverse-input,
[b-malbw3rp3f] .e-input-group.e-control-wrapper.reverse-input {
    border-radius: 6px;
    background-color: white;
    color: black;
    /*flex-direction: row-reverse;*/
}

    [b-malbw3rp3f] .e-input-group.reverse-input .e-input-group-icon,
    [b-malbw3rp3f] .e-input-group.e-control-wrapper.reverse-input .e-input-group-icon {
        width: 20px;
    }

[b-malbw3rp3f] .e-input-group:not(.e-disabled) .e-input-group-icon:hover,
[b-malbw3rp3f] .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
    background: var(--color-primario);
}

[b-malbw3rp3f] .e-input-group input.e-input,
[b-malbw3rp3f] .e-input-group.e-control-wrapper input.e-input {
    color: black;
    text-align: center;
    padding: 0;
}

[b-malbw3rp3f] .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
[b-malbw3rp3f] .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input {
    border-radius: 6px;
}

[b-malbw3rp3f] .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
[b-malbw3rp3f] .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
    border-radius: 6px;
}

[b-malbw3rp3f] .reverse-input.e-input-group input.e-input,
[b-malbw3rp3f] .reverse-input.e-input-group.e-control-wrapper input.e-input {
    /*width: 42px;*/
    background:white;
}

[b-malbw3rp3f] .reverse-input.e-input-group.e-valid-input .e-input-group-icon.e-delete-3 {
    margin-left: 0;
}

[b-malbw3rp3f] .reverse-input.e-input-group.e-valid-input.delete-button {
    margin-left: 0;
    margin-top: 0;
}

[b-malbw3rp3f] .reverse-input.e-input-group:not(.delete-button) {
    min-width: 40px;
}


.total-entradas[b-malbw3rp3f] {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: var(--color-terciario);*/
    padding: 0 22px;
    border-radius: 6px;
}

[b-malbw3rp3f] .reverse-input{
    width:40px;
}

/* /Components/Venta/ResumenSeleccionCandyBar.razor.rz.scp.css */
.card-body[b-yv11wpny18] {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 15px;
    padding: 0.5rem;
    font-size: smaller;
}

.card-title[b-yv11wpny18] {
    font-weight: bolder;
}

.listado[b-yv11wpny18], .total[b-yv11wpny18] {
    display: flex;
    justify-content: space-between;
}

.ul-pelicula[b-yv11wpny18], .li-producto[b-yv11wpny18] {
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin: 10px;
}

.precio-producto[b-yv11wpny18], .input-cantidad[b-yv11wpny18] {
    display: flex;
    justify-content: end;
}

.total[b-yv11wpny18]{
    font-weight:bold;
    font-size:16px;
}

[b-yv11wpny18] .reverse-input.e-input-group input.e-input,
[b-yv11wpny18] .reverse-input.e-input-group.e-control-wrapper input.e-input,
[b-yv11wpny18] .delete-item.e-input-group input.e-input,
[b-yv11wpny18] .delete-item.e-input-group.e-control-wrapper input.e-input {
    background: white;
    color: black;
    text-align: center;
    border-radius: 0;
    width: 50%;
    padding: 0;
}

[b-yv11wpny18] .e-input-group, .e-input-group.e-control-wrapper[b-yv11wpny18],
[b-yv11wpny18] .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
[b-yv11wpny18] e-input-focus,
[b-yv11wpny18] .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
    border-radius: 0;
}
/* /Components/Venta/Sala.razor.rz.scp.css */
/* Chrome safari scrollbar */
[b-ea86vy362q] .e-diagram ::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.btn-cerrar[b-ea86vy362q] {
    height: 26px;
    width: 26px;
    background: transparent;
    border: none;
    color: var(--color-primario);
}

.icono-info[b-ea86vy362q] {
    font-size: 33px;
    color: var(--color-secundario);
    cursor: pointer;
    animation-name: animacionInfo-b-ea86vy362q;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

    .icono-info:hover[b-ea86vy362q] {
        color: var(--color-primario);
    }

.btn-modal-sala[b-ea86vy362q]{
    cursor:pointer;
}
.modal-header[b-ea86vy362q] {
    padding: 0;
    padding-right: 1rem;
    padding-top: 1rem;
    border-bottom: none;
    justify-content: flex-end;
}

.modal-content[b-ea86vy362q] {
    background: var(--fondo-layout-desktop);
    background-size: contain;
    border: 8px solid var(--color-secundario, gray);
}

#iframe-sala[b-ea86vy362q]{
    width:100%;
    max-width:470px;
}

.container-diagrama[b-ea86vy362q] {
    width: 100%;
    aspect-ratio: 1/1
}

[b-ea86vy362q] .e-diagram {
    background: transparent;
}


    [b-ea86vy362q] .e-diagram rect[id^=butaca] {
        cursor: pointer;
    }


.tipos-butacas[b-ea86vy362q] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}

    .tipos-butacas .tipo-butaca[b-ea86vy362q] {
        display: flex;
        padding: 0.7rem;
    }

        .tipos-butacas .tipo-butaca p[b-ea86vy362q] {
            margin-bottom: 0;
            font-weight: bold;
            color: var(--color-titulo-secundario);
        }

        .tipos-butacas .tipo-butaca .preview-butaca[b-ea86vy362q] {
            width: 20px;
            height: 20px;
            margin-right: 5px;
            border-radius: 4px;
            background: white;
        }

@keyframes animacionInfo-b-ea86vy362q{
    from {
        color: var(--color-secundario);
    }

    to {
        color: var(--color-primario);
    }
}

@media only screen and (min-width: 990px) {
    [b-ea86vy362q] .e-diagram {
       height:79%!important;
    }

    .container-diagrama[b-ea86vy362q] {
        aspect-ratio: 1.1;
        height: 950px;
    }
}
@media only screen and (min-width: 1300px) {
    .container-diagrama[b-ea86vy362q]{
        aspect-ratio: 1.1;
        height:920px;
    }
}
/* /Components/Venta/SeleccionButacas.razor.rz.scp.css */
.acciones-navegacion[b-34n6hk00wm] {
    display: flex;
    padding-top: 12px;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
}

    .acciones-navegacion button[b-34n6hk00wm] {
        margin: auto;
        margin-bottom: 12px;
        min-width: max-content;
    }

.btn-wrapper[b-34n6hk00wm] {
    bottom: 20px; 
    z-index: 1000; 
    display: flex;
    justify-content: space-between;
}

.img-btn-compra[b-34n6hk00wm] {
    height: 40px;
}

@media screen and (max-width: 1024px) {
    .btn-wrapper[b-34n6hk00wm] {
        margin-top: 15px;
        width: 100%; 
        flex-direction: row; 
        align-items: center;
        justify-content: center;  
    }

    .btn-wrapper-left[b-34n6hk00wm], .btn-wrapper-right[b-34n6hk00wm] {
        width: auto;
        margin-bottom: 0;
        margin-left: 10px;
        margin-right: 10px;
    }

    .btn-wrapper .btn-wrapper-left[b-34n6hk00wm], .btn-wrapper .btn-wrapper-right[b-34n6hk00wm] {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (min-width: 1025px) {
    .btn-wrapper-left[b-34n6hk00wm] {
        position: fixed;
        left: 20px;
        bottom: 20px;
    }

    .btn-wrapper-right[b-34n6hk00wm] {
        position: fixed;
        bottom: 20px;
        right: 20px;
    }
}
/* /Components/Venta/SeleccionHorario.razor.rz.scp.css */
/* Chrome safari scrollbar */
[b-lyp1kja98f]::-webkit-scrollbar {
    width: 0;
    height: 0;
}

h1[b-lyp1kja98f] {
    font-size: 1.25rem;
}
.contenedor-banner[b-lyp1kja98f] {
    position: relative;
}

.btn-cartelera[b-lyp1kja98f] {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border: none;
}

div.sticky[b-lyp1kja98f] {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    z-index: 1;
    margin-top: 0;
}

.pelicula-container[b-lyp1kja98f] {
    margin: 0;
}

.imagen-pelicula[b-lyp1kja98f] {
    height: 27vh;
    width: 100%;
}

.imagen-pelicula-desktop[b-lyp1kja98f] {
    width: 100%;
    display: none;
}

.video-pelicula[b-lyp1kja98f] {
    height: 100%;
    width: 100%;
    display: none;
}

.label-estreno[b-lyp1kja98f], .label-preventa[b-lyp1kja98f] {
    margin: 0;
    background: #d50e37;
}

.label-preventa[b-lyp1kja98f] {
    background: #04660B;
}

    .cabecera-pelicula[b-lyp1kja98f] {
        padding: 20px 20px 0 15px;
        display: flex;
        justify-content: space-between;
    }

.nombre-pelicula[b-lyp1kja98f] {
    align-self: end;
}

.informacion-pelicula[b-lyp1kja98f] {
    padding: 0px 0 0 15px;
    margin-bottom: 10px;
    width: 100%;
    color: var(--color-parrafo);
}

.btn-sinopsis[b-lyp1kja98f]{
    cursor: pointer;
}

.sinopsis-pelicula[b-lyp1kja98f] {
    height: 100%;
    text-align: justify;
}

.formatos-peliculas-container[b-lyp1kja98f] {
    text-align:center;
    justify-content: center;
}

.item-formato-container[b-lyp1kja98f] {
    margin-bottom: 10px;
}

.btn-formato[b-lyp1kja98f] {
    color: whitesmoke;
    background: var(--color-secundario, --color1);
    width: 100%;
    border: none;
    min-height: 45px;
}

    .btn-formato-selected[b-lyp1kja98f], .btn-formato:hover[b-lyp1kja98f] {
        background: var(--color-primario, --color1);
        filter: invert(15%);
    }

.fechas-pelicula-container[b-lyp1kja98f] {
    overflow: scroll;
    background: none;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.divBtnScroll[b-lyp1kja98f] {
    align-self: center;
    cursor: pointer;
    text-align: center;
}

.btnScroll[b-lyp1kja98f] {
    background: none;
    border: none;
    width: 20px;
}

.horarios-peliculas-container[b-lyp1kja98f] {
    text-align: center;
    padding: 30px;
    padding-top:20px;
}

.boton-youtube[b-lyp1kja98f] {
    display: block;
    background-color: #FF0000;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    width: 110px;
    height: 38px;
    font-size: 12px;
    position: absolute;
    top: calc(100% - 40px);
    left: calc(100% - 115px);
    border:none;
}
    .boton-youtube:hover[b-lyp1kja98f] {
        background-color: #CC0000;
    }


[b-lyp1kja98f] .e-btn {
    margin-right: 10px !important;
    background: none;
    filter: invert(15%);
    border: none;
}

[b-lyp1kja98f] .group-option > .e-btn {
    border-bottom: 2px solid var(--color-secundario, --color1) !important;
}

    [b-lyp1kja98f] .e-btn-group .e-btn:active,
    [b-lyp1kja98f] .e-btn-group .e-btn:focus,
    [b-lyp1kja98f] .e-btn:hover,
    [b-lyp1kja98f] .e-btn-group input:checked + label.e-btn,
    [b-lyp1kja98f] .e-btn-group input:active + label.e-btn {
        background: none;
        color: var(--color-primario, --color1);
        box-shadow: none;
        border-bottom: none !important;
    }

/*contenedor fechas de peliculas*/
[b-lyp1kja98f] .e-btn {
    color: var(--color-secundario, --color1);
}

[b-lyp1kja98f] label.e-btn {
    border-radius: 0 !important;
    margin: 0 !important;
    min-width: 96px;
}

    [b-lyp1kja98f] .e-btn.e-flat.e-primary {
        color: white;
        border-radius: var(--border-radius, 5px);
        background: var(--color-secundario, --color1);
        filter: invert(15%);
    }

    [b-lyp1kja98f] .e-btn.e-flat.e-primary:active,
    [b-lyp1kja98f] .e-btn.e-flat.e-primary.e-active,
    [b-lyp1kja98f] .e-css.e-btn.e-flat.e-primary:active,
    [b-lyp1kja98f] .e-css.e-btn.e-flat.e-primary.e-active,
    [b-lyp1kja98f] .e-btn.e-flat.e-primary:focus,
    [b-lyp1kja98f] .e-css.e-btn.e-flat.e-primary:focus,
    [b-lyp1kja98f] .e-btn.e-flat.e-primary:hover,
    [b-lyp1kja98f] .e-css.e-btn.e-flat.e-primary:hover{
        background: var(--color-primario, --color1);
        border: none;
        box-shadow: none;
    }

.seleccionada[b-lyp1kja98f] {
    transform: translateX(-50%);
    border-radius: 100%;
    position: relative;
    background: var(--color-primario, --color1);
    height: 8px;
    content: '';
    width: 8px;
    left: 50%;
}

.menu-control[b-lyp1kja98f] {
    margin-top: 45px;
    text-align: center;
}

    .menu-control .e-menu-container.e-custom-scroll[b-lyp1kja98f] {
        width: 100%;
    }

.div-btnContinuar[b-lyp1kja98f]{
    text-align:center;
    height:50px;
}
    .div-btnContinuar .btnContinuar[b-lyp1kja98f] {
        height: 100%;
        width: 160px;
    }

@media only screen and (min-width: 350px) {
    [b-lyp1kja98f] .e-btn.e-flat.e-primary {
        width: 100px;
        min-width: max-content;
    }
}

@media only screen and (min-width: 500px) {
    [b-lyp1kja98f] .e-btn.e-flat.e-primary {
        width: 110px;
        min-width: max-content;
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) {
    .menu-control .e-menu-container.e-custom-scroll[b-lyp1kja98f] {
        width: 492px;
    }

    [b-lyp1kja98f] .e-btn.e-flat.e-primary {
        width: 130px;
        min-width: max-content;
        font-size: 15px;
    }

    .contenedor-banner[b-lyp1kja98f] {
        height:360px;
    }

    .video-pelicula[b-lyp1kja98f] {
        display: block
    }

    .video-pelicula-movil[b-lyp1kja98f]{
        display:block;
        height:27vh;
        width:100%;
    }

    .imagen-pelicula[b-lyp1kja98f] {
        display: none;
    }

    .boton-youtube[b-lyp1kja98f]{
        display:none;
    }

    .imagen-pelicula-desktop[b-lyp1kja98f] {
        display: block;
    }

    .container[b-lyp1kja98f] {
        width: 1200px;
    }

    .nombre-pelicula[b-lyp1kja98f] {
        font-size: 25px;
    }

    .e-btn.e-flat.e-primary[b-lyp1kja98f] {
        width: 150px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 768px){
    .mt-3[b-lyp1kja98f]{
        margin-top:0!important;
    }
}


@media only screen and (min-width: 1024px) {
    .seccion-peliculas[b-lyp1kja98f] {
        --columnas-peliculas: var(--columnas-peliculas-desktop);
    }
}

@media only screen and (min-width: 1200px) {
    .contenedor-banner[b-lyp1kja98f] {
        height: 450px;
    }
}
/* /Components/Venta/SeleccionHorarioKiosko.razor.rz.scp.css */
/* Chrome safari scrollbar */
[b-5lbswemfty]::-webkit-scrollbar {
    width: 0;
    height: 0;
}

h1[b-5lbswemfty] {
    font-size: 1.25rem;
}

.contenedor-banner[b-5lbswemfty] {
    position: relative;
}

.btn-cartelera[b-5lbswemfty] {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border: none;
}

div.sticky[b-5lbswemfty] {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    z-index: 1;
    margin-top: 0;
}

.pelicula-container[b-5lbswemfty] {
    margin: 0;
}

.imagen-pelicula[b-5lbswemfty] {
    height: 27vh;
    width: 100%;
}

.imagen-pelicula-desktop[b-5lbswemfty] {
    width: 100%;
    display: none;
}

.video-pelicula[b-5lbswemfty] {
    height: 100%;
    width: 100%;
    display: none;
}

.label-estreno[b-5lbswemfty], .label-preventa[b-5lbswemfty] {
    margin: 0;
    background: #d50e37;
}

.label-preventa[b-5lbswemfty] {
    background: #04660B;
}

.cabecera-pelicula[b-5lbswemfty] {
    padding: 20px 20px 0 15px;
    display: flex;
    justify-content: space-between;
}

.nombre-pelicula[b-5lbswemfty] {
    align-self: end;
}

.informacion-pelicula[b-5lbswemfty] {
    padding: 0px 0 0 15px;
    margin-bottom: 10px;
    width: 100%;
    color: var(--color-parrafo);
}

.btn-sinopsis[b-5lbswemfty] {
    cursor: pointer;
}

.sinopsis-pelicula[b-5lbswemfty] {
    height: 100%;
    text-align: justify;
}

.formatos-peliculas-container[b-5lbswemfty] {
    text-align: center;
    justify-content: center;
}

.item-formato-container[b-5lbswemfty] {
    margin-bottom: 10px;
}

.btn-formato[b-5lbswemfty] {
    color: whitesmoke;
    background: var(--color-secundario, --color1);
    width: 100%;
    border: none;
    min-height: 45px;
}

    .btn-formato-selected[b-5lbswemfty], .btn-formato:hover[b-5lbswemfty] {
        background: var(--color-primario, --color1);
        filter: invert(15%);
    }

.fechas-pelicula-container[b-5lbswemfty] {
    overflow: scroll;
    background: none;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.divBtnScroll[b-5lbswemfty] {
    align-self: center;
    cursor: pointer;
    text-align: center;
}

.btnScroll[b-5lbswemfty] {
    background: none;
    border: none;
    width: 20px;
}

.horarios-peliculas-container[b-5lbswemfty] {
    text-align: center;
    padding: 30px;
    padding-top: 20px;
}

.boton-youtube[b-5lbswemfty] {
    display: block;
    background-color: #FF0000;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    width: 110px;
    height: 38px;
    font-size: 12px;
    position: absolute;
    top: calc(100% - 40px);
    left: calc(100% - 115px);
    border: none;
}

    .boton-youtube:hover[b-5lbswemfty] {
        background-color: #CC0000;
    }


[b-5lbswemfty] .e-btn {
    margin-right: 10px !important;
    background: none;
    filter: invert(15%);
    border: none;
}

[b-5lbswemfty] .group-option > .e-btn {
    border-bottom: 2px solid var(--color-secundario, --color1) !important;
}

[b-5lbswemfty] .e-btn-group .e-btn:active,
[b-5lbswemfty] .e-btn-group .e-btn:focus,
[b-5lbswemfty] .e-btn:hover,
[b-5lbswemfty] .e-btn-group input:checked + label.e-btn,
[b-5lbswemfty] .e-btn-group input:active + label.e-btn {
    background: none;
    color: var(--color-primario, --color1);
    box-shadow: none;
    border-bottom: none !important;
}

/*contenedor fechas de peliculas*/
[b-5lbswemfty] .e-btn {
    color: var(--color-secundario, --color1);
}

[b-5lbswemfty] label.e-btn {
    border-radius: 0 !important;
    margin: 0 !important;
    min-width: 96px;
}

[b-5lbswemfty] .e-btn.e-flat.e-primary {
    color: white;
    border-radius: var(--border-radius, 5px);
    background: var(--color-secundario, --color1);
    filter: invert(15%);
}

    [b-5lbswemfty] .e-btn.e-flat.e-primary:active,
    [b-5lbswemfty] .e-btn.e-flat.e-primary.e-active,
    [b-5lbswemfty] .e-css.e-btn.e-flat.e-primary:active,
    [b-5lbswemfty] .e-css.e-btn.e-flat.e-primary.e-active,
    [b-5lbswemfty] .e-btn.e-flat.e-primary:focus,
    [b-5lbswemfty] .e-css.e-btn.e-flat.e-primary:focus,
    [b-5lbswemfty] .e-btn.e-flat.e-primary:hover,
    [b-5lbswemfty] .e-css.e-btn.e-flat.e-primary:hover {
        background: var(--color-primario, --color1);
        border: none;
        box-shadow: none;
    }

.seleccionada[b-5lbswemfty] {
    transform: translateX(-50%);
    border-radius: 100%;
    position: relative;
    background: var(--color-primario, --color1);
    height: 8px;
    content: '';
    width: 8px;
    left: 50%;
}

.menu-control[b-5lbswemfty] {
    margin-top: 45px;
    text-align: center;
}

    .menu-control .e-menu-container.e-custom-scroll[b-5lbswemfty] {
        width: 100%;
    }

.div-btnContinuar[b-5lbswemfty] {
    text-align: center;
    height: 50px;
}

    .div-btnContinuar .btnContinuar[b-5lbswemfty] {
        height: 100%;
        width: 160px;
    }

@media only screen and (min-width: 350px) {
    [b-5lbswemfty] .e-btn.e-flat.e-primary {
        width: 100px;
        min-width: max-content;
    }
}

@media only screen and (min-width: 500px) {
    [b-5lbswemfty] .e-btn.e-flat.e-primary {
        width: 110px;
        min-width: max-content;
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) {
    .menu-control .e-menu-container.e-custom-scroll[b-5lbswemfty] {
        width: 492px;
    }

    [b-5lbswemfty] .e-btn.e-flat.e-primary {
        width: 130px;
        min-width: max-content;
        font-size: 15px;
    }

    .contenedor-banner[b-5lbswemfty] {
        height: 360px;
    }

    .video-pelicula[b-5lbswemfty] {
        display: block
    }

    .video-pelicula-movil[b-5lbswemfty] {
        display: block;
        height: 27vh;
        width: 100%;
    }

    .imagen-pelicula[b-5lbswemfty] {
        display: none;
    }

    .boton-youtube[b-5lbswemfty] {
        display: none;
    }

    .imagen-pelicula-desktop[b-5lbswemfty] {
        display: block;
    }

    .container[b-5lbswemfty] {
        width: 1200px;
    }

    .nombre-pelicula[b-5lbswemfty] {
        font-size: 25px;
    }

    .e-btn.e-flat.e-primary[b-5lbswemfty] {
        width: 150px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .mt-3[b-5lbswemfty] {
        margin-top: 0 !important;
    }
}


@media only screen and (min-width: 1024px) {
    .seccion-peliculas[b-5lbswemfty] {
        --columnas-peliculas: var(--columnas-peliculas-desktop);
    }
}

@media only screen and (min-width: 1200px) {
    .contenedor-banner[b-5lbswemfty] {
        height: 450px;
    }
}
/* /Components/Venta/SeleccionProducto.razor.rz.scp.css */
.titulo[b-cle2w41syr] {
    text-align: center;
}

.container[b-cle2w41syr] {
    /*overflow:scroll;*/
    /*height:100vh;*/
}

.card-body[b-cle2w41syr] {
    padding: 0.1rem;
}

.item-container[b-cle2w41syr] {
    margin-bottom: 10px;
    position: relative;
}

.product-item[b-cle2w41syr] {
    background-color: rgba(0, 0, 0, .3);
    transition-duration: 0.4s;
    border-radius: 20px;
    height: 100%;
    position: relative;
}

    .product-item:hover[b-cle2w41syr] {
        background-color: rgba(0, 0, 0, .8);
        transition-duration: 0.1s;
    }

    .product-item[b-cle2w41syr]:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 20px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: all 0.5s;
        box-shadow: 0 0 10px 15px white;
    }

    .product-item:has(.image-container:active)[b-cle2w41syr]:after, .product-item:has(.details-container:active)[b-cle2w41syr]:after {
        box-shadow: 0 0 0 0 white;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 1;
        transition: 0s;
    }

.image-container[b-cle2w41syr],
.details-container[b-cle2w41syr] {
    z-index: 1;
}

.card-title[b-cle2w41syr] {
    float: left;
}

.div-accion[b-cle2w41syr] {
    display: flex;
    justify-content: end;
}

.back-button[b-cle2w41syr] {
    padding: 0;
    font-size: 24px;
    box-shadow: none;
    background: no-repeat;
    background-color: var(--color-primario);
    position: relative;
    top: -42px;
    left: 0;
    width: 40px;
    z-index: 1;
}

.hover-producto:hover[b-cle2w41syr] {
    cursor: pointer;
}

[b-cle2w41syr] .wizard-header-actions {
    top: 0 !important;
}

.acciones-navegacion[b-cle2w41syr] {
    display: flex;
    justify-content: space-between;
}

[b-cle2w41syr] .reverse-input.e-input-group input.e-input,
[b-cle2w41syr] .reverse-input.e-input-group.e-control-wrapper input.e-input {
    background: white;
    color: black;
    text-align: center;
    border-radius: 0;
    width: 50%;
    padding: 0;
}

[b-cle2w41syr] .reverse-input > .e-spin-up {
    order: 3;
    border-left: 1px solid !important;
}

[b-cle2w41syr] .reverse-input > .e-spin-down {
    order: 1;
}

[b-cle2w41syr] .reverse-input > .e-input {
    order: 2;
}

[b-cle2w41syr] .reverse-input.e-input-group,
[b-cle2w41syr] .reverse-input.e-input-group .e-input-group-icon,
[b-cle2w41syr] .reverse-input.e-input-group.e-control-wrapper .e-input-group-icon,
[b-cle2w41syr] .reverse-input.e-input-group .e-input-group-icon:last-child,
[b-cle2w41syr] .reverse-input.e-input-group.e-control-wrapper .e-input-group-icon:last-child {
    border: none !important;
}

[b-cle2w41syr] .e-numeric.e-control-wrapper.e-input-group .e-input-group-icon {
    background: var(--color-primario);
}

[b-cle2w41syr] .e-input-group, .e-input-group.e-control-wrapper[b-cle2w41syr],
[b-cle2w41syr] .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
[b-cle2w41syr] .e-input-focus,
[b-cle2w41syr] .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
    border-radius: 0;
}

[b-cle2w41syr] .e-input-group-icon.e-spin-up::before {
    content: "\e805" !important;
}

[b-cle2w41syr] .e-input-group-icon.e-spin-down::before {
    content: "\e87f" !important;
}

[b-cle2w41syr] .reverse-input.e-input-group .e-input-group-icon {
    border-radius: var(--border-radius);
    color: white;
}

    [b-cle2w41syr] .reverse-input.e-input-group .e-input-group-icon.e-spin-down {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    [b-cle2w41syr] .reverse-input.e-input-group .e-input-group-icon.e-spin-up {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

@media only screen and (max-width: 1024px) {
    .back-button[b-cle2w41syr] {
        top: -42px;
    }

    .titulo[b-cle2w41syr] {
        position: sticky;
        top: 0;
        z-index: 2;
    }
}

@media only screen and (min-width: 1024px) {
    .back-button[b-cle2w41syr] {
        top: -45px;
    }
}

@media only screen and (max-width: 420px) {
    .back-button[b-cle2w41syr] {
        top: -36px;
    }

    .titulo[b-cle2w41syr] {
        position: sticky;
        top: 0;
        z-index: 2;
    }
}
/* /Components/Venta/Wizard.razor.rz.scp.css */
.wizard-header-actions[b-ew1age1530] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    position: sticky;
    top: var(--top-desktop);
}

.titulo-paso[b-ew1age1530] {
    margin: 0;
    height: 40px;
}

.back-button[b-ew1age1530] {
    padding: 0;
    font-size: 24px;
    box-shadow: none;
    background: no-repeat;
    background-color: var(--color-primario);
    position: absolute;
    top: 1px;
    left: 0;
    width: 40px;
}

.next-button[b-ew1age1530] {
    padding: 0;
    font-size: 24px;
    box-shadow: none;
    background: no-repeat;
    background-color: var(--color-primario);
    position: absolute;
    top: 1px;
    left: calc(100% - 40px);
    width: 40px;
}

.cronometro[b-ew1age1530] {
    background-color: var(--color-primario);
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px;
    color: white;
    top: 0;
    left: calc(100% - 60px);
    position: absolute;
}

.ConNextButton[b-ew1age1530] {
    left: calc(100% - 111px) !important;
}

@media only screen and (max-width: 1024px) {
    .wizard-header-actions[b-ew1age1530] {
        top: var(--top-tablet);
        background: var(--fondo-layout-tablet);
    }

    .back-button[b-ew1age1530] {
        top: -35px !important;
    }
}

@media only screen and (min-width: 1024px) {
    .wizard-header-actions[b-ew1age1530] {
        top: var(--top-desktop);
        background: var(--fondo-layout-desktop);
    }

    .back-button[b-ew1age1530] {
        top: -30px !important;
    }
}

@media only screen and (max-width: 420px) {
    .wizard-header-actions[b-ew1age1530] {
        top: var(--top-movil);
        background: var(--fondo-layout-movil);
    }
}
/* /Pages/Cartelera/Index.razor.rz.scp.css */
.seccion-container[b-s5twv27zon] {
    margin-bottom: 20px;
}

.btnWhatsapp[b-s5twv27zon] {
    display: none;
    position: sticky;
    bottom: 25%;
    right: 2.5%;
    margin-right: 20px;
    margin-left: auto;
    width: 70px;
    height: 70px;
}

    .btnWhatsapp > i[b-s5twv27zon] {
        color: white;
        font-size: 70px;
    }

.ocultar-banner[b-s5twv27zon] {
    width: 100vw;
    left: calc((100% - 100vw)/2);
    position: relative;
}

.row-ciudad[b-s5twv27zon] {
    text-align: end;
    position: sticky;
    top: 0;
    z-index: 3;
    display: block;
    background: black;
}

[b-s5twv27zon] .ddlSucursales.e-input-group, .background.e-input-group.e-control-wrapper[b-s5twv27zon] {
    border-radius: 10px;
}

.dropdown-sucursal[b-s5twv27zon] {
    color: var(--color-parrafo);
    display: flex;
    width: 100%;
    height: 100%;
    padding-left: 8px;
    align-items: center;
}

.label-ciudad[b-s5twv27zon] {
    text-align: left;
    border-right: 1px solid;
    width: 63px;
    margin-right: 7px;
}

@media only screen and (min-width: 1200px) {

    .row-ciudad[b-s5twv27zon] {
        display: none;
    }

    .btnWhatsapp[b-s5twv27zon] {
        display: block;
    }
}

@media only screen and (max-width: 672px) {
    .ocultar-banner[b-s5twv27zon] {
        display: none;
    }
}


/* Cambios Kiosko */

[b-s5twv27zon] .boton-tab-flotante-izq {
    position: fixed;
    left: 5%;
    bottom: 45%;
    z-index: 100;
    color: var(--color-primario, --color1);
    border: none;
    background: none;
}

[b-s5twv27zon] .boton-tab-flotante-der {
    position: fixed;
    right: 5%;
    bottom: 45%;
    z-index: 100;
    color: var(--color-primario, --color1);
    border: none;
    background: none;
}


[b-s5twv27zon] .peliculas-tab {
    padding-top: 10px;
}

[b-s5twv27zon] .peliculas-tab .e-toolbar.e-control[class*="e-toolbar"] {
    text-align: center
}

    [b-s5twv27zon] .peliculas-tab.e-tab .e-tab-header::before {
        border: none;
    }


[b-s5twv27zon] .e-tab.peliculas-tab .e-tab-header .e-toolbar-items {
    height: max-content;
}

[b-s5twv27zon] .e-tab.peliculas-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
    border-color: transparent;
}

[b-s5twv27zon] .e-tab.peliculas-tab .e-tab-header .e-toolbar-item.tab-peliculas {
    height: 50px;
    margin: 0 !important;
}

[b-s5twv27zon] .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
    border:none; 
}

[b-s5twv27zon] .e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
    border: none;
}

[b-s5twv27zon] .e-tab.peliculas-tab .e-tab-header .e-toolbar-item.tab-peliculas.e-active {
    background: var(--color-primario, --color1);
    border: none;
    border-radius: 5px;
}

        [b-s5twv27zon] .e-tab.peliculas-tab .e-tab-header .e-toolbar-item.tab-peliculas.e-active .e-tab-text {
            color: var(--color-titulo-principal);
        }

    [b-s5twv27zon] .e-tab.peliculas-tab .e-tab-header .e-toolbar-item.tab-peliculas .e-tab-text {
        text-align: center;
        font-size: 25px;
        font-weight:500;
        color: var(--color-titulo-principal);
    }


/* /Pages/Horarios/Index.razor.rz.scp.css */
.btn-formato[b-55jn92oxyp] {
    color: whitesmoke;
    background: var(--color-secundario, --color1);
    width: 100%;
    border: none;
    min-height: 45px;
    font-size: 13px;
}

    .btn-formato-selected[b-55jn92oxyp], .btn-formato:hover[b-55jn92oxyp] {
        background: var(--color-primario, --color1);
        filter: invert(15%);
    }

.item-formato-container[b-55jn92oxyp] {
    margin-bottom: 10px;
}
/* /Pages/PaginasInformativas/Index.razor.rz.scp.css */
.fila[b-x9oqkuyuy3] {
    align-items: center;
}
/* /Pages/Pelicula/Index.razor.rz.scp.css */
.contenedor-banner[b-ncgukxzf3l]{
    position:relative;
}
    .btn-cartelera[b-ncgukxzf3l]{
        position:absolute;
        top:0;
        left:0;
        background:none;
        border:none;
    }

div.sticky[b-ncgukxzf3l] {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    z-index:1;
    margin-top:0;
}

.pelicula-container[b-ncgukxzf3l] {
    margin: 0;
}

    .imagen-pelicula[b-ncgukxzf3l] {
        height: 23vh;
        width: 100%;
    }

    .imagen-pelicula-desktop[b-ncgukxzf3l] {
        height: 516px;
        width: 100%;
        display:none;
    }

    .video-pelicula[b-ncgukxzf3l] {
        height: 480px;
        width: 100%;
        display:none;
    }

    .label-estreno[b-ncgukxzf3l] {
        margin: 0;
        background: #d50e37;
    }

    .cabecera-pelicula[b-ncgukxzf3l] {
        padding: 20px 20px 0 40px;
        display: flex;
        justify-content: space-between;
    }

    .nombre-pelicula[b-ncgukxzf3l] {
        align-self:end;
    }

    .sinopsis-pelicula[b-ncgukxzf3l] {
        height: 10vh;
        padding: 0px 0 0 40px;
        margin-bottom: 30px;
        overflow: scroll;
        width:90%;
    }

.formatos-peliculas-container[b-ncgukxzf3l] {
    /* display:flex;
    flex-wrap:wrap;
    justify-content:space-evenly;*/
    justify-content: center;
}
    .item-formato-container[b-ncgukxzf3l]{
        margin-bottom:10px;
    }

.btn-formato[b-ncgukxzf3l] {
    color: whitesmoke;
    background: #d50e37;
    width: 100%;
    border-radius: 60px;
    border: none;
    height:40px;
}
    .btn-formato:hover[b-ncgukxzf3l] {
        background: #251e1fb5;
    }
    .btn-formato:active[b-ncgukxzf3l] {
        background: #251e1fb5;
    }
    .btn-formato-selected[b-ncgukxzf3l] {
        background: #251e1fb5;
    }

.fechas-pelicula-container[b-ncgukxzf3l] {
    overflow: scroll;
    background: purple;
    padding: 10px;
    border-radius:10px;
    margin-bottom:20px;
}

.divBtnScroll[b-ncgukxzf3l] {
    align-self: center;
    cursor: pointer;
    text-align: center;
}

.btnScroll[b-ncgukxzf3l] {
    background: none;
    border: none;
    width:20px;
}

.horarios-peliculas-container[b-ncgukxzf3l] {
    text-align: center;
    padding:30px;
}


@media only screen and (min-width: 1024px) {
    .seccion-peliculas[b-ncgukxzf3l] {
        --columnas-peliculas: var(--columnas-peliculas-desktop);
    }
}

@media only screen and (min-width: 1200px) {
    .contenedor-banner[b-ncgukxzf3l]{
        height:480px;
    }
    .video-pelicula[b-ncgukxzf3l] {
        display:block
    }

    .imagen-pelicula[b-ncgukxzf3l]{
        display:none;
    }

    .imagen-pelicula-desktop[b-ncgukxzf3l]{
        display:block;
    }

    .container[b-ncgukxzf3l]{
        width:1200px;
    }

    .nombre-pelicula[b-ncgukxzf3l]{
        font-size:25px;
    }

    .e-btn.e-flat.e-primary[b-ncgukxzf3l]{
        width:150px;
        font-size:15px;
    }

    .padding-bootom[b-ncgukxzf3l] {
        margin-top: 90px;
    }
}
/* /Pages/Sesion/Login.razor.rz.scp.css */
.container[b-tjelwufuct]{
    display:flex;
    flex-direction:column;
    justify-content:center;
}


.login-container[b-tjelwufuct] {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.row[b-tjelwufuct] {
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
}

.logo-login[b-tjelwufuct] {
    height: auto;
    width: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    max-height: 360px;
    max-width: 360px;
}

[b-tjelwufuct] .borde-error {
    border-color: red !important;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}

.register-section[b-tjelwufuct],
.register-section > a[b-tjelwufuct] {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--color-titulo-principal, white);
}

    .register-section > a[b-tjelwufuct] {
        color: var(--color-titulo-principal, white);
        border-bottom: 1px solid;
    }
.recuperar-contrasena[b-tjelwufuct] {
    color: var(--color-titulo-principal, white);
    text-decoration: underline;
}
.recuperar-contrasena:hover[b-tjelwufuct] {
    cursor:pointer;
}

[b-tjelwufuct] input {
    color: var(--color-parrafo) !important;
}

.dropdown-sucursal[b-tjelwufuct] {
    color: var(--color-parrafo);
    display: flex;
    width: 100%;
    height: 100%;
    padding-left: 8px;
    align-items: center;
}

.label-ciudad[b-tjelwufuct] {
    text-align: left;
    border-right: 1px solid;
    width: 63px;
    margin-right: 7px;
}
/* /Pages/Sesion/RecuperarContrasena.razor.rz.scp.css */
.row[b-q4jkuzxzt2] {
    justify-content: center;
    margin-bottom: 15px;
}
/* /Pages/Sesion/Registro.razor.rz.scp.css */

.col-12[b-o9l0e9h2x7]{
    margin-bottom:10px;
}

.titulo-fecha[b-o9l0e9h2x7] {
    background: var(--color-secundario);
    padding: 1px 0 0 7px;
    border-radius: 5rem;
    width: 100%;
    height: 32px;
    border-color: var(--color-secundario);
}

[b-o9l0e9h2x7] input{
    color: var(--color-parrafo) !important;
}

[b-o9l0e9h2x7] .borde-error {
    border: 5px solid red;
    box-shadow: 0 0 0 4px rgba(247, 13, 13, 0.33) !important;
}
/* /Pages/Venta/Index.razor.rz.scp.css */
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-jzbkjso8f4] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-jzbkjso8f4] {
    flex: 1;
}

.sidebar[b-jzbkjso8f4] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-jzbkjso8f4] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-jzbkjso8f4]  a, .top-row .btn-link[b-jzbkjso8f4] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-jzbkjso8f4] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-jzbkjso8f4] {
        display: none;
    }

    .top-row.auth[b-jzbkjso8f4] {
        justify-content: space-between;
    }

    .top-row a[b-jzbkjso8f4], .top-row .btn-link[b-jzbkjso8f4] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-jzbkjso8f4] {
        flex-direction: row;
    }

    .sidebar[b-jzbkjso8f4] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-jzbkjso8f4] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-jzbkjso8f4], article[b-jzbkjso8f4] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-d3crgj2rkt] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-d3crgj2rkt] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-d3crgj2rkt] {
    font-size: 1.1rem;
}

.oi[b-d3crgj2rkt] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-d3crgj2rkt] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-d3crgj2rkt] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-d3crgj2rkt] {
        padding-bottom: 1rem;
    }

    .nav-item[b-d3crgj2rkt]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-d3crgj2rkt]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-d3crgj2rkt]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-d3crgj2rkt] {
        display: none;
    }

    .collapse[b-d3crgj2rkt] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-d3crgj2rkt] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
