html, body {
	font-family: 'Lato', Helvetica Neue, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden; 
}
  
html {
	font-size: 62.5%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 100vh; 
}

body {
	text-rendering: optimizeLegibility;
	font-size: 1.6em;
	line-height: 1.6;
	font-weight: 400;
	min-height: 100vh;
	padding-bottom: 1em; 
	display: flex;
	flex-direction: column;
	color: #58595B;
}

body:before {
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	background: url("../img/bg.jpg") no-repeat center top;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
  }

*, *:before, *:after {
	-webkit-box-sizing: inherit;
			box-sizing: inherit; 
	}

.fa-times {
	cursor: pointer;
}

.hidden {display: none !important; }

.right {float: right;}


@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

/* ############## Date Picker OVERRIDE ############## */
.daterangepicker .drp-buttons .btn {
	background: none;
	background-color: #ecf0f1;
	color: #000;
	border: 1px solid #bdc3c7;
}

.daterangepicker .drp-buttons .btn:hover {
	background-color: #bdc3c7;
}

.daterangepicker_display {
	background-color: #fff;
	cursor: pointer;
	padding: 5px 10px;
	border: 1px solid #ccc;
	text-align: center;
	display: inline-block;
	margin: 0 auto;
}

.daterangepicker_display.read-only {
	background-color: #e7e7e7;
	color: #666;
	cursor: not-allowed;
	pointer-events: none;
}

body > header {
	padding: 1em 2em 0 2em;
	margin-bottom: 40px;
}

body > header .logo {
	background: url("../img/logo.png") no-repeat;
	background-size: contain;
	background-position: center;
	height: 100px;
	margin: 0 auto;
}
body > main {
	height: 100%;
	flex: 1;
}

button {
	cursor: pointer;
}

.button {
	padding: 0;
	margin: 0;
	border: 0;
	background-color: #fff;
	color: #000;
	padding: 1em 1.2em;
	font-weight: 900;
	font-size: 13px;
	display: inline-flex;
	overflow: hidden;
	cursor: pointer;
	user-select: none;
	transition: all 150ms linear;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
	text-transform: none;
	text-transform: uppercase;
	border-radius: 4px;
	line-height: 0.9em;
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
	justify-content: center;
	align-items: center;
	/* flex: 0 0 160px; */
	background-color: #ecf0f1;
	color: #000;
	border: 1px solid #bdc3c7;
}

.button.full {
	width: 100%;
}

.button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.button:disabled:hover {
	background-color: inherit;
}

.button i {
	margin-right: 0.5em;
	font-size: 120%;
	margin-bottom: -2px;
}

.button:hover {
	background-color: #bdc3c7;
}

.button:active {
	outline: none;
	border: 1px solid transparent;
}

.button.right {
	float: right;
}

.button.left {
	float: left;
}

