/* CLASES GENERALES */

:root {
    --gris-oscuro: #404142;
    --gris-claro: #888889;
    --blanco: #FFFFFF;
    --fuente-principal: 'Roboto', sans-serif;
    --rojo-apple: #A80E26;
    --amarillo: #C59506;
    --verde: #157347;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    font-family: var(--fuente-principal);
    min-height: 100vh;
    background-color: #f5f7f8;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

a:visited {
    color: var(--blanco);
}

.contenedor {
    width: 95%;
    max-width: 120rem;
    margin: 0 auto;
}

.boton {
    border: none;
    padding: 0;
}

.estilo__boton {
    margin: 1rem 0;
    cursor: pointer;
    color: var(--blanco);
    border-radius: 0.5rem;
    text-transform: uppercase;
    padding: 1rem;
    font-weight: bolder;
    font-size: 1.5rem;
}

figure {
    margin: 0;
}

figure img {
    height: 23rem;
}

figcaption {
    font-size: 1.5rem;
    padding: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/*UTILIDADES*/

.centrar_texto {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

/* HEADER */

.site-header {
    background-color: var(--gris-oscuro);
    height: auto;
    padding: 1.5rem 0;
    text-align: center;
    text-transform: uppercase;
}

/* header */
#mnuFacturacion {
    /* position: absolute; */
    top: 25px;
    right: 25px;
    z-index: 5;
    background: #ab192d;
    padding: 2px 10px;
    font-family: "PT Sans", sans-serif;
    cursor: pointer;
    text-transform: uppercase;
}

.o-icon--user {
    background-image: url(../images/user--alt.svg);
}

/* NAVEGACION */

.site-header img,
.footer img {
    width: auto;
}

.navegacion a,
.icono__carrito {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--blanco);
    display: block;
    margin-right: 1rem;
    font-weight: 600;
}

.navegacion a:last-of-type {
    margin-right: 0;
}

.badge__shop {
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    width: 1.4rem;
    margin-left: -1.3rem;
}

.sidenav {
    height: 100%;
    width: 25rem;
    position: fixed;
    z-index: 100;
    top: 0;
    left: -25rem;
    background-color: var(--gris-oscuro);
    overflow-x: hidden;
    transition: 0.5s;
}

.sidenav .closebtn {
    text-align: right;
    margin-right: 2rem;
    font-size: 3rem;
    right: 2rem;
    color: var(--blanco);
    cursor: pointer;
}

.menu__mobileicons {
    display: flex;
    justify-content: space-between;
}

.hamburger__menu a {
    font-size: 2.2rem;
    text-align: left;
    margin: 1rem 1rem;
    color: var(--blanco);
    cursor: pointer;
}

.icono__carrito__desk {
    display: none;
}


@media (min-width: 768px) {
    .navegacion {
        margin-top: 0rem;
    }

    .site-header {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 2;
        flex-wrap: wrap;
    }

    .navegacion a {
        display: inline;
    }

    .sidenav {
        height: auto;
        width: auto;
        position: static;
    }

    .hamburger__menu {
        display: none;
    }

    .closebtn {
        display: none;
    }

    .icono__carrito__movil {
        display: none;
    }

    .icono__carrito__desk {
        display: block;
    }

    .menu__mobileicons {
        display: none;
    }

    .label1 {
        margin-bottom: 20px;
        text-align-last: right;
    }

    .responsivetres {
        display: flex;
    }

    .leftheader {
        margin-left: 20px;
    }

    .leftheaderneigh {
        margin-top: 30px;
    }
}

/* HERO */

video {
    width: 100%;
}

/* BIENVENIDA */
/* SATISFACCION */

.bienvenida,
.satisfaccion {
    background-image: url("../images/fondo_naranja.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.bienvenida__mensaje,
.satisfaccion__mensaje {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--blanco);
    height: 35rem;
    text-align: center;
    ;
}

/* QUIENES SOMOS */

.quienes {
    background-image: linear-gradient(to bottom, #e8e8e8 0, #f5f5f5 100%);
}

.introduccion {
    padding: 3rem 0;
    color: var(--gris-claro);
}

.introduccion p {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .iconos {
        display: flex;
        justify-content: space-around;
    }
}

.icono {
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blanco);
    font-size: 2rem;
    margin: 1rem auto;
}

.location {
    background-color: #D44934;
}

.forks {
    background-color: #FBB952;
}

.ticket {
    background-color: #C6DB34;
}

/* MENU */

.menu {
    background-image: linear-gradient(to bottom, #E8E8E8 0, #F5F5F5 100%);
    color: var(--gris-claro);
}

@media (min-width:768px) {
    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 2rem;
        justify-content: center;
        align-items: center;
    }
}

.menu__galeria,
.menu__texto {
    padding: 2rem 0;
}

.menu__texto h1 {
    margin: 0;
    font-size: 5rem;
    text-transform: capitalize;
}

.menu__texto p {
    font-size: 2.5rem;
}

.menu__galeria .md_carousel {
    width: auto;
    height: auto;
}

/* ---------------- FOOTER ------------------- */

/* .footer {
    background-color: var(--gris-oscuro);
    color: var(--blanco);
    text-align: center;
    position: sticky;
    top: 100%;
    z-index: 2;

    max-height: 370px;
    overflow-y: auto;
    background-image: url(../images/logo-background-applebees.svg);
    background-repeat: no-repeat;
    background-position: 20px 100px;
    padding-bottom: 4em;
} */

/* .footer img {
    padding: 1rem;
}

.footer p {
    font-size: 1.5rem;
    width: 60%;
    margin: auto;
    padding: 1rem;
}

.avisapriv {
    display: flex;
    color: white;
    text-decoration: underline;
    font-weight: 600;
    justify-content: space-evenly;
    font-size: 1.5rem;
    padding-top: 20px;
}

.avisoclientfooter,
.avisobolsatrabfooter {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--blanco);
    display: block;
    margin-right: 1rem;
    font-weight: 600;
} */

@media(min-width: 1200px) {
    .mdl-layout {
        position: relative;
        min-height: 100%;
        padding-bottom: 385px;
    }

    /* .c-footer {
        position: absolute;
        max-height: auto;
        bottom: 0;
        right: 0;
        left: 0;
    } */
}

.c-footer {
    /* font-family: "Roboto Condensed",sans-serif; */
    color: #fff;
    background-color: #404142;
    font-size: 16px;
    max-height: 370px;
    overflow-y: auto;
    background-image: url(../images/logo-background-applebees.svg);
    background-repeat: no-repeat;
    background-position: 20px 120px;
    background-size: 90%;
    padding-bottom: 4em;
    position: sticky;
    z-index: 2;
}

@media(min-width: 1200px) {
    .c-footer {
        background-size: 22%;
        padding-bottom: 0;
    }
}

.c-footer a,
.c-footer a:hover {
    color: #fff;
    text-decoration: none;
}

.c-footer__heading {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #ccc;
    margin: 36px 0 15px 0;
    padding: 0;
    font-size: 1.5rem;
}

@media(min-width: 1200px) {
    .c-footer__heading {
        margin: 0 0 8px 0;
    }
}

.c-footer__translate {
    display: none;
}

.c-footer__button {
    background: #111;
    border: 0;
    padding: .5em .9em;
    font-size: .8em;
    font-weight: 400;
    min-width: 7.5em;
}

.c-footer__top-section {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    flex-direction: column;
    padding: 10px 0;
    text-align: center;
    display: flex;
}

@media(min-width: 1200px) {
    .c-footer__top-section {
        /* display: flex; */
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 60px;
        text-align: left;
        flex: 1 100%;
        margin: 0 auto;
        max-width: 1280px;
        /* padding-left: 20px;
        padding-right: 20px;
        width: 1240px; */
    }
}

.c-footer__bottom-section {
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
}

@media(min-width: 1200px) {
    .c-footer__bottom-section {
        border-top: 1px solid #646668;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0 60px;
        padding: 10px 0;
        text-align: left;
        flex: 1 100%;
        margin: 0 auto;
        max-width: 1280px;
        padding-left: 60px;
        padding-right: 60px;
        /* width: 1240px; */
    }
}

.c-footer__social {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-ordinal-group: 1;
    width: 100%;
}

.c-footer__social .fa-circle {
    display: none;
}

@media(min-width: 1200px) {
    .c-footer__social {
        order: 2;
        flex: 1 50%;
        display: flex;
        flex-direction: row-reverse;
    }
}

.c-footer__get-app {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-ordinal-group: 2;
    width: 100%;
}

@media(min-width: 1200px) {
    .c-footer__get-app {
        order: 4;
        flex: 1 50%;
        margin-top: 30px;
        display: flex;
        flex-direction: row-reverse;
    }
}

.c-footer__site-nav {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-ordinal-group: 2;
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #646668;
}

@media(min-width: 1200px) {
    .c-footer__site-nav {
        border: none;
        margin: 0;
        padding: 0;
        order: 1;
        flex: 1 40%;
    }
}

.c-footer__contact-support {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    -webkit-box-ordinal-group: 3;
    width: 100%;
}

@media(min-width: 1200px) {
    .c-footer__contact-support {
        flex: 1 50%;
        margin-top: 30px;
        order: 3;
    }
}

.c-footer__policy-nav {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    -webkit-box-ordinal-group: 4;
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #646668;
}

@media(min-width: 1200px) {
    .c-footer__policy-nav {
        border: none;
        margin-top: 0;
        padding-top: 0;
        order: 6;
        flex: 1 50%;
        text-align: right;
    }
}

.c-footer__copyright {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
    -webkit-box-ordinal-group: 5;
    width: 100%;
    /* padding: 20px 15px; */
    text-align: left;
    color: #b0b2b5;
}

.c-footer__copyright li {
    list-style-type: none;
    display: flex;
    flex-flow: wrap;
}

@media(min-width: 1200px) {
    .c-footer__copyright {
        order: 5;
        flex: 1 50%;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.c-footer__link-list--social-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}

.c-footer__link-list--social-nav li {
    margin: 0;
    padding: 0px 10px 0px 0px;
}

.c-footer__link-list--social-nav li i {
    font-size: 1.8em;
}

.c-footer__link-list--social-nav .fa-stack-1x,
.c-footer__link-list--social-nav fa-stack-2x {
    position: static;
    width: auto;
}

@media(min-width: 992px) {
    .c-footer__link-list--social-nav li:last-child {
        margin-right: 0;
    }
}

.c-footer__link-list--site-nav {
    margin: 0 25px;
    list-style-type: none;
    display: flex;
    flex-flow: wrap;
}

.c-footer__link-list--site-nav li {
    margin: .5em;
}

.c-footer__link-list--site-nav li a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .025em;
}

@media(min-width: 1200px) {
    .c-footer__link-list--site-nav {
        text-align: left;
        margin: 0;
    }

    .c-footer__link-list--site-nav li {
        margin: 0;
        padding: 0 8px 15px 0;
    }
}

.c-footer__link-list--contact-nav .c-footer__contact-link {
    border-right: 1px solid #fff;
    padding-right: 1em;
}

.c-footer__link-list--contact-nav li {
    padding: 0 10px 0 0;
    margin: 0;
}

.c-footer__link-list--contact-nav li a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .025em;
}

.c-footer__link-list--app-nav {
    list-style: none;
    display: flex;
}

.c-footer__link-list--app-nav li a {
    display: inline-block;
    overflow: hidden;
    width: 135px;
    height: 40px;
    background-size: contain !important;
    line-height: 0;
    font-size: 0;
    color: transparent;
}

.c-footer__link-list--app-nav li .apple-app-store {
    background: url("../images/badge_ios.svg") no-repeat;
}

.c-footer__link-list--app-nav li .google-play {
    background: url(../images/badge_android.png) no-repeat;
}

.c-footer__contact-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .025em;
}

