:root {
	--main-bg-color: #f8f8f8;
	--secondary-bg-color: #2f3136;
	--modal-bg-color: #1e2229;
	--item-bg-color: #494949;
	--item-bg-color-hover: #535353;

	--footer-bg-color: #181818;
	--footer-text-color: #b3b4b6;
	--footer-text-color-headline: #fff;

	--button-bg-color: #373737;
	--button-bg-color-hover: #666666;

	--main-text-color: #222222;
	--muted-text-color: #7c7e83;
	--link-text-color: #80c0cf;
	--link-text-color-hover: #6aa4b1;

	--avatar-size: 9rem;
	--avatar-size-sm: 3rem;
	--avatar-size-xs: 1.9rem;
	
	--box-bg-color: #fff;
	--box-bg-active-color: #cdfac1;
	--box-border-color: #dadada;
	--box-border-color-hover: #aad2ff;
	/* change this value anything, e.g., 100px, 10rem, etc. */

	--colors-blue: #2679fb;
}


html, body {
	height: 100%;
	background-color: var(--main-bg-color) !important;
	font-family: 'Montserrat', sans-serif;
}






/* -----------------------------------------
	Headlines
-------------------------------------------- */

h1 {
	margin-top:45px;
	margin-bottom:20px;
}
.modal h1 { margin-top:0px; }

h2 {
	margin-top:50px;
	margin-bottom:15px;
}






/* -----------------------------------------
	Navbar
-------------------------------------------- */

@media only screen and (min-width: 0px) {
	.navbar {
		background-color: #fff;
		height: 75px;
		z-index: 2;
	}

	.navbar .container { background-color: #fff; }

	.navbar .nav-item {
		font-weight: 700;
	}
}


@media only screen and (min-width: 768px) {
	.navbar { background-color: transparent; }
	.navbar .container { background-color: transparent; }
}





/* -----------------------------------------
	Div
-------------------------------------------- */

@media only screen and (min-width: 0px) {

	.btn, .fc .fc-button { border-radius: 18px; }
	.btn-lg { border-radius: 25px; }

	.container {
	max-width: 1140px;
	}

	#main.container {
		padding-bottom:100px;
	}

	.full-width {
		width: 100vw;
		position: absolute;
		margin-left: -50vw;
		height: 100px;
		/* margin-top: 100px; */
		margin-top: -100px;
		left: 50%;
	}

	.small-width {
		max-width: 600px;
		margin: 0 auto;
	}

	.help {
		color: var(--muted-text-color);
		font-size:0.8rem;
		padding:10px;
	}

	.form-text {
		padding:2px 6px;
		font-size: 0.7rem;
	}

	.hide-mobile-block { display:none; }
	.hide-mobile-inline-block { display:none; }
}


@media only screen and (min-width: 768px) {
	.hide-mobile-block { display:block; }
	.hide-mobile-inline-block { display:inline-block; }
}






/* -----------------------------------------
	Hero
-------------------------------------------- */

@media only screen and (min-width: 0px) {

	#hero {
		position: relative;
		z-index: 1;
		height: 100%;
		height: 100vh;
	}

	#hero #hero-overlay {
		position: absolute;
		z-index: 2;
		background-color: rgba(255, 255, 255, 1);
		height: 100vh;
	}


	.hero-text-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: normal;
		height: 100vh;
		position: relative;
		z-index: 2;
		padding: 40px;
	}

	.hero-text-wrapper .vertical-center {
		margin-bottom: 20%;
		display: flex;
		flex-direction: column;
	}

	.hero-text-wrapper .vertical-center .left {
		flex: 1 1 auto;
	}

	.hero-text-wrapper .vertical-center .right {
		flex: 1 1 auto;
		margin-top:30%;
	}

	.hero-text-wrapper .vertical-center img {
		width: 100%;
	}


	.hero-text-wrapper h1 {
		font-size: 5em;
	}

	.hero-text-wrapper h2 {
		font-size: 1.2rem;
		margin-top:10%;
	}

}


@media only screen and (min-width: 768px) {

	.hero-text-wrapper { justify-content: center; padding: 0px; }
	.hero-text-wrapper .vertical-center {
		flex-direction: row;
	}

	.hero-text-wrapper .vertical-center .left { flex: 0 0 50%; }
	.hero-text-wrapper .vertical-center .right { flex: 0 0 50%; margin-top:0%; }

}






