/* TEMPLATE */

html {
	position: relative;
	min-height: 100%;
}

a {
	text-decoration: none;
}

/* HEADER */

.navbar-item-custom, .navbar-item-custom a {
	color: white;
}

.cart-icon {
	height: 20px;
	padding-right: 20px;
}

/* CONTENT */

.container {
	margin-bottom: 115px;
}

/* ACCOUNT */

.account-item  {
	background-color: #f1f2f6;
	padding: 80px
}

.account-item  a {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: bold;
	color: #4b6584;
}

.account-item  a:hover {
	color: #778ca3;
	text-decoration: none;
}

/* FORM */

.form-check {
	background-color: #f4f8ff;
	padding: 20px 65px;
	margin-top: 5px;
}

.col-form-label {
	font-weight: bold;
}

/* ORDER */

.order-summary {
	background-color: #f4f8ff;
	padding: 20px;
	margin-top: 20px;
}


/* FOOTER */

.footer-custom {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding-top: 25px;
	text-align: center;
	background-color: #cfd6e3;
}

/* CART MODAL */

.cart-modal-container {
	width: 100%;
	max-height: 350px;
	display: flex;
	position: absolute;
	justify-content: end;
}

.cart-modal-item {
	position: fixed;
	margin-right: 90px;
	margin-top: 8px;
	width: 300px;
	max-height: 100%;
	background-color: #f7f7f7;
	border-radius: 10%;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 5;
	text-align: center;
}

.cart-modal-table {
	max-height: 150px;
	overflow: auto;
	margin-bottom: 15px;
}

.cart-modal-button {
	margin-top: 10px;
	width: 200px;
	margin-left: 40px;
}

@media (max-width: 767px) {
	.cart-modal-container {
		position: initial;
	}

	.cart-modal-item {
		margin-right: 0px;
		width: 100%;
		border-radius: 0%;
		position: initial;
	}
}