.c-footer__link-list--corp-nav {
    margin: 0 25px;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.c-footer__link-list--corp-nav li {
    margin: .4em;
    text-transform: uppercase;
    padding: 0px 20px 0px 0px;
}

.c-footer__link-list--corp-nav li a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .025em;
    padding: 18px 0;
}

@media(min-width: 1200px) {
    .c-footer__link-list--corp-nav {
        margin: 0;
    }

    .c-footer__link-list--corp-nav li {
        margin: 0;
    }
}

@media(min-width: 1200px) {
    .c-footer__inner-block {
        flex-basis: 275px;
    }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
    .c-footer {
        background-image: url(/images/logo-background-ab.png);
    }
}

/* ------------- PAGINA MENU ------------------ */

.boton__menu {
    width: 100%;
    background-color: var(--rojo-apple);
    text-align: center;
    color: var(--blanco);
    text-transform: uppercase;
    cursor: pointer;
    font-size: 3rem;
    top: 0;
    z-index: 10;
}

.sticky__container {
    position: sticky;
    top: 0;
    z-index: 1;
    /* justify-self: center; */
    text-align: center;
    padding-left: 30%;
    background-color: #fff;
    transition: top .2s ease-in-out;
}

@media (max-width:768px) {
    .sticky__container {
        padding-left: 0%;
    }
}

