/* DOCUMENT INFORMATION
	- Format:       CSS3 utf-8
    - Document:     Stadskids SaaS
	- Version:      1.0
    - Author URI:   https://www.onetoweb.nl
*/
* {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

html, body {
    min-height: 100%;
	height: 100%;
}

body {
    box-sizing: border-box;
    overflow-x: hidden;
}

h1, h2, h3, p, p a, ul, ul li {
    margin: 0px;
    padding: 0px;
}

@media(min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1340px;
    }
}

.wrapper {
    position: relative;
    min-height: 100%;
    padding-bottom: 0px;
}

div.header-wrapper {
    min-height: 366px;
}

/*
 * NAVBAR
 */
.navbar {
    position: fixed;
    width: 100%;
    min-height: 51px;
    margin-bottom: 0px;
    border: medium none;
    -webkit-box-shadow: 0 -13px 24px 5px rgba(1, 1, 1, 0.25);
    -moz-box-shadow: 0 -13px 24px 5px rgba(1, 1, 1, 0.25);
    box-shadow: 0 -13px 24px 5px rgba(1, 1, 1, 0.25);
}
@media(min-width: 768px) {
    .navbar {
        border-radius: 0px;
    }
}

.navbar-default {
    z-index: 9999;
    background-color: #8fd4f6;
    border-bottom: 1px solid #fff;
}

.navbar-default > .container {
    position: relative;
}
@media(max-width: 1199px) {
    .navbar-default > .container {
        width: 100%;
    }
}

.navbar-default .navbar-nav>li>a {
    color: #0d529e;
    font-weight: 700;
    -webkit-transition: color 0.1s linear;
    -ms-transition: color 0.1s linear;
    transition: color 0.1s linear;
}

.navbar-default .navbar-nav>li>a::after {
    content: '\2022';
    position: absolute;
    right: -3px;
    display: inline-block;
    color: #0d529e;
}
@media(max-width: 767px) {
    .navbar-default .navbar-nav>li>a::after {
        content: '';
    }
}

.navbar-default .navbar-nav>li:last-child>a::after {
    content: '';
}

@media(max-width: 991px) {
    .navbar-default .navbar-nav>li>a {
        padding: 15px 10px;
    }
}
@media(max-width: 767px) {
    .navbar-default .navbar-nav>li>a {
        padding-left: 0px;
        border-top: 1px solid #0d529e;
    }
}

.navbar-default .navbar-nav>li:first-child>a {
    padding-left: 0px;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    color: #fff;
    font-weight: 700;
    -webkit-transition: color 0.1s linear;
    -ms-transition: color 0.1s linear;
    transition: color 0.1s linear;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #fff;
    font-weight: 700;
    background-color: transparent;
}

.navbar-default .navbar-collapse {
    padding-right: 0px;
    padding-left: 0px;
}

.navbar-default .header-aside {
    position: relative;
}

.navbar-default div.social {
    position: absolute;
    right: 280px;
    -webkit-transition: right 0.2s linear;
    -ms-transition: right 0.2s linear;
    transition: right 0.2s linear;
}
@media(max-width: 1199px) {
    .navbar-default div.social {
        display: none;
    }
}

.navbar-default div.social.open {
    right: 15px;
    -webkit-transition: right 0.2s linear;
    -ms-transition: right 0.2s linear;
    transition: right 0.2s linear;
}

.navbar-default div.social ul {
    list-style-type: none;
    padding-right: 4px;
}

.navbar-default div.social ul li {
    display: inline-block;
    float: right;
}

.navbar-default div.social ul li a::before {
    font-family: 'FontAwesome';
    color: #FFF;
    line-height: 34px;
    width: 34px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    margin-top: 8px;
    margin-left: 7px;
    border-radius: 3px;
}

.navbar-default div.social ul li a.facebook::before {
    content: "\f09a";
    background: #3b5998;
}

.navbar-default div.social ul li a.twitter::before {
    content: "\f099";
    background: #1da1f2;
}

.navbar-default div.social ul li a.instagram::before {
    content: "\f16d";
    background: #cb2f7f;
}

.navbar-default div.social ul li a.google-plus::before {
    content: "\f0d5";
    background: #df4b37;
}

.navbar-default div.logo {
    width: 261px;
    height: 102px;
    position: absolute;
    top: -140px;
    right: 15px;
    text-align: center;
    -webkit-transition: top 0.2s linear;
    -ms-transition: top 0.2s linear;
    transition: top 0.2s linear;
}
@media(max-width: 1199px) {
    .navbar-default div.logo {
        top: 0px;
        height: auto;
        width: auto;
    }
}
@media(max-width: 767px) {
    .navbar-default div.logo {
        position: fixed;
        top: 0px;
        left: 15px;
        right: auto;
    }
}

.navbar-default div.logo.open {
    top: 0px;
    -webkit-transition: top 0.2s linear;
    -ms-transition: top 0.2s linear;
    transition: top 0.2s linear;
}

.navbar-default div.logo a {
    width: 261px;
    height: 95px;
    background: #8fd4f6;
    border: 2px solid #fff;
    border-top: 0px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    line-height: 85px;
    display: block;
}
@media(max-width: 1199px) {
    .navbar-default div.logo a {
        border: medium none;
        line-height: 50px;
        height: auto;
        width: auto;
    }
}