.button.slate {background-color: #2b303b; color: #fff; border: 1px solid #131313;}
.button.slate:hover {background-color: #383e4b;}
.button.green {background-color: #00b414; color: #fff; border: 1px solid #27ae60;}
.button.green:hover {background-color: #00ca18;}
.button.teal {background-color: #1abc9c; color: #fff; border: 1px solid #16a085;}
.button.teal:hover {background-color: #16a085;}
.button.blue {background-color: #3498db; color: #fff;border: 1px solid #2980b9;}
.button.blue:hover {background-color: #2980b9;}
.button.red {background-color: #E74B3C; color: #fff;	border: 1px solid #c0392b;}
.button.red:hover {background-color: #c0392b;}
.button.orange {background-color: #E67E22; color: #fff;	border: 1px solid #D35400;}
.button.orange:hover {background-color: #D35400;}
.button.purple {background-color: #9b59b6; color: #fff;	border: 1px solid #8e44ad;}
.button.purple:hover {background-color: #8e44ad;}
.button.yellow {background-color: #f1c40f; color: #fff;	border: 1px solid #F39C12;}
.button.yellow:hover {background-color: #F39C12;}


.login-wrap {
	height: 100%;
	display: flex;
}

#login {
	display: block;
	margin: auto auto;
	text-align: center;
	width: 350px;
	background-color: #fff;
	padding-top: 3em;
}

#login .icon {
	position: absolute;
	width: 100px;
	margin-left: -50px; /* Half of width */
	height: 100px;
	background-color: #59a7ff;
	border-radius: 50%;
	top: -50px;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
}

#login .icon i {
	line-height: 0.9em;
	font-size: 2.5em;
	color: #fff;
}

#login h2 {
	font-weight: 300;
	text-transform: uppercase;
}

#login .input-group {
	position: relative;
	margin: 2em auto;
	font-size: 1.2em;
}

#login .input-group label.floating {
	position: absolute;
	left: 0px;
	top: 0%;
	pointer-events: none;
	z-index: 1;
	transition: transform .3s, top .3s;
	transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
	transform-origin: left;
	color: #666;
	font-size: 90%;
	backface-visibility: hidden;
}

#login .input-group input {
	width: 100%;
	padding: 0.25em;
	padding-left: 0;
	border: none;
	border-bottom: 1px solid #666;
	font-weight: 400;
}

#login .input-group input:focus + label.floating, #login .input-group input.active + label.floating {
	top: -80%;
	transform: scale(0.79);
	-webkit-font-smoothing: subpixel-antialiased;
}

#login .input-group input:focus {
	border-bottom-color: #3292ff;
}

#login .input-group input:invalid {
	outline: none;
	box-shadow: none;
}

section {
	max-width: 1200px;
	width: 90%;
	margin: 3em auto;
	margin-bottom: 4em;
	background-color: #fff;
	min-height: 50px;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.2);
	border-radius: 15px;
	position: relative;
	padding: 1em;
	padding-top: 40px;
}

section:last-of-type {
	margin-bottom: 1em;
}

.btns {
	max-width: 1200px;
	width: 90%;
	position: relative;
	padding: 1em;
	text-align: right;
	margin: 0 auto;
}

section .icon {
	position: absolute;
	width: 75px;
	margin-left: -37.5px; /* Half of width */
	height: 75px;
	background-color: #59a7ff;
	border-radius: 50%;
	top: -37.5px;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
}

section .icon.pink {background-color: #DA1C5C;}
section .icon.green {background-color: #18B24B;}
section .icon.orange {background-color: #F5A834;}
section .icon.grey {background-color: #979797;}
section .icon.purple {background-color: #5F5BA8;}
section .icon.aqua {background-color: #00A79D;}


section .icon i {
	line-height: 0.9em;
	font-size: 2.5em;
	color: #fff;
}


section .title {
	text-align: right;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.5px;
	color: #58595B;
	margin-bottom: 1em;
}

section .items {
	display: flex;
	flex-direction: column;
	padding-top: 0.5em;
}

section .item {
	display: inline-block;
	text-transform: uppercase;
	color: #636363;
	font-weight: 300;
	margin-right: 1em;
	margin-bottom: 0.5em;
	white-space: nowrap;
}

section .item:last-child {
	margin-right: 0;
	margin-bottom: 0;
}

section .item span {
	color: #000;
	text-transform: initial;
	font-weight: 400;
	white-space: normal;
}

section .status {
	text-align: right;
	font-weight: 900;
	font-size: 18px;
	text-transform: uppercase;
	color: #A7A7A7;
	width: 80%;
	margin-left: auto;
}

body > footer .us {
	font-size: 80%;
	color: #666;
}

#calandar {
	margin-top: 2em;
}

#calandar p {
	text-align: center;
}

#calandar .pickerwrap {
	display: flex;
	justify-content: center;
	margin-bottom: 2em;
}

#calandar .days {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#calandar .days .day {
	width: 120px;
	height: 120px;
	border: 1px solid #bbb;
	margin: 0.5em;
	padding: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
	cursor: pointer;
}

#calandar .days .day:hover {
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
	border-bottom-width: 3px;
}

#calandar .days .day i {
	margin-top: 10px;
	font-size: 1.5em;
	color: #666;
}

#calandar .days .day .date {
	font-weight: 300;
	text-align: center;
	line-height: 1.2em;
}

#calandar .days .day.current {
	cursor: default;
	
}
#calandar .days .day.current:hover {
	box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
	border-bottom-width: 1px;
	
}

#calandar .days .day.available {
	border-color: #0db31b;
}

#calandar .days .day.available:hover {
	border-color: #0fa31c;
}

