@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,600);

/* ============================================================
   Popup Overlay - does not destroy DOM
   ============================================================ */
.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(91, 115, 168, 0.95);
	z-index: 999999;
	justify-content: center;
	align-items: center;
}


* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	min-width: 400px;
	font-family: "Open Sans", "Lato", sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

.main-header {
	width: 100%;
	height: 9rem;
	margin: 0 auto;
	background-color: #5B73A8;
	background-size: cover;
	padding-bottom: 15px;

}

#image_logo {
	width: 125px;
	float: left;
	margin-top: 10px;
	margin-left: 25px;
}

h1 {
	font-weight: bold;
	font-weight: 900;
	color: white;
	margin: 0;
	padding-left: 170px;
	padding-top: 30px;
	padding-bottom: -150px;
}

.main-header h2 {
	color: #FC7E2F;
	padding-top: auto;
	padding-left: 170px;
}

header nav {
	float: right;
	margin-top: 30px;
	margin-right: 100px;
}

header nav ul li {
	float: left;
	/* To put all elements in one line */
}

header nav ul li a {
	text-transform: capitalize;
	font-weight: bold;
	margin-right: 20px;
	/* Add a space between two words */
}

ul {
	list-style: none;
	/* remove small black points */

}

a {
	text-decoration: none;
	/* remove underhighlight line */
	color: white;
}

#checkOnline {
	position: absolute;
	right: 20px;
	top: 50px;
}

#send_orders {
	position: absolute;
	right: 15px;
	top: 90px;
}

.band-name {
	text-align: center;
	margin: 0;
	font-size: 0.9em;
	font-family: "Lato", sans-serif;
	font-weight: normal;
	color: white;
	background-color: #5B73A8;
}

.content-section {
	margin: 1em;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5em;
}

.section-header {
	font-family: "Lato", sans-serif;
	color: whitesmoke;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	border: 4px solid #5B73A8;
	background-color: #5B73A8;
	padding-top: 4px;
}

.main-footer {
	background-color: #5B73A8;
	color: white;
	padding: 10px;
}

.main-footer-container {
	align-items: center;
}

.btn {
	text-align: center;
	vertical-align: middle;
	padding: .67em .67em;
	cursor: pointer;
}


.btn-primary {
	color: white;
	background-color: #5B73A8;
	border: none;
	border-radius: .3em;
	font-weight: bold;
}

.btn-primary:hover {
	background-color: #FC7E2F;
}


.shop-item {
	margin: 10px;
	padding: 10px;
	width: 500px;
	border-radius: 5px;
	border: 1px solid #5B73A8;
}

.shop-item-title {
	display: block;
	width: 100%;
	text-align: left;
	font-weight: bold;
	font-size: 1.1em;
	color: #333;
	margin-bottom: 15px;
}

.shop-item-image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 250px;
	width: 100%;
}

.shop-item-image {
	max-height: 100%;
	cursor: pointer;
}

.shop-item-details {
	display: flex;
	align-items: center;
	padding: 5px;
}

.shop-item-price {
	flex-grow: 1;
	color: #333;
	font-weight: bold;
}

.shop-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.cart-header {
	font-weight: bold;
	font-size: 1.2em;
	color: #333;
	padding: 1rem 0;
}

.cart-row {
	display: grid;
	grid-template-columns: 1fr 120px 380px;
	column-gap: 20px;
	border-bottom: 1px solid black;
	padding: 10px;
	align-items: center;
	font-size: 1.2em;
	color: #333;
}

.cart-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	column-gap: 10px;
	align-items: center;
	min-height: 80px;
}

.cart-item-image {
	max-width: 80px;
	max-height: 80px;
	justify-self: center;
}

.cart-price {
	text-align: right;
}

.cart-quantity {
	display: grid;
	grid-template-columns: 70px 125px 40px 1fr;
	column-gap: 10px;
	align-items: center;
}

.cart-quantity>input {
	height: 40px;
	width: 100%;
	border-radius: 5px;
	border: 1px solid #56CCF2;
	background-color: #eee;
	color: #333;
	padding: 0;
	text-align: center;
	font-size: 1.2em;
}

.cart-quantity>select {
	height: 40px;
	width: 100%;
	border-radius: 5px;
	border: 1px solid #56CCF2;
	background-color: #eee;
	color: #333;
	padding: 0;
	font-size: 1.2em;
}

.cart-quantity>.delete {
	width: 40px;
	height: 40px;
	color: white;
	background-color: #EB5757;
	border: none;
	border-radius: 5px;
	display: grid;
	align-items: center;
}

