/* --- Global: layout/fonts.css --- */
/* src/assets/css/layout/fonts.css */

/* Títulos Principales */
@font-face {
    font-family: 'Big Noodle';
    src: url('/src/assets/fonts/big_noodle_titling.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Texto Base */
@font-face {
    font-family: 'Neusa';
    src: url('/src/assets/fonts/NeusaNextPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Texto Negrita */
@font-face {
    font-family: 'Neusa';
    src: url('/src/assets/fonts/NeusaNextPro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('/src/assets/fonts/material-icons.woff2') format('woff2');
}/* --- Global: base.css --- */
@font-face {
    font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

nav,
header,
section,
footer {
    overflow: hidden;
    width: 100%;
    background-position: center top;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Neusa, Helvetica, sans-serif;
}

header,
section,
footer {
    padding: 100px 0;
    position: relative;
}

nav>.contenedor,
header>.contenedor,
section>.contenedor,
div>.contenedor,
footer>.contenedor {
    width: 1200px;
    position: relative;
    max-width: 92%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

nav>.contenedor .titulo,
header>.contenedor .titulo,
section>.contenedor .titulo,
div>.contenedor .titulo,
footer>.contenedor .titulo {
    font-family: Big Noodle, Arial;
}

.btn {
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    transition: background .3s linear;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.negro {
    background: #1a1919;
    color: #ffffff;
}

.btn.blanco {
    color: #1a1919;
    background: #ffffff;
}

.btn.negro:hover {
    background: rgba(26, 25, 25, 0.8);
}

.btn.btn.blanco:hover {
    background: rgba(255, 255, 255, 0.8);
}

input {
    background: none !important;
}

.precio-tachado {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.precio-tachado::after,
.precio-tachado::before {
    content: '';
    height: 2px;
    width: 100%;
    background-color: #ff1616;
    position: absolute;
}

.precio-tachado::after {
    transform: rotate(-12deg);
}

.precio-tachado::before {
    transform: rotate(12deg);
}/* --- Global: layout/menu.css --- */
nav {
    height: 75px;
    background: #1a1919;
    color: #ffffff;
    overflow: visible;
    position: relative;
    z-index: 9999;
}

nav.responsive {
    display: none;
}

nav .contenedor {
    justify-content: space-between;
    flex-direction: row;
}

nav .contenedor .items {
    display: flex;
    align-items: center;
}

nav .contenedor .items .item {
    cursor: pointer;
    padding: 8px;
    transition: all .2s linear;
    border-radius: 6px;
    position: relative;
}

nav .contenedor .items .item>a,
nav .contenedor .items button.item,
nav .contenedor .items .item>span:not(.material-icons) {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Big Noodle, Arial;
    color: #ffffff;
    text-decoration: none;
    background: none;
    border: none;
}

nav .contenedor .items .item#carrito-menu>a .cantidad {
    background: red;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .contenedor .items .item>a>.material-icons,
nav .contenedor .items .item>span>.material-icons {
    font-size: 32px;
    transition: all .2s linear;
}

nav .contenedor .items .item.activo>a>.material-icons {
    transform: rotate(-180deg);
}

nav .contenedor .items .item .desplegable {
    position: absolute;
    top: 57px;
    left: 0;
    width: 270px;
    background: #ffffff;
    border-radius: 5px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
    box-shadow: 0px 6px 15px 0px rgba(12, 29, 90, 0.35);
}

nav .contenedor .items .item .desplegable>div {
    width: 100%;
    height: 30px;
}

nav .contenedor .items .item .desplegable>div>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 5px;
    transition: all .2s linear;
    color: #000000;
}

nav .contenedor .items .item .desplegable>div>a:visited {
    color: #000000;
}

nav .contenedor .items .item .desplegable>div>span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 5px;
    transition: all .2s linear;
    color: #000000;
}

nav .contenedor .items .item .desplegable>div>span:hover {
    background-color: #1a1919;
    color: #ffffff;
}

nav.desktop .contenedor .items .item .desplegable>div a:hover {
    background: #1a1919;
    color: #ffffff;
}

nav.desktop .contenedor .items .item:hover:not(#carrito-menu):not(#logeado-menu):not(#pedido-menu):not(#login-menu) {
    font-weight: 800;
}

nav .contenedor .items .item.logo-menu {
    margin: 0 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .contenedor .items .item.logo-menu>img {
    width: 110px;
    height: 47px;
}

nav .contenedor .items .item#pedido-menu {
    font-size: 22px;
}

nav .contenedor .items.items-derecha .item {
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    font-family: Big Noodle, Arial;
    background: none;
    border: none;
}

nav .contenedor .items .item#login-menu>a {
    color: #ffffff;
    border-radius: 5px;
    padding: 8px 15px;
    border: 2px solid #ffffff;
}

nav .contenedor .items .item#abrir-menu span {
    font-size: 32px;
}

nav .contenedor .items #logeado-menu {
    font-size: 20px;
    cursor: pointer;
    font-family: Neusa, Helvetica, sans-serif;
}

nav .contenedor .items #logeado-menu .desplegable {
    width: 160px;
    right: 0;
    left: auto;
}

nav.responsive .desplegable {
    width: 100%;
    background: #1a1919;
    position: absolute;
    left: 0;
    top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

nav .contenedor .items .item#abrir-menu {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 22px;
    height: 15px;
    padding: 0;
}

nav .contenedor .items .item#abrir-menu .linea {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all .3s linear;
    border-radius: 2px;
}

nav .contenedor .items .item#abrir-menu.activo .linea-1 {
    transform: translateY(7px) rotate(45deg);
}

nav .contenedor .items .item#abrir-menu.activo .linea-2 {
    opacity: 0;
}

