@import url('https://fonts.googleapis.com/css?family=Roboto');

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: #131313;
	color: #eee;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
}

header {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	background-color: #111;
	width: 100%;
	border-bottom: 1px solid #222;
	box-shadow: none;
}

[class*='arrow-'] {
	height: 100%;
	width: 10%;
	position: absolute;
	top: 0;
	background-color: #151515;
	text-align: center;
	color: #fff;
	border: 1px solid #222;
	vertical-align: middle;
	outline: none;
	text-decoration: none;
	line-height: 220% !important;
}

[class*='arrow-']:hover {
	background-color: #111;
}

.owl-next, .owl-prev {
	display: none;
}

.for-bullet {
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.arrow-left {
	left: 0;
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
	border-right-color: transparent;
}

.arrow-right {
	right: 0;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	border-left-color: transparent;
}

section {
	margin: 70px 0 65px 0;
}

.wrapper {
	max-width: 500px;
	min-width: 240px;
	width: 90%;
	min-height: 1px;
	margin: 0 auto;
	position: relative;
}

.button {
	border-top: 2px solid #ffb231;
	border-bottom: 2px solid #ffb231;
	color: #ffb231;
	background: transparent;
	padding: 8px;
	width: 50%;
	float: left;
	font-weight: bold;
	outline: none;
	text-decoration: none !important;
}

.button:first-child {
	border-left: 2px solid #ffb231;
	border-right: 1px solid #ffb231;
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
}

.button:last-child {
	border-right: 2px solid #ffb231;
	border-left: 1px solid #ffb231;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
}

.button:hover, .button.active {
	color: #131313;
	background: #ffb231;
}

.floor-info {
	width: 80%;
	text-align: center;
	color: #eee;
	padding: 5px;
	margin: 10px auto 5px auto;
	background-color: #151515;
	border: 1px solid #222;
	z-index: 999;
	font-weight: bold;
}

.row {
	overflow: hidden;
}

.grid-area {
	min-height: 1px;
	width: 50%;
	float: left;
	padding: 5px;
	display: inline-block;
	position: relative;
}

.area-info {
	border: 2px solid #ffb231;
	height: 70px;
	width: 100%;
}

.area-id {
	background-color: #ffb231;
	width: 40%;
	float: left;
	height: 100%;
	font-size: 25px;
	text-align: center;
	line-height: 65px;
}

.available {
	color: #131313;
	cursor: pointer;
}

.available:hover {
	background-color: #ffb231;
}

.available:hover .area-text {
	color: #131313 !important;
}


.occupied {
	opacity: 0.3;
	cursor: not-allowed;
	border: 2px solid #c70909 !important;
}

.occupied .area-id {
	background-color: #c70909 !important;
}

.occupied .area-text {
	color: #c70909 !important;
}

.area-text {
	color: #fff;
	width: 60%;
	float: left;
	text-align: center;
	line-height: 65px;
}

.index {
	width: 100%;
	display: block;
	float: left;
	padding: 10px;
	font-size: 20px;
	margin-top: 20px;
}

.index:first-child {
	margin-top: 0;
}

.bullet {
	width: 8px;
	height: 8px;
	background-color: rgba(255, 255, 255, 0.4);
	display: inline-block;
	border-radius: 50px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 5px;
}

.bullet.active {
	background-color: #ffb231;
}

footer {
	background-color: #111;
	border-top: 1px solid #222;
	padding: 10px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 9999;
}