/*
Theme Name: Behoud Abt Theme
Version: 1.0
Author: Fanatiek media
Author URI: https://fanatiekmedia.nl/
*/

/***************************
          FONTS
***************************/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

/***************************
          GENERAL
***************************/

body {
	width: 100%;
	font-family: 'Nunito', sans-serif;
	font-size: 17px;
	color: #2F2F2F;
}

body.show-nav {
	overflow: hidden;
}

html {
	font-size: 100%;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #0787BB;
	transition: all 0.3s ease;
	text-decoration: underline;
}

a:hover {
	color: #0787BB;
	text-decoration: none;
}

p {
	margin: 0 0 15px;
	line-height: 170%;
}

ol, ul {
	margin: 0 0 20px;
	line-height: 170%;
}
input, textarea {
    padding: 10px 20px;	
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
	border: 1px solid #d8d8d8;
	background-color: #fff;
	color: #2E2E2E;
	line-height: 120%;
	border-radius: 5px;
	font-size: 17px;
	outline: none;
	margin: 0 0 10px;
	box-shadow: none;
}

input:focus,
textarea:focus {
	border: 1px solid #0787BB;
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #d8d8d8;
	background-color: #fff;
	border-radius: 3px;
	cursor: pointer;
	box-shadow: none;
}

input[type="checkbox"]:focus {
	border-color: #0787BB;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
	background-color: var(--white);
    background-image: url('./assets/images/checkbox.svg');
    background-size: 12px 11px;
    background-repeat: no-repeat;
    background-position: center center;
    border-color: #0787BB;
}

input[type="radio"] {
	border-radius: 10px;
}


.btn,
.button,
.inline-btn a,
.inline-btn-alt a {
	background-image: url('./assets/images/arrow-right-blue.svg');
	background-repeat: no-repeat;
	background-size: 10px 20px;
	background-position: right 20px center;
	background-color: transparent;
	color: #0787BB;
	display: inline-block;
	padding: 11px 40px 11px 30px;
	position: relative;
	border: 2px solid #0787BB;
	font-size: 18px;
	cursor: pointer;
	line-height: 100%;
	margin: 0;
	width: auto;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
	font-family: 'Nunito', sans-serif;
	z-index: 2;
	border-radius: 25px;
}

.btn:hover,
.btn:focus,
.button:hover,
.button:focus,
.inline-btn a:hover,
.inline-btn a:focus,
.inline-btn-alt a:hover,
.inline-btn-alt a:hover {
	background-image: url('./assets/images/arrow-right-white.svg');
	background-position: right 15px center;
	background-color: #0787BB;
	border-color: #0787BB;
	color: #fff;
	text-decoration: none;
	border-width: 2px;
}

.btn.alt,
.inline-btn.alt a {
	background-image: url('./assets/images/arrow-right-white.svg');
	background-color: #fff;	
	border-color: #fff;
	color: #0787BB;	
}

.btn.alt:hover,
.btn.alt:focus,
.inline-btn.alt a:hover,
.inline-btn.alt a:focus {
	background-image: url('./assets/images/arrow-right-blue.svg');
	background-color: transparent;	
	border-color: #0787BB;
	color: #0787BB;		
}

.inline-btn-alt a,
.gform_button,
.btn.green {
	padding: 13px 30px;
	border: 0px solid;
	color: #fff;
	background-color: #20B050;
	background-position: 100% 0;
	background-size: 300% 100%;
	background-repeat: no-repeat;
	background-image: linear-gradient(to right, #0F8E3C, #20B050, #20B050, #0F8E3C);		
}

.inline-btn-alt a:hover,
.inline-btn-alt a:focus,
.gform_button:hover,
.gform_button:focus,
.btn.green:hover,
.btn.green:focus {
	border: 0px solid;
	background-color: #20B050;
	background-size: 300% 100%;
	background-repeat: no-repeat;
	background-image: linear-gradient(to right, #0F8E3C, #20B050, #20B050, #0F8E3C);		
	background-position: 0 0;	
	color: #fff;
	text-decoration: none;	
}

textarea {
	height: 150px;
}


.container {
	max-width: 1200px;
	margin: 0 auto;
    padding: 0 15px;	
}

table {
    border-collapse: collapse;
    margin: 0 0 30px;
    font-size: 0.9em;
    font-family: sans-serif;
    width: 100%;
    line-height: 130%;
}

table th,
table td {
    padding: 8px 10px;
}

table tbody tr {
    border-bottom: 1px solid #BED0D9;
}

table tbody tr:nth-of-type(even) {
    background-color: #EDF5F8;
}

.wp-caption {
	max-width: 100%;
}

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

	.container {
		max-width: 1200px;
		padding: 0 25px;	
	}
	
}

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

	body.show-nav {
		overflow: hidden;
	}
	
	.container {
		padding: 0 30px;
	}

}

/* stop stacking issues */
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* use box-sizing: border-box */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/***************************
          COLUMNS
***************************/

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row.small-padding {
	margin-left: -8px;
	margin-right: -8px;
}

.row.large-padding {
	margin-left: -20px;
	margin-right: -20px;
}

.row.align-middle {
	align-items: center;
}

.column {
	display: block;
	width: 100%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.row.small-padding .column {
	padding-left: 8px;
	padding-right: 8px;
}

.row.large-padding .column {
	padding-left: 20px;
	padding-right: 20px;
}

@media only screen and (min-width:768px) {
	
	.row.medium-reverse {
		flex-direction: row-reverse;
	}
	
	.row.large-padding {
		margin-left: -20px;
		margin-right: -20px;
	}
		
	.row.large-padding .column {
		padding-left: 20px;
		padding-right: 20px;
	}

	.medium-1-4 {
		width: 25%;
	}
	
	.medium-1-3 {
		width: 33.33334%;
	}
	
	.medium-2-5 {
		width: 40%;
	}
	
	.medium-1-2 {
		width: 50%;
	}
	
	.medium-3-5 {
		width: 60%;
	}
	
	.medium-2-3 {
		width: 66.66666%;
	}
	
	.medium-3-4 {
		width: 75%;
	}

}

@media only screen and (min-width:1024px) { 
	
	.row.l-large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.l-large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.large-1-6 {
		width: 16.6666666667%;
	}
	
	.large-1-5 {
		width: 20%;
	}
	
	.large-1-4 {
		width: 25%;
	}
	
	.large-3-10 {
		width: 30%;
	}

	.large-1-3 {
		width: 33.33334%;
	}
	
	.large-35 {
		width: 35%;
	}
	
	.large-2-5 {
		width: 40%;
	}
	
	.large-45 {
		width: 45%;
	}
	
	.large-1-2 {
		width: 50%;
	}
	
	.large-55 {
		width: 55%;
	}
	
	.large-3-5 {
		width: 60%;
	}
	
	.large-2-3 {
		width: 66.66666%;
	}
	
	.large-3-4 {
		width: 75%;
	}	
	
	.large-4-5 {
		width: 80%;
	}

}


/***************************
		   HEADINGS
***************************/

h1, h2, h3, h4, h5 {
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 140%;
}

h1 {
	font-size: 30px;
	color: #0787BB;
}

h2 {
	font-size: 22px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

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

	h1 {
		font-size: 36px;
	}
	
	h2 {
		font-size: 28px;
	}
	
	h3 {
		font-size: 24px;
	}
	
	h4 {
		font-size: 20px;
	}
	
	
}

/***************************
    HEADER & NAVIGATION
***************************/

.header {
	background-color: #fff;
	height: 80px;
}

.header-nav {
	height: 80px;
    width: 100%;
    position: fixed;
    z-index: 9;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
}

.header-nav .container {
	padding: 0;
}

.header-nav .inner {
	background-color: #fff;
	height: 80px;
	position: relative;
	z-index: 999;
}

.show-nav .header-nav .inner {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(32,153,213,1) 0%, rgba(36,83,112,1) 100%);
}

