/* [CONFIGURATION] */
:root {
	/* Overview of default style variables. Only uncomment what you change otherwise leave as is. */

	/* Colour variations */
	--primary: #EDE166;
	/*
	--primary-bg: #e3f4ff;
	--primary-dark: #1269ec;
	--primary-light: #008fff;
	 */
	--secondary: #101010;
	/*
	--secondary-bg: #e4f1f7;
	--secondary-dark: #0f3c62;
	--secondary-light: #3c8cd2;
	*/
	--tertiary: #E6E6E6;
	/*
	--tertiary-bg: #ecedef;
	--tertiary-dark: #607285;
	--tertiary-light: #8f9ba9;
	*/
	/*
	--dark: #343a40;
	--dark-bg: #f0f0f0;
	--dark-dark: #23272b;
	--dark-light: #343a40;
	*/
	/*
	--light: #f8f9fa;
	--light-bg: #f8f9fa;
	--light-dark: #e2e6ea;
	--light-light: #f8f9fa;
	*/

	/*
	--info: #17a2b8;
	--info-bg: #e0f6f9;
	--info-dark: #138496;
	--info-light: #17a2b8;
	*/
	/*
	--success: #28a745;
	--success-bg: #e7f6e9;
	--success-dark: #218838;
	--success-light: #28a745;
	*/
	/*
	--warning: #ffc107;
	--warning-bg: #fff8e1;
	--warning-dark: #e0a800;
	--warning-light: #ffc107;
	*/
	/*
	--danger: #dc3545;
	--danger-bg: #ffecf1;
	--danger-dark: #c82333;
	--danger-light: #dc3545;
	*/

	/* Fonts */
	/* --font-family-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
	/* --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
	/* --line-height: 1.5; */

	/* Borders */
	--button-border: 4px;
	--input-border: 2px;
	/* --panel-border: 1px; */

	/* Radii */
	--button-radius: 0.5rem;
	--input-radius: 0.5rem;
	/* --panel-radius: 0.5rem; */

	/* Padding */
	--button-padding: 1rem;
	--input-padding: 1rem;
	/* --panel-padding: 1rem; */

	/* Fonts */
	--font: 'Sen', sans-serif;
}

body {
	font-family: var(--font);
	color: black;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
}

.row.g-0>div
{
	padding:0px !important;
}

@media(min-width:992px) {
	.col-md-24
	{
		flex: 0 0 20%;
		max-width: 20%;
	}
}

main {
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font);
	font-weight: 700;
	color: black;
}

h1, .h1 {
	font-size: 1.75rem;
	line-height: 1.75rem;
	margin: 0 0 2rem 0;
}

h2, .h2 {
	font-size: 1.25rem;
	line-height: 1.25rem;
}

h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-size: 1.15rem;
	line-height: 1.15rem;
}

h1.title,
h2.title,
h3.title,
.title {
	position: relative;
	font-family: var(--font);
	font-size: 1.75rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: black;
	margin: 0 0 2rem 0;
}

@media (min-width: 992px) {
	/* Large (lg) */
	h1, .h1 {
		font-size: 2.5rem;
		line-height: 2.5rem;
	}
	h2, .h2 {
		font-size: 1.75rem;
		line-height: 1.75rem;
	}
	h3, .h3,
	h4, .h4,
	h5, .h5,
	h6, .h6 {
		font-size: 1.25rem;
		line-height: 1.25rem;
	}
	h1.title,
	h2.title,
	h3.title,
	.title {
		font-size: 1.6rem;
		line-height: 1rem;
	}
}

a {
	color: var(--primary);
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		 -o-transition: all 0.3s;
			transition: all 0.3s;
}

a:hover,
a:focus,
a:active {
	color: var(--primary);
}

.nopad {
	padding: 0 !important;
}

.width-100 {
	width: 100%;
}

.height-100 {
	height: 100%;
}

