@font-face {
	font-family: Roboto;
	src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
	font-family: OpenSans;
	src: url(../fonts/OpenSans-Regular.ttf);
}

h1 {
	margin: 0;
}

h2 {
	margin: 0;
}

body {
	font-family: Roboto;
	color: #FFF;
	margin: 0;
}

::selection {
	color: #fff;
	background-color: rgb(112, 175, 26);
}

body.admin {
	background-size: 100% 100%;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	transition: background .2s;
	background-image: url(../images/background.png);
	letter-spacing: 1px;
}

.wrapper {
	display: flex;
	flex-direction: row;
	height: 100vh;
}

.left-panel {
	width: 250px;
	background: rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease-in;
}

.left-panel.closed {
	width: 40px;
}

.left-panel .header {
	border-right: 1px solid rgb(255, 255, 255, 0.5);
	border-bottom: 1px solid rgb(255, 255, 255, 0.5);
	display: flex;
	padding: 10px;
	flex-direction: row-reverse;
	font-size: 25px;
	justify-content: space-between;
}

.left-panel .header .title {
	margin-left: 25px;
}

.left-panel .header i {
	cursor: pointer;
}

.left-panel.closed .header .title {
	display: none;
}

.left-panel ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.left-panel li.interactable {
	padding: 10px;
	cursor: pointer;
	display: flex;
}

.left-panel li.block-marker {
	padding: 10px;
	display: flex;
	color: rgb(150, 150, 150);
	text-transform: uppercase;
}

.left-panel.closed li.block-marker {
	display: none;
}

.left-panel li.selected {
	background: rgb(255, 255, 255, 0.5);
}

.left-panel li.interactable:hover {
	background: rgb(255, 255, 255, 0.2);
}

.left-panel li.interactable .title {
	margin-left: 25px;
}

.left-panel.closed li.interactable .title {
	display: none;
}

.left-panel.closed:hover {
	width: 250px;
}

.left-panel.closed:hover li.block-marker {
	display: block;
}

.left-panel.closed:hover .header .title {
	display: block;
}

.left-panel.closed:hover li.interactable .title {
	display: block;
}

.right-panel {
	flex: 1;
}

.right-panel .header {
	background: rgba(0, 0, 0, 0.2);
	line-height: 50px;
	margin-left: 15px;
}

.login {
	border-left: 1px solid rgb(255, 255, 255, 0.5);
	padding: 0 10px 0 10px;
}

.nav-link {
	padding-left: 30px !important;
}

.banner {
	width: 100%;
	min-height: 700px;
	position: relative;
	padding: 0;
}

.camp-banner {
	width: 100%;
	min-height: 700px;
	position: relative;
	padding: 0;
	background-size: cover;
	background-position: center center;
}

.camp-banner:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000000;
	opacity: 0.7;
	z-index: 2;
}

.banner .form-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%);
	width: 90%;
}

@media only screen and (max-width: 576px) {
	.banner .form-container {
		transform: translate(-50%, -50%);
	}
}

.banner .form-container .text-container {
	text-align: center;
	padding-bottom: 50px;
}

.opaque {
	background-color: rgba(0, 0, 0, 0.8) !important;
}

.green-button {
	background-color: #70af1a !important;
	color: white !important;
}

.green-button:hover {
	color: black !important;
}

.grey {
	color: #a5a5a5;
}

.white {
	color: white !important;
}

.green {
	color: #70af1a;
}

.bg-white {
	background: white !important;
}

h1 {
	font-family: OpenSans;
	font-size: 60px !important;
	font-weight: 700 !important;
	line-height: 1em !important;
	text-transform: uppercase !important;
	color: #FFF !important;
}

h2 {
	font-family: OpenSans;
	font-size: 36px !important;
	line-height: 43px !important;
	font-weight: 400 !important;
}

@media only screen and (max-width: 576px) {
	h1 {
		font-size: initial !important;
	}

	h2 {
		font-size: initial !important;
	}
}

h4 {
	font-family: OpenSans;
	font-weight: 400 !important;
	font-size: 18px !important;
	color: #FFF !important;
}

h5 {
	font-family: OpenSans;
	font-size: 16px !important;
	line-height: 26px !important;
}

.transparent-button {
	border-color: #fff !important;
	color: #fff !important;
	background-color: rgba(255, 255, 255, 0.1) !important;
}

.transparent-button:hover {
	color: #222 !important;
	background-color: #fff !important;
}

.spacer-100 {
	height: 100px;
}

.spacer-50 {
	height: 50px;
}

.spacer-20 {
	height: 20px;
}

.category-card a {
	color: #222;
	text-decoration: none !important;
	margin-bottom: 0;
	font-size: 18px;
	line-height: 24px;
}

.category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 20px 25px;
	min-width: 250px;
	border: 1px solid grey;
	cursor: pointer;
}

.category-card .image-holder {
	width: 50px;
	height: 50px;
	border: 1px solid grey;
	border-radius: 50%;
	padding: 10px;
}

.category-card .image-holder img{
	width: 30px;
}

.category-card:hover .image-holder {
	background-color: #70af1a;
	border-color: #70af1a;
}

.category-card:hover p {
	color: #70af1a;
}

.category-card p {
	margin-top: 10px;
}