.header-nav .logo {
	width: 90px;
	display: block;
	padding: 5px 0px 5px 20px;
	transition: all 0.3s ease;
}

.scroll .header-nav .logo {
	width: 70px;
}

.show-nav .header-nav .logo {
	opacity: 0;
	visibility: hidden;
}

.header-nav .site-menu {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(32,153,213,1) 0%, rgba(36,83,112,1) 100%);
	padding: 81px 0 15px 0;
	box-sizing: border-box;
	z-index: 999;
	text-align: left;
	transition: all 0.3s ease;
	transform: translate(0,-100%);
	overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.show-nav .header-nav .site-menu {
	transform: translate(0,0);
}

.header-nav .site-menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.header-nav .site-menu ul li {
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header-nav .site-menu ul li .submenu-button {
	position: absolute;
	top: 0;
	right: 0;
	background-image: url('./assets/images/dropdown-white.svg');
	background-position: right 15px center;
	background-repeat: no-repeat;
	width: 100%;
	height: 54px;
	text-align: center;
	transform: rotate(0deg);
	cursor: pointer;
}

.header-nav .site-menu ul li .submenu-button.active {
	background-image: url('./assets/images/dropdown-up-white.svg');
}

.header-nav .site-menu ul li a {
	padding: 15px 20px;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	display: block;
}

.header-nav .site-menu ul li .sub-menu {
    margin: 0;
    padding: 0 0 20px;
    display: none;
    border-top: 0px;
} 

.header-nav .site-menu ul li .sub-menu li {
	line-height: 100%;
	border-bottom: 0px;
}

.header-nav .site-menu ul li .sub-menu li a {
    font-size: 17px;
    font-weight: normal;
    padding: 7px 20px;
    text-transform: none;
    color: #fff;
}

.header-nav .toggle-nav {
	background-image: url('./assets/images/menuicon.svg');
	background-size: 29px 20px;
	background-position: left center;
	background-repeat: no-repeat;
	background-color: transparent;
	width: auto;
	border: 0px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin: 0;
	padding: 13px 0px 12px 35px;
	color: #0787BB; 
	text-transform: uppercase;
	position: absolute;
	top: 19px;
	right: 15px;
	z-index: 99;
	border: 0px solid #000;
}

.show-nav .header-nav .toggle-nav {
	background-image: url('./assets/images/menuclose.svg');
	color: #fff;
}

.header-nav .toggle-nav:focus {
	outline: none;
}

.header-nav .facebook {
	width: 37px;
	height: 37px;
	position: absolute;
    right: 188px;
    top: 22px;		
}

.header-nav .cta {
	position: absolute;
    right: 105px;
    top: 22px;
    font-size: 17px;
    padding: 10px 15px;
}

.header-nav .cta span {
	display: none;
}

@media only screen and (min-width:360px) {
	
	.header-nav .facebook {
		right: 225px;
	}
	
	.header-nav .cta {
		right: 108px;
	}
	
	.header-nav .cta span {
		display: inline;
	}

}

@media only screen and (min-width:600px) {
	
	.admin-bar .header-nav .site-menu {
		padding-top: 126px;
	}

}


@media only screen and (min-width:768px) {
	
	.header {
		height: 110px;
	}
	
	.header-nav {
		height: 110px;
	}
	
	.header-nav .logo {
		padding: 7px 0;
		width: 110px;
		margin: 0 0 0 30px;
	}
	
	.header-nav .inner {
		height: 110px;
	}
	
	.header-nav .toggle-nav {
		top: 35px;
		right: 40px;
	}
	
	.header-nav .site-menu {
		padding: 111px 0 15px 0;
	}
	
	.header-nav .facebook {
		width: 41px;
		height: 41px;
	    right: 310px;
	    top: 35px;		
	}
	
	.header-nav .cta {
		top: 35px;
		right: 150px;
		padding: 12px 30px;
	}
	
	.header-nav .site-menu .container {
		padding: 0;
	}

}

@media only screen and (min-width:783px) {
	
	.admin-bar .header-nav .site-menu {
		padding-top: 142px;
	}

}

@media only screen and (min-width:1100px) { 
	
	.header {
		height: 130px;
	}
	
	.header-nav {
		background-color: #fff;
		height: 130px;
		transition: all 0.3s ease;
	}
	
	
	.header-nav .container {
		padding: 0 30px;
		position: relative;
	}
	
	
	.scroll .header-nav {
		height: 90px;
	}
	
	.header-nav .inner {
		height: 130px;
		z-index: 9;
		transition: all 0.3s ease;
	}
	
	.header-nav .logo {
		padding: 10px 0;
		width: 130px;
		display: inline-block;
		margin: 0;
	}
	
	.scroll	.header-nav .logo {
		width: 85px;
	}
		
	.scroll .header-nav .inner {
		height: 85px;
	}
	
	.admin-bar .header-nav .site-menu,
	.header-nav .site-menu,
	.show-nav .header-nav .site-menu {
		padding: 0;
		background-image: none;
		background-color: transparent;
		transform: translate(0,0);
		position: absolute;
		top: 35px;
		left: auto;
		right: 240px;
		width: auto;
		height: auto;
		overflow-y: inherit;
	}
	
	.scroll .header-nav .site-menu {
		top: 15px;
	}
	
	.header-nav .site-menu .container {
		padding: 0 30px;
	}
	
	.header-nav .site-menu ul {
		border-top: 0px;
		padding: 0;
		text-align: right;
	}
	
	.header-nav .site-menu ul li {
		display: inline-block;
		width: auto;
		border-bottom: 0px;
		position: relative;
	}
	
	.header-nav .site-menu ul li a {
		text-align: center;
		font-size: 18px;
		padding: 18px 15px;
		color: #2E2E2E;
	}
	
	.header-nav .site-menu .menu li a:hover, 
	.header-nav .site-menu .menu li a:focus {
	    color: #0787BB;
	    background-color: transparent;
	}
	
	.header-nav .site-menu .menu .current-menu-item > a, 
	.header-nav .site-menu .menu .current-page-parent > a, 
	.header-nav .site-menu .menu li.menu-active > a {
	    color: #0787BB;
	    background-color: transparent;
	}
	
	.header-nav .site-menu .menu .menu-item-has-children > a {
		padding: 18px 40px 18px 15px;
		background-image: url('./assets/images/dropdown.svg');
		background-size: 18px 8px;
		background-position: right 15px center;
		background-repeat: no-repeat;
	}
	
	.header-nav .site-menu .menu .menu-item-has-children.current-menu-item > a,
	.header-nav .site-menu .menu .menu-item-has-children.current-page-parent > a,
	.header-nav .site-menu .menu .menu-item-has-children.menu-active > a {
		background-image: url('./assets/images/dropdown-blue.svg');
	}
	
	.header-nav .site-menu .menu .menu-item-has-children > a:hover,
	.header-nav .site-menu .menu .menu-item-has-children > a:focus {
		background-image: url('./assets/images/dropdown-blue.svg');
	}
	
	.header-nav .site-menu ul li .submenu-button {
		display: none;
	}
	
	.header-nav .site-menu ul li .sub-menu {
	    display: none;
	    position: absolute;
	    background: #EDF5F8;
	    -webkit-transition: 500ms ease all;
	    transition: 500ms ease all;
	    left: -20px;
	    transform: translate(0,0);
	    z-index: 999;
	    padding: 25px 15px;
	    width: 250px;
	    margin: 0;
	    text-align: left;
	    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
	}
	
	.header-nav .site-menu ul li .sub-menu li a {
		font-size: 18px;
		color: #2E2E2E;
	}
	
	.header-nav .site-menu ul li:hover .sub-menu {
		display: block !important;
	}
	
	.header-nav .toggle-nav {
		display: none;
	}
	
	.header-nav .facebook {
	    right: 185px;
	    top: 45px;		
	}
	
	.scroll .header-nav .facebook {
		top: 25px;
	}
	
	.header-nav .cta {
		top: 45px;
		right: 30px;	
	}
	
	.scroll .header-nav .cta {
		top: 25px;
	}

}


/***************************
       PAGE CONTENT
***************************/

#primary,
.main {
	min-height: calc(100vh - 300px);
}

.page-top .image {
	width: 100%;
	height: 150px;
}

.page-top .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-content {
	padding: 30px 0 15px;
}

.page-content.ws-bottom {
	padding: 1px 0 15px;
}

.page-content.ws-top {
	padding: 30px 0 1px;
}

.page-content.ws-none {
	padding: 0;
}

.page-content .newsletter-block {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	padding: 20px;
	color: #fff;
}

.page-content .newsletter-block a {
	color: #fff;
}

.page-image-text {
	position: relative;
	overflow: hidden;
}

.page-image-text .image {
	position: relative;
	display: block;
	margin: 0 0 20px;
}

.page-image-text .image img {
	width: 100%;
	display: block;
}

.bg-lightblue {
	background-color: #EDF5F8;
}

.bg-blue {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
}

.bg-blue .btn {
	border-color: #fff;
	background-image: url('./assets/images/arrow-right-white.svg');
	background-color: transparent;
	color: #fff;
}

.bg-blue .btn:hover,
.bg-blue .btn:focus {
	background-image: url('./assets/images/arrow-right-blue.svg');
	background-color: #fff;
	color: #0787BB;
}

.bg-blue .btn.alt {
	background-image: url('./assets/images/arrow-right-blue.svg');
	background-color: #fff;
	color: #0787BB;
}

.bg-blue .btn.alt:hover,
.bg-blue .btn.alt:focus {
	background-image: url('./assets/images/arrow-right-white.svg');
	background-color: transparent;
	border-color: #fff;
	color: #fff;	
}



.page-download .download-list {
	list-style-type: none;
	padding: 0;
}

.page-download .download-list li a {
	color: #2F2F2F;
	text-decoration: none;
	display: block;
	font-size: 16px;
	padding: 8px 30px 8px 10px;
	background-image: url('./assets/images/arrow-right.svg');
	background-repeat: no-repeat;
	background-size: 8px 16px;
	background-position: right 10px center;
	transition: all 0.3s ease;
	border-top: 1px solid #BED0D9;
}

.page-download .download-list li a:hover {
	background-color: #fff;
	color: #0787BB;
	background-image: url('./assets/images/arrow-right-blue.svg');
	background-position: right 5px center;
}

.page-info .column {
	padding-bottom: 20px;
}

.page-info .info {
	background-color: #EDF5F8;
    padding: 20px 20px 5px;
    height: 100%;
}

.page-info.bg-blue .info,
.page-info.bg-lightblue .info {
	background-color: #fff;
}

.page-gallery .gallery-slider {
	padding: 0;
	margin: 0 -10px 15px;
	list-style-type: none;
	overflow: visible;
	position: relative;
	z-index: 2;
}

.page-gallery .gallery-slider li {
	padding: 0 10px;
	display: flex;
}

.page-gallery .gallery-slider li:before {
	display: none;
}

.page-gallery .gallery-slider .image {
	width: 100%;
	display: block;
	overflow: hidden;
	background-color: #EDF5F8;
	margin: 0;
}

.page-gallery .gallery-slider .image img {
	width: 100%;
	display: block;
	transition: all 0.3s ease;
}

.page-gallery .gallery-slider .slick-prev,
.page-gallery .gallery-slider .slick-next {
	display: block;
	position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    font-size: 0;
    opacity: 1;
    line-height: 0;
    margin: 0;
    cursor: pointer;
    border: none;
    color: transparent;
    border-radius: 50%;
    outline: none;
    background-color: #0787BB;
    background-image: url('./assets/images/arrow-right-white.svg');
	background-size: 8px 16px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    z-index: 9;
    transform: rotate(-180deg);
}

.page-gallery .gallery-slider .slick-next {
	left: auto;
	right: 0;
	transform: rotate(0deg);
}

.page-agenda h2:first-letter {
	text-transform: uppercase;
}

.page-agenda .agenda-item {
	margin: 0 0 15px;
	box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 16%);
}