.boxshadow {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	   -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		 -o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

body:not([data-editor-mode="content"]) .image-to-background {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}

body:not([data-editor-mode="content"]) .image-to-background div {
	height: 100%;
}

body:not([data-editor-mode="content"]) .image-to-background img {
	height: 100%;
	object-fit: cover;
	object-position: 50%;
}

/* [ADMINBAR] */
html[data-logged="true"] header.nav-header {
	top: 0;
}

@media (min-width: 576px) {
	/* Small (sm) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
}
@media (min-width: 768px) {
	/* Medium (md) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
}
@media (min-width: 992px) {
	/* Large (lg) */
	html[data-logged="true"] header.nav-header {
		top: 51px;
	}
}

/* [HEADER] */
header.nav-header {
	position: sticky;
	display: block;
	width: 100%;
	z-index: 1040;
	top: 0;
	left: 0;
	padding: 0;
	background-color: rgba(255, 255, 255, 1);
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		 -o-transition: all 0.3s;
			transition: all 0.3s;
}

header.nav-header.scroll {
	position: sticky;
	background-color: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	   -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	    -ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	     -o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

header.nav-header .logo {
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	width: 75%;
	height: auto;
	padding: 5px 0px;
}

header.nav-header nav.navbar-light {
	width: 100%;
}

header.nav-header .top {
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	width: 100%;
	padding: 0.25rem 0;
	background-color: var(--primary);
}

header.nav-header .top .logotext {
	font-size: 1rem;
	font-weight: 700;
}

header.nav-header .logotext-mobile {
	display: flex;
	align-content: center;
    flex-direction: row;
    align-items: center;
	width: 100%;
	height: 100%;
	font-size: 0.8rem;
	font-weight: 700;
}

header.nav-header a.phonebtn {
	position: relative;
	display: inline-block;
	font-size: 1.75rem;
	color: var(--secondary);
}

header.nav-header .top ul.toplist {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}

header.nav-header .top ul.toplist li {
	margin-left: 1rem;
	font-size: 1.1rem;
	font-weight: 700;
}

header.nav-header .top ul.toplist li:first-child {
	margin-left: 0;
}

header.nav-header .top ul.toplist li a {
	background-color: var(--secondary);
	color: var(--primary);
	padding: 0.15rem 1rem;
	border-radius: 0.25rem;
	border: 2px solid var(--secondary);
	text-decoration: none;
}

header.nav-header .top ul.toplist li a i {
	font-size: 1rem;
	margin-left: 0.5rem;
}

header.nav-header .top ul.toplist li a:hover,
header.nav-header .top ul.toplist li a:focus {
	background-color: var(--secondary);
	color: white;
	border: 2px solid white;
}

header.nav-header .bottom {
	position: relative;
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	width: 100%;
	background-color: white;
	margin: 0;
}

/* [MENU] */

/*
# Desktop Menu
# Hamburger
# Collapse Menu
*/

/* Desktop Menu */
ul.navbar {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
	list-style: none;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

ul.navbar li {
	margin: 0 0.5rem 0 0;
	font-weight: 700;
	font-size: 1.1rem;
}

ul.navbar li:last-child {
	margin: 0;
}

ul.navbar li a {
	position: relative;
	color: black;
	padding: 0.5rem 0;
}

ul.navbar li a:hover,
ul.navbar li a:focus {
	color: black;
}

ul.navbar li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 0%;
	height: 2px;
	background: black;
	transition: all 0.4s ease;
}

ul.navbar li a:hover:before,
ul.navbar li a:focus:before {
	width: 100%;
}

ul.navbar li a.active {
	color: black;
}

ul.navbar li a.active:hover,
ul.navbar li a.active:focus {
	color: black;
}

ul.navbar li a.active:before {
	width: 100%;
}

ul.navbar li a.active:hover:before,
ul.navbar li a.active:focus:before {
	width: 0%;
}

ul.navbar li.dropdown .dropdown-menu {
	margin-top: 23px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background-color: var(--primary);
	color: var(--white);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item {
	border: 1px solid var(--primary);
	color: var(--primary);
	background-color: var(--white);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item:hover,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item:focus {
	color: var(--white);
	background-color: var(--primary);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item:active {
	border: 1px solid var(--black);
	color: var(--white);
	background-color: var(--black);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active:hover,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active:focus {
	border: 1px solid var(--black);
	color: var(--black);
	background-color: var(--white);
}

/* Hamburger */
.hamburger {
	position: relative;
	display: inline-block;
	z-index: 52;
	margin: 0;
}

.ham {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.hamRotate.active {
	transform: rotate(45deg);
}

.hamRotate180.active {
	transform: rotate(180deg);
}

.line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: var(--secondary);
	stroke-width: 5.5;
	stroke-linecap: round;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ham:hover .line {
	stroke: var(--secondary);
}

.ham.active .line {
	stroke: var(--secondary);
}

.ham.active:hover .line {
	stroke: var(--primary);
}

.ham1 .top {
	stroke-dasharray: 40 139;
}

.ham1 .bottom {
	stroke-dasharray: 40 180;
}

.ham1.active .top {
	stroke-dashoffset: -98px;
}

.ham1.active .bottom {
	stroke-dashoffset: -138px;
}

/* Collapse Menu */
.navbar-mobile {
	position: absolute;
	display: block;
	width: 100%;
	z-index: 1;
	color: var(--secondary);
	top: 86px;
	right: unset;
	left: -100%;
	opacity: 0;
	padding: 1rem 0;
	pointer-events: none;
	-webkit-transition: all 0.5s;
	   -moz-transition: all 0.5s;
		-ms-transition: all 0.5s;
		 -o-transition: all 0.5s;
			transition: all 0.5s;
}

@media (min-width: 576px) {
	/* Small (sm) */
	.navbar-mobile {
		top: 86px;
	}
}
@media (min-width: 768px) {
	/* Medium (md) */
	.navbar-mobile {
		top: 86px;
	}
}

@media (min-width: 992px) {
	/* Large (lg) */
	.navbar-mobile {
		top: 86px;
	}
}

.navbar-mobile.navbar--open {
	right: unset;
	left: 0;
	opacity: 1;
	pointer-events: all;
	background-color: white;
}

header.nav-header.scroll .navbar-mobile.navbar--open  {
	background-color: white;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	   -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		 -o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.navbar-mobile ul.navlist-nav {
	display: flex;
	flex-direction: column;
    align-content: center;
    justify-content: space-between;
	align-items: flex-start;
	margin: 0;
	padding: 0;
}

.navbar-mobile ul.navlist-nav li {
	font-weight: 700;
	font-size: 1.15rem;
	color: black;
	display: block;
	width: 100%;
}

.navbar-mobile ul.navlist-nav li .nav-link,
.navbar-mobile ul.navlist-nav li a {
	font-weight: 700;
	font-size: 1.15rem;
	color: black;
	padding: 0.5rem;
	display: flex;
	width: 100%;
}

.navbar-mobile ul.navlist-nav li a:hover,
.navbar-mobile ul.navlist-nav li a:focus {
	color: var(--secondary);
}

.navbar-mobile ul.navlist-nav li a.active {
	color: var(--primary);
}

.navbar-mobile ul.navlist-nav li a.active:hover,
.navbar-mobile ul.navlist-nav li a.active:focus {
	color: var(--secondary);
}

@media (min-width: 576px) {
	/* Small (sm) */
	.navbar-mobile ul.navlist-nav {
		flex-direction: column;
	}
}

@media (min-width: 768px) {
	/* Medium (md) */
	.navbar-mobile ul.navlist-nav {
		flex-direction: column;
		align-items: center;
	}
	.navbar-mobile ul.navlist-nav li a {
		padding: 0.5rem 1rem;
		display: flex;
	}
}

@media (min-width: 992px) {
	/* Medium (lg) */
	.navbar-mobile.navbar--open {
		background-color: transparent;
	}
	.navbar-mobile ul.navlist-nav {
		flex-direction: row;
		justify-content: flex-end;
	}
	.navbar-mobile ul.navlist-nav li {
		margin: 0 1rem 0 0;
		display: flex;
		width: auto;
	}
	.navbar-mobile ul.navlist-nav li:last-child {
		margin: 0;
	}
}

/* [VIDEO] */
section.video {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

section.videowrap {
	position: relative;
	margin-top: 0;
	background-color: var(--primary);
}

section.videowrap .content {
	position: relative;
	display: block;
	width: 100%;
	padding: 2rem;
	background-color: var(--primary);
}

section.videowrap .content .title {
	font-size: 1.75rem;
	line-height: 1.75rem;
}

@media (min-width: 768px) {
	/* Medium (md) */
	section.videowrap {
		margin-top: -12rem;
		background-color: transparent;
	}
	section.videowrap .content .title {
		font-size: 2rem;
		line-height: 2rem;
	}
}

@media (min-width: 1400px) {
	/* Extra extra large (xxl) */
	section.video {
		max-height: 620px;
	}
}

/* [CAROUSEL] */
section.header {
	position: relative;
}

section.header .carousel-item {
	display: flex;
	flex-direction: column;
    align-content: center;
    justify-content: center;
	width: 100%;
	height: 100%;
}

.carousel-caption {
	text-align: left;
	left: 5%;
	right: 5%;
	bottom: 0%;
}

.carousel-caption p {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--theme-white);
}

.carousel-caption p:first-child {
	font-family: var(--font-titles);
	font-size: 2rem;
	line-height: 2rem;
	font-weight: 400;
	color: var(--theme-yellow);
	margin-bottom: 2rem;
	text-shadow: 0px 3px 3px rgba(0,0,0,0.4);
}

.carousel-item .carousel-caption a.btn {
	padding: 0.5rem !important;
}

/* [CONTENT] */
section.page {
	position: relative;
	padding: 3rem 0;
}

section.page.bordertop {
	border-top: 5px solid var(--secondary);
}

section.page.marg {
	margin: 3rem 0;
}

section.page .halfbg {
	position: relative;
	display: flex;
	z-index: 0;
	top: unset;
	right: unset;
	width: 100%;
	height: 200px;
}

section.page .wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	background-color: white;
	padding: 3rem 0;
}

section.fullscreen {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 6rem 0;
}

section.fullscreen:after {
	position: absolute;
	display: flex;
	content: "";
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

section.fullscreen.yellowscreen:after {
	background-color: rgba(237, 225, 102, 0.75);
}

section.fullscreen.blackscreen:after {
	background-color: rgba(0, 0, 0, 0.75);
}

section.fullscreen .whitewrap {
	background-color: white;
	padding: 3rem;
	border-radius: 2rem;
	display: block;
}

section.fullscreen .blackwrap {
	color: white;
}

section.fullscreen h2.title {
	font-size: 1.75rem;
	line-height: 1.75rem;
	color: var(--primary);
}

section.fullscreen h2.pagetitle {
	font-size: 1.25rem;
    line-height: 1.25rem;
    color: #000;
	margin: 0 0 2rem 0;
}

section.fullscreen .blackwrap h2.title {
	color: white;
}

section.sindsbg {
	background-image: url('assets/sinds1991.svg');
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: left bottom;
}

section.yellowbar {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 3rem 0;
	background-color: var(--primary);
}

section.fullscreen h3.title,
section.fullscreen .title,
section.yellowbar h3.title {
	font-size: 1.75rem;
	line-height: 1.75rem;
	margin: 0;
}

section.page .fs-album a {
	display: flex;
	width: 100%;
	height: 100%;
}

section.page .fs-album .py-2 {
	padding: 0 !important;
}

section.googlemap {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 450px;
}

.whitewrap ul {
	list-style-type: none;
	font-weight: 400;
	font-size: 1rem;
	margin: 0;
	padding: 0;
	column-count: 1;
    column-gap: 0;
}

.whitewrap ul li {
	position: relative;
	margin: 0 0 1.5rem 0;
	padding-left: 2rem;
}

.whitewrap ul li:before {
	position: absolute;
	top: 0;
	left: 0;
	color: #02BF18;
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 700;
	font-size: 1.1rem;
	content: "\f00c";
	margin: 0;
}

.flex {
	display: flex;
	align-content: flex-start;
	flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	height: 100%;
	width: 100%;
}

.buttonwrap {
	position: relative;
	display: flex;
	flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: center;
}

.buttonwrap a:first-child {
	margin-bottom: 2rem;
	margin-right: 0;
}

@media (min-width: 992px) {
	/* Large (lg) */
	section.page {
		padding: 5rem 0;
	}
	section.page .halfbg {
		position: absolute;
		top: 0;
		right: 0;
		width: 50%;
		height: 100%;
	}
	section.page .wrapper {
		padding: 6rem 6rem 6rem 0;
	}
	section.fullscreen h2.title {
		font-size: 2rem;
		line-height: 2rem;
	}
	section.fullscreen h2.pagetitle {
		font-size: 1.5rem;
		line-height: 1.5rem;
	}
	section.fullscreen h3.title,
	section.fullscreen .title,
	section.yellowbar h3.title {
		font-size: 2rem;
		line-height: 2rem;
	}
	section.fullscreen .whitewrap {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100%;
	}
	.whitewrap ul {
		font-size: 1.25rem;
		column-count: 2;
		column-gap: 2rem;
	}
}

/* [TABLES] */
table.mce-item-table {
	font-size: 1.1rem;
}

table.mce-item-table tr td:last-child {
	text-align: right;
}

/* [BLOG] */
.blog-item-preview {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	border-top: 1px solid var(--lightbrown);
	padding-bottom: 3rem;
}

.blog-item-preview a.blog-item-link {
	position: relative;
	text-decoration: none;
}

.blog-item-preview a.blog-item-link:hover,
.blog-item-preview a.blog-item-link:focus {
	color: var(--primary);
}

.blog-item-preview a.blog-item-link .image {
	position: relative;
}

.blog-item-preview a.blog-item-link .image:before {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	z-index: 1;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(18, 29, 36, 0);
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		 -o-transition: all 0.3s;
			transition: all 0.3s;
}

.blog-item-preview a.blog-item-link:hover .image:before,
.blog-item-preview a.blog-item-link:focus .image:before {
	background: rgba(18, 29, 36, 0.5);
}

.blog-item-preview a.blog-item-link .image:after {
    position: absolute;
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
	z-index: 2;
    font-size: 100px;
    color: rgba(237, 225, 102, 0);
    top: 50%;
    margin-top: -22px;
    left: 50%;
    margin-left: -22px;
    transition: all 0.3s ease 0s;
}

.blog-item-preview a.blog-item-link:hover .image:after,
.blog-item-preview a.blog-item-link:focus .image:after {
	color: rgba(237, 225, 102, 1);
}

.blog-item-preview a.blog-item-link .content {
	padding-top: 1rem;
}

.blog-item-preview h3.title-blog {
	position: relative;
	display: inline;
	font-size: 1.5rem;
	color: var(--secondary);
}

.blog-item-preview a.blog-item-link:hover h3.title-blog,
.blog-item-preview a.blog-item-link:focus h3.title-blog {
	color: var(--primary);
}

/* [BUTTONS] */
.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-back {
	position: relative;
	font-family: var(--font);
	font-size: 1rem;
	font-weight: 700;
	display: block;
	width: 100%;
	padding: 1rem 2rem !important;
	text-align: center;
}

.btn-primary:after,
.btn-secondary:after,
.btn-tertiary:after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    font-size: 1rem;
    content: "\f054";
    margin-left: 1rem;
}

.btn-primary {
	border-color: var(--primary);
	background-color: var(--primary);
	color: black;
}

.btn-primary:hover,
.btn-primary:focus {
	border-color: var(--primary);
	background-color: black;
	color: var(--primary);
}

.btn-secondary {
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: var(--primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
	border-color: white;
	background-color: var(--secondary);
	color: white;
}

.btn-tertiary {
	border-color: white;
	background-color: white;
	color: black;
}

.btn-tertiary:hover,
.btn-tertiary:focus {
	border-color: white;
	background-color: black;
	color: white;
}

.btn-back {
	border-color: black;
	background-color: transparent;
	color: black;
}

.btn-back:before {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    font-size: 1rem;
    content: "\f053";
    margin-right: 1rem;
}

.btn-back:hover,
.btn-back:focus {
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: white;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-tertiary:focus,
.btn-back:focus {
	box-shadow: none;
}

@media (min-width: 576px) {
	/* Small (sm) */
	.btn-primary,
	.btn-secondary,
	.btn-tertiary,
	.btn-back {
		display: block;
		width: 100%;
		text-align: center;
	}
}

@media (min-width: 768px) {
	/* Medium (md) */
	.btn-primary,
	.btn-secondary,
	.btn-tertiary,
	.btn-back {
		display: inline-block;
		width: auto;
		padding: 0.5rem 1rem !important;
	}
}

@media (min-width: 992px) {
	/* Large (lg) */
	.btn-primary,
	.btn-secondary,
	.btn-tertiary,
	.btn-back {
		display: inline-block;
		width: auto;
	}
}

/* [ADRES] */
ul.adres {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

ul.adres li {
	margin: 0 0 0.25rem 0;
	font-weight: 300;
}

ul.adres li:last-child {
	margin: 0;
}

ul.contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

ul.contact li {
	margin: 0 0 1rem 0;
	font-weight: 400;
}

ul.contact li:last-child {
	margin: 0;
}

ul.contact li i {
	margin: 0 0.5rem 0 0;
	min-width: 20px;
	color: var(--primary);
}

ul.contact li a {
	position: relative;
	text-decoration: none;
	color: black;
}

ul.contact li a:hover,
ul.contact li a:focus {
	color: black;
}

ul.contact li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 1px;
	background: black;
	transition: all 0.4s ease;
}

ul.contact li a:hover:before,
ul.contact li a:focus:before {
	width: 100%;
}

/* [SOCIALS] */
ul.socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
    flex-direction: row;
	justify-content: flex-start;
    align-items: center;
	font-size: 1.25rem;
}

ul.socials li {
	margin: 0 0.5rem 0 0;
}

ul.socials li:last-child {
	margin: 0;
}

ul.socials li a.facebook {
	color: var(--secondary);
}

ul.socials li a.facebook:hover,
ul.socials li a.facebook:focus {
	color: #1877f2;
}

ul.socials li a.instagram {
	color: var(--secondary);
}

ul.socials li a.instagram:hover,
ul.socials li a.instagram:focus {
	color: #c32aa3;
}

ul.socials li a.linkedin {
	color: var(--secondary);
}

ul.socials li a.linkedin:hover,
ul.socials li a.linkedin:focus {
	color: #0a66c2;
}

ul.socials li a.twitter {
	color: var(--secondary);
}

ul.socials li a.twitter:hover,
ul.socials li a.twitter:focus {
	color: #1da1f2;
}

ul.socials li a.pinterest {
	color: var(--secondary);
}

ul.socials li a.pinterest:hover,
ul.socials li a.pinterest:focus {
	color: #bd081c;
}

ul.socials li a.youtube {
	color: var(--secondary);
}

ul.socials li a.youtube:hover,
ul.socials li a.youtube:focus {
	color: #ff0000;
}

/* [MODAL] */
.modal-header {
	background-color: var(--secondary) !important;
	font-family: var(--font);
	font-size: 1.25rem;
	text-transform: uppercase;
	font-weight: 400;
	color: white;
}

.modal-header .close {
    color: var(--theme-black);
}

.modal-body .custommodal form.form-mailto button {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	border-color: var(--theme-yellow);
	background-color: var(--theme-yellow);
	font-size: 1rem;
	font-weight: 400;
	color: var(--theme-black);
	text-transform: uppercase;
}

.modal-body .custommodal form.form-mailto button:hover,
.modal-body .custommodal form.form-mailto button:focus {
	border-color: var(--theme-yellow);
	background-color: var(--theme-black);
	color: var(--theme-white);
	box-shadow: none;
}

/* [FORM] */
.formbox {
	position: relative;
	padding: 2rem;
	background-color: white;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	   -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		 -o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.formbox h2.title {
	font-family: var(--font);
	color: var(--primary);
	font-size: 1.5rem;
	margin: 0 0 1rem 0;
}

form.form-mailto label {
	display: none;
}

form.form-mailto input,
form.form-mailto textarea,
form.form-mailto select {
	background-color: white;
	border-color: var(--secondary);
	font-size: 1.25rem;
	font-weight: 400;
	color: black;
	outline: none;
	padding: 1.25rem !important;
}

form.form-mailto select {
	display: block;
	width: 100%;
	font-size: 1.25rem;
	color: black;
	padding: 0 1.25rem !important;
}

form.form-mailto input:hover,
form.form-mailto input:focus,
form.form-mailto textarea:hover,
form.form-mailto textarea:focus,
form.form-mailto select:hover,
form.form-mailto select:focus {
	background-color: white;
	border-color: var(--primary);
	box-shadow: none;
}

form.form-mailto button {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	border-color: var(--primary);
	background-color: var(--primary);
	font-size: 1rem;
	font-weight: 400;
	color: var(--secondary);
	text-transform: uppercase;
}

form.form-mailto button:hover,
form.form-mailto button:focus {
	border-color: var(--primary);
	background-color: black;
	color: var(--primary);
	box-shadow: none;
}

form.form-mailto ::placeholder {
	color: black;
	opacity: 1; /* Firefox */
}

form.form-mailto :-ms-input-placeholder {
	color: black;
}

form.form-mailto ::-ms-input-placeholder {
	color: black;
}

/* [FOOTER] */
footer.nav-footer {
	position: relative;
}

footer.nav-footer .text-right {
	text-align: left !important;
}

footer.nav-footer .top {
	background-color: black;
	background-image: url('assets/logo-symbol.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	padding: 3rem 0;
	font-size: 1rem;
	color: white;
}

footer.nav-footer .top .openingstijden {
	display: inline-block;
	font-family: var(--font);
    font-size: 1rem;
	font-weight: 400;
	color: white;
}

footer.nav-footer .top .footwrap {
	position: relative;
	display: flex;
	flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-end;
	width: 100%;
	height: 100%;
}

footer.nav-footer .top .footwrap .title {
	font-size: 2rem;
	font-style: italic;
	font-weight: 700;
	color: white;
	margin: 0;
}

footer.nav-footer .top .footwrap .title p {
	margin: 0;
}

footer.nav-footer ul.contact li a {
	color: white;

}

footer.nav-footer ul.contact li a:before {
	background: white;
}

footer.nav-footer ul.socials li a {
	color: white;
}

footer.nav-footer .bottom {
	background-color: white;
	font-size: 1rem;
}

footer.nav-footer .bottom .nclogo {
	font-size: 1rem;
}

footer.nav-footer .bottom a {
	color: black;
}

footer.nav-footer .bottom a.nclogo {
	color: black;
}

footer.nav-footer .bottom a:hover,
footer.nav-footer .bottom a:focus {
	background-color: var(--secondary);
	color: white;
}

@media (min-width: 992px) {
	/* Large (lg) */
	footer.nav-footer .text-right {
		text-align: right !important;
	}
	footer.nav-footer .top .openingstijden {
		font-size: 1.1rem;
	}
}

.orderlist .orderblock
{
	display:block;
	border:1px silver solid;
	color:#000;
	padding:5px 10px;
}

@media(max-width:768px)
{
	.mobilemargins
	{
		display:block;
		margin-bottom:20px;
		padding:25px !important;
		text-align:center;
	}
}

.calendar .calendarTitle
{
	background-color: var(--primary);
	padding: 5px;
    text-align: center;
    border-top: 1px gray solid;
    border-left: 1px gray solid;
    border-right: 1px gray solid;
}

.calendar .calendarItems
{
	border-bottom: 1px gray solid;
	border-left: 1px gray solid;
	border-right: 1px gray solid;
	margin-bottom:15px;
	min-height:120px;
}

.calendar hr
{
	margin: 5px 0px;
	border-color: gray;
	border-width: 2px;
}

.calendar .newWeek
{
	border-left: 15px gray solid;
}

.calendar .addbtn,
.calendar tr th:first-child
{
	color:gray;
	font-size:0.9rem;
}

.calendar .orderblock
{
	display:block;
	text-align:center;
	color:#000;
	padding: 5px 5px 5px 5px;
	font-size: 0.9rem;
	border: 4px #fff solid;
	line-height: 1rem;
}

.table-responsive a.d-block
{
	color:#000;
}

/* Calendar */
.calendar
{
	margin-top:25px;
}

.calendar tr th
{
	padding:5px;
	text-align:center;
	border-top:1px gray solid;
	border-left:1px gray solid;
	border-right:1px gray solid;
}

.calendar tr th:not(:first-child)
{
	background-color:var(--primary);
}

.calendar tr td
{
	vertical-align: top;
	border-left:1px gray solid;
	border-right:1px gray solid;
}

.calendar tr:last-child
{
	border-bottom:1px gray solid;
}

.calendar tr:nth-child(even) td
{
	padding-bottom:25px;
	height:150px;
	border-bottom:1px gray solid;
}

.calendar .past
{
	position:relative;
}

.calendar .past::after
{
	content: " ";
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background:rgba(255, 255, 255, 0.8);
}

/* Icons */
i.urgent
{
	color: #9f00ff;
}
i.notes
{
	color: #0265cf;
}

/* States */
/* style3a = ophalen */
.style3a {
	background: #ffcccc !important;
}
/* style3b = afleveren */
.style3b {
	background: #ccffcc !important;
}
/* style3c = containerwerk */
.style3c {
	background: #ccccff !important;
}
/* style3d = ophalen/afleveren */
.style3d {
	background: #ccffff !important;
}
/* style3e = gebracht derden */
.style3e {
	background: #ffccff !important;
}
.style3f {
	background: #ffffcc !important;
}
.style3g {
	background: #ff0000 !important;
}

.style3g, a.style3g
{
	color:#FFFFFF !important;
}

table.legend tr td
{
	padding:5px;
}

.customerfields b,
.customerfields label,
.productfields b,
.productfields label
{
	font-weight:400 !important;
}

.customerfields .title
{
	font-size:1.6rem !important;
	margin-bottom:0px;
}

.pricerule.type1,
.product.type1
{
	background:#ffffcc;
}

.modal-xl .modal-body
{
	overflow-x:auto !important;
}