nav .contenedor .items .item#abrir-menu.activo .linea-3 {
    transform: translateY(-6px) rotate(-45deg);
}

nav.responsive .desplegable .items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

nav.responsive .desplegable .items .item {
    font-size: 20px;
}

nav .contenedor .items .item>span {
    position: relative;
}

nav .contenedor .items .item>span .triangulo {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 5px 10px 5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    bottom: -17px;
    opacity: 0;
    transition: all .3s linear;
}

nav .contenedor .items .item.activo>span .triangulo {
    opacity: 1;
}

nav.responsive .contenedor .items .item#pedido-menu>span {
    position: relative;
    left: 15px;
}

nav.responsive .contenedor .items .item>a>.material-icons {
    font-size: 28px;
}

@media (max-width: 980px) {
    nav.desktop {
        display: none;
    }

    nav.responsive {
        display: flex;
    }

    nav .contenedor .items .item>a>.material-icons,
    nav .contenedor .items .item>span>.material-icons {
        font-size: 20px;
    }

    nav .contenedor .items .item#pedido-menu {
        margin-right: 20px;
    }

    nav .contenedor .items .item#pedido-menu {
        font-size: 20px;
    }

    nav .contenedor .items .item.logo-menu {
        margin: 0;
    }

    nav .contenedor .items .item .desplegable {
        top: 45px;
    }

    nav .contenedor .items .item .desplegable a {
        font-family: Neusa, Helvetica, sans-serif;
    }

    nav .contenedor .items .item#login-menu {
        padding: 0;
        margin-right: 20px;
    }

    nav .contenedor .items .item#login-menu>a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    nav .contenedor .items .item.logo-menu>img {
        width: 65px;
        height: 28px;
        padding: 0;
    }

    nav .contenedor .items .item#pedido-menu {
        font-size: 18px;
    }

    nav .contenedor .items #logeado-menu {
        font-size: 18px;
    }

    nav .contenedor .items .item>a>.material-icons,
    nav .contenedor .items .item>span>.material-icons {
        font-size: 16px;
    }

    nav .contenedor .items.items-derecha .item {
        padding: 0;
    }

    nav .contenedor .items .item#logeado-menu {
        margin-right: 10px;
    }

    nav .contenedor .items .item .desplegable {
        top: 34px;
        left: -75px;
    }

    nav .contenedor .items .item#login-menu>a {
        font-size: 18px;
    }
}/* --- Global: layout/footer.css --- */
footer {
    background: #1a1919;
    color: #ffffff;
    padding: 50px 0 0 0;
}

footer .contenedor .items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

footer .contenedor .items .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 30px 40px;
}

footer .contenedor .items .item .titulo {
    font-size: 30px;
    margin-bottom: 30px;
}

footer .contenedor .items .item .items-secundario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

footer .contenedor .items .item .items-secundario .item-secundario {
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    margin-bottom: 8px;
}

footer .contenedor .items .item .items-secundario .item-secundario a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
}

footer .contenedor .items .item#redes-sociales .items-secundario .item-secundario img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
}