.page-agenda  .agenda-item .agenda-item-title {
	cursor: pointer;
	line-height: 100%;
	padding: 0;
	font-size: 20px;
	font-weight: bold;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.page-agenda  .agenda-item .agenda-item-title:before {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	display: block;
	background-image: url('./assets/images/dropdown.svg');
	background-size: 18px 8px;
	background-position: center center;
	background-repeat: no-repeat;
	transform: rotate(0deg);
	transition: all 0.3s ease;
	right: 5px;
	top: 8px;
}

.page-agenda .agenda-item .agenda-item-title.active {
	color: #0787BB;
}

.page-agenda .agenda-item .agenda-item-title.active:before {
	transform: rotate(-180deg);
	background-image: url('./assets/images/dropdown-blue.svg');
}

.page-agenda .agenda-item .agenda-item-title:hover {
	color: #0787BB;
	text-decoration: none;
}

.page-agenda .agenda-item .agenda-item-title:hover:before {
	background-image: url('./assets/images/dropdown-blue.svg');
}

.page-agenda .agenda-item .agenda-item-title .date {
	font-weight: normal;
	font-size: 17px;
	padding: 10px 25px 10px 20px;
}

.page-agenda .agenda-item .agenda-item-title .title {
	background: #fff;
	padding: 12px 25px 12px 20px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: normal;
}

.page-agenda .agenda-item .agenda-item-title .title span {
	display: inline-block;
	font-size: 16px;
	color: #999;
}

.page-agenda .agenda-item .agenda-item-title .title span::first-letter {
	text-transform: uppercase;
}

.page-agenda .agenda-item .agenda-item-text {
	display: none;
	position: relative;
    padding: 5px 20px 1px;
    background: #fff;
    border-radius: 10px;
    margin: 0;
}

@media only screen and (min-width:768px) { 
	
	.page-content {
		padding: 50px 0 35px;
	}

	.page-content.ws-bottom {
		padding: 1px 0 35px;
	}
	
	.page-content.ws-top {
		padding: 50px 0 1px;
	}
	
	.page-content.ws-none {
		padding: 0;
	}
	
	.page-content .newsletter-block {
		padding: 30px 30px 15px;
	}

	.page-image-text .text {
		padding-left: 40px;
		align-self: center;
	}
	
	.page-image-text.text-image .row {
		flex-direction: row-reverse;
	}
	
	.page-download .download-list {
	    display: flex;
	    flex-wrap: wrap;
	    margin: 0 -10px;
	}
	
	.page-download .download-list li {
		padding-left: 10px;
		padding-right: 10px;
		width: 50%;
	}
	
	.page-info .column {
		padding-bottom: 30px;
	}
	
	.page-info .info {
		padding: 30px 30px 15px;
	}

	.page-gallery .gallery-slider {
		margin: 0 -15px 15px;
	}
	
	.page-gallery .gallery-slider li {
		padding: 0 15px;
	}

	.page-gallery .gallery-slider .slick-prev,
	.page-gallery .gallery-slider .slick-next {
	   	left: -5px;
	    width: 40px;
	    height: 40px;
		background-size: 9px 18px;
	}
	
	.page-gallery .gallery-slider .slick-next {
		left: auto;
		right: -5px;
	}
	
}

@media only screen and (min-width:1024px) { 
	
	.page-content {
		padding: 70px 0 55px;
	}
	
	.page-content.ws-bottom {
		padding: 1px 0 55px;
	}
	
	.page-content.ws-top {
		padding: 70px 0 1px;
	}
	
	.page-content.ws-none {
		padding: 0 1px;
	}
	
	.page-content .newsletter-block {
		padding: 30px 40px 15px;
	}
	
	.page-image-text .text {
		padding-left: 60px;
	}
	
	.page-download .download-list li {
		width: 33.333334%;
	}
	
	.page-gallery .gallery-slider {
		padding: 0 0 5px 0;
	}
	
}

/***************************
          HOME-TOP
***************************/


.home-top {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	text-align: right;
	padding: 330px 0 15px;
	position: relative;
}

.home-top .image-slider {
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 300px;
	display: block;
}

.home-top .image-slider .slick-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	display: block;
}

