/*
RESOLUCIÓN TABLETS

Indicada => 1920 x 1280
Real     => 1320 x 780
*/

@font-face{
    font-family: Roboto;
    src: url(../fonts/RobotoCondensed-Regular.ttf);
}
@font-face{
    font-family: CuteZealand;
    src: url(../fonts/Cute\ Zealand.otf);
}
@font-face{
    font-family: PTSerifBold;
    src: url(../fonts/pt-serif.bold.ttf);
}
@font-face{
    font-family: RobotoThin;
    src: url(../fonts/roboto.thin.ttf);
}
@font-face{
    font-family: TradeGothic;
    src: url(../fonts/TradeGothicLTCondensedNo.18.ttf);
}


html{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}


#banner_container{
    width: 100%;
    height: 25vh;
}

#title{
    font-size: 8vw;
    font-family: Roboto;
    text-align: center;
    margin: 6vh 0 3vh 0;
    transition: opacity 1s ease-in-out;
}

#dishes_container{
    width: 76vw;
    padding: 0 12vw;
}
#dishes_container hr{
    width: 100%;
    height: 3px;
    color: #909090;
    background: #909090;
    border: none;
    margin: 4vh 0 3vh 0;
}
#dish_name_container{
    height: 17vh;
    font-family: CuteZealand;
    font-size: 5vw;
    color: #909090;
    padding: 0 9vw;
    text-align: center;
}
#dish_name{
    position: relative;
    top: 50%;
    transform: translate(0vw, -50%);
    transition: opacity .5s ease-in-out;
}
#dish_ingredients{
    font-family: PTSerifBold;
    font-size: 3vw;
    text-align: center;
    padding: 0 1vw;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    transition: opacity .5s ease-in-out;
}

#info_container{
    position: absolute;
    left: 0;
    bottom: 5vh;
    width: 88vw;
    padding: 0 6vw;
    display: inline-flex;
    font-family: Roboto;
    text-align: center;
}

#kcal_container{ width: 40%; }
#kcal_title, #allergens_title{
    font-family: RobotoThin;
    font-size: 2.3vw;
    border-bottom: 1px solid #909090;
    padding-bottom: 1vh;
}
#kcal_circle{
    font-family: RobotoThin;
    width: 14vw;
    height: 14vw;
    margin: 2vh auto 0 auto;
    border: 1px solid #000000;
    border-radius: 50%;
}
#kcal_numkcal{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
#kcal_circle #kcal_num{
    font-family: RobotoThin;
    display: block;
    font-size: 5vw;
}
#kcal_num{ transition: opacity .5s ease-in-out; }
#kcal_circle #kcal_kcal{ font-size: 2.5vw; }

#allergens_container{
    width: 56%;
    margin-left: 4%;
}
#allergens_images{
    margin-top: 2vh;
    display: inline-grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 1vw;
    justify-items: center;
    align-items: center;
    align-content: space-evenly;
    transition: opacity .5s ease-in-out;
}
#allergens_images img{
    width: 5.8vw;
    height: auto;
}




#noDataVideo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
