:root {
  --color_bg: #15241f;
  --color_text: #fefff1;
  --color_hi: #e2922f;
}


html, body {
	height: 100%;
}
body {
	background-color: var(--color_bg);
	color: var(--color_text);
	font-family: "quasimoda", Helvetica, Arial, sans-serif; 
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
}
a {
	color: var(--color_hi);
	text-decoration: none;
}
a:hover {
	color: var(--color_hi);
}


.space_top {
	margin-top: 30px;
}
.space_bot {
	margin-bottom: 30px;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
	-webkit-appearance: none;
	border-radius: 0;
}

.img_full {
	display: block;
	width: 100%;
	height: auto;
}
.img_square {
	width: 100%;
	padding-bottom: 100%;
	background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
}
.img_rect {
	width: 100%;
	padding-bottom: 56.25%;
	background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
}

.relative {
	position: relative;
}
.abs_100 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* centered columns styles */
.row-centered {
	text-align:center;
}
.col-centered {
	display:inline-block;
	float:none;
	/* reset the text-align */
	text-align:left;
	/* inline-block space fix */
	margin-right:-4px;
}


hr {
	border-top: 1px solid var(--color_text);
	margin-top: 30px;
  margin-bottom: 40px;
}

h1, h2, h3, h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.0;
}

@media (max-width: 767px) {

	body {
		font-size: 18px;
	}
	h1 {
		font-size: 45px;
	}
	h2 {
		font-size: 25px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 14px;
	}

}
@media (min-width: 768px) {

	body {
		font-size: 24px;
	}
	h1 {
		font-size: 60px;
	}
	h2 {
		font-size: 40px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 14px;
	}
}

h2 {
	text-transform: uppercase;
	font-weight: bold;
}



.header_holder {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	color: var(--color_text);
	transition: all 0.3s;
} 
.header_holder_background {
	background-color: var(--color_bg);
}
.header_logo {
}

.header_logo_in_menu {
	height: 35px;
	margin-bottom: 30px;
}
.header_buy_tickets {
	margin-left: 20px;
}
.hamburger {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 1002;
	cursor: pointer;
}
.hamburger_image {
	width: 24px;
	background-image: url(/images/burger.png);
	background-size: cover;
}
.hamburger_image.is-active {
	background-image: url(/images/burger_x.png);
}
.header_elements {
	display: inline-block;
}




@media (max-width: 767px) {

	.header_holder {
		padding: 15px 15px;
		min-height: 45px;
	}
	.header_holder_pushdown {
		height: 90px;
	}
	.header_holder_background_mobile {
		background-color: var(--color_bg);
	}
	
	.header_elements {
		height: 25px;
	}
	
	.header_socials_holder svg {
		width: 25px;
		height: 25px;
		margin-right: 0px;
	}
	.header_button {
		padding: 0 15px;
		margin-left: 15px;
		font-size: 14px;
		line-height: 1.4;
	}
	
	.liquor_store_mobile_holder {
		text-align: right;
		padding-top: 5px;
	}

	.title_replace {
		height: 20px;
	}
	
	.logo_overlay {
  	width: 75%;
  }
  .noticeboard_logo {
  	width: 50%;
  	padding-top:50px;
  	padding-bottom:30px;
  }

	.space_top_big {
		margin-top: 40px;
	}
	.space_bot_big {
		margin-bottom: 40px;
	}
}
@media (min-width: 768px) {

	.header_holder {
		padding: 30px 30px;
		min-height: 60px;
	}
	.header_holder_pushdown {
	}
	.header_elements {
		height: 45px;
	}
	.header_socials_holder svg {
		width: 45px;
		height: 45px;
		margin-right: 5px;
	}
	.header_button {
		padding: 0 35px;
		margin-left: 15px;
		font-size: 24px;
		line-height: 1.7;
	}

	.title_replace {
		height: 35px;
	}
	.logo_overlay {
  	width: 35%;
  }
  .noticeboard_logo {
  	width: 25%;
  	padding-top:150px;
  	padding-bottom:30px;
  }
  
	.space_top_big {
		margin-top: 90px;
	}
	.space_bot_big {
		margin-bottom: 90px;
	}
}

.logo_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}


.header_socials_holder svg {
	fill: var(--color_text);
	cursor: pointer;
}
.header_socials_holder svg:hover {
	fill: var(--color_hi);
}

.header_button {
	border: 2px solid var(--color_text);
	font-weight: bold;
	color: var(--color_text);
}

.header_button:hover {
	background: var(--color_text);
	color: var(--color_hi);
	text-decoration: none;
}





.slide_holder {
	padding: 5px;
}
.slick-dots li button:before {
	color: var(--color_text);
}
.slick-dots li.slick-active button:before {
  color: var(--color_hi);
}
.transparent_hover {
	transition: all 0.3s;
}
.transparent_hover:hover {
	opacity: 0.7;
}


.bg_noticeboard {
	background-color: var(--color_hi);
}
.bg_noticeboard	.slick-dots li.slick-active button:before {
  color: var(--color_bg);
}
.bg_noticeboard a {
	color: var(--color_bg);
}

.bg_location {
	background-color: var(--color_text);
	color:  var(--color_bg);
}
.bg_location a {
	color:  var(--color_bg);
}

.footer_links a {
	color: var(--color_text);
}
.footer_fade {
	opacity: 0.5;
	font-size: 60%;
}
.footer_electriks_links {
	font-size: 120%;
}










@media (max-width: 767px) {

}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}