.home-top .image-slider img  {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-top .inner {
	position: relative;
	z-index: 2;
	line-height: 120%;
	text-align: center;
	padding: 0 15px;
	color: #fff;
	width: 100%;
	max-width: 500px;
	display: block;
	margin: 0 auto;
}

.home-top .inner h1 {
	color: #fff;
	line-height: 120%;
	font-size: 30px;
	margin: 0 0 10px;
	padding: 0;
	text-transform: uppercase;
}

.home-top .inner p {
	font-size: 18px;
}

.home-top .inner .btn {
	margin: 5px 0;
}

.home-intro .promo {
	text-align: center;
	margin: 0 0 50px;
}

.home-intro .list {
	list-style-type: none;
	padding: 0;
	border-top: 1px solid #BED0D9;
}

.home-intro .list li {
	border-bottom: 1px solid #BED0D9;
}

.home-intro .list li a {
	color: #2F2F2F;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 10px 30px 10px 10px;
	background-image: url('./assets/images/arrow-right.svg');
	background-repeat: no-repeat;
	background-size: 10px 20px;
	background-position: right 10px center;
	transition: all 0.3s ease;
}

.home-intro .list li a:hover {
	background-color: #fff;
	color: #0787BB;
	background-image: url('./assets/images/arrow-right-blue.svg');
	background-position: right 5px center;
}

.home-intro .next-event {
	display: block;
	width: 100%;
	background-color: #fff;
	box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.16);
	text-align: center;
	text-decoration: none;
	color: #2F2F2F;
	padding: 20px 15px 1px;
}

.home-intro .next-event p::first-letter {
	text-transform: uppercase;
}

.home-intro .next-event span {
	color: #999;
	text-transform: uppercase;
	font-size: 14px;
	margin: 0 0 10px;
	display: block;
}

.home-intro .next-event h3 {
	margin: 0;
	font-size: 20px;
}

.home-intro .next-event:hover {
	box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.16);	
}

@media only screen and (min-width:768px) {
	
	.home-top {
		height: 500px;
		padding: 40px 0 35px 50%;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	
	.home-top:before {
		content: '';
		display: block;
		width: 50%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 50%;
		background-color: #0787BB;
		background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	}
	
	.home-top .inner {
		padding: 0 30px;
		max-width: 560px;
	}
	
	.home-top .image-slider {
		width: 50%;
		height: 100%;	
	}
	
	.home-top .image-slider .slick-slide {
		height: 500px
	}
	
	.home-intro .next-event {
		padding: 30px 30px 10px;
	}
	
}

@media only screen and (min-width:1024px) {
	
	.home-top {
		height: 525px;
	}
	
	.home-top .inner h1 {
		font-size: 36px;
	}
	
	.home-top .inner p {
		font-size: 20px;
	}
	
	.home-top .image-slider .slick-slide {
		height: 525px;
	}
	
}

@media only screen and (min-width:1400px) {
	
	.home-top {
		height: 600px;
	}
	
	.home-top .image-slider .slick-slide {
		height: 600px;
	}
	
}


/***************************
		   POSTS
***************************/

.post-loop .column {
	padding-bottom: 30px;
}

.post-loop .item {
	display: block;
	text-decoration: none;
	color: #2f2f2f;
	position: relative;
	height: 100%;
	background: #fff;
	box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.16);
}

.post-loop .item .date {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	color: #fff;
	display: inline-block;
	text-align: center;
	position: absolute;
	z-index: 2;
	top: 20px;
	padding: 8px 15px;
	font-size: 14px;
	left: 0;
}

.post-loop .item .image {
	display: block;
	width: 100%;
}

.post-loop .item .image img {
	display: block;
	width: 100%;
}

.post-loop .item h3 {
	font-size: 17px;
	font-weight: bold;
	padding: 10px 15px;
	margin: 0;
}

.post-content .image {
	position: relative;
	display: block;
	margin: 0 0 30px;
}

.post-content .image .date {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	color: #fff;
	display: inline-block;
	text-align: center;
	position: absolute;
	z-index: 2;
	top: 30px;
	padding: 8px 15px;
	font-size: 16px;
	left: 0;	
}