@media(max-width: 1199px) {
    .navbar-default div.logo a img {
        width: 130px;
    }
}

.navbar-default div.logo p {
    font-family: 'Gochi Hand', cursive;
    color: #0d529e;
    margin: 10px 0px 0px 0px;
    font-size: 15px;
}
@media(max-width: 1199px) {
    .navbar-default div.logo p {
        display: none;
    }
}

ul.nav>li>ul {
    display: none;
}

@media(min-width: 768px) {
    ul.nav>li:hover ul {
        display: block;
        background: #8fd4f6;
        border: 1px solid #fff;
    }
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    color: #0d529e;
    background: transparent;
}

ul.dropdown-menu li a {
    color: #0d529e;
}

ul.dropdown-menu>li>a:focus,
ul.dropdown-menu>li>a:hover {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.navbar-toggle {
    position: relative;
    float: right;
    margin: 0px;
    padding: 0px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-default .navbar-toggle {
    border: medium none;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

.navbar-default .navbar-toggle span {
    color: #0d529e;
    font-weight: 700;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border: medium none;
    width: 100%;
    overflow-x: hidden;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 transparent;
     box-shadow: inset 0 1px 0 transparent;
}

@media(max-width: 767px) {
    .navbar-nav {
        margin: 0px;
        margin-top: 10px;
    }

    .navbar-default .navbar-nav>.open>a,
    .navbar-default .navbar-nav>.open>a:focus,
    .navbar-default .navbar-nav>.open>a:hover {
        color: #fff;
    }

    .navbar-default .navbar-nav>.open>a,
    .navbar-default .navbar-nav>.open>a:focus,
    .navbar-default .navbar-nav>.open>a:hover {
        padding-bottom: 10px;
    }

    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #0d529e;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 5px 15px 5px 15px;
    }

    .navbar-nav li.dropdown.open a {
        color: #fff;
    }

    .navbar-nav li span {
        float: right;
        font-family: 'Gochi Hand';
        font-size: 24px;
        line-height: 24px;
    }

    .navbar-nav li.dropdown.open span {
        transform: rotate(90deg)
    }
}

/*
 * PARALLAX MASTHEAD
 */
.parallax-window {
    min-height: 314px;
    background: transparent;
}

.floating {
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 25%;
    margin-top: 70px;
    z-index: -1;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 12px); }
    to   { transform: translate(0, -0px); }
}

@media(max-width: 1440px) {
    .floating {
        margin-left: 15%;
    }
}
@media(max-width: 1200px) {
    .floating {
        margin-left: 7%;
    }
}
@media(max-width: 768px) {
    .floating {
        margin-left: 80%;
    }
}
@media(max-width: 768px) {
    .floating {
        margin-left: 55%;
    }
}

/*
 * FILTER
 */