#calandar .days .day.unavailable {
	cursor: not-allowed;
	border-color: #c23e3e;
}

#calandar .days .day.unavailable:hover {
	box-shadow: 0px 0px 15px rgba(0,0,0,0);
	border-color: #812c2c;
}

.changeDate {
	display: flex;
	justify-content: space-between;
}

.changeDate .oldBooking {
	color: #666;
	margin-right: 1em;
	font-weight: 300;
}

.changeDate i {
	font-size: 1.2em;
	margin-top: 3px;
}
.changeDate .newBooking {
	margin-left: 1em;
}

#roadmap {
	height: 500px;
	background-image: url("../img/line.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-top: 20px;
	position: relative;
}

#roadmap .pin {
	position: absolute;
	height: 60px;
	width: 45px;
}

#roadmap .pin i {
	font-size: 60px;
	color: #BCBEC0;
	
}

#roadmap .pin.active i {
	font-size: 60px;
	color: #18B24B;
}

#roadmap .pin .stage {
	color: #58595B;
	position: absolute;
	width: 200%;
}

#roadmap .pin .stage.top {
	top: -90%;
	left: -40%;
}

#roadmap .pin .stage.right {
	top: -6%;
	left: 120%;
}

#roadmap .pin .stage.bottom {
	top: 105%;
	left: -49%;
}

#roadmap .pin .stage.left {
	top: 5%;
	right: 115%;
}

#roadmap .pin .stage.left .name {
	text-align: right;
}

#roadmap .pin .stage.left .date {
	text-align: right;
}

#roadmap .pin .stage.right .name {
	text-align: left;
}

#roadmap .pin .stage.right .date {
	text-align: left;
}

#roadmap .pin .stage .name {
	font-weight: 600;
	text-align: center;
	line-height: 1.4em;
}

#roadmap .pin .stage .date {
	font-weight: 300;
	white-space: nowrap;
	font-size: 14px;
	text-align: center;
}

#roadmap .car {
	width: 70px;
	position: absolute;
}

#roadmap .car.pos-1 {
	display: none;
}

#roadmap .car.pos-2 {
	top: 13%;
	left: 5%;
}

#roadmap .car.pos-3 {
	top: 20%;
	left: 58%;
}

#roadmap .car.pos-4 {
	top: 50%;
	left: 50%;
}

#roadmap .car.pos-5 {
	bottom: 22%;
	right: -3%;
}

#roadmap .car.pos-6 {
	bottom: 3%;
	right: 37%
}

#notes .note {
	padding: 0.5em 0;
	border-bottom: 1px solid rgba(87, 89, 91, 0.15);
}

#notes .note:first-child {
	border-top: 1px solid  rgba(87, 89, 91, 0.15);
}

#notes .note .message {
	
}

#notes .note .timestamp {
	text-align: left;
	font-weight: 300;
	font-size: 12px;
}

#feedback .faces {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

#feedback .faces .face {
	padding-bottom: 0.5em;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	color: #666;
	cursor: pointer;
}

#feedback .faces .face.active {
	border-bottom-width: 5px;
}

#feedback .faces .face.horrible {
	border-bottom-color: #ED1C24;
}
#feedback .faces .face.bad {
	border-bottom-color: #F26522;
}
#feedback .faces .face.average {
	border-bottom-color: #FFDE17;
}
#feedback .faces .face.good {
	border-bottom-color: #D7DF23;
}
#feedback .faces .face.great {
	border-bottom-color: #00A14B;
}

#feedback .faces .face i {
	font-size: 45px;
}

#feedback p {
	margin-bottom: 0.2em;
}

#feedback textarea {
	padding: 6px 10px;
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	box-shadow: none;
	width: 100%;
	margin-bottom: 1em;
}

#feedback textarea:focus {
	border: 1px solid #33C3F0;
	outline: 0;
}

#map {
	margin-top: 20px;
}