.cart-quantity>.delete>i {
	justify-self: center;
}

.cart-quantity>.delete:hover {
	background-color: #FC7E2F;
}

.cart-quantity>.cart-amount {
	text-align: right;
}

.cart-row:last-child {
	border-bottom: 1px solid black;
}

.cart-row:last-child .cart-column {
	border: none;
}

.cart-total-wrapper {
	display: flex;
	justify-content: end;
	width: 100%;
	padding: 1rem;
}

.cart-total-wrapper>.cart-total {
	display: grid;
	grid-template-columns: 255px 1fr;
	column-gap: 10px;
	width: 380px;
	text-align: right;
	font-weight: bold;
	font-size: 1.2em;
	color: black;
}

.btn-purchase {
	display: block;
	margin: 40px auto 80px auto;
	font-size: 1.55em;
	padding-bottom: 12px;
	transition: 0.3s;
}

.client-information {
	border: 2px solid #5B73A8;
	padding: 20px;
	border-radius: 10px;
	font-family: "Lato", sans-serif;
	font-size: 1.20rem;
	width: 100%;
}

.client-information>form {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 10px;
	row-gap: 10px;
}

@media screen and (min-width:620px) {
	.client-information>form {
		grid-template-columns: 210px 1fr;
	}
}

.client-information>form>label {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	font-family: "Lato", sans-serif;
	color: dimgrey;
}

.client-information>form>input {
	padding: 6px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #5B73A8;
	color: black;
}

.client-information>form>.checkboxRIB {
	display: grid;
	grid-template-columns: 1.5rem 1fr;
}

.client-information>form>.checkboxRIB>input {
	align-self: center;
	margin: 0 auto 0 0;
}

.client-information>form>.checkboxRIB>label {
	font-size: xx-small;
	font-style: italic;
}

.client-information>form>textarea {
	border: 1px solid #5B73A8;
	border-radius: 5px;
	font-size: 16px;
	outline: none;
	resize: none;
}

button#submit {
	display: block;
	/*margin: 40px auto 80px auto;*/
	font-size: 1em;
	padding: 7px;
	background: #5B73A8;
	color: white;
	border: none;
	border-radius: 5px;
	margin-left: 10px;
}

button#submit:hover {
	background-color: #FC7E2F;
	cursor: pointer;
	transition: 0.2s;
}

textarea::-webkit-scrollbar {
	width: 10px;
}

textarea::-webkit-scrollbar-thumb {
	background-color: #5B73A8;
}

#kam {
	border: 1px solid #5B73A8;
	border-radius: 5px;
}

#date {
	color: dimgray;
	width: 128px;
}

#cnv {
	/*cursor: url(cursors/pen.png) 1 26, pointer;*/
	cursor: pointer;
	width: auto;
	height: auto;
	border: 4px solid #5B73A8;
	border-radius: 5px;
	font-size: 1.10rem;
}

.clear-button {
	background: #5B73A8;
	color: white;
	font-weight: bolder;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

.clear-button:hover {
	background-color: #FC7E2F;
}

.popup {
	width: 400px;
	background: white;
	border-radius: 6px;
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.1);
	text-align: center;
	padding: 0 30px 30px;
	color: #333;
	visibility: hidden;
	transition: transform 0.4s, top 0.4s;
}

.open-popup {
	visibility: visible;
	margin-top: 25%;
	transform: translate(-50%, -50%) scale(1);
}

.popup img {
	width: 100px;
	margin-top: -50px;
	border-radius: 50%;
}

.popup h2 {
	font-size: 38px;
	font-weight: 500;
	margin: 30px 0 10px;
	font-family: "Lato", sans-serif;
	color: rgb(5, 0, 0);
	font-size: 26px;
}

.popup p {
	font-size: 38px;
	font-weight: 500;
	margin: 30px 0 10px;
	font-family: "Lato", sans-serif;
	color: rgb(2, 0, 0);
	font-size: 18px;
}