section.filter {
    z-index: 999;
    padding-top: 8px;
    min-height: 52px;
    -webkit-box-shadow: 0px 0px 25px -22px rgba(1, 1, 1, 0.25);
    -moz-box-shadow: 0px 0px 25px -22px rgba(1, 1, 1, 0.25);
    box-shadow: 0px 0px 25px -22px rgba(1, 1, 1, 0.25);
    border-bottom: 1px solid #121111;
    border-top: 1px solid #fff;
    background: #fff;
    -webkit-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
@media(max-width: 767px) {
    section.filter {
        z-index: 997;
    }
}

section.filter.affix {
    top: 50px;
    width: 100%;
    -webkit-box-shadow: 0px 4px 8px -5px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 4px 8px -5px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 4px 8px -5px rgba(0, 0, 0, 0.6);
    border-top: 1px solid #fff;
    -webkit-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media(max-width: 1199px) {
    section.filter .container {
        width: 100%;
    }
}

section.filter .form-group {
    margin-bottom: 0px;
    margin-bottom: 0px;
    float: left;
    width: 200px;
    margin: 0px 9px;
}

section.filter .form-group.show-filter {
    display: none;
}

section.filter .form-group.locatie {
    width: 225px;
}

section.filter .form-group.leeftijdscategorie {
    width: 160px;
}

@media(max-width: 1339px) {
    section.filter .form-group {
        margin: 0px 7px;
    }

    section.filter .form-group.leeftijdscategorie {
        width: 160px;
    }

    section.filter .form-group.rubriek {
        width: 160px;
    }

    section.filter .form-group.search {
        width: 160px;
    }

    section.filter .form-group.submit {
        width: 175px;
    }
}
@media(max-width: 1199px) {
    section.filter .form-group {
        margin: 0px 6px;
    }

    section.filter .form-group.locatie {
        width: 100px;
    }

    section.filter .form-group.wijk {
        width: 100px;
    }
}
@media(max-width: 991px) {
    section.filter .form-group {
        margin: 0px 4px;
    }

    section.filter .form-group.locatie {
        width: 80px;
    }

    section.filter .form-group.wijk {
        width: 80px;
    }

    section.filter .form-group.leeftijdscategorie {
        width: 150px;
    }

    section.filter .form-group.rubriek {
        width: 80px;
    }

    section.filter .form-group.search {
        width: 130px;
    }

    section.filter .form-group.submit {
        width: 170px;
    }
}

@media(max-width: 767px) {
    section.filter .form-group {
        margin: 0px;
    }

    section.filter .form-group.show-filter {
        display: inline-block;
        width: 23%;
        margin-right: 2%;
    }

    section.filter .form-group.show-filter .show-filter-button {
        display: inline-block;
        position: relative;
        width: 100%;
        text-align: left;
        height: 34px;
        background: #fff;
        border: 1px solid #682084;
        color: #fff;
        background: #682084;
        border-radius: 4px;
        outline: none;
        font-weight: 700;
        font-size: 14px;
    }

    section.filter .form-group.show-filter span {
        transform: rotate(90deg);
        position: absolute;
        font-family: 'Gochi Hand';
        font-size: 30px;
        right: 8px;
        top: 2px;
        display: inline-block;
        line-height: 30px;
        color: #fff;
    }

    section.filter .form-group.locatie {
        width: 100%;
        display: none;
    }

    section.filter .form-group.wijk {
        width: 100%;
        display: none;
    }

    section.filter .form-group.leeftijdscategorie {
        width: 100%;
        display: none;
    }

    section.filter .form-group.rubriek {
        width: 100%;
        display: none;
    }

    section.filter .form-group.search {
        width: 33%;
        margin-right: 2%;
    }

    section.filter .form-group.submit {
        width: 40%;
    }
}
@media(max-width: 579px) {
    section.filter .form-group.search {
        display: none;
    }

    section.filter .form-group.show-filter {
        float: left;
        width: 38%;
        margin-right: 0px;
    }

    section.filter .form-group.submit {
        float: right;
        width: 58%;
    }
}

section.filter .form-group.open {
    display: block !important;
    width: 100% !important;
    margin-bottom: 8px;
}

section.filter li.ms-select-all {
    display: none;
}

/*
 * OPMAAK OPEN
 */
input[data-name="selectAllwijk"],
input[data-name="selectAlllocatie"],
input[data-name="selectAllleeftijdscategorie"],
input[data-name="selectAllrubriek"] {
    margin-right: 1px !important;
}

section.filter .form-group .form-control {
    border-color: #121111;
    color: #121111;
    outline: none;
}

section.filter .form-group .form-control::-webkit-input-placeholder {
    color: #121111;
}

section.filter .form-group .form-control::-moz-placeholder {
    color: #121111;
}

section.filter .form-group .form-control:-ms-input-placeholder {
    color: #121111;
}

section.filter .form-group .form-control:-moz-placeholder {
    color: #121111;
}

section.filter input[type="checkbox"] {
    margin: -1px 4px 0px 0px;
}

section.filter .checkbox_wrapper {
    display: inline-block;
    position: relative;
    height: 16px;
    width: 16px;
    margin-top: 6px;
    cursor: pointer;
}

section.filter input[type="checkbox"] {
    opacity: 0;
    height: 16px;
    width: 16px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
}

section.filter input[type="checkbox"] + label {
    background: url('../images/unchecked.jpg') 0 0 no-repeat;
    background-size: 16px;
    height: 16px;
    width: 16px;
    display:inline-block;
    padding: 0 0 0 0px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.filter input[type="checkbox"]:checked + label {
    background: url('../images/checked.png') 0 0 no-repeat;
    background-size: 16px;
    height: 16px;
    width: 16px;
    display: inline-block;
    padding: 0 0 0 0px;
}

section.filter span.inner-text {
    margin-left: 4px;
    top: -3px;
    position: relative;
    display: inline-block;
}

section.filter .ms-drop {
    background-color: #ffffff !important;
}

section.filter .ms-drop ul {
    margin: 0;
    padding: 3px;
    max-height: 210px;
    overflow-y: auto;
    background-color: #ffffff !important;
}

section.filter .ms-drop ul li {
    background-color: #ffffff !important;
}

@media(max-width: 1199px) {
    section.filter .ms-drop {
        width: 320px;
        margin-top: 8px;
    }
}
@media(max-width: 767px) {
    section.filter .ms-drop {
        width: 100%;
        margin-top: -3px;
    }
}

section.filter .ms-drop ul > li label:hover {
    cursor: pointer;
}

section.filter button.submit {
    position: relative;
    width: 100%;
    text-align: left;
    height: 34px;
    background: #fff;
    border: 1px solid #a4c412;
    color: #fff;
    background: #a4c412;
    border-radius: 4px;
    outline: none;
    font-weight: 700;
    font-size: 14px;
}
/* @media(max-width: 767px) {
    section.filter button.submit {
        border: 1px solid #682084;
        background: #682084;
    }
} */

section.filter button.submit span {
    position: absolute;
    font-family: 'Gochi Hand';
    font-size: 30px;
    right: 5px;
    top: 2px;
    display: inline-block;
    line-height: 30px;
    color: #fff;
}

/*
 * CONTENT WITH FORM
 */
section.content-with-form {
    padding-top: 45px;
    padding-bottom: 0px;
}
@media(max-width: 767px) {
    section.content-with-form {
        padding-bottom: 15px;
    }
}


section.content-with-form h1 {
    font-size: 20px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 10px;
    text-transform: uppercase;
}

section.content-with-form h2 {
    font-size: 18px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 10px;
    text-transform: uppercase;
}
@media(max-width: 1199px) {
    section.content-with-form h2 {
        margin-top: 45px;
    }
}

section.content-with-form h3 {
    font-size: 16px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 8px;
    text-transform: uppercase;
}

section.content-with-form p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121111;
    margin-bottom: 15px;
}

section.content-with-form p a {
    color: #121111;
    font-weight: 700;
}

section.content-with-form img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

section.content-with-form ul,
section.content-with-form ol {
    padding-left: 30px;
    margin-bottom: 15px;
}

section.content-with-form ul li,
section.content-with-form ol li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #121111;
}

section.content-with-form ul li a,
section.content-with-form ol li a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #121111;
}

