#menuRestaurantComplete{
    width: 87%;
    margin: auto;
    padding-bottom: 15%;
}

.categoryContainer{
    border-bottom :#707070 1px solid;
    padding: 0 2%;
}

.categoryTitle{
    display: flex;
    font-weight: bold;
    font-family: 'Handlee', cursive;
    padding: 5% 0;
    cursor: pointer;
    font-size: 1.3em;
}

.categoryCenterContainer{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.menuCategoryIcon{
    width: 15px;
    height: 15px;
    padding-right: 2%;
}

.menuCategoryArrowIcon{
    width: 12px;
    height: 12px;
}

.platesContainer{
    padding-bottom: 5%;
    font-family: 'Josefin Slab', serif;
    display: none;
}

.plate{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5%;
    line-height : 110%;
}

.platePrice{
    width: 15%;
    text-align: right;
}

#dinnerTitle{
    margin-top: 20%;
}

.plateNameTitle{
    font-family: 'Josefin Slab', serif;
    font-weight: 900;
    font-size: 1em;
    text-decoration: underline;
}

.turnTitle{
    font-family: 'Akaya Telivigala', cursive;
    font-weight: bold;
    margin-bottom: 3%;
    color: rgb(0, 0, 0);
    border-left: rgb(197, 152, 56) 5px solid;
    padding-left: 5px;
    font-size: 1.5em;
}

.platesInformation{
	margin-top: 5%;
  	font-size: 0.8em;
  	text-align: center;
}


/*MEDIAS QUERIES*/

@media (min-width: 600px) {

    #menuRestaurantComplete{
        width: 60%;
    }

    .categoryTitle{
        font-size: 1.7em;
    }

    .menuCategoryIcon{
        width: 20px;
        height: 20px;
    }

    .platesContainer{
        font-size: 1.5em;
    }
  
  	.platesInformation{
  	font-size: 1.2em;
	}
  
  	.turnTitle{
        font-size: 2.3em;
        padding-left: 15px;
        border-left: rgb(197, 152, 56) 8px solid;
    }
  
}