.post-content .image img {
	width: 100%;
	display: block;
}

.post-content h1 {
	line-height: 120%;
	font-size: 26px;
	margin: 0 0 20px;
}

.post-content .share {
	text-align: left;
	margin: 30px 0 20px;
}

.post-content .share b {
	font-weight: normal;
	text-transform: lowercase;
}

.post-content .share span {
	display: block;
	font-weight: 500;
	margin: 0 0 10px 0;
	font-size: 15px;
	color: #767676;
}

.post-content .share a {
	background-color: #20B050;
	width: 42px;
	height: 42px;
	display: inline-block;
	padding: 10px; 0;
	text-align: center;
	border-radius: 50%;
	margin: 0 2px 10px;
}

.post-content .share a.facebook {
	background-color: #4267B2;
}

.post-content .share a.twitter {
	background-color: #1DA1F2;
}

.post-content .share a.linkedin {
	background-color: #0077b5;
}

.post-content .share a.whatsapp {
	background-color: #25D366;
}

.post-content .share a svg {
	fill: #fff;
	width: 22px;
	height: 22px;
}

.post-content .share a:hover {
	transform: scale(1.1);
}

.post-content .next-event {
    display: block;
    width: 100%;
    background-color: #EDF5F8;
    box-shadow: 2px 2px 4px 0 rgb(0 0 0 / 16%);
    text-align: center;
    text-decoration: none;
    color: #2F2F2F;
    padding: 20px 15px 1px;
    margin: 0 0 30px;
}


.post-content .next-event span {
	color: #999;
	text-transform: uppercase;
	font-size: 14px;
	margin: 0 0 10px;
	display: block;
}

.post-content .next-event h3 {
	margin: 0;
	font-size: 20px;
}

.post-content .next-event:hover {
	box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.16);	
}

.post-content .recent {
	list-style-type: none;
	padding: 0;
	border-top: 1px solid #BED0D9;
	margin: 0 0 30px;
}

.post-content .recent li {
	border-bottom: 1px solid #BED0D9;
}

.post-content .recent li a {
	color: #2F2F2F;
	font-weight: normal;
	text-decoration: none;
	display: block;
	padding: 10px 5px 10px 0px;
	transition: all 0.3s ease;
	line-height: 130%;
}

.post-content .recent li a span {
	display: block;
	color: #999;
	font-size: 16px;
}

.post-content .recent li a:hover {
	background-color: #fff;
	padding: 10px 0 10px 5px;
	color: #0787BB;
}

.post-content .newsletter-block {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	padding: 20px;
	color: #fff;
	margin: 0 0 30px;
}

.post-content .newsletter-block a {
	color: #fff;
}

.post-content .newsletter-block input[type="submit"] {
	background-image: url('./assets/images/arrow-right-white.svg');
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}

.post-content .newsletter-block input[type="submit"]:hover,
.post-content .newsletter-block input[type="submit"]:focus {
	background-image: url('./assets/images/arrow-right-blue.svg');
	background-color: #fff;
	border-color: #fff;
	color: #0787BB;	
	border-width: 2px;	
}

@media only screen and (min-width: 768px) {
	
	.post-content h1 {
		font-size: 32px;
	}
	
	.post-content .newsletter-block {
		padding: 25px;
	}
		
}

@media only screen and (min-width: 1024px) {
	
	.post-content .newsletter-block {
		padding: 30px;
	}
	
}

/***************************
		   ACTIVITY
***************************/

.activity-archive h1 {
	margin: 10px 0 20px;
}

.activity-content h1 {
	text-align: left;
	margin: 0 0 15px;
}

.activity-content .content {
	margin-bottom: 30px;
}

.activity-content .content .date {
	font-size: 1.2em;
	font-weight: bold;
}

.activity-content .content .date span {
	display: inline-block;
}

.activity-content .content .date span:first-child:first-letter {
	text-transform: capitalize;
}

.activity-content .price {
	font-size: 1.4em;
	font-weight: bold;
	display: block;
	margin: 0 0 10px;
}

.activity-content .woocommerce-variation-price .price {
	font-size: 1.2em;
}

.activity-content .content .product-cart {
    margin: 0 0 30px;
}

.activity-content .content .product-cart.hidden {
	display: none;
}

.activity-content .content .variations {
	display: block;
	margin: 0 0 15px;
}

.activity-content .content .variations tbody,
.activity-content .content .variations tr,
.activity-content .content .variations th,
.activity-content .content .variations td {
	display: block;
	width: 100%;
	text-align: left;
	line-height: 150%;
	padding: 0;
	border: 0px;
}

.activity-content .content .variations .value div {
	position: relative;
	padding: 5px 0 5px 25px;
}

.activity-content .content .variations .value div input {
	position: absolute;
	top: 6px;
	left: 0;
}

.activity-content .content .reset_variations {
	display: none !important;
	margin: 5px 0 ;
}

.activity-content .content .stock {
	background: #0787BB;
    color: #fff;
    padding: 2px 20px;
    font-size: 16px;
    display: inline-block;
    border-radius: 20px;
}

.activity-content .content .stock.out-of-stock {
	background: #e03333;
	color: #fff;
}

.activity-content .content .wapf .wapf-field-label {
	font-weight: bold;
	line-height: 150%;
}

.activity-content .content .wapf .wapf-label-text {
	padding: 0;
}

.activity-content .content .wapf .wapf-checkable .wapf-input-label {
    position: relative;
    padding: 5px 0 5px 30px;
	display: block;	
}

.activity-content .content .wapf .wapf-checkable .wapf-input-label input {
	position: absolute;
	top: 4px;
	left: 0px;
	margin: 0;
}

.activity-content .content .wapf input[type="number"] {
	width: 120px;
	text-align: center;
}

.activity-content .content .quantity {
	margin: 0 0 10px;
}

.activity-content .content .quantity input {
	width: 120px;
	text-align: center;
}

.activity-content .content .quantity-label {
	line-height: 150%;
	display: block;
	font-weight: bold;
	padding: 0 0 5px;
}