section.content-with-form .form .form-group {
    margin-bottom: 10px;
}

section.content-with-form .form .input-box {
	position: relative;
	box-sizing: border-box;
	margin-top: 10px;
}

section.content-with-form .form .input-box input {
    position: relative;
    z-index: 3;
    color: #121111;
    font-size: 14px;
}

section.content-with-form .form .input-box .input-text {
	position: absolute;
    z-index: 3;
    font-size: 14px;
    color: #121111;
    line-height: 30px;
    transition: .5s;
}

section.content-with-form .form .input-box .input {
	position: relative;
	width: 100%;
	height: 30px;
	background: transparent;
	border: none;
    outline: none;
    font-size: 14px;
    border-bottom: 2px solid #121111;
}

section.content-with-form .form .form-group.has-error .input-box .input {
    border-bottom: 2px solid #d30600;
}

section.content-with-form .error {
    color: #d30600;
    display: block;
}

section.content-with-form .form .input-box textarea.input {
    height: 150px;
    resize: vertical;
    min-height: 120px !important;
}

section.content-with-form .form .focus .input-text {
	transform: translateY(-20px);
	font-size: 14px;
	opacity: 1;
	color: #121111;
}

input.datepicker {
    border: medium none;
    border-bottom: 2px solid #000;
    width: 150px;
    outline: none;
    margin-top: 10px;
}

section.content-with-form div.date i {
    font-size: 20px;
}

section.content-with-form label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0px;
    font-weight: 400;
    line-height: 36px;
}

section.content-with-form label.birthdate {
    font-weight: 400;
    line-height: 20px;
}

section.content-with-form label a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #121111;
    text-decoration: underline;
}

section.content-with-form span.privacy-statement {
    display: inline-block;
    margin-top: -10px;
    position: relative;
    top: -8px;
    margin-left: 4px;
}
@media(max-width: 359px) {
    section.content-with-form span.privacy-statement {
        font-size: 12px;
    }
}

section.content-with-form span.privacy-statement a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #121111;
    text-decoration: underline;
}
@media(max-width: 359px) {
    section.content-with-form span.privacy-statement a {
        font-size: 12px;
    }
}

section.content-with-form span.child-selection {
    display: inline-block;
    margin-top: -10px;
    position: relative;
    top: -8px;
    margin-left: 4px;
}

section.content-with-form .child-selection-container a {
    font-size: 14px;
    font-weight: 700;
    line-height: 2.4;
    color: #121111;
    text-decoration: underline;
}

section.content-with-form button {
    background: #a4c412;
    color: #fff;
    font-weight: 700;
    border: medium none;
    float: right;
    border-radius: 4px;
    padding: 8px 12px;
    outline: none;
}
@media(max-width: 767px) {
    section.content-with-form button {
        margin-top: 15px;
    }
}

section.content-with-form button i {
    display: inline-block;
    margin-right: 6px;
}

section.content-with-form .checkbox_wrapper {
    display: inline-block;
    position: relative;
    height: 24px;
    width: 24px;
    margin-top: 6px;
    cursor: pointer;
}

section.content-with-form input[type="checkbox"] {
    opacity: 0;
    height: 24px;
    width: 24px;
    position: absolute;
    top: -4px;
    left: 0;
    z-index: 2;
    cursor: pointer;
}

section.content-with-form input[type="checkbox"] + label {
    background: url('../images/unchecked.jpg') 0 0 no-repeat;
    background-size: 24px;
    height: 24px;
    width: 24px;
    display:inline-block;
    padding: 0 0 0 0px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.content-with-form input[type="checkbox"]:checked + label {
    background: url('../images/checked.png') 0 0 no-repeat;
    background-size: 24px;
    height: 24px;
    width: 24px;
    display: inline-block;
    padding: 0 0 0 0px;
}

/* SIGN-UP FORM */
section.content-with-form p.warning,
section.content-with-form p.error,
section.content-with-form p.success {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    padding: 5px 8px;
    margin-bottom: 0px;
}

section.content-with-form p.warning {
    background: #f4951a;
}

section.content-with-form p.error {
    background: #b91717;
}

section.content-with-form p.success {
    background: #2a8401;
}

section.content-with-form p.success a,
section.content-with-form p.error a {
    color: #fff;
    text-decoration: underline;
}

section.content-with-form .sign-up div.childeren {
	padding-top: 15px;
    padding-bottom: 0px;
}

section.content-with-form .sign-up div.childeren label {
	width: 100%;
}

section.content-with-form .sign-up div.childeren label a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #121111;
    text-decoration: underline;
    display: inline-block;
    line-height: 36px;
}

