.image{
	max-width: 350px;
	width: 100%;
}

h2{
	color: #b1b1b1;
}

.container{
	text-align: center;
	padding-top: 10px;
}

.form{
	max-width: 500px;
    margin: auto;
	border: 1px solid #ccc;
	padding: 0px 40px 40px 40px;
	border-radius: 10px;
}

.form input, .form select{
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	color: #333;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.form input:focus, .form select:focus{
	outline: none;
    border-color: #267e54;
    box-shadow: 0 0 1px #2c9362;
}

.form input[type="submit"]{
	cursor: pointer;
	margin-bottom: 0px;
	border: none;
	border-radius: 15px;
	background-color: #f5f5f5;
	background-image: url(../images/pizza.png);
    background-repeat: no-repeat;
    background-position: 35% center;
    background-size: 50px;
    padding: 20px;
	font-weight: 600;
}

.form input[type="submit"]:hover{
	background-color: #1f79bc;
	color: white;
}

.pizza{
	display: flex;
}

.pizza select{
	cursor: pointer;
	flex: 3;
}

.pizza input{
	flex: 1;
}

.total{
	text-align: right;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.template{
	display: none;
}

.footer{
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid #ccc;
}

.row{
	display: flex;
	justify-content: space-between;
	padding: 10px;
	align-items: center;
}

.pizza-data{
	display: flex;
    align-items: center;
}
.pizza-img{
	width: 50px;
	height: 50px;
	background-position: center center;
	background-size: cover;
}
.pizza-name{
	padding-left: 15px;
}