.activity-content .content .single_add_to_cart_button {
	padding: 18px 30px;
	border: 0px solid;
	color: #fff;
	background-color: #20B050;
	background-position: 100% 0;
	background-size: 300% 100%;
	background-repeat: no-repeat;
	background-image: linear-gradient(to right, #0F8E3C, #20B050, #20B050, #0F8E3C);		
}

.activity-content .content .single_add_to_cart_button:hover,
.activity-content .content .single_add_to_cart_button:focus {
	border: 0px solid;
	background-color: #20B050;
	background-size: 300% 100%;
	background-repeat: no-repeat;
	background-image: linear-gradient(to right, #0F8E3C, #20B050, #20B050, #0F8E3C);		
	background-position: 0 0;	
	color: #fff;
	text-decoration: none;		
}

/***************************
		   WOOCOMMERCE
***************************/

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message {
	background-color: #0787BB;
	padding: 20px;
	border-radius: 0px;
	color: #fff;
	margin: 0 0 20px;
}

.woocommerce .woocommerce-info p {
	margin: 0;
}

.woocommerce .woocommerce-error {
	list-style-type: none;
	background-color: #cb1212;
}

/* Tables */

.woocommerce table.shop_table {
    margin: 0 0 20px;
	background-color: transparent;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 0px;
	font-size: 18px;
	border-spacing: 0px;
    border: 0px solid #f0f3e9;
}

.woocommerce table.shop_table td {
	border-top: 1px solid #e4e4e4;
    padding: 15px 10px 15px 0;
    vertical-align: middle;
    line-height: 120%;	
}

.woocommerce table.shop_table th {
    font-weight: 700;
    padding: 15px 10px 15px 0;
    line-height: 120%;
}

.woocommerce table.shop_table td .product-quantity {
	font-weight: normal;
}

.woocommerce table.shop_table td .variation {
	margin: 0;
	color: #0787BB;
	font-size: 0.9em;
	line-height: 150%;
}

.woocommerce table.shop_table td .variation dt,
.woocommerce table.shop_table td .variation dd {
	margin: 0;
	display: inline;
}

.woocommerce table.shop_table td .variation p {
	margin: 0;
	display: inline-block;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
	border-top: 1px solid #e4e4e4;
}

@media only screen and (max-width:640px) {
	
	.woocommerce table.shop_table td {
    	padding: 9px 5px;
	}
	
	.woocommerce table.shop_table th {
    	padding: 9px 5px;
	}

	
	.woocommerce table.shop_table_responsive thead,
	.woocommerce-page table.shop_table_responsive thead {
    	display: none;
	}
	
	.woocommerce table.shop_table_responsive tbody tr:first-child td:first-child,
	.woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child {
    	border-top: 0;
	}
	
	.woocommerce table.shop_table_responsive tbody th,
	.woocommerce-page table.shop_table_responsive tbody th {
    	display: none;
	}
	
	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
    	display: block;
	}
	
	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
    	display: block;
    	text-align: right !important;
	}
	
	.woocommerce table.shop_table_responsive tr td.order-actions,
	.woocommerce-page table.shop_table_responsive tr td.order-actions {
    	text-align: left !important;
	}
	
	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
    	content: attr(data-title) ": ";
    	font-weight: 700;
    	float: left;
	}
	
	.woocommerce table.shop_table_responsive tr td.actions::before,
	.woocommerce table.shop_table_responsive tr td.product-remove::before,
	.woocommerce-page table.shop_table_responsive tr td.actions::before,
	.woocommerce-page table.shop_table_responsive tr td.product-remove::before {
    	display: none;
	}
	
	.woocommerce table.shop_table_responsive tr:nth-child(2n) td,
	.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    	background-color: rgba(0, 0, 0, 0.025);
	}
	
	.woocommerce table.my_account_orders tr td.order-actions,
	.woocommerce-page table.my_account_orders tr td.order-actions {
    	text-align: left;
	}
	
	.woocommerce table.my_account_orders tr td.order-actions::before,
	.woocommerce-page table.my_account_orders tr td.order-actions::before {
    	display: none;
	}
	
	.woocommerce table.my_account_orders tr td.order-actions .button,
	.woocommerce-page table.my_account_orders tr td.order-actions .button {
    	float: none;
    	margin: 0.125em 0.25em 0.125em 0;
	}
	
	.woocommerce .col2-set .col-1,
	.woocommerce .col2-set .col-2,
	.woocommerce-page .col2-set .col-1,
	.woocommerce-page .col2-set .col-2 {
    	float: none;
    	width: 100%;
	}
	
	.woocommerce ul.products[class*="columns-"] li.product,
	.woocommerce-page ul.products[class*="columns-"] li.product {
    	width: 48%;
    	float: left;
    	clear: both;
    	margin: 0;
	}
	
	.woocommerce ul.products[class*="columns-"] li.product:nth-child(2n),
	.woocommerce-page ul.products[class*="columns-"] li.product:nth-child(2n) {
    	float: right;
    	clear: none !important;
	}
	
	.woocommerce #content div.product div.images,
	.woocommerce #content div.product div.summary,
	.woocommerce div.product div.images,
	.woocommerce div.product div.summary,
	.woocommerce-page #content div.product div.images,
	.woocommerce-page #content div.product div.summary,
	.woocommerce-page div.product div.images,
	.woocommerce-page div.product div.summary {
    	float: none;
    	width: 100%;
	}
	
	.woocommerce #content table.cart .product-thumbnail,
	.woocommerce table.cart .product-thumbnail,
	.woocommerce-page #content table.cart .product-thumbnail,
	.woocommerce-page table.cart .product-thumbnail {
    	display: none;
	}
	
	.woocommerce #content table.cart td.actions,
	.woocommerce table.cart td.actions,
	.woocommerce-page #content table.cart td.actions,
	.woocommerce-page table.cart td.actions {
    	text-align: left;
	}
	
	.woocommerce #content table.cart td.actions .coupon,
	.woocommerce table.cart td.actions .coupon,
	.woocommerce-page #content table.cart td.actions .coupon,
	.woocommerce-page table.cart td.actions .coupon {
    	float: none;
    	padding-bottom: 0.5em;
	}
	
	.woocommerce #content table.cart td.actions .coupon::after,
	.woocommerce #content table.cart td.actions .coupon::before,
	.woocommerce table.cart td.actions .coupon::after,
	.woocommerce table.cart td.actions .coupon::before,
	.woocommerce-page #content table.cart td.actions .coupon::after,
	.woocommerce-page #content table.cart td.actions .coupon::before,
	.woocommerce-page table.cart td.actions .coupon::after,
	.woocommerce-page table.cart td.actions .coupon::before {
    	content: " ";
    	display: table;
	}
	
	.woocommerce #content table.cart td.actions .coupon::after,
	.woocommerce table.cart td.actions .coupon::after,
	.woocommerce-page #content table.cart td.actions .coupon::after,
	.woocommerce-page table.cart td.actions .coupon::after {
    	clear: both;
	}
	
	.woocommerce #content table.cart td.actions .coupon .button,
	.woocommerce #content table.cart td.actions .coupon .input-text,
	.woocommerce #content table.cart td.actions .coupon input,
	.woocommerce table.cart td.actions .coupon .button,
	.woocommerce table.cart td.actions .coupon .input-text,
	.woocommerce table.cart td.actions .coupon input,
	.woocommerce-page #content table.cart td.actions .coupon .button,
	.woocommerce-page #content table.cart td.actions .coupon .input-text,
	.woocommerce-page #content table.cart td.actions .coupon input,
	.woocommerce-page table.cart td.actions .coupon .button,
	.woocommerce-page table.cart td.actions .coupon .input-text,
	.woocommerce-page table.cart td.actions .coupon input {
    	width: 48%;
    	box-sizing: border-box;
	}
	
	.woocommerce #content table.cart td.actions .coupon .button.alt,
	.woocommerce #content table.cart td.actions .coupon .input-text + .button,
	.woocommerce table.cart td.actions .coupon .button.alt,
	.woocommerce table.cart td.actions .coupon .input-text + .button,
	.woocommerce-page #content table.cart td.actions .coupon .button.alt,
	.woocommerce-page #content table.cart td.actions .coupon .input-text + .button,
	.woocommerce-page table.cart td.actions .coupon .button.alt,
	.woocommerce-page table.cart td.actions .coupon .input-text + .button {
    	float: right;
	}
	
	.woocommerce #content table.cart td.actions .button,
	.woocommerce table.cart td.actions .button,
	.woocommerce-page #content table.cart td.actions .button,
	.woocommerce-page table.cart td.actions .button {
    	display: block;
    	width: 100%;
	}
	
}