section.content-with-form .sign-up button {
    background: #682084;
}

/* ADDITIONAL FORM ELEMENTS */
section.content-with-form a.password-forgotten,
section.content-with-form a.return-to-login {
    display: inline-block;
    line-height: 36px;
    color: #7b87c2;
    text-decoration: underline;
}

section.content-with-form button.request-new-password,
section.content-with-form button.register {
    background-color: #682084;
}

section.content-with-form .button-group {
    display: inline-block;
    float: right;
}
@media(max-width: 419px) {
    section.content-with-form .button-group {
        display: block;
        float: none;
        text-align: center;
    }
}

section.content-with-form button.login {
    background-color: #682084;
    margin-left: 15px;
}
@media(max-width: 767px) {
    section.content-with-form button.login {
        margin-left: 10px;
    }
}

section.content-with-form a.login-via-microsoft,
section.content-with-form a.login-via-google-plus,
section.content-with-form a.login-via-facebook {
    background: #a4c412;
    color: #fff;
    font-weight: 700;
    border: medium none;
    float: right;
    border-radius: 4px;
    padding: 8px 8px;
    outline: none;
}

section.content-with-form a.login-via-microsoft:hover,
section.content-with-form a.login-via-google-plus:hover,
section.content-with-form a.login-via-facebook:hover {
    text-decoration: none;
}

section.content-with-form a.login-via-google-plus {
    background: #df4b37;
    margin-left: 6px;
}
@media(max-width: 479px) {
    section.content-with-form a.login-via-google-plus {
        width: 100%;
        margin-bottom: 8px;
        margin-left: 0px;
    }
}

section.content-with-form a.login-via-facebook {
    background: #3b5998;
    margin-left: 6px;
}
@media(max-width: 479px) {
    section.content-with-form a.login-via-facebook {
        width: 100%;
        margin-bottom: 8px;
        margin-left: 0px;
    }
}

section.content-with-form a.login-via-microsoft {
    background: #FFB900;
}
@media(max-width: 479px) {
    section.content-with-form a.login-via-microsoft {
        width: 100%;
    }
}

/* INFO CONTAINER */
section.content-with-form div.info {
    padding-top: 30px;
}
@media(max-width: 1199px) {
    section.content-with-form div.info {
        padding-top: 0px;
    }
}

section.content-with-form div.info ul {
    list-style-type: none;
    padding-left: 0px;
}

section.content-with-form div.info ul li {
    font-size: 15px;
}
@media(max-width: 579px) {
    section.content-with-form div.info ul li {
        font-size: 15px;
    }
}

section.content-with-form div.info ul li span {
    display: inline-block;
    width: 200px;
    font-weight: 700;
}
@media(max-width: 579px) {
    section.content-with-form div.info ul li span {
        width: auto;
        padding-right: 5px;
    }
}

section.content-with-form div.info table {
    border: medium none;
}

section.content-with-form div.info table tr td:nth-child(1) {
    font-weight: 700;
    padding-righT: 10px;
}

/*
.singin-button,
.singin-button:hover {
    background: #682084 !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: medium none !important;
    float: right !important;
    border-radius: 4px !important;
    padding: 6px 12px !important;
    text-decoration: none !important;
}
*/
.singin-button,
.singin-button:hover,
section.content-with-form div.info a.button,
section.content-with-form div.info a.button:hover {
    background: #682084;
    color: #fff;
    font-weight: 700;
    border: medium none;
    float: right;
    border-radius: 4px;
    padding: 6px 12px;
    text-decoration: none;
}

.msg-closed {
    color: #fff !important;
    font-weight: 700 !important;
}

.msg-closed,
section.content-with-form div.info p.closed {
    background: #b91717;
    color: #fff;
    font-weight: 700;
    border: medium none;
    float: right;
    border-radius: 4px;
    padding: 8px 12px;
    text-decoration: none;
}

section.content-with-form div.info a.logout {
    float: right;
    display: inline-block;
    line-height: 18px;
    color: #7b87c2;
    text-decoration: underline;
}

section.content-with-form a.back {
    float: right;
    display: inline-block;
    line-height: 21px;
    color: #7b87c2;
    text-decoration: none;
    -webkit-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    transition: color 0.2s linear;
}
@media(max-width: 767px) {
    section.content-with-form a.back {
        float: none;
        display: block;
        margin-top: -20px;
        margin-bottom: 20px;
    }
}

section.content-with-form a.back:hover {
    color: #a4c412;
    text-decoration: none;
    -webkit-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

section.content-with-form a.back span {
    font-family: 'Gochi Hand', cursive;
}


section.content-with-form table {
    border: 2px solid #a4c412;
}

section.content-with-form .table>tbody>tr>td,
section.content-with-form .table>tbody>tr>th,
section.content-with-form .table>tfoot>tr>td,
section.content-with-form .table>tfoot>tr>th,
section.content-with-form .table>thead>tr>td,
section.content-with-form .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #a4c412;
    background: #fff;
}

