* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url(img/background-ladrillos.jpg);
    background-size: cover;
    font-family: 'Poppins', sans-serif;
}

header {
    width: 100%;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8em 0;
    justify-content: space-between;
    padding: 10px 50px;
}

header > p {
    font-size: 1.2em;
    font-weight: bold;
}

header > img {
    width: 150px;
}

header > button {
    padding: 10px 12px;
    background-color: #515151;
    color: #fff;
    border: none;
    border-radius: 3px;
    outline: #000 2px solid;
}

header > button:hover {
    cursor: pointer;
}

header + nav {
    width: 95%;
    background-color: rgba(240, 240, 240, 0.9);
    padding: 1em 2em;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: 10px;
    margin: auto;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

header + nav a {
    text-decoration: none;
    color: #000;
    margin: 0px 10px;
    text-wrap: nowrap;
}

#horario_desde, #horario_hasta {
    font-weight: bold;
}

header + nav > a:first-child {
    text-decoration: underline;
}


header + nav + div > h2 {
    margin: 0;
    font-size: clamp(1rem, 7vw, 3rem);
    text-align: center;
}

h2 + div > section {
    width: 95%;
    margin: auto;
    background-color: rgba(240, 240, 240, 0.9);
    padding: 1em 0;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: 10px;
}

h2 + div > section > article {
    width: 40%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

h2 + div > section > article > p:first-child {
    width: 100%;
    height: 80px;
    padding: 10px 0px;
    font-size: 1.5em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    background-color: rgb(220, 220, 220);
    outline: 4px solid rgb(120, 120, 120);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 + div > section > article > p:first-child#nombre-bocadillo-frio {
    outline-color: #5dade2;
}
h2 + div > section > article > p:first-child#nombre-bocadillo-caliente {
    outline-color: #ec7063;
}
h2 + div > section > article > p:first-child:hover {
    cursor: pointer;
}

h2 + div > section > article > p + p {
    width: 100%;

    font-size: 1.1em;
    margin: 0;
    text-align: justify;
}

h2 + div > section > article > h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

h2 + div > section > article > ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

h2 + div > section > article > ul > li {
    display: flex;
    align-items: center;
    margin: 0px 30px 10px 0px;
}

h2 + div > section > article > ul > li > img{
    margin-right: 5px;
}

h2 + div > section > article > ul > li > p{
    margin: 0;
}

h2 + div > section {
    width: 95%;
    margin: auto;
    background-color: rgba(240, 240, 240, 0.9);
    margin-top: 10px;
    padding: 1em 3em;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

h2 + div > section > p {
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 600;
    flex-grow: 1;
}

h2 + div > section > button {
    margin-right: 10px;
    padding: 10px;
    font-weight: 500;
    border: none;
    background-color: #e5e5e5;
    border-radius: 2px;
    cursor: pointer;
}

h2 + div > section > p + button {
    color: #f00;
    outline: 2px solid #f00;
}

h2 + div > section > button#confirmar-seleccion {
    color: #fff;
    background-color: #009b00;
    outline: 2px solid #009b00;
}

h2 + div > section > button#modificar-seleccion {
    color: #fff;
    background-color: #EDB232;
    outline: 2px solid #d5a02c;
}

h2 + div > section > button#cancelar-seleccion{
    color: #e96a6a;
    background-color: #f5f5f5;
    outline: 2px solid #ff0000;
}

.no-mostrar {
    display: none;
}

.bloqueado {
    pointer-events: none;
}

.desbloqueado {
    pointer-events: initial;
}

.pedido {
    background-color: lightgray;
}