body {
	width: 100vw;
	overflow-x:hidden
}

#container {
	width: 100%;
	min-height: calc(100vh - 50px);
	display: flex;
	flex-direction: column;
	text-align: center;
}

h1 {
	font-size: 30px;
	font-weight: 300;
	color: #FFF;
}

#rent-container {
	width: 100%;
	height: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 50px;
	background: url('../media/img/party_background.jpg');
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #FFF;
}

#rent-container h1 {
	margin-top: 30px;
}

#select-container {
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.select-group {
	width: 90%;
	text-align: left;
	margin-top: 10px;
}

.select-group h2 {
	font-weight: 100;
	font-size: 14px;
}

.select-group select, .select-group input {
	margin-top: 10px;
	width: calc(100% - 30px);
	background-color: #fff;;
	padding: 15px;
	border: none;
	border-radius: 2px;
	font-size: 14px;
}

.select-group select {
	width: 100%;
}

.select-group select:focus, .select-group input:focus {
	outline: 0 !important;
}

#article-container {
	background-color: #EEE;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#articles-subcategories {
	width: 90%;
	height: auto;
	background-color: #FFF;
	padding: 5%;
	color: #4E4E4E;
	text-align: center;
	display: none;
}

#articles-subcategories p {
	font-weight: 100;
	padding: 7px;
	transition: all 0.2s;
	font-size: 15px;
}

#articles-subcategories p:hover {
	cursor: pointer;
	background-color: #EEE;
}

#articles {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.article {
	width: 90%;
	max-width: 300px;
	height: 300px;
	background-color: #FFF;
	border-radius: 2px;
	margin: 15px 0;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	justify-content: space-between;
}

.article:hover {
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-box-shadow: 0px 0px 51px -6px rgba(0,0,0,0.18);
	-moz-box-shadow: 0px 0px 51px -6px rgba(0,0,0,0.18);
	box-shadow: 0px 0px 51px -6px rgba(0,0,0,0.18);
}

.article-image {
	height: 145px;
	width: 100%;
}

.article-image img {
	max-height: 100%;
	width: auto;
	max-width: 100%;
}

.article-details {
	height: 145px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-content: space-between;
	justify-content: space-between;
}

.article-label {
	font-size: 15px;
	color: #4E4E4E;
}

.article-description {
	font-size: 13px;
	font-weight: 100;
	text-align: left;
	padding: 10px;
	color: #4E4E4E;
	flex-grow: 1;
}

.article-price-cart {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 10px;
	color: #4E4E4E;
	align-items: center;
}

.article-prices {
	display: flex;
	flex-direction: column;
	width: 80%;
	justify-content: flex-start;
	align-items: flex-start;
}

.article-cart {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

p.light-text {
	color: #999;
}

.subcategory-active {
	background-color: #EEE;
}

input[type="date"]::-webkit-clear-button {
   display: none;
}

.article-not-available {
	padding: 10px 0;
	text-align: center;
	color: #4E4E4E;
}

@media(min-width: 768px) {
	#select-container {
		width: 70%;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
	}

	.select-group {
		width: 30%;
		text-align: left;
		margin-top: 0;
	}

	#article-container {
		flex-direction: row;
	}

	#articles-subcategories {
		width: 17%;
		padding: 1.5%;
		text-align: left;
	}

	#articles {
		height: 100%;
		width: 100%;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 2%;
	}

	.article {
		width: 240px;
		height: 300px;
		background-color: #FFF;
		border-radius: 2px;
		margin: 1.5% 0.75%;
		transition: all 0.3s;
		display: flex;
		flex-direction: column;
		text-decoration: none;
		justify-content: space-between;
	}
}