section.content-with-form .table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #a4c412;
    background: #fff;
    background: rgba(164,196,18,0.26);
}

section.content-with-form .table a {
    color: #682084;
    -webkit-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

section.content-with-form .table a:hover {
    color: #a4c412;
    -webkit-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

@media(max-width: 579px) {
    section.content-with-form table .hide-on-smartphone {
        display: none;
    }
}

/* 404 PAGE */
section.content-with-form.four-o-four h1 {
    font-size: 48px;
}

section.content-with-form.four-o-four p a {
    text-decoration: underline;
}

/*
 * CONTENT
 */
section.content {
    min-height: 337px;
    padding-top: 45px;
    padding-bottom: 0px;
}
@media(max-width: 767px) {
    section.content {
        padding-bottom: 30px;
    }
}

section.content h1 {
    font-size: 20px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 10px;
    margin-top: 0px;
    text-transform: uppercase;
}

section.content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 8px;
    margin-top: 30px;
    text-transform: uppercase;
}

section.content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 5px;
    margin-top: 30px;
    text-transform: uppercase;
}

section.content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121111;
    margin-bottom: 15px;
}

section.content .endorses {
    font-style: italic;
    font-size: 12px;
    text-align: right;
    margin-top: -15px;
}

section.content p a {
    color: #121111;
    font-weight: 700;
}

section.content ul,
section.content ol {
    padding-left: 30px;
    margin-bottom: 15px;
}

section.content ul li,
section.content ol li {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121111;
}

section.content ul li a,
section.content ol li a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #121111;
}

section.content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

section.content img.wijkkaart {
    margin-top: 36px;
}
@media(max-width: 1199px) {
    section.content img.wijkkaart {
        margin-top: 0px;
    }
}

section.content div.social ul {
    list-style-type: none;
    padding-right: 4px;
}
@media(max-width: 767px) {
    section.content div.social ul {
        display: none;
    }
}

section.content div.social ul li {
    display: inline-block;
    float: right;
    color: #121111;
    margin-bottom: 30px;
}

section.content div.social ul li strong {
    display: inline-block;
    line-height: 46px;
}

section.content div.social ul li a::before {
    font-family: 'FontAwesome';
    color: #FFF;
    line-height: 34px;
    width: 34px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    margin-top: 8px;
    margin-left: 7px;
    border-radius: 3px;
}
@media(max-width: 379px) {
    section.content div.social ul li a::before {
        margin-top: 8px;
        margin-left: 2px;
    }
}

section.content div.social ul li a.facebook::before {
    content: "\f09a";
    background: #3b5998;
}

section.content div.social ul li a.twitter::before {
    content: "\f099";
    background: #1da1f2;
}

section.content div.social ul li a.instagram::before {
    content: "\f16d";
    background: #cb2f7f;
}

section.content div.social ul li a.google-plus::before {
    content: "\f0d5";
    background: #df4b37;
}

/*
 * ACTIVITIES
 */
section.activities {
    padding-top: 45px;
    padding-bottom: 0px;
}

section.activities h2 {
    font-size: 18px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 8px;
    text-transform: uppercase;
}

section.activities .activity {
    position: relative;
    border-radius: 4px;
    margin-bottom: 30px;
}
@media(max-width: 479px) {
    section.activities .activity {
        margin-bottom: 45px;
    }
}

section.activities .activity .activity-overlay {
    position: relative;
    height: 220px;
}
@media(max-width: 1199px) {
    section.activities .activity .activity-overlay {
        height: auto;
    }
}

section.activities .activity .activity-overlay img {
    border-radius: 4px;
}
@media(max-width: 1199px) {
    section.activities .activity .activity-overlay img {
        width: 100%;
    }
}


section.activities .activity .activity-overlay .date-label {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #fff;
    font-size: 12px;
    background: #7b86c3;
    padding: 5px 8px;
    font-weight: 400;
    border-radius: 4px;
}

section.activities .activity .activity-overlay .days-label {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    font-size: 12px;
    background: #f4951a;
    padding: 5px 8px;
    font-weight: 700;
    border-radius: 4px;
}

section.activities .activity .activity-overlay .full-label {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    font-size: 12px;
    background: #b91717;
    padding: 5px 8px;
    font-weight: 700;
    border-radius: 4px;
}
@media(max-width: 349px) {
    section.activities .activity .activity-overlay .full-label {
        font-weight: 400;
    }
}

section.activities .activity .activity-overlay .days-label.red {
    background: #b91717;
}

section.activities .activity .activity-overlay ul {
    display: none;
}

section.activities .activity:hover .activity-overlay ul {
    display: inline-block;
    position: absolute;
    bottom: 9px;
    right: 5px;
    list-style-type: none;
}

section.activities .activity .activity-overlay ul li {
    display: inline-block;
    float: right;
}

section.activities .activity .activity-overlay ul li a::before {
    font-family: 'FontAwesome';
    color: #FFF;
    line-height: 34px;
    width: 34px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    margin-left: 7px;
    border-radius: 3px;
}

section.activities .activity .activity-overlay ul li a.facebook::before {
    content: "\f09a";
    background: #3b5998;
}

