@font-face {
    font-family: "Myriad";
    src: url("assets/font/MyriadPro-Regular.otf");
}
@font-face {
    font-family: "Myriad Bold";
    src: url("assets/font/MyriadPro-Bold.otf");
}
@font-face {
    font-family: "Myriad Light";
    src: url("assets/font/MyriadPro-Light.otf");
}
*{
    font-family: "Myriad", sans-serif;
    padding: 0;
    margin: 0;
}
main{
    width: 100%;
    text-align: center;
}
.container{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
#order{
    width: 400px;
    max-width: 80%;
}
h1{
    color: #eb008c;
    font-family: "Myriad Light", sans-serif;
    font-size: 1.5rem;
    max-width: 90%;
    margin: 0.5rem auto;
}
section{
    border: 1px solid #eb008c;
    border-radius: 30px;
    position: relative;
    padding: 3rem 10%;
    margin: 3rem 0 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contactless{
    margin-bottom: 1rem;
}
h2{
    position: absolute;
    background: white;
    text-transform: uppercase;
    font-family: "Myriad Bold", sans-serif;
    font-size: 1.2rem;
    padding: 0 1rem;
    max-width: 77%;
}
.pickup h2{
    top: -8%;
}
@media (min-width: 372px) {
    .pickup h2{
        top: -5% !important;
    }
}
@media (min-width: 570px) {
    .pickup h2{
        top: -3% !important;
    }
}
.delivery h2{
    top: -5%;
}
@media (min-width: 353px) {
    .delivery h2{
        top: -3% !important;
    }
}
@media (min-width: 485px) {
    .delivery h2{
        top: -1.5% !important;
    }
}
.contactless h2{
    top: -5%;
}
@media (min-width: 449px) {
    .contactless h2{
        top: -4% !important;
    }
}
@media (min-width: 453px) {
    .contactless h2{
        top: -3% !important;
    }
}
.heading{
    border-top: 1px solid black;
    width: 100%;
    margin: 5% 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h3{
    font-family: "Myriad Bold", sans-serif;
    color: #eb008c;
    text-transform: uppercase;
    position: absolute;
    background: white;
    padding: 0.2rem 1rem;
    font-size: 1rem;
    top: -11px;
}
h3 span{
    text-transform: lowercase;
}
img.icon{
    width: 50px;
    margin: 1.5rem 0 0.7rem;
}
p span{
    font-family: "Myriad Bold", sans-serif;
    color: #eb008c;
}
div.express-container{
    border-top: 1px solid black;
    width: 100%;
    margin: 3.5rem 0 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
div.express{
    width: 100%;
    position: absolute;
    top: -1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.express p{
    font-family: "Myriad Bold", sans-serif;
    color: #eb008c;
    text-transform: uppercase;
    background: white;
    padding-left: 1rem;
}
div.express img{
    height: 2rem;
    display: block;
    background: white;
    padding: 0 1rem 0.5rem;
}
p.info{
    font-size: 0.7rem;
}
table{
    width: 100%;
    border: 1px solid #eb008c;
    border-radius: 30px;
    margin: 3rem 0;
    border-spacing: 0;
    overflow: hidden;
    font-size: 0.9rem;
    border-collapse: unset;
}
th{
    font-family: "Myriad Bold", sans-serif;
}
th, td{
    padding: 0.5rem;
    border: 1px solid #dbdbdb;
    text-align: center;
}
td.bold{
    border-right: none;
    font-family: "Myriad Bold", sans-serif;
}
td.empty{
    border-left: none;
}
@media (min-width: 769px) {
    div.flex-lg{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    div.box{
        width: 30%;
        padding: 0 1rem;
    }
    .pickup .box p, .contactless .box p{
        height: 6rem;
    }
    .delivery .box p{
        height: 4rem;
    }
}