﻿.allergenContainer {
    z-index:2;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    padding:56px;
    
}
.allergenWrapper {
    position: relative;
    border-radius: 16px;
    background-color: white;
    padding: 56px 32px;
}
.closeAllergenPopup{
    position:absolute;
    top:40px;
    right:40px;
    cursor:pointer;
}
.allergenWarning {
    text-align: center;
    margin-bottom:48px;
}
    .allergenWarning p {
        font-size: 32px;
    }
.allergenWarning img{
    margin:auto;
}
    .allergenWarning p:first-of-type {
        font-weight:600;
        margin-top: 16px;
        margin-bottom: 24px;
    }
.allergenWarningText{
    max-width:628px;
    margin:auto;
}
.allergenFoods {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.allergenFood {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width:768px){

    .allergenFoods {
        gap: 12px;
    }
    .allergenFood {
        max-width: 70px;
        font-size: 14px;
    }
    .allergenWarning p {
        font-size: 20px;
    }
    .closeAllergenPopup{
        max-width:50px;
    }
}
@media screen and (max-width:576px){
    .allergenFood {
        max-width: 60px;
        font-size: 10px;
    }
    .closeAllergenPopup {
        max-width: 40px;
        top:25px;
        right:25px;
    }
    .allergenWarning p {
        font-size: 16px;
    }
    .allergenWrapper {
        padding: 32px 20px;
    }
    .allergenWarning img {
        max-width: 32px;
    }
    .allergenWarning{
        margin-bottom:30px;
    }
        .allergenWarning p:first-of-type {
            margin-top: 10px;
            margin-bottom: 10px;
        }
}
@media screen and (max-width:475px){
    .allergenFood {
        max-width: 40px;
        min-width: 40px;
        font-size: 8px;
    }
    .closeAllergenPopup {
        max-width: 40px;
        top:25px;
        right:25px;
    }
    .allergenWarning p {
        font-size: 14px;
    }
    .allergenWrapper {
        padding: 32px 20px;
    }
    .allergenWarning img {
        max-width: 32px;
    }
    .allergenWarning{
        margin-bottom:30px;
    }
        .allergenWarning p:first-of-type {
            margin-top: 10px;
            margin-bottom: 10px;
        }
}