section.activities .activity .activity-overlay ul li a.twitter::before {
    content: "\f099";
    background: #1da1f2;
}

section.activities .activity .activity-overlay ul li a.instagram::before {
    content: "\f16d";
    background: #cb2f7f;
}

section.activities .activity .activity-overlay ul li a.google-plus::before {
    content: "\f0d5";
    background: #df4b37;
}

section.activities .activity h3 {
    font-size: 16px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 8px;
    line-height: 1.2;
    min-height: 60px;
}
@media(max-width: 1199px) {
    section.activities .activity h3 {
        min-height: auto;
    }
}

section.activities .activity p:not(.participation) {
    font-size: 14px;
    font-weight: 400;
    color: #121111;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 60px;
    margin-bottom: 15px;
}
@media(max-width: 767px) {
    section.activities .activity p:not(.participation) {
        min-height: auto;
    }
}

section.activities .activity p span {
    color: #121111;
    line-height: 1.8;
}

section.activities .activity a.view,
section.activities .activity a.sign-up {
    width: 50%;
    text-align: center;
    padding: 8px;
    color: #FFF;
    font-weight: 700;
}

section.activities .activity a.view:hover,
section.activities .activity a.sign-up:hover {
    text-decoration: none;
}

section.activities .activity a.view span,
section.activities .activity a.sign-up span {
    font-family: 'Gochi Hand';
    line-height: 15px;
    top: -1px;
    right: -2px;
    display: inline-block;
    position: relative;
}

section.activities .activity a.view {
    float: left;
    background: #fff;
    color: #a4c412;
    border: 1px solid #a4c412;
    border-bottom-left-radius: 4px;
    border-right: 1px solid transparent;
    -webkit-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    transition: color 0.2s linear;
}
@media(max-width: 1320px) {
    section.activities .activity a.view {
        width: 40%;
    }
}
@media(max-width: 1199px) {
    section.activities .activity a.view {
        width: 50%;
    }
}
@media(max-width: 339px) {
    section.activities .activity a.view {
        width: 40%;
    }
}