/* Checkout */

.woocommerce .col2-set {
	margin: 0 0 40px;
}

.woocommerce #billing_country_field {
	display: none;
}

.woocommerce-shipping-fields .form-row label,
.woocommerce-billing-fields .form-row label {
	display: block;
	width: 100%;
	line-height: 110%;
	padding: 5px 0 10px;
	display: block;
}

.woocommerce-shipping-fields .form-row .woocommerce-input-wrapper input,
.woocommerce-billing-fields .form-row .woocommerce-input-wrapper input {
	margin: 0;
}

.woocommerce .woocommerce-billing-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.woocommerce .woocommerce-billing-fields__field-wrapper .form-row {
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}

.woocommerce .required {
	text-decoration: none;
}

#payment ul,
.woocommerce-checkout-payment ul {
	list-style-type: none;
	padding: 0;
}

#payment ul li,
.woocommerce-checkout-payment ul li {
	position: relative;
	padding: 4px 0 4px 0px;
    font-weight: bold;
    font-size: 22px;
}

#payment ul li input[type="radio"],
.woocommerce-checkout-payment ul li input[type="radio"] {
	position: absolute;
	top: 6px;
	left: 0;
	display: none;
}

#payment ul li label .mollie-gateway-icon,
.woocommerce-checkout-payment ul li label .mollie-gateway-icon {
	float: none;
    max-height: 50px !important;
    width: 50px;
}

.woocommerce-invalid #terms {
	border: 1px solid #cb1212;
	background-color: #fff2f1;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container, .woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select {
	border-color: #cb1212;
	background-color: #fff2f1;
}

.woocommerce form .form-row.woocommerce-invalid label {
	color: #cb1212;	
}

.woocommerce #place_order {
	padding: 18px 30px;
	border: 0px solid;
	color: #fff;
	background-color: #20B050;
	background-position: 100% 0;
	background-size: 300% 100%;
	background-repeat: no-repeat;
	background-image: linear-gradient(to right, #0F8E3C, #20B050, #20B050, #0F8E3C);		
	margin: 30px 0;
	width: 100%;
	max-width: 400px;
}

.woocommerce #place_order:hover,
.woocommerce #place_order:focus {
    border: 0px solid;
    background-color: #20B050;
    background-size: 300% 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, #0F8E3C, #20B050, #20B050, #0F8E3C);
    background-position: 0 0;
    color: #fff;
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
	
	.woocommerce .woocommerce-billing-fields__field-wrapper .form-row {
		width: 50%;
	}
	
}

/* Order received */

.woocommerce-order address {
	font-style: normal;
	margin: 0 0 20px;
	line-height: 150%;
}

.woocommerce-order address p {
	margin: 0;
}

.woocommerce-order .order_details .wc-item-meta {
	padding: 0;
	list-style-type: none;
	margin: 0;
}

.woocommerce-order .order_details .wc-item-meta p {
	display: inline;
	margin: 0;
}

/***************************
      Video Container
***************************/

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin: 0 0 25px 0;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0px;
}
/***************************
          NAVIGATION
***************************/

.navigation ul {
	list-style: none;
	margin: 20px 0 30px 0;
	padding: 0;
	text-align: center;
}

.navigation ul li {
    display: inline-block;
    font-size: 14px;
    width: 40px;
    height: 40px;
    text-align: center;
}

.navigation ul li a {
	background-color: #EDF5F8;
	border-radius: 50%;
	color: #2F2F2F;
	padding: 11px 0;
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
    line-height: 100%;
}

.navigation ul li a:hover {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	color: #fff;
}

.navigation ul li.active a {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	color: #fff;
}

.navigation ul li:hover a {
	color: #fff;
	text-decoration: none;
}


/***************************
		   FORMS
***************************/

.gform_wrapper {
	margin: 0 0 15px 0;
}

.gform_title {
	margin: 20px 0 0;
	font-size: 22px;
}

.gform_fields {
	list-style-type: none;
	margin: 0 0 10px;
	padding: 0;
}

.gfield {
	margin: 0 0 10px 0;
	display: block;
	width: 100%;
	padding: 0px;
	border: 0px;
}

.gfield_label {
	font-weight: bold;
	color: #222;
	line-height: 150%;
	padding: 0 0 5px;
	display: block;
}

.gfield_checkbox, 
.gfield_radio {
	margin: 0;
	list-style-type: none;
	padding: 0;
	position: relative;
	padding: 0;
}

.gfield_checkbox .gchoice,
.gfield_radio .gchoice,
.ginput_container_consent{
	line-height: 120%;
	position: relative;
	padding: 3px 0 10px 28px;
}

.ginput_container_consent [type="checkbox"],
.gfield_checkbox [type="checkbox"],
.gfield_radio [type="radio"] {
	position: absolute;
	top: 3px;
	left: 0;
}

.gform_body .gfield:before, .gform_body .gfield_checkbox li:before {
	display: none;
}

.gform_required_legend {
	display: none;
}

.validation_error,
.validation_message {
	font-size: 14px;
	font-weight: bold;
	color: #d4b411;
	padding: 0;
	margin: 0 0 10px;
    display: block;
    width: 100%;
}

h2.gform_submission_error {
	font-size: 16px;
	text-transform: none;
	color: #d4b411;
}

.gform_confirmation_message {
    background: #38da0f;
    color: #fff;
    padding: 10px;
    margin: 0.5em 0 25px;
}

.gform_validation_container, .gform_wrapper .gform_validation_container, body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container, body .gform_wrapper li.gform_validation_container, body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
    display: none!important;
    position: absolute!important;
    left: -9000px;
}

.gfield:after {
	content: " ";
	display: table;
	clear: both;	
}

.gfield_price input {
	width: 120px;
}

.gfield_description {
	margin: 0 0 15px;
}

.gsection_title {
	font-size: 18px;
	margin: 20px 0 0;
}