/* -----------------------------------------
	Footer
-------------------------------------------- */
@media only screen and (min-width: 0px) {
	.footer {
		background-color: var(--footer-bg-color);
		color: var(--footer-text-color);
		padding: 30px 30px;
		margin-top:20%;
	}
	.footer a {
		color: var(--footer-text-color);
	}
	.footer h4 {
		color: var(--footer-text-color-headline);
		font-weight: 700;
	}
	.footer-sections {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.footer .footer-1 {
		flex: 1 1 auto;
	}
	.footer .footer-2 {
		flex: 1 1 auto;
	}
	.footer .footer-3 {
		flex: 1 1 auto;
	}

	.footer-bottom {  }
	.footer-bottom .footer-inner { display: flex; flex-direction: column; border-top: 1px solid rgba(255, 255, 255, 0.1); padding:20px 0px; }
	.footer-bottom .left { flex: 1 1 auto; }
	.footer-bottom .right { flex: 1 1 auto; }
}


@media only screen and (min-width: 768px) {
	.footer { padding: 30px 0px; }
	.footer-sections { flex-direction: row; }
	.footer-bottom .footer-inner { flex-direction: row; }
	.footer .footer-1 { flex: 0 0 27%; }
	.footer .footer-2 { flex: 0 0 27%; }
	.footer .footer-3 { flex: 0 0 27%; }
	.footer-bottom .left { flex: 0 0 50%; }
	.footer-bottom .right { flex: 0 0 50%; }
}



/* -----------------------------------------
	Error / success page
-------------------------------------------- */

.error-page, .success-page {
	text-align:center; max-width:600px; margin:0 auto;
}
.error-page .illustration, .success-page .illustration { margin-top: 10%; }
.error-page .illustration, .success-page .illustration img { width:80%; }
.error-page .title, .success-page .title { font-size:3rem; margin-top:6%; }
.error-page .description, .success-page .description { margin-top:6%; }




/* -----------------------------------------
	Resource categories
-------------------------------------------- */

.resource-categories {
	display: flex;
	justify-content: center;
	flex-direction: row;
}

.resource-category {
	flex: 0 0 auto;
	text-decoration: none;
	max-width: 200px;
	text-align: center;
	border:1px solid #e4e4e4;
	border-radius: 8px;
	padding:20px;
	color: var(--main-text-color);
	margin:10px;
}

.resource-category:hover {
	background-color: #d7e4ff;
	border:1px solid #2a81e4;
}

.resource-category img {
	width: 100%;
}
.resource-category .title {
	font-weight: bold;
}



/* -----------------------------------------
	Table
-------------------------------------------- */

table td.label {
	width: 150px;
	font-weight: 600;
	font-size: 0.8rem;
	color:var(--muted-text-color);
	text-align: right;
	padding-right: 15px;
}





/* -----------------------------------------
	Box
-------------------------------------------- */

@media only screen and (min-width: 0px) {
	a.box {
		display: block;
		color:var(--main-text-color);
		text-decoration: none;
	}

	.box {
		border:1px solid var(--box-border-color);
		background-color: var(--box-bg-color);
		border-radius: 10px;
		padding:10px 20px;
		margin-bottom:10px;
	}

	.box-flex {
		display: flex !important;
		flex-direction: column;
	}

	.box.box-hover:hover {
		border:1px solid var(--box-border-color-hover);
	}

	.box.box-shadow {
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}

	.box .icon {
		flex: 1 1 auto;
		font-size: 1.5rem;
	}

	.box .content {
		flex: 1 1 auto;
		position: relative;
	}

	.box .content2 {
		flex: 1 1 auto;
	}


	.box .tools {
		flex: 1 1 auto;
		position: absolute;
		right: 0;
		margin-top: 10px;
		margin-right: 30px;
	}

	.box .tools.tools-lg { flex: 1 1 auto; }


	.box .content .title { font-size:1.4rem; }
	.box .content .desc { font-size:0.8rem; color:var(--muted-text-color); }
	.box .tools .dd { font-size:1.2rem; color:var(--main-text-color); }

	.box .content2 label { color:var(--muted-text-color); text-transform:uppercase; font-size:0.7rem; font-weight:bold; }
	.box .content2 .bignumber { font-size:3rem; }
	.box .content2 .small-text { font-size:0.7rem; }

	.box .badges { }
	.box .badges.badges-top-right { float:right; }
	/* .box .badges .badge { border-radius: 14px; } */

}


@media only screen and (min-width: 768px) {
	.box-flex {	flex-direction: row; }
	.box .icon { flex: 0 0 50px; }
	.box .tools.tools-lg { flex: 0 0 200px; }
	.box .content2 { flex: 0 0 150px; }
	.box .tools {
		position: inherit;
		flex: 0 0 60px;
		text-align: right;
		padding-top:15px;
		margin-top: 0px;
		margin-right: 0px;
	}
}



/* -----------------------------------------
	Fullcalendar
-------------------------------------------- */

@media only screen and (min-width: 0px) {
	.fc .fc-toolbar { flex-direction: column; }
}


@media only screen and (min-width: 768px) {
	.fc .fc-toolbar { flex-direction: row; }
}




/* -----------------------------------------
	Tiles
-------------------------------------------- */

@media only screen and (min-width: 0px) {
	.tile-stack {
		display: grid;
		column-gap: 20px;
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	}

	.tile {
		display: block;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
		border-radius: 8px;
		padding: 20px;
		text-decoration: none;
		text-align: center;
		color:var(--main-text-color);
		border:1px solid transparent;
		margin-bottom: 10px;
	}

	.tile:hover {
		border: 1px solid var(--box-border-color-hover);
	}

	.tile .icon {
		display: block;
		font-size: 2.5rem;
	}

	.tile .title {
		display: block;
		font-size: 1.4rem;
	}
	.tile .description {
		display: block;
		font-size: 0.8rem;
		margin-top:5px;
		color:var(--muted-text-color);
	}


	.tile .icon.red { color:red; }
	.tile .icon.orange { color:orange; }
	.tile .icon.blue { color:blue; }
	.tile .icon.purple { color:purple; }
	.tile .icon.green { color:green; }
	.tile .icon.yellow { color:rgb(165, 165, 16); }
}


@media only screen and (min-width: 768px) {
	.tile {
		margin-bottom: 0px;
	}
}




/* -----------------------------------------
	Colorpicker
-------------------------------------------- */

.pickr .pcr-button {
	height: 3em;
	width: 3em;
	margin-top:5px;
}






/* -----------------------------------------
	Lanlord header
-------------------------------------------- */

@media only screen and (min-width: 0px) {
	.lanlord-header {
		display: flex;
		border-bottom: 1px solid var(--box-border-color);
		padding: 10px;
		margin-top:20px;
		margin-bottom:30px;
	}
	.lanlord-header .back {
		flex: 0 0 50px;
		font-size:1.4rem;
		padding-left: 10px;
	}
	.lanlord-header .title {
		flex: 1 1 auto;
	}
	.lanlord-header .tools {
		flex: 0 1 200px;
		text-align: right;
		padding-top:0px;
		padding-right: 10px;
	}

	.lanlord-header .title h1 {
		margin:0px;
		padding-top:0px;
		font-size: 1.7rem;
	}
}


@media only screen and (min-width: 768px) {
	.lanlord-header .back {
		flex: 0 0 80px;
		font-size:2.2rem;
	}
	
	.lanlord-header .title h1 {
		padding-top:0px;
		font-size: 2.3rem;
	}
	
	.lanlord-header .tools {
		flex: 0 0 200px;
		padding-top:8px;
	}
}






/* -----------------------------------------
	Check buttons
-------------------------------------------- */

@media only screen and (min-width: 0px) {
	.chk-btn-group {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		/* align-items: stretch; */
	}

	.chk-btn {
		border:3px solid var(--box-border-color);
		background-color: var(--box-bg-color);
		color: var(--main-text-color);
		border-radius: 10px;
		padding:10px 20px;
		text-decoration: none;
		width: auto;
		margin:5px 0px;
	}

	a.chk-btn { display: block; }

	.chk-btn:hover {
		border:3px solid var(--box-border-color-hover);
	}

	.chk-btn.active {
		/* background-color: var(--colors-blue); */
		border:3px solid var(--colors-blue);
	}

	.chk-btn .icon {
	}

	.chk-btn .title {
	}

}


@media only screen and (min-width: 768px) {
	.chk-btn-group { flex-direction: row; }
	.chk-btn { width: 100%; margin:10px 10px; }
}






/* -----------------------------------------
	Booking space checkout
-------------------------------------------- */

#booking-space-checkout-wrapper ul {
	margin-bottom: 0px;
}

#booking-space-checkout-wrapper .price {
	font-size: 2.5rem;
	font-weight: 600;
}

#booking-space-checkout-wrapper .price-desc {
	color: var(--muted-text-color);
	font-size: 0.8rem;
	font-style: italic;
}

#booking-space-checkout-wrapper #booking-space-days-list {
	font-size: 0.8rem;
}