section.activities .activity a.view:hover {
    background: #a4c412;
    color: #fff;
    border: 1px solid #a4c412;
    border-right: 1px solid #fff;
    -webkit-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

section.activities .activity a.sign-up {
    float: right;
    background: #672183;
    border: 1px solid #672183;
    border-bottom-right-radius: 4px;
}
@media(max-width: 1320px) {
    section.activities .activity a.sign-up {
        width: 60%;
    }
}
@media(max-width: 1199px) {
    section.activities .activity a.sign-up {
        width: 50%;
    }
}
@media(max-width: 339px) {
    section.activities .activity a.sign-up {
        width: 60%;
    }
}

section.activities .pagination-wrap {
    margin:auto;
    text-align:center;
}

section.activities .pagination > li > a,
section.activities .pagination > li > span {
    background-color: #a4c413;
    border: 1px solid #a4c413;
    border-radius: 4px;
    color: #fff;
    float: left;
    font-size: 14px;
    line-height: 1.42857;
    margin-right: 5px;
    padding: 8px 15px;
    position: relative;
    text-decoration: none;
}

@media(max-width: 479px) {
    section.activities .pagination > li > a,
    section.activities .pagination > li > span {
        padding: 8px 8px;
    }
}

section.activities .pagination > li.active span,
section.activities .pagination > li > a:hover,
section.activities .pagination > li > span:hover,
section.activities .pagination > li > a:focus,
section.activities .pagination > li > span:focus {
    background-color: #672183 !important;
    border-color: #672183;
    color: #fff;
}

/*
 * NEWS
 */
section.news {
    padding-top: 45px;
}
@media(max-width: 767px) {
    section.news {
        padding-top: 15px;
    }
}

section.news h2 {
    font-size: 18px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 15px;
    text-transform: uppercase;
}

section.news h3 {
    font-size: 18px;
    font-weight: 700;
    color: #121111;
    margin-bottom: 15px;
}

section.news p {
    font-size: 14px;
    font-weight: 400;
    color: #121111;
    margin-bottom: 20px;
    line-height: 1.4;
}

section.news .news-item {
    margin-bottom: 30px;
}

@media(max-width: 1199px) {
    section.news .news-item {
        margin-bottom: 30px;
    }
}

section.news .news-overlay {
    position: relative;
    height: auto;
}

section.news .news-overlay img {
    border-radius: 4px;
    width: 100%;
}

section.news .news-item .news-overlay ul {
    display: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
    list-style-type: none;
}

section.news .news-item:hover .news-overlay ul {
    display: inline-block;
}

section.news .news-overlay ul li {
    display: inline-block;
    float: right;
}

section.news .news-overlay ul li a::before {
    font-family: 'FontAwesome';
    color: #FFF;
    line-height: 34px;
    width: 34px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    margin-left: 7px;
    border-radius: 3px;
}

section.news .news-overlay ul li a.facebook::before {
    content: "\f09a";
    background: #3b5998;
}

section.news .news-overlay ul li a.twitter::before {
    content: "\f099";
    background: #1da1f2;
}

section.news .news-overlay ul li a.instagram::before {
    content: "\f16d";
    background: #cb2f7f;
}

section.news .news-overlay ul li a.google-plus::before {
    content: "\f0d5";
    background: #df4b37;
}

section.news a {
    color: #a4c412;
    float: right;
    font-weight: 700;
}

section.news a:hover {
    color: #a4c412;
}

section.news a span {
    font-family: 'Gochi Hand';
    line-height: 15px;
    top: -1px;
    right: -2px;
    display: inline-block;
    position: relative;
}

.news-pagination {
    padding-top: 0px !important;
}

section.news .news-item a.button {
    background: #682084;
    color: #fff;
    font-weight: 700;
    border: medium none;
    float: right;
    border-radius: 4px;
    padding: 8px 40px;
    text-decoration: none;
    margin: 0px;
}

section.news .news-item a.button:hover {
    text-decoration: none;
}

@media(max-width: 1199px) {
    section.news .facebook-widget {
        display: none;
    }
}

/**
 * Custom Error.
 */
.custom-error-first {
    margin-top: 10px;
}

.custom-error {
    padding-left: 0px;
}

/*
 * MICRO BANNER
 */
section.micro-banner {
    background: url('../images/banner-micro.png') center center repeat-x;
    min-height: 60px;
    margin-top: 15px;
}
@media(max-width: 1439px) {
    section.micro-banner {
        min-height: 55px;
        margin-top: 0px;
    }
}

section.micro-banner a img {
    position: relative;
    float: right;
    max-width: 140px;
    top: -108px;
    right: 60px;
}
@media(max-width: 1740px) {
    section.micro-banner a img {
        display: none;
    }
}

/*
 * BANNER
 */
section.banner {
    margin-top: 15px;
    margin-bottom: 0px;
    background: url('../images/banner-medium.png') 0 0 repeat-x;
    min-height: 200px;
}
@media(max-width: 991px) {
    section.banner {
        background: url('../images/banner-medium.png') -375px 0 no-repeat;
    }
}
@media(max-width: 479px) {
    section.banner {
        background: url('../images/banner-medium.png') -500px 0 no-repeat;
    }
}

/*
 * FOOTER
 */
section.footer-image {
    background: url('../images/bottom-background.png') center center repeat-x;
    height: 327px;
}
@media(max-width: 579px) {
    section.footer-image {
        background: url('../images/bottom-background.png') 0 -200px no-repeat;
        height: 66px;
    }
}

/*
 * FOOTER IMAGE
 */
footer {
    background-color: #a4c412;
    min-height: 40px;
}
@media(max-width: 579px) {
    footer {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

footer p {
    color: #fff;
    font-size: 12px;
    line-height: 40px;
}
@media(max-width: 991px) {
    footer p {
        text-align: center;
    }
}
@media(max-width: 579px) {
    footer p {
        line-height: 20px;
    }
}

footer p a {
    color: #fff;
    text-decoration: underline;
}

footer p a:hover {
    color: #fff;
}

footer ul {
    list-style-type: none;
    text-align: right;
    line-height: 40px;
}
@media(max-width: 991px) {
    footer ul {
        text-align: center;
    }
}
@media(max-width: 579px) {
    footer ul {
        line-height: 20px;
    }
}

footer ul li {
    display: inline-block;
}

footer ul li a {
    display: block;
    color: #fff;
    font-size: 12px;
}

footer ul li a:hover {
    color: #fff;
}

footer ul li a:after {
    content: '|';
    display: inline-block;
    margin-left: 4px;
}

footer ul li:last-child a:after {
    content: '';
}

/*
 * SMARTPHONE CONTROLS
 */
section.smartphone-controls {
    background: #a4c412;
    border-top: 1px solid #fff;
    position: fixed;
    width: 100%;
    bottom: -50px;
    left: 0px;
    z-index: 9999;
    -webkit-transition: bottom 0.2s;
    transition: bottom 0.2s;
}
section.smartphone-controls.visible {
    bottom: 0px;
    -webkit-transition: bottom 0.2s;
    transition: bottom 0.2s;
}

section.smartphone-controls ul {
    text-align: center;
}

section.smartphone-controls ul li {
    display: inline-block;
}

section.smartphone-controls ul li a {
    display: block;
}

section.smartphone-controls ul li a:before {
    font-family: 'FontAwesome';
    color: #FFF;
    line-height: 50px;
    width: 50px;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    margin-left: -2.5px;
    margin-right: -2.5px;
}

section.smartphone-controls ul li a.google-plus:before {
    content: "\f0d5";
    background: #df4b37;
}

section.smartphone-controls ul li a.instagram:before {
    content: "\f16d";
    background: #cb2f7f;
}

section.smartphone-controls ul li a.twitter:before {
    content: "\f099";
    background: #1da1f2;
}

section.smartphone-controls ul li a.facebook:before {
    content: "\f09a";
    background: #3b5998;
}

.minimal-height {
    min-height: 214px;
}

img.no-image {
    border: 1px solid #a4c412;
}

/*
 * LEAFLET MAP
 */
.map {
    position: relative;
    min-height: 400px;
    height: 100%;
    width: 100%;
    outline: none;
    touch-action: none;
    background-color: #445a71;
    position: relative;
}
@media(max-width: 1199px) {
    .map {
        margin-top: 30px;
    }
}
