/* CSS Document */

button.accordion {
    background-color: #d9edf6;
    color: #67869a;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

button.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2212";
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
	
	
	* {
    box-sizing: border-box;
}

.columns {
    float: left;
    width: 33.3%;
    padding: 8px;
}

.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

.price .header {
    background-color: #111;
    color: white;
    font-size: 25px;
}

.price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

.price .grey {
    background-color: #eee;
    font-size: 20px;
}

.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}
	
	.container1 {
    border: 2px solid #ccc;
    background-color: #fff;
    border-radius: 5px;
    padding: 16px;
    margin: 16px 0;
}

/* Clear floats after containers */
.container1::after {
    content: "";
    clear: both;
    display: table;
}

/* Float images inside the container to the left. Add a right margin, and style the image as a circle */
.container1 img {
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}

/* Increase the font-size of a span element */
.container1 span {
    font-size: 20px;
    margin-right: 15px;
}

#about {
		text-align: justify; 
		line-height: 3em;
		   
}

#dunnoAccount {
	color:black;
    margin-left: -205px;
}

#dishName{
	font-size: 120%;
	font-weight: bold;
	text-color: gray;
}
	
	
/* Add media queries for responsiveness. This will center both the text and the image inside the container */
@media (max-width: 780px) {
  .container1 {
    text-align: center;
  }

  .container1 img{
    margin: auto;
    float: none;
    display: block;
  }
	
	#about{
		text-align: center; 
		   width: 90%;
    padding: 5px;
    margin-left: 20px;
		
	}	
	 #forma {
        text-align: left;
        
        padding: 10px;
        margin-left: 15px;
        
    }
	
	#cart{
		width: 70%;
		font-size: 90%;
		 padding: 4px;
    margin-left: 12px;
		
	}
	
	#menuName{
		width: 100%;
		font-size: 100%;
	}
	
	#totals{
		display: block;
        width: 65%;
        text-align: right ;
        font-size: 100%;
		background-color: lightgoldenrodyellow;
		padding-bottom: 5px;
		margin-left: 7px;
	}
	#tax, #HID{
		display: none;
	}
	#shop{ 
		display: block ;
        font-size: 80%;
		width: 90%;
		margin-left: 5px;
	}
	#foot {
		display: block ;
        font-size: 85%;
		width: 82%;
		margin-left: 35px;
	}
}



