/*TODO: Move this into Custom SCSS/Webpack builder*/

.custom-calculator {
	background: #EEEEEE;
	padding: 8px 20px 30px;
}

.custom-estimate-price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold
}

.custom-calculator h3 {
	margin-bottom: 20px;
	margin-top: 10px;
}

.custom-calculator input[type=number] {
	margin-bottom: 0;
	width: 150px;
	height: 40px;
	background: white;
	width: 110px;
}

.custom-calculator button[type=submit] {
	max-width: 400px;
	width: 100%;
	border: 1px solid #284f77;
	color: #284f77;
	text-align: center;
	height: 40px;
	margin-bottom: 0;
	cursor: pointer;
}

.custom-calculator button[type=submit] span {
	margin-right: 14px;
}

.table--striped tbody > tr:nth-child(even) > td {
	background-color: #f6f6f6;
}

.table--striped tbody > tr:nth-child(odd) > td {
	background-color: #e4e4e4;
}

table th, table td {
	padding: 0.6rem;
	border-top: 1px solid #d3d3d3;
}

.shipping-description {
	font-size: 12px;
	color: #a8a8a8;
}

.cart-notification-container {
	z-index: 2000;
	right: 2vw !important;
	top: 10vh !important;
}

@media screen and (max-width: 500px) {
	.custom-estimate-price {
		flex-wrap: wrap;
	}

	.custom-calculator input[type=number] {
		max-width: 100%;
		margin-bottom: 20px;
		width: 50%;
	}

	.custom-estimate-price > span {
		margin-bottom: 20px;
	}
}