.popup button {
	width: 100%;
	margin-top: 50px;
	padding: 10px 0;
	background: #2d8d0a;
	color: #fff;
	border: 0;
	outline: none;
	font-size: 20px;
	font-weight: bolder;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

/************* Popup Item Added Already ***************/

.popup-screen {
	z-index: 999999;
	position: fixed;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
}

.popup-screen.show {
	visibility: visible;
}

.popup-item-added-box {
	position: relative;
	background: #5B73A8;
	backdrop-filter: blur(10px);
	max-width: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 20px;
	padding: 50px 40px;
	border-radius: 10px;
	box-shadow: 0 5px 25px rbg(0 0 0 / 20%);
}

.popup-item-added-box img {
	width: 40px;
	position: absolute;
	top: 20px;
	right: 20px;
}

.popup-item-added-box h2 {
	font-size: 38px;
	font-weight: 500;
	text-align: center;
	padding-bottom: 45px;
	margin-top: 30px;
	font-family: "Lato", sans-serif;
	color: white;
	font-size: 21px;
}

.popup-item-added-box button {
	width: 25%;
	left: 50%;
	position: absolute;
	bottom: 35px;
	transform: translateX(-50%);
	padding: 6px 0;
	background: red;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	border: 0;
	outline: none;
	font-size: 17px;
	font-weight: bolder;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.popup-item-added-box button:hover {
	background-color: #EB5757;
}

@media screen and (max-width: 530px) {
	header nav {
		font-size: 14px;
		margin: 0;
		padding-top: 55px;
	}
}

@media screen and (max-width: 650px) {
	header nav {
		font-size: 14px;
		margin: 0;
		padding-top: 45px;
	}

	.main-header h2 {
		color: #FC7E2F;
		padding-top: -10px;
		padding-left: 130px;
		padding-bottom: 2px;
		font-size: 20px;
	}
}

@media screen and (max-width: 520px) {
	.main-header h2 {
		color: #FC7E2F;
		padding-top: -10px;
		padding-left: 130px;
		padding-bottom: 2px;
		font-size: 20px;
	}
}

@media screen and (max-width: 944px) {
	.main-header h2 {
		color: #FC7E2F;
		padding-top: -10px;
		padding-left: 140px;
		padding-bottom: 2px;
	}

	h1 {
		font-weight: 450;
	}

	.Title h2 {
		margin: 0;
		padding-top: -35px;
		left: 6%;
	}

	/*header nav  {
        font-size: 15px;
        padding-left: 7%;
    }*/
}

@media screen and (max-width: 900px) {
	.main-header h2 {
		color: #FC7E2F;
		padding-top: 30px;
		padding-left: 130px;
		font-size: 20px;
	}
}

@media screen and (max-width: 895px) {
	h1 {
		padding-top: 12px;
	}

	.Title h2 {
		padding-top: -15px;
		position: absolute;
		left: 7%;
		top: 70px;
	}
}

/* iPad Air */
@media screen and (max-width: 817px) {
	h1 {
		margin: 0;
		padding: 0;
		position: absolute;
		font-weight: bold;
		left: 154px;
		top: 30px;

	}

	.main-header h2 {
		position: absolute;
		font-size: 20px;
		top: 50px;
		left: 25px;
	}

	header nav {
		position: absolute;
		top: 72px;
		left: 14%;
		font-size: 15px;
	}

	#image_logo {
		margin-top: 13px;
		margin-left: 12px;
	}
}

@media screen and (max-width: 683px) {

	header nav {
		position: absolute;
		top: 60px;
		left: 17%;
	}

}

@media screen and (max-width: 505px) {
	header nav {
		position: absolute;
		top: 55px;
		left: 17%;
		font-size: 12px;
	}

	.main-header h2 {
		position: absolute;
		font-size: 18px;
		left: 8px;
		top: 45px;
	}
}

@media screen and (max-width: 394px) {
	h1 {
		margin: 0;
		padding: 0;
		position: absolute;
		font-weight: bold;
		left: 154px;
		top: 18px;
	}

	.main-header h2 {
		position: absolute;
		font-size: 18px;
		left: 8px;
		top: 45px;
	}

	header nav {
		position: absolute;
		top: 55px;
		left: 17%;
		font-size: 11px;
	}

	#image_logo {
		width: 115px;
		float: left;
		margin-top: 10px;
		margin-left: 12px;
	}
}

@media screen and (max-width: 376px) {
	h1 {
		margin: 0;
		padding: 0;
		position: absolute;
		font-weight: bold;
		left: 154px;
		top: 18px;
	}

	.main-header h2 {
		position: absolute;
		font-size: 17px;
		left: 8px;
		top: 50px;
	}

	header nav {
		position: absolute;
		top: 50px;
		left: 18%;
		font-size: 10px;
	}

	#image_logo {
		width: 105px;
		float: left;
		margin-top: 10px;
		margin-left: 11px;
	}
}