html, body {
	height: 100%;
	margin: 0;
	font-family: "mr-eaves-sans", sans-serif;
}

#contact_information {
	width: 60%;
	height: 100%;
	float: left;
	margin: 0;
	background-color: white;
	box-sizing: border-box;
	padding: 60px;
}

#order_summary {
	width: 40%;
	float: left;
	margin: 0;
	background-color: #f3f3f3;
	box-sizing: border-box;
	padding: 60px;
	border-left: 2px solid grey;
}

img {
	width: 200px;
    margin-top: -30px;
}

input {
	border-radius: 10px;
    border: 1px solid #cacaca;
    padding-left: 14px;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    font-size: 14px;
    margin-bottom: 14px;
}

button {
	border: none;
    width: 100%;
    height: 40px;
    background-color: #e75002;
    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 50px;
}

p {
	float: left;
    font-family: sans-serif;
    font-size: 15px;
    color: #7d7d7d;
    text-align: justify;
}

h2 {
    margin-bottom: 20px;
    margin-top: 70px;
}

.checkbox {
	float: left;
	width: 30px;
}

.leftbox {
	width: 48%;
}

.rightbox {
	width: 48%;
	float: right;
}












.product {
	background-color: white;
	width: 100px;
	height: 100px;
	border-radius: 10px;
    border: 1px solid #dadada;
    float: left;
    margin-right: 20px;
    vertical-align: middle;
    text-align: center;
}

.productimg1 {
	width: 100px;
	margin-top: 22px;
}

.productimg2 {
	width: 80px;
    margin-top: 28px;
}

#conditions {
	background-color: white;
    box-sizing: border-box;
    padding: 20px;
    margin-top: 280px;
    border-radius: 5px;
    padding-top: 0px;
    margin-bottom: 50px;
}

#conditions ul {
	font-family: sans-serif;
	color: grey;
	font-size: 13px;
}

#conditions ul li{
	margin-top: 10px;
}

#conditions h1 {
	padding-top: 10px;
}

#plus {
	font-size: 30px;
    margin-left: -10px;
    margin-right: 10px;
}

.description {
	width: 100%;
}

#productprice {
    font-family: "Alwyn New", sans-serif;
    color: black;
    font-size: 20px;
    margin-top: -5px;
    margin-bottom: 10px;
    float: right;
}

.prices {
    width: 100%;
    text-align: right;
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 14px;
}

.total {
	font-size: 20px;
    color: black;
    margin-bottom: 5px;
    margin-top: 30px;
}

.preorder {
	color: green;
    font-weight: 600;
}


@media only screen and (max-width: 1000px) {
	#contact_information {
		width: 100%;
		height: auto;
	}

	#order_summary {
		width: 100%;
		border-left: none;
		border-top: 2px solid grey;
	}
}