.boton__menu {
    padding: 1rem 0;
    margin: 1rem 0;
}

.boton__menu h2 {
    margin: 0;
}

.platillos {
    margin: 1rem 0;
}

.platillos a {
    /* color: var(--gris-oscuro); */
    /* font-size: 1.8rem; */
    text-transform: uppercase;
    font-weight: bold;
}

a.active {
    color: var(--rojo-apple) !important;
}

.platillos a:hover {
    color: var(--rojo-apple) !important;
}

.dropdown {
    display: none;
    overflow: auto;
    z-index: 1;
}

.show {
    display: block;
    right: 0;
    z-index: 10;
    background-color: var(--blanco);
}

.seccion__alimentos {
    margin: 1rem 0;
}

.titulo__alimento {
    background-color: var(--gris-oscuro);
    color: var(--blanco);
    padding: 1rem 0;
    margin: 1rem 0;
    text-transform: uppercase;
}

.grid__alimentos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1rem;
    margin-left: 10px;
}

div.menu__item {
    position: relative;
    border: 1px solid var(--gris-claro);
    background-color: var(--blanco);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.texto__item {
    color: var(--blanco);
    font-size: 1.4rem;
    width: 90%;
    text-align: justify;
    margin: 1rem auto 1rem auto;
}

.overlay {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--gris-oscuro);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div.menu__item:hover .overlay {
    opacity: 0.9;
}

.boton__opcion {
    width: 80%;
    background-color: var(--rojo-apple);
    text-transform: uppercase;
    color: var(--blanco);
    padding: 1rem;
    margin: 0.5rem;
    opacity: 1;
    cursor: pointer;
}

.item__price {
    text-align: right;
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: bold;
    padding: 1rem;
}

@media (min-width:768px) {
    .boton__menu {
        display: none;
    }

    .menu__comida {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 1fr 1fr;
    }

    .categorias {
        display: block;
        position: relative;
    }

    .categorias .fixed {
        position: fixed;
        max-width: 245px;
    }
}

/* sin celular responsive */
.categorias .fixed {
    height: 80%;
    overflow: auto;
}

@media (min-width: 992px) {
    .grid__alimentos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 1rem;
    }
}