footer .contenedor .cont-logo-footer {
    width: 100%;
    height: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer .contenedor .cont-logo-footer .logo-footer a {
    font-size: 40px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Big Noodle';
    user-select: none;
}

footer .contenedor .cont-logo-footer .copyrigth {
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    footer .contenedor .cont-logo-footer {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 20px 0;
    }

    footer .contenedor .cont-logo-footer .logo-footer {
        margin-bottom: 30px;
    }
}

@media (max-width: 550px) {
    footer .contenedor .items {
        flex-direction: column;
        align-items: center;
    }

    footer .contenedor .items .item {
        align-items: center;
        margin: 30px 0;
    }

    footer .contenedor .items .item .items-secundario {
        align-items: center;
    }

    footer .contenedor .items .item .items-secundario .item-secundario {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}/* --- Global: layout/spinners.css --- */
.spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
    top: 0;
    left: 0;
}

.spinner.activo {
    display: flex;
}

.spinner::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid #000000;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 250px;
    transform: rotate(0deg);
    animation: spinner .8s ease-in-out infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}/* --- Global: layout/modals.css --- */
div.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(26, 25, 25, 0.8);
    z-index: 999999;
}

div.modal .contenedor-modal {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    max-height: 100vh;
}

div.modal .contenedor-modal .titulo-modal {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 35px;
    font-family: Big Noodle, Arial;
}

div.modal .contenedor-modal .contenido-modal {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

div.modal .contenedor-modal .cerrar {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}/* --- Page: login.css --- */
section#formulario {
    background-color: #000000;
    margin: 50px 0;
}

section#formulario .contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

section#formulario .contenedor .formulario {
    width: 530px;
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

section#formulario .contenedor .formulario .titulo {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

section#formulario .contenedor .formulario .bajada {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 30px;
}

section#formulario .contenedor .formulario.registro .bajada {
    margin-bottom: 20px;
}

section#formulario .contenedor .formulario .cont-inpus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 350px;
    max-width: 100%;
    margin-bottom: 8px;
}

section#formulario .contenedor .formulario .cont-inpus .cont-input {
    width: 100%;
    position: relative;
}

section#formulario .contenedor .formulario .cont-inpus .cont-input input,
section#formulario .contenedor .formulario .cont-inpus .cont-input select {
    width: 100%;
    height: 40px;
    font-size: 18px;
    border: 1px solid #000000;
    border-radius: 5px;
    background-color: #ffffff !important;
    margin-bottom: 10px;
    position: relative;
    box-sizing: border-box;
    padding-left: 10px;
}

section#formulario .contenedor .formulario .cont-inpus .cont-input input:-webkit-autofill {
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    box-shadow: 0 0 0px 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

section#formulario .contenedor .formulario .cont-inpus .cont-input select {
    color: #9c9c9c;
    font-family: Neusa, Helvetica, sans-serif;
}

section#formulario .contenedor .formulario .cont-inpus .cont-input option {
    color: #333333;
}

section#formulario .contenedor .formulario .cont-inpus .cont-input .placeholder {
    position: absolute;
    font-size: 16px;
    top: 13px;
    left: 12px;
    padding: 0;
    transition: all .2s linear;
    color: #9c9c9c;
    background-color: #ffffff;
}

section#formulario .contenedor .formulario .cont-inpus .cont-input.activo .placeholder {
    font-size: 12px;
    background: #000000;
    border-radius: 10px;
    top: -6px;
    color: #ffffff;
    padding: 2px 8px;
}

section#formulario .contenedor .formulario .cont-inpus .error {
    display: none;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    color: #dc4437;
    font-size: 14px;
}

section#formulario .contenedor .formulario .cont-recordame {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 20px;
}

section#formulario .contenedor .formulario .cont-recordame input {
    cursor: pointer;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

section#formulario .contenedor .formulario .btn.negro {
    width: 350px;
    box-sizing: border-box;
    margin-bottom: 10px;
    max-width: 100%;
}

section#formulario .contenedor .formulario.registro .btn.negro {
    margin: 20px 0 0 0;
}

section#formulario .contenedor .formulario .link {
    font-size: 16px;
    color: #0099ff;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 20px;
}

section#formulario .contenedor .formulario .link:hover {
    text-decoration: underline;
}

section#formulario .contenedor .formulario .cont-ver-login {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    section#formulario {
        padding: 30px 0;
    }
}

@media (max-width: 425px) {
    section#formulario .contenedor .formulario {
        padding: 25px;
    }
}