@charset "utf-8";
/* CSS Document */
body{
	margin: 0;
	padding: 30px;
}
.Breadcrumb {
	font-size: 1rem;
	font-weight: 400;
}
.Breadcrumb p{
	display: inline;
}
.Breadcrumb a{
	font-size: 1rem;
	font-weight: 400;
	color: #1c75bc;
}
.Grid2{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 20px;
	border: 1px solid grey;
	border-radius: 12px;
	padding: 20px;
}
.Grid2Options{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 2rem;
	grid-row-gap: 2rem;
	border: 1px solid grey;
	border-radius: 12px;
	padding: 2rem;
}
.Grid2Options h5{
	color: #000;
}
.GridRight{
	border: 1px solid grey;
	border-radius: 8px;
	text-align: center;
	padding-bottom: 20px;
}
.GridRight:hover{
	transition: 0.2s ease-in;
  	transform: translateY(-3px);
  	box-shadow: 0px 45px 60px 0px rgba(0, 0, 0, 0.087);
}
.GridLeft{
	border: 1px solid grey;
	border-radius: 8px;
	text-align: center;
	padding-bottom: 20px;
}
.GridLeft:hover{
	transition: 0.2s ease-in;
  	transform: translateY(-3px);
  	box-shadow: 0px 45px 60px 0px rgba(0, 0, 0, 0.087);1
}
.Left{
	border: 1px solid grey;
	border-radius: 8px;
	text-align: center;
	padding-bottom: 20px;
}
.Left img{
	float: right;
	padding-top: 30px;
	width: 50%;
}
.Right{
	border: 1px solid grey;
	border-radius: 8px;
	text-align: center;
	padding-bottom: 20px;
}
.Right img{
	float: right;
	padding-top: 30px;
	width: 50%;
}
.Left .CalcInputs{
	float: left;
	text-align: left;
}

.Left input{
	margin-left: 20px;
	width: 300px;
	height: 24px;
	border: 1px solid grey;
	border-radius: 6px;
}
.Left p{
	margin-left: 20px;
	font-size: .7rem;
}
.CalcOutput{
	float: left;
	text-align: left;
	padding-left: 20px;
}
.CalcOutput h3{
	font-weight: 600;
	font-size: 1.2rem;
	color: #1c75bc;
}
.CalcInputs button{
	border: none;
	background: none;
	color: #1c75bc;
	font-weight: 600;
}
.Calculate{
	text-align: center;
	margin-top: 20px;
	width: 100px;
	margin-left: auto;
	margin-right: auto;
	border: 3px solid #1c75bc;
	border-radius: 50px;
	padding: 0 0 6px 0;
}
.Calculate button{
		cursor: pointer;
}
.Download button{
	border: none;
	background: none;
	color: #1c75bc;
	font-weight: 600;
	cursor: pointer;
}
.Download{
	float: right;
	text-align: center;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
	border: 3px solid orangered;
	border-radius: 50px;
	padding: 0 0 6px 0;
}
.CustomerWrap{
	border: 1px solid grey;
	border-radius: 12px;
	padding: 0 0 0 10px;
	margin-bottom: 20px;
}
.Customer{
	width: 50%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 20px;
	padding-bottom: 30px;	
}
.Date p{
	float: right;
	margin-top: 100px;
	font-size: .8rem;
}
.Customer input{
	margin-left: 20px;
	margin-right: 20px!important;
	margin-bottom: 6px!important;
	width: 300px;
	height: 24px;
	border: 1px solid grey;
	border-radius: 6px;
}
.Choose img{
	width: 60%;
}
@media only screen and (max-width: 1000px) {
.Grid2{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 20px;
	border: 1px solid grey;
	border-radius: 12px;
	padding: 20px;
}
	
	
}
@media only screen and (max-width: 800px) {
.Grid2Options{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 20px;
	border: 1px solid grey;
	border-radius: 12px;
	padding: 20px;
}
.Customer{
	width: 90%;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-column-gap: 20px;
	padding-bottom: 30px;	
}	
.Customer input{
	margin-left: 20px;
	margin-right: 20px!important;
	margin-bottom: 6px!important;
	width: 100%;
	height: 24px;
	border: 1px solid grey;
	border-radius: 6px;
}	
}


