/* MODAL WINDOW */

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

.modal__window {
    background-color: var(--gris-oscuro);
    margin: 20rem auto;
    padding: 2rem;
    width: 80%;
}

.modal__image {
    width: 90%;
    margin: 0 auto;
}


.modal__info {
    color: var(--blanco);
    font-size: 1.5rem;
    width: 90%;
    margin: 0 auto;
    text-align: justify;
}

.modal__dish {
    text-transform: uppercase;
}

.modal__info p {
    font-size: 1.8rem;
}

.modal__options,
.suggested {
    margin-top: 4rem;
    color: var(--blanco);
}

.modal__options h2,
.suggested h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.modal__options label {
    font-size: 1.6rem;
    padding: 0 1rem;
}

.container__options p {
    font-size: 1.2rem;
    margin-left: 2.5rem
}

.container__options div {
    padding: 0 1rem;
    text-align: left;
}

.suggested__img {
    width: 25%;
    height: 25%;
}

.suggested__options p {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .modal__flex {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .container__options {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 992px) {

    .modal__image {
        margin: 0 auto;
        text-align: center;
    }

    .modal__image img {
        height: auto;
        width: 70%;
    }
}

.close__modal {
    color: var(--gris-claro);
    display: inline-block;
    padding: 1rem;
    font-weight: bold;
    font-size: 3rem;
    cursor: pointer;
}

.close__modal:hover {
    color: var(--blanco);
}

/* CARRITO */

.pedido h1 {
    text-align: center;
    text-transform: uppercase;
    margin: 2rem 0;
}

.pedido h2 {
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.pedido__item {
    border: 1px solid black;
    padding: 2rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 1rem 0;
    display: flex;
}

.pedido__item h3 {
    margin-left: 1rem;
}

.mapa div {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.cambiar__sucursal {
    background-color: var(--rojo-apple);
    padding: 1rem;
    color: white;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 0.5rem;
    cursor: pointer;
}

.info__contacto,
.forma__pago,
.propina {
    text-transform: uppercase;
    margin: 3rem 0;
}

.icono__tarjeta {
    text-align: center;
}

.item__formulario {
    display: flex;
    flex-direction: column;
}

.item__formulario label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gris-oscuro);
}

.item__formulario input {
    border: 1px solid var(--gris-claro);
    margin: 1rem 0;
    border-radius: .5rem;
    height: 4rem;
}

.item__resumen {
    text-align: center;
}

.contenedor__resumen,
.contenedor__final {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.cantidad__item {
    font-size: 1.5rem;
    font-weight: lighter;
    margin: 0;
}

.cantidad__propina {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item__propina {
    border: 1px solid var(--gris-claro);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem;
    flex: 1;
    cursor: pointer;
}

.item__propina:hover {
    background-color: var(--rojo-apple);
    color: var(--blanco);
    cursor: pointer;
}

.custom__tip {
    width: 100%;
    margin: 2rem auto;
    border-radius: .5rem;
    border: 1px solid var(--gris-claro);
    height: 4rem;
    display: none;
}

.contenedor__final p {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.active__tip {
    background-color: var(--rojo-apple);
    color: var(--blanco);
}

.orden__final {
    background-color: var(--rojo-apple);
    padding: 1rem;
    color: white;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 0.5rem;
    cursor: pointer;
    margin: 2rem 0;
    width: 100%;
}

@media (min-width: 768px) {
    .pedido {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
    }
}

/* PAGINA PEDIDO */

.detalle__pedido {
    margin: 2rem auto;
}

.seccion__pedido {
    width: 95%;
    border: 1px solid var(--gris-claro);
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.seccion__pedido h2 {
    background-color: var(--rojo-apple);
    color: var(--blanco);
    padding: 1rem;
    margin: 1rem;
    text-transform: uppercase;
    font-weight: lighter;
}

.codigo__promocional div {
    margin: 0 auto;
    width: 95%;
    text-align: center;
}

.codigo__promocional div input {
    display: block;
    margin: 0 auto;
    width: 95%;
    height: 3rem;
}

.codigo__promocional div button {
    width: 95%;
    margin: 1rem auto;
    height: 3rem;
    background-color: var(--gris-claro);
    cursor: pointer;
    color: var(--blanco);
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 1.2rem;
}

.selec__tienda {
    width: 95%;
    margin: 0 auto;
}

.selec__tienda div p {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.selec__tienda div button {
    margin: 0.5rem 0;
}

.tu__orden div {
    width: 95%;
    margin: 0 auto;
}

.tu__orden div table {
    width: 100%;
    margin: 0 auto;
    font-size: 1.2rem;
}

.tu__orden div table td {
    text-align: center;
    padding: 1rem;
}

.tu__orden table th {
    border-bottom: 1px solid black;
    padding: 1rem;
}

.table__total {
    background-color: var(--rojo-apple);
    color: var(--blanco);
}

.acciones__orden {
    margin: 0;
}

.acciones__orden button {
    width: 100%;
}

.acciones__carrito .boton:nth-child(1) {
    background-color: var(--rojo-apple);
}

.acciones__carrito .boton:nth-child(2) {
    background-color: var(--amarillo);
}

.entrega button {
    background-color: var(--verde);
}

@media (min-width: 768px) {
    .acciones__orden {
        display: flex;
        justify-content: space-between;
    }

    .acciones__orden button {
        width: auto;
    }

    .codigo__promocional div {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .codigo__promocional div input {
        flex: 2;
    }

    .codigo__promocional div button {
        flex: 1;
        margin-left: 1rem;
    }
}