.gform_wrapper .gfield_visibility_hidden,
.gform_wrapper .gf_invisible {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.labels_left .gfield {
	display: flex;
	flex-wrap: wrap;	
}

.labels_left .gfield_label {
	float: left;
	width: 160px;
	flex: 1 0 160px;
	max-width: 160px;
	padding: 5px 10px 5px 0;
}

.labels_left .gfield_checkbox {
	padding: 5px 0;
}

.labels_left .ginput_container {
 	flex: 1 0 240px;
}

.hide-labels .gfield_label {
	display: none;
}

.two-columns .gform_fields {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin: 0 -10px;
}

.two-columns .gform_fields .gfield {
	padding-left: 10px;
	padding-right: 10px;
	float: left;
	width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#field_2_3,
#field_6_3 {
	background-image: url('./assets/images/ideal-logo.svg');
	background-size: 50px auto;
	background-position: right top;
	background-repeat: no-repeat;
}

#field_2_3 .gfield_label,
#field_6_3 .gfield_label {
	display: block;
}

#field_2_4 .textarea,
#field_6_4 .textarea {
	height: 80px;
}

#gfield_description_2_2,
#gfield_description_6_2 {
	font-size: 13px;
	margin: 0 0 5px;
}

.price-buttons .gchoice {
	display: inline-block;
	width: 100px;
	padding: 0;
	margin: 5px 5px 5px 0;
}

.price-buttons .gchoice:last-child {
	width: auto;
}

.price-buttons .gchoice input {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 20px;
    padding: 0;
    background-color: #fff;
}

.price-buttons .gchoice label {
	background-color: #fff;
	padding: 12px 20px 10px 40px;
	display: block;
    border: 1px solid #d8d8d8;
}

.price-buttons .gchoice input:checked + label {
	border-color: #0787BB;
}

.ui-datepicker {
	background: #fff;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0,0,0,0.26);
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.26);
    border-radius: 10px;
    margin: 0 0 5px 0;
	padding: 10px;
}

.ui-datepicker-month {
	width: 56%;
	min-width: auto;
	display: inline-block;
	padding: 5px;
}

.ui-datepicker-year {
	width: 40%;
	padding: 10px;
    background-position: right 5px top 50%;
}

.ui-datepicker-calendar {
	margin: 0;
	border: 0px;
	border-spacing: 0;
	text-align: center;
	padding: 0 10px 10px;
}

.ui-datepicker-calendar tr td {
	text-align: center;
	padding: 2px;
}

.ui-datepicker-calendar tr td a {
	background: var(--white);
	display: inline-block;
	text-decoration: none;
	width: 35px;
	height: 35px;
	padding: 8px;
	border-radius: 50%;
	color: #000;
}

.ui-datepicker-calendar tr td span {
	display: inline-block;
	text-decoration: none;
	width: 35px;
	height: 35px;
	padding: 9px;
}

.undefined span {
	background: #f0ece4;
	color: #afadab;
}

.undefined a {
	color: #fff;
}

.ui-state-hover {
	background-color: #2A2A2A !important;
	color: #ffffff !important;	
}

.ui-datepicker-current-day a {
	background: #2A2A2A !important;
	color: #ffffff !important;	
}

.ui-datepicker-unselectable span {
	background: transparent;
	color: #c7c7c7;
}

.ui-datepicker-today span {
	background: #b9b9b9;
	color: #fff !important;
}

.ui-datepicker-header {
    align-items: stretch;
    display: flex;
    margin-block: unset;
    margin-inline: unset;
    padding-block: 0;
    padding-inline: 0;
    position: unset;
	margin: 0 0 20px;
	padding: 10px;
	gap: 5px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    font-size: 0px;
    width: 20px;
    height: 30px;
    display: inline-block;
    background-color: #fff;
    background-image: url('./assets/images/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 9px 15px;
    margin: 0;
    align-items: center;
    block-size: auto;
    cursor: pointer;
    display: flex;
    flex: none;
    inset: unset;
    justify-content: center;
    position: relative;

}

.ui-datepicker-prev {
	order: 1;
	transform: rotate(-180deg);
}

.ui-datepicker-next {
    background-image: url('./assets/images/arrow-right.svg');
    background-position: center;
	order: 3;
}

.ui-datepicker-prev-hover,
.ui-datepicker-next-hover {
	background-color: transparent !important;
}

.ui-datepicker-prev.ui-state-disabled, .ui-datepicker-next.ui-state-disabled {
	opacity: 0.3;
}

.ui-datepicker-title {
	display: flex;
    flex: auto;
	order: 2;
	gap: 5px;
}

@media only screen and (min-width:768px) {
	
	.two-columns .gform_fields .gfield {
		width: 50%;
	}
	
	.two-columns .gform_fields .gfield.width-100 {
		width: 100%;
	}
	
}

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

	.labels_left .gfield_label {
		float: left;
		width: 200px;
		flex: 1 0 200px;
		max-width: 200px;
		padding: 5px 10px 5px 0;
	}
	
	.labels_left .ginput_container {
	 	flex: 1 0 300px;
	}

}


/***************************
          FOOTER
***************************/

.footer {
	background-color: #0787BB;
	background-image: linear-gradient(90deg, rgba(6,157,220,1) 0%, rgba(8,111,151,1) 100%);
	color: #fff;
	padding: 50px 0 50px;
	overflow: hidden;
	border-bottom: 15px solid #fff;
	position: relative;
}

.footer:before {
	content: '';
	display: block;
	background-image: url('./assets/images/kerk-logo-wit.png');
	background-size: 100%;
	background-repeat: no-repeat;
	width: 68px;
	height: 90px;
	position: absolute;
	bottom: -20px;
	left: 0;
}

.footer a {
	text-decoration: none;
	color: #fff;
}

.footer a:hover {
	text-decoration: underline;
}

.footer h3 {
	font-size: 20px;
	line-height: 150%;
	margin: 0 0 10px;
}

.footer .btn {
	text-decoration: none;
	min-width: 220px;
	text-align: center;
}

.footer .btn:hover,
.footer .btn:focus {
	text-decoration: none;
}

.footer .copy {
	text-align: center;
	font-size: 15px;
	margin: 10px 0;
}

.footer .menu {
	list-style-type: none;
	padding: 0;
}

.footer .menu li a {
	font-size: 20px;
	text-decoration: none;
	font-weight: bold;
	margin: 0 0 10px;
	display: block;
}

.footer .menu li .sub-menu {
	list-style-type: none;
	padding: 0;
}

.footer .menu li .sub-menu a {
	font-weight: normal;
	margin: 0;
	font-size: 17px;
}

.footer .poweredby {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #b0def1;
	font-size: 15px;
	margin: 30px 0 0;
	text-align: center;
}

.footer .poweredby p {
	margin: 0 10px 15px;
}

.footer .pbc {
	background-color: #fff;
	padding: 5px;
	border-radius: 5px;
	width: 120px;
	margin: 0 10px 15px 10px;
}

@media only screen and (min-width:768px) {
	
	.footer {
		padding: 70px 0 50px;
		border-bottom: 20px solid #fff;
	}
	
	.footer:before {
		width: 129px;
		height: 172px;
		bottom: -30px;
	}
	
	.footer h3 {
		font-size: 22px;
	}
	
	.footer .poweredby {
		margin: 40px 0 0;
	}
	
	.footer .menu li a {
		font-size: 22px;
	}
	
	.footer .menu li .sub-menu a {
		font-size: 17px;
	}

}