.pedidos_container {
    width: 100%;
    margin: 2rem auto;
    margin-top: 6rem;
}

.ped_stand_header {
    width: 100%;
    background: linear-gradient(to bottom, #ccae62, #eee);
    padding: 2rem;
    display: flex;
    justify-content: space-around;
}

.ped_stand_header button {
    background: transparent;
    border: 1px solid #ccae62;
    cursor: pointer;
    padding: 0 .5rem;
    border-radius: 1rem;
    box-shadow: 0 0 .3rem #666;
    transition: all .5s;
}

.ped_stand_header button:hover {
    box-shadow: 0 0 .1rem #555;
}

.ped_sede {
    margin-bottom: 4rem;
}

.ped_sede_img {
    width: 90%;
    margin: 0 auto 2rem;
    padding: 2rem 4rem;
    font-size: 6rem;
    color: #eee;
    border-radius: 1rem;
    box-shadow: 0 0 2rem #555;
    text-shadow: 0 0 .1rem #000, 0 0 .1rem #000, 0 0 .1rem #000;
}

.ped_dpto_container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
}

.ped_dpto_container a {
    width: 95%;
    border: 1px solid #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: .5rem;
    box-shadow: 0 0 .5rem #888;
    padding-top: 1rem;
    transition: all .5s;
    justify-content: space-between;
    background: #fff;
    margin-bottom: 1.5rem;
}

.ped_dpto_container img {
    max-width: 90%;
    max-height: 12rem;
}

.ped_mat_colums {
    display: flex;
    width: 90%;
    margin: auto;
    justify-content: space-between;
}

.ped_mat_container {
    width: 60%;
}

.ped_preview_container {
    width: 35%;
    margin-right: 0px;
}

.ped_mat_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.ped_material {
    display: grid;
    width: 200px;
    height: 300px;
    background-color: #fff;
    padding: .5rem;
    border-radius: .3rem;
    margin: 1rem .5rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(7, 1fr);
}

.ped_material_tittle {
    grid-column: 1 / 4;
    margin: auto;
}

.ped_material_imagen {
    grid-column: 1 / 4;
    max-width: 100%;
    height: auto;
}