.grey-section {
	background-color: rgb(238,238,238);
}

footer {
	background-color: rgba(0, 0, 0, 0.8);
	font-size: 14px;
	color: rgb(165, 165, 165);
}

footer a {
	color: rgb(165, 165, 165);
	text-decoration: none !important;
}

footer h5 {
	color: rgb(255, 255, 255);
}

.footer-section {
	min-width: 350px;
}

footer .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.preformatted {
	color: white;
	white-space: break-spaces;
}

.preformatted-camp {
	color: black;
	white-space: break-spaces;
}

.parallax {
	background-image: url(../images/parallax-dark.jpg);
	min-height: 500px; 
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-title-holder {
	width: 100%;
	min-height: 300px;
	position: relative;
	padding: 0;
}

.page-title-holder .page-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%);
	width: 90%;
	text-align: center;
}

.card-icon {
	padding: 30px;
}

.accordion {
	--bs-accordion-btn-focus-border-color: grey !important;
	--bs-accordion-btn-focus-box-shadow: 0 0 0 1px rgba(165, 165, 165, 0.25) !important;
}

select option:checked {
	color: rgb(165, 165, 165) !important;
	font-weight: 700;
}

.white-form-holder {
	background-color: rgba(255, 255, 255, 0.3)! important;
	border-radius: 5px;
}

.white-form-holder-darker {
	background-color: rgba(255, 255, 255, 0.7)! important;
	border-radius: 5px;
}

.pointer {
	cursor: pointer;
}

.form-control:focus, .form-select:focus {
	border-color: #000000 !important;
	box-shadow: none !important;
}

.form-label, .form-check-label {
	font-weight: 500;
	cursor: pointer;
}

.hidden {
	display: none !important;
}

.camp-card {
	width: 18rem;
}

.camp-gallery {
	max-width: 35rem;
}

.info-box {
	max-width: 750px;
}

.view {
	overflow: hidden;
	position: relative;
}

.view img {
	transition: all 0.3s ease-in-out;
	object-fit: cover;
}

.view:hover .card-img-top { 
	transform: scale(1.2);
}

.category-icons {
	position: absolute;
	bottom: 5px;
	right: 5px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.category-icon-image {
	width: 30px;
	height: 30px;
	background-color: white;
}

.category-icon {
	width: 50px;
	height: 50px;
	border: 1px solid #70af1a;
	border-radius: 50%;
	padding: 10px;
	background-color: white;
	margin-right: -10px;
}

.camp-title {
	position: absolute;
	bottom: 10%;
	left: 10%;
	width: 90%;
	text-align: left;
	z-index: 2;
}

.gallery img {
	width: 50%;
}

@media only screen and (min-width: 767px) {
	.camp-info {
		margin-left: 50px;
	}
}

.center-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%);
	width: 90%;
	text-align: center;
}

.image-upload {
	width: 150px;
	height: 150px;
	border: solid 1px black;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.cookiebar {
	position: fixed;
	bottom: 0px;
	text-align: center;
	width: 100%;
	background: #ffffff;
	color: black;
	padding: 15px;
	z-index: 3;
	display: none;
}

.cookiebar a {
	text-decoration: none;
	color: black;
	font-weight: 700;
}

.two-line-text {
	height: calc(2 * 1.5em);
	line-height: 1.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.owl-item {
	display: flex;
	justify-content: space-around;
}

.delete-image-text {
	color: white;
	background: black;
	text-align: center;
	font-size: 12px;
	padding: 3px;
}

#map {
	height: 500px;
}

.btn-160 {
	min-width: 160px;
}

.partner-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 20px 25px;
	min-width: 250px;
	cursor: pointer;
}

.partner-logo {
	width: 200px;
	height: 200px;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.partner-name {
	font-size: 20px;
	font-weight: bold;
	padding-top: 10px;
	color: white;
}

.partner-card:hover .partner-logo {
	transform: scale(1.1);
}

.partner-card:hover .partner-name {
	color: #70af1a;
}

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	animation: fadeIn 0.2s ease-in-out;
}

.loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	flex-direction: column;
}

.loading {
	position: relative;
	width: 4rem;
	height: 4rem;
	transform-style: preserve-3d;
	perspective: 800px;
}

.loading .arc {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.loading .arc:nth-child(1) {
	animation: rotate1 1.15s linear infinite;
}

.loading .arc:nth-child(2) {
	animation: rotate2 1.15s linear infinite;
}

.loading .arc:nth-child(3) {
	animation: rotate3 1.15s linear infinite;
}

.loading .arc:nth-child(1) {
	animation-delay: -0.8s;
	border-bottom: 3px solid red;
}

.loading .arc:nth-child(2) {
	animation-delay: -0.4s;
	border-bottom: 3px solid green;
}

.loading .arc:nth-child(3) {
	animation-delay: 0s;
	border-bottom: 3px solid blue;
}

.loader-text {
	color: white;
	padding-top: 15px;
	font-size: larger;
	font-weight: 500;
}

@keyframes rotate1 {
	from {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
	}

	to {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
	}
}

@keyframes rotate2 {
	from {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
	}

	to {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
	}
}

@keyframes rotate3 {
	from {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
	}

	to {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
	}
}