/* general */
html, body {
    height: 100%;
}

/* helpers */
.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}

body {
    font-family: OpenSansRegular, sans-serif;
    color: #3f484a;
    -webkit-font-smoothing: antialiased !important;
    line-height: 24px;
    position: relative;

    /* for testing */
    /* background-color: #023a47; */
}

a {
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
}

a:focus {
    text-decoration: none;
}

a[href^="tel:"] {
    color: #9a9a9a;
}

::selection {
    background: #1f6cb6;
    color: #fff;
}

::-moz-selection {
    background: #1f6cb6;
    color: #fff;
}

/* OpenSans fonts */

@font-face {
    font-family: OpenSansLight; /* Имя шрифта */
    src: url(../fonts/OpenSans-Light.woff); /* Путь к файлу со шрифтом */
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: OpenSansLightItalic; /* Имя шрифта */
    src: url(../fonts/OpenSans-LightItalic.woff); /* Путь к файлу со шрифтом */
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: OpenSansRegular; /* Имя шрифта */
    src: url(../fonts/OpenSans-Regular.woff); /* Путь к файлу со шрифтом */
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: OpenSansRegularItalic; /* Имя шрифта */
    src: url(../fonts/OpenSans-Italic.woff); /* Путь к файлу со шрифтом */
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: OpenSansBold; /* Имя шрифта */
    src: url(../fonts/OpenSans-Bold.woff); /* Путь к файлу со шрифтом */
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: OpenSansBoldItalic; /* Имя шрифта */
    src: url(../fonts/OpenSans-BoldItalic.woff); /* Путь к файлу со шрифтом */
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: OpenSansExtraBold; /* Имя шрифта */
    src: url(../fonts/OpenSans-ExtraBold.woff); /* Путь к файлу со шрифтом */
    font-weight: 900;
    font-style: normal;
}


/* Signika fonts */
@font-face {
    font-family: SignikaLight;
    src: url(../fonts/Signika-Light.woff); /* Путь к файлу со шрифтом */
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: SignikaRegular;
    src: url(../fonts/Signika-Regular.woff); /* Путь к файлу со шрифтом */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: SignikaBold;
    src: url(../fonts/Signika-SemiBold.woff); /* Путь к файлу со шрифтом */
    font-weight: bold;
    font-style: normal;
}


body.logged-in {
    padding-top: 40px !important;
}
    body.logged-in .domain-bar{
        top: 40px !important;
        z-index: 500;
    }

/* alert bar*/
.alerts-bottom {
    position: fixed;
    bottom: 5px;
    z-index: 100;
    width: auto;
    left: 5px;
}

.alert-bottom {
    /*margin-bottom: 0;*/
    border: 0;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: rgba(63, 72, 74, 0.9);
    padding: 5px;
    padding-right: 35px;
    text-shadow: none;
    width: 100%;
    margin-bottom: 2px;
}

.alert-bottom a {
    color: #fff;
    font-weight: 700;
    font-family: OpenSansBold;
}

.alert-bottom.alert-cookie {
    background: rgba(63, 72, 74, 0.9);
    width: 250px;
    right: 0;
}

.alert-dismissable .close, .alert-dismissible .close {
    top: 1px;
    text-shadow: none;
    opacity: 1;
}

.close:hover, .close:focus {
    color: #fff;
    opacity: 0.5
}

/* buttons and links */
.btn-default {
    border: none;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 30px;
    text-shadow: none;
    border-radius: 0
}

.btn-white {
    background: #ffffff;
    color: #1f6cb6;
    border: 0;
}

.btn-white:hover, .btn-white:focus {
    background: #ffffff;
    color: #3f484a;
    border: 0;
}

.btn-orange-outline {
    background: #ffffff;
    border: 2px solid #1f6cb6;
    color: #1f6cb6;
}

.btn-orange-outline:hover, .btn-orange-outline:focus {
    color: #fff;
    background: #1f6cb6;
    border: 2px solid #1f6cb6;
}

.btn-white-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    margin: 10px;
}

.btn-white-outline:hover, .btn-white-outline:focus {
    color: #1f6cb6;
    background: #ffffff;
    border: 2px solid #ffffff;
}

.btn-grey-outline {
    background: transparent;
    border: 3px solid #ebebeb;
    /*color: #ffffff;*/
    margin: 10px;
    color: #333;
}

.btn-grey-outline:hover, .btn-white-outline:focus {
    color: #333;
    background: #ffffff;
    border: 3px solid #ebebeb;
}

.btn-orange {
    background: #1f6cb6;
    color: #fff !important;
    text-decoration: none !important;
}

.btn-orange:hover, .btn-orange:focus {
    background: #333;
    color: #fff;
}

.btn-orange-small {
    background: #1f6cb6;
    padding: 5px 10px !important;
    font-size: 12px;
    font-weight: 700;
    font-family: OpenSansBold;
    color: #fff !important;
    text-transform: none;
    margin-right: 5px;
    letter-spacing: normal;
    border-radius: 2px;
    text-decoration: none !important;
}

.btn-orange-small:hover {
    background: #333;
    color: #fff;
}

.btn-white-small {
    background: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    font-family: OpenSansBold;
    color: #1f6cb6;
    text-transform: none;
    margin-right: 5px;
    letter-spacing: normal;
    border-radius: 2px;
}

.btn-white-small:hover {
    background: #333;
    color: #fff;
}

.btn-tag {
    background: #333333;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    font-family: OpenSansBold;
    color: #fff;
    text-transform: none;
    margin-right: 5px;
    letter-spacing: normal;
    border-radius: 2px;
    margin-bottom: 2px;
}

.btn-tag:hover {
    background: #1f6cb6;
    color: #fff;
}

.btn-login {
    background: #fff;
    color: #1f6cb6 !important;
    padding: 5px 15px !important;
    margin: 10px 0;
    letter-spacing: 0;
}

.btn-login.out {
    font-size: 12px;
    font-weight: 700;
    font-family: OpenSansBold;
    margin-top: 11px;
}

.btn-login:hover {
    background: #fff !important;
    color: #1f6cb6 !important
}

.btn-dark-blue {
    background: #3f484a;
    color: #fff !important;
    opacity: 1;
    text-decoration: none !important;
}

.btn-dark-blue:hover {
    background: #3f484a;
    color: #fff;
    opacity: 0.85
}

.btn-large {
    padding: 20px 30px;
}

.link-orange {
    text-transform: uppercase;
    color: #1f6cb6;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    margin-bottom: 15px;
    display: inline-block;
}

.link-orange:hover {
    color: #333;
    text-decoration: none;
}

.link-orange.normal-case {
    text-transform: none;
    padding: 0;
    display: block;
    margin: 10px 0;
}

.social-share {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 2;
    text-align: center;
}

.social-share a i {
    color: #fff;
    margin-top: 37%;
}

.social-share a:hover {
    transform: translate(0px);
}

.social-share .fb {
    background: #3389e1;
    display: block;
    width: 50px;
    height: 45px;
    transform: translate(5px);
}

.social-share .tw {
    background: #42b9cf;
    display: block;
    width: 50px;
    height: 45px;
    transform: translate(5px);
}

.social-share .instagram {
    background: #f09433;
    display: block;
    width: 50px;
    height: 45px;
    transform: translate(5px);
    background-size: cover;
}

.social-share .yt {
    background: #e56868;
    display: block;
    width: 50px;
    height: 45px;
    transform: translate(5px);
}
/* custom content pages */

.og-context-node.og-context-node-15344.single.navbar-administration.navbar-tray-open.navbar-fixed.navbar-horizontal.pace-done table {
    margin-left: -25% !important;
}

.page-node-15358.node-type-page.domain-atletiek-nl.og-context.og-context-node.og-context-node-15344.single.pace-done table {
    margin-left: -25% !important;
}

.page-node-15358.node-type-page.domain-atletiekunie-nl.og-context.og-context-node.og-context-node-15344.single.pace-done table {
    margin-left: -25% !important;
}

/* Category node table hotfix */
.node-type-category table{
table-layout: fixed;
width: 100% !important;
}

.node-type-category table tr {
    vertical-align: top;
}

.node-type-category table tr td {
    word-break: break-word;
}

/* forms and filters */
.form-control {
    border-radius: 0;
    box-shadow: 4px 4px 0 #eee;
    border-color: #ddd;
    color: #3f484a !important;
    font-weight: 600;
    min-width: 225px;
}

.form-control:focus {
    border-color: #1f6cb6
}

input, textarea {
    color: #3f484a !important;
}

::-webkit-input-placeholder {
    color: #3f484a !important;
}

:-moz-placeholder {
    color: #3f484a !important;
}

::-moz-placeholder {
    color: #3f484a !important;
}

:-ms-input-placeholder {
    color: #3f484a !important;
}

.dropdown-menu.login {
    max-width: 275px;
    min-width: 200px;
}

.dropdown-menu.login .form-control {
    font-size: 12px;
}

.dropdown-menu.login .form-control:focus {
    box-shadow: none;
}

.dropdown-menu.login form {
    padding: 10px 20px;
    font-size: 12px;
}

.dropdown-menu.login .btn-orange-small {
    color: #fff !important;
    font-weight: 700;
    font-family: OpenSansBold;
    width: auto;
    min-width: 0;
    border-radius: 2px;
    opacity: 1;
    height: auto;
    text-transform: none;
    min-width: 155px;
    margin-bottom: 10px;
    text-align: left;
}

/*Don't show login for users*/
#openid-connect-login-form li {
    display:none !important;
}


form#openid-connect-login-form {
    display: none;
}

.dropdown-menu.login .btn-tag.btn-small {
    box-shadow: 4px 4px 0 #eee;
    padding: 5px 10px !important;
    color: #fff;
    font-size: 12px;
    text-transform: none;
    opacity: 1;
    margin-top: 10px;
}

.dropdown-menu.login .btn-tag.btn-small:hover {
    opacity: 0.8;
    background: #333;
}

.dropdown-menu.login .btn-orange-small:hover {
    opacity: 0.9;
    background: #1f6cb6;
    outline: none;
}

.dropdown-menu.login .title {
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 20px;
}

#openid-connect-login-form {
    margin-bottom: 15px;
}

.dropdown-menu.login p {
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
}

.dropdown-menu.login a {
    color: #7B8081;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 11px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-transform: uppercase;
}

.dropdown-menu.login a:hover {
    background: #F7F7F7;
}

.dropdown-menu.login i {
    margin-right: 5px;
}

/* helper classes */
.responsive-img {
    max-width: 100%;
    height: auto;
}

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

.extra-bold {
  font-family: OpenSansExtraBold !important;
}

.backdrop {
    -moz-box-shadow: 20px 20px rgba(235, 235, 235, 1);
    -webkit-box-shadow: 20px 20px rgba(235, 235, 235, 1);
    box-shadow: 20px 20px rgba(235, 235, 235, 1);
}

.backdrop-menu {
    -moz-box-shadow: 15px 15px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 15px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 15px 15px rgba(0, 0, 0, 0.5);
}

.sidebar.backdrop {
    -moz-box-shadow: 20px 20px rgba(235, 235, 235, 1);
    -webkit-box-shadow: 20px 20px rgba(235, 235, 235, 1);
    box-shadow: 20px 20px rgba(235, 235, 235, 1);
}

.sidebar.right {
    margin-left: 50px;
    margin-right: 0;
}

.important-links.backdrop {
    -moz-box-shadow: 20px 20px rgba(235, 235, 235, 1);
    -webkit-box-shadow: 20px 20px rgba(235, 235, 235, 1);
    box-shadow: 20px 20px rgba(235, 235, 235, 1);
}

.light {
    font-family: OpenSansLight;
}

.border-top-lightgrey {
    border-top: 1px solid #ddd;
}

.search-results .info strong, .highlight-text {
    background: #f8fccb
}

.row.search-count {
    margin-bottom: 60px;
}

.page-taxonomy-term-628 #themas .row.section-content.blocks.compact.themas {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .page-taxonomy-term-628 #themas .container {
        width: auto;
    }
}

@media (max-width: 800px) {
    .page-taxonomy-term-628 #themas .row.section-content.blocks.compact.themas {
        justify-content: flex-start;
    }
}

.clean-cols .col-xs-1, .clean-cols .col-sm-1, .clean-cols .col-md-1, .clean-cols .col-lg-1, .clean-cols .col-xs-2, .clean-cols .col-sm-2, .clean-cols .col-md-2, .clean-cols .col-lg-2, .clean-cols .col-xs-3, .clean-cols .col-sm-3, .clean-cols .col-md-3, .clean-cols .col-lg-3, .clean-cols .col-xs-4, .clean-cols .col-sm-4, .clean-cols .col-md-4, .clean-cols .col-lg-4, .clean-cols .col-xs-5, .clean-cols .col-sm-5, .clean-cols .col-md-5, .clean-cols .col-lg-5, .clean-cols .col-xs-6, .clean-cols .col-sm-6, .clean-cols .col-md-6, .clean-cols .col-lg-6, .clean-cols .col-xs-7, .clean-cols .col-sm-7, .clean-cols .col-md-7, .clean-cols .col-lg-7, .clean-cols .col-xs-8, .clean-cols .col-sm-8, .clean-cols .col-md-8, .clean-cols .col-lg-8, .clean-cols .col-xs-9, .clean-cols .col-sm-9, .clean-cols .col-md-9, .clean-cols .col-lg-9, .clean-cols .col-xs-10, .clean-cols .col-sm-10, .clean-cols .col-md-10, .clean-cols .col-lg-10, .clean-cols .col-xs-11, .clean-cols .col-sm-11, .clean-cols .col-md-11, .clean-cols .col-lg-11, .clean-cols .col-xs-12, .clean-cols .col-sm-12, .clean-cols .col-md-12, .clean-cols .col-lg-12 {
    padding: 0;
}

.img-overlay-black {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.page-taxonomy-term-316 .img-overlay-black {
    background: rgba(0,0,0,0.2) !important;
}

.img-overlay-black-top-banner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.full-image .img-overlay-black-top-banner {
    background: rgba(0, 0, 0, 0.5)
}
.empty-image .img-overlay-black-top-banner {
    background: white;
}
.single .img-overlay-black-top-banner {
    background: white;
}

.force-full-width {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
}

.bold-text {
    font-weight: 600;
}

/* header */
.domain-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50px;
    /* z-index: 2; */
    z-index: 1001; /* zIndex should be higher than fixed menu zIndex*/
}

.domain-bar .list {
    padding: 0;
    margin: 0 0;
    display: inline-block;
}

.domain-bar .list .item,
.domain-bar .list li {
    padding: 0;
    /*margin: 0;*/
    list-style: none;
    display: inline;
    margin: 20px 0;
    position: relative;
}

.domain-bar .list .item .link,
.domain-bar .list li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    padding: 14px 20px;
    display: inline-block;
    font-weight: 700;
    font-family: OpenSansBold;
}
.front .domain-bar .list .item .link,
.front .domain-bar .list li a {
    color: rgba(255, 255, 255, 0.5);
}


.domain-bar .list .item .link span {
    font-weight: 400;
}

.domain-bar .list .item.active .link,
.domain-bar .list .item .link:hover,
.domain-bar .list li.active a,
.domain-bar .list li a:hover {
    color: #1f6cb6;
    text-decoration: none;
}

.domain-bar .links {
    display: inline-block;
    padding: 0;
}

.domain-bar .list .item.active:before,
.domain-bar .list li.active:before {
    content: "";
    width: 100%;
    height: 3px;
    background: #1f6cb6;
    position: absolute;
    top: -17px;
    left: 0;
}
.domain-bar .navbar-right{
    margin-right: 0 !important;
}
.domain-bar .navbar-right .dropdown > .btn{
    background: transparent;
    text-shadow: none;
    text-transform: none !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    font-family: OpenSansBold;
}
    .domain-bar .navbar-right .dropdown > .btn:hover{
        background: transparent !important;
    }

.domain-bar .list .item .link,
.domain-bar .list li a {
    color: #333;
}
.domain-bar .navbar-right .dropdown > .btn{
    color: #2D2D2D !important;
}

.domain-bar .list .item .link:hover,
.domain-bar .list li a:hover {
    color: #1f6cb6;
}

.single .domain-bar .list .item.active .link {
    color: #1f6cb6;
}

@media (max-width: 767px) {
    .single .top-banner {
        min-height: 170px;
        height: auto;
    }

    .single .top-banner .section-header {
        margin-top: 100px;
    }
}

@media (min-width: 768px) {
    .single .top-banner {
        min-height: 300px;
        height: auto;
    }

    .single .top-banner .section-header {
        margin-top: 200px;
    }
}

/* navbar */
.navbar-default {
    background: none;
    border: 0;
    box-shadow: none;
    -webkit-backface-visibility: hidden; /* prevent menu from flickering on mobile devices */
}

.navbar-custom {
    background: #1f6cb6;
    border-radius: 0;
}

.navbar-static-top {
    position: absolute;
    top: 50px;
    z-index: 10;
    width: 100%;
}

body.logged-in .navbar-static-top{
    top: 90px;
}
body.logged-in .navbar-static-top.affix{
    top: 40px;
}

.navbar-static-top.affix {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: #1f6cb6;
}

.navbar-default .navbar-nav > li > a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    font-family: OpenSansBold;
    text-shadow: none;
}

.navbar-default .navbar-nav > li.login > a {
    margin: 10px;
}

.navbar-brand {
    padding: 10px 15px;
}

.dropdown-menu {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-top: none;
    box-shadow: none; /* box-shadow: 0 0px 10px rgba(0,0,0,.175);-webkit-box-shadow: 0 0 10px rgba(0,0,0,.175);*/
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover {
    background: #fff;
    color: #1f6cb6;
}

.navbar-toggle {
    border: none;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-default .navbar-toggle:hover {
    background: none;
}

.yamm .dropdown.yamm-fw .dropdown-menu {
    padding: 0;
    border-radius: 0
}

.yamm .dropdown.yamm-fw .dropdown-menu ul {
    padding: 0;
    margin: 20px 0;
    display: inline-block;
}

.yamm .dropdown.yamm-fw .dropdown-menu ul li {
    list-style: none;
    padding: 0;
}

.yamm .dropdown.yamm-fw .dropdown-menu ul li.title > a {
    color: #3f484a;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    font-family: OpenSansBold;
    margin-bottom: 5px;
    display: block;
}

.yamm .dropdown.yamm-fw .dropdown-menu ul li.title > a:hover {
    background: none;
}

.yamm .dropdown.yamm-fw .dropdown-menu ul li > a {
    color: #999;
    font-size: 12px;
    font-weight: 600;
    display: block;
    padding: 5px;
}

.yamm .dropdown.yamm-fw .dropdown-menu ul > li > a:hover {
    background: #f2f2f2;
    text-decoration: none;
    color: #888
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .active > a {
    background: white;
    box-shadow: none;
    color: #1f6cb6;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover {
    background: none;
    color: #333;
}

/* sections */
.section {
    padding: 70px 0;
    position: relative;
}

.section.narrow {
    padding: 35px 0;
}

.section.big {
    padding: 130px 0;
}

.section-header .title {
    font-size: 40px;
    font-family: OpenSansLight;
    position: relative;
    padding-bottom: 30px;
    margin: 0 10%;
    text-transform: uppercase;
}

.section-header .title.inverse {
    color: #fff;
}

.empty-image .section-header .title.inverse,
.single .section-header .title.inverse {
    color: #3f484a;
}
.single .img-overlay-black-top-banner {
    color: #3f484a;
}

.section-header .title.middle {
    font-size: 36px;
}

@media ( max-width: 900px ) {
    .section-header .title {
        font-size: 30px;
    }
}

@media ( max-width: 600px ) {
    .section-header .title {
        font-size: 4.4vw;
    }
}

.section-header .intro-text {
    margin: 30px 15%;
    font-size: 24px;
    font-family: OpenSansLight;
    line-height: 30px;
}

.intro-link ul {
    padding-bottom: 50px;
}
.intro-link ul li {
    list-style: none;
}
.intro-link ul li a {
    font-size: 24px;
    color: #fff;
}
.section-header .intro-text.inverse {
    color: #fff;
}

.page-navigation404 .section-header .intro-text.inverse {
    color: #fff;
}

.section-header .bordered-orange:after {
    position: absolute;
    bottom: 0;
    content: "";
    height: 3px;
    width: 200px;
    background: #1f6cb6;
    display: block;
    left: 50%;
    margin-left: -100px;
}

.section-header .bordered-white:after {
    position: absolute;
    bottom: 0;
    content: "";
    height: 3px;
    width: 200px;
    background: #ffffff;
    display: block;
    left: 50%;
    margin-left: -100px;
}

.figure-bottom-full {
    background: #fff url(../img/figure-bottom-full.jpg) no-repeat bottom left !important;
}

.figure-bottom-right {
    background: #f5f5f5 url(../img/figure-bottom-right.png) no-repeat bottom right !important;
}

.figure-footer {
    background: #333 url(../img/figure-footer.png) no-repeat center center !important;
    height: 141px;
    background-size: cover !important;
}

.lightgrey-bg {
    background: #f5f5f5;
}

.node-type-overzicht .white-bg, .node-type-webform .white-bg {
    background: #f5f5f5;
}

.node-type-overzicht.page-node-63 .white-bg {
    background: #fff;
}

.white-bg {
    background: #ffffff;
}

.middlegrey-bg {
    background: #333;
}

.darkgrey-bg {
    background: #2d2d2d;
}

.section.content .section-header .img {
    height: 500px
}

.section.content {
    padding: 0;
}

.section.content .section-header .img {
    margin-bottom: 100px;
}

.section.content .section-content {
    margin-bottom: 100px;
}

.body-text.middle p {
    font-size: 24px;
    font-family: OpenSansLight;
    line-height: 32px;
    margin-bottom: 30px;
}

.body-text.large p {
    font-size: 32px;
    font-family: OpenSansLight;
    line-height: 42px;
}

.body-text {
    font-size: 14px;
    line-height: 24px;
}

.body-text p {
    margin-bottom: 20px;
}

.body-text h3 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.body-text a {
    color: #1f6cb6;
    text-decoration: underline;
    font-weight: 600;
}

.body-text a:hover {
    text-decoration: none;
}

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

.body-text div.list {
    margin-top: 0;
    margin-bottom: 10px;
}

.section.video img {
    width: 100%;
}

/* sidebar */
.sidebar {
    border: 1px solid #ebebeb;
    padding: 30px 0;
    margin-right: 50px;
    margin-bottom: 100px;
    background: #fff;
}

.sidebar .title {
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    padding: 0 30px 20px 30px;
    position: relative;
}

.sidebar .title a {
    color: #333;
}

.sidebar .title a:hover {
    color: #1f6cb6;
    text-decoration: none;
}

.sidebar .title.bordered:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 20px;
    background: #dedede;
    bottom: 0;
    left: 30px;
}

.sidebar-subsubmenu .sidebar-subsubmenu .sidebar-subsubmenu > li > a {
    padding-left: 95px !important;
}

.sidebar ul.sidebar-menu, .sidebar ul.sidebar-submenu, .sidebar ul.sidebar-subsubmenu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar ul.sidebar-menu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar ul.sidebar-menu li a, .sidebar ul.sidebar-submenu li a, .sidebar ul.sidebar-subsubmenu li a {
    padding: 10px 30px;
    display: block;
    font-weight: 700;
    font-family: OpenSansBold;
    color: #7b8081;
    font-size: 12px;
    position: relative;
}

.sidebar ul.sidebar-menu li a:hover,
.sidebar ul.sidebar-submenu li a:hover,
.sidebar .menu-level-2 ul.sidebar-submenu > li.active-trail > a:hover {
    background: #f7f7f7;
    color: #3f484a;
    text-decoration: none;
}

.sidebar ul.sidebar-menu li a:hover:after {
    content: "\f061";
    font-family: "FontAwesome";
    position: absolute;
    right: 30px;
}

.sidebar ul.sidebar-submenu li a:hover:after {
    content: "\f061";
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
}

.sidebar ul.sidebar-menu > li.active > a {
    background: #3f484a;
    color: #fff;
}

.sidebar ul.sidebar-menu > li.active-trail > a {
    background: #3f484a;
    color: #fff;
}

.sidebar ul.sidebar-submenu > li.active-trail > a {
    background: #3f484a;
    color: #fff !important;
}

.sidebar .menu-level-2 ul.sidebar-submenu > li.active-trail > a {
    background: inherit;
    color: #7b8081 !important;
}

.sidebar ul.sidebar-submenu > li.active > a {
    color: #3f484a;
}

/*.sidebar ul.sidebar-submenu > li.active > a:after{content: "\f061"; font-family:"FontAwesome";position: absolute; right: 30px;}*/
/*.sidebar ul.sidebar-submenu > li > a:before,*/
.sidebar ul.sidebar-subsubmenu > li > a:before,
.sidebar .menu-level-2 .sidebar-submenu > li > a:before {
    content: "";
    height: 100%;
    width: 2px;
    background: #ebebeb;
    left: 30px;
    top: 0;
    position: absolute;
}

.sidebar ul.sidebar-submenu > li.active > a:before,
.sidebar .menu-level-2 .sidebar-submenu > li.active > a:before,
#block-og-menu-og-single-menu-block .sidebar ul.sidebar-subsubmenu > li.active-trail > a:before {
    background: #3f484a;
}

.sidebar ul.sidebar-subsubmenu > li.active > a:before {
    background: #3f484a;
}

.sidebar ul.sidebar-subsubsubmenu > li.active > a:before {
    background: #3f484a;
}

.sidebar ul.sidebar-submenu {
    margin: 0;
    padding: 0;
}

.sidebar ul.sidebar-submenu > li > a {
    padding: 10px 30px 10px 40px;
}

.sidebar ul.sidebar-subsubmenu > li > a {
    padding: 10px 30px 10px 50px;
}

.menu-level-3 .sidebar-subsubmenu > li > a {
    padding: 10px 30px 10px 50px;
    padding: 10px 30px;
    display: block;
    font-weight: 700;
    font-family: OpenSansBold;
    color: #7b8081;
    font-size: 12px;
    position: relative;
}

.menu-level-3 ul.sidebar-subsubmenu ul.sidebar-subsubmenu > li > a {
    padding-left: 70px;
}

.sidebar ul.sidebar-subsubsubmenu > li > a {
    padding: 12px 30px 12px 80px;
}

.sidebar .sidebar-submenu .sidebar-subsubmenu .sidebar-subsubmenu li a {
    padding: 8px 30px 8px 60px;
}

.sidebar .sidebar-submenu .sidebar-subsubmenu .sidebar-subsubmenu .sidebar-subsubmenu li a {
    padding: 8px 30px 8px 70px;
    font-size: 12px;
    font-weight: 600;
}

.sidebar .sidebar-submenu .sidebar-subsubmenu .sidebar-subsubmenu .sidebar-subsubmenu li a.active,
.sidebar .sidebar-submenu .sidebar-subsubmenu .sidebar-subsubmenu li a.active,
.sidebar ul.sidebar-subsubmenu > li > a.active,
.sidebar .menu-level-2 .sidebar-submenu > li.active > a {
    background: #f7f7f7;
    color: #3f484a !important;
}

ul li.leaf, ul li.expanded, ul li.collapsed {
    list-style-image: none !important;
    list-style-type: none !important;
}

li.expanded, li.collapsed, li.leaf {
    padding: 0 !important;
    margin: 0 !important;
}

.sidebar.member {
    margin-right: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.sidebar.member p {
    padding: 0 30px;
}

.sidebar.member .btn-orange-small {
    margin-left: 30px;
    color: #fff;
    text-decoration: none;
}

.sidebar.member ul {
    margin: 0;
    padding: 0;
}

.sidebar.member ul li {
    margin: 0 0 0 50px;
    padding: 5px 50px 5px 30px;
    list-style: decimal outside none;
    position: relative;
    font-weight: 600;
    color: #898e8f;
}

.sidebar.member ul li:after {
    content: "\f061";
    font-family: "FontAwesome";
    position: absolute;
    right: 30px;
    color: #d2d3d3;
    top: 4px
}

.sidebar.member ul li:hover:after {
    color: #333;
}

.sidebar.member ul li a {
    color: #333;
    font-weight: 600;
    display: block;
    text-decoration: none;
}

.sidebar.member ul li a:hover {
    text-decoration: none;
}

.sidebar.member .list {
    margin: 0;
}

.sidebar .table td {
    font-size: 13px;
}

.sidebar .sidebar-table-padding {
    padding: 0 25px;
}

/* teaser */
.hero {
    height: 100%;
    position: relative;
    background: #333;
}

.teaser-slider {
    position: relative;
    height: 100%;
}

.teaser-slider-item {
    position: relative;
    height: 100%;
}

.teaser-slider-item-content {
    position: absolute;
    top: 31%;
    width: 100%;
    text-align: center;
}

.teaser-slider-item-content-title h1 {
    font-size: 72px;
    line-height: 72px;
    color: #fff;
    font-weight: 700;
    font-family: OpenSansBold;
    position: relative;
    padding-bottom: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.teaser-slider-item-content-title h1 span {
    font-weight: 400;
}

/* .teaser-slider-item-content-title h1:after{position: absolute; bottom: 0px; content:""; height: 3px; width: 200px; background: #1f6cb6;display: block;left: 50%;margin-left: -100px;} */
.teaser-slider-item-content-sub-title {
    color: #fff;
    font-size: 40px;
    font-family: OpenSansLight;
    padding: 10px 30px 30px 30px;
    margin: 0 15%;
    letter-spacing: -1px;
    line-height: 46px;
}

.teaser-slider-item-content-sub-title span {
    color: #1f6cb6;
}

.teaser-slider-item-img {
    position: relative;
    height: 100%;
}

.teaser-slider-item-content-btn .btn-orange {
    border: 2px solid transparent;
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    border-radius: 0
}

.teaser-slider-item-content-btn .btn-orange:hover {
    background: transparent;
    border: 2px solid #fff;
}

.teaser-arrow-down {
    opacity: 0.85;
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
}

.teaser-arrow-down:hover {
    opacity: 1;
}

/* quick banners */
.quick-banners {
    position: absolute;
    bottom: 100px;
    width: 100%;
    z-index: 1;
}

.quick-banners .quick-banners-wrapper {
    border: 1px solid #fff;
}

.quick-banners .item {
    border: 1px solid #fff;
}

.quick-banners .item a {
    padding: 13px 0;
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: OpenSansBold;
    text-transform: uppercase;
    color: #fff;
}

.quick-banners .item a:hover {
    background: #fff;
    color: #1f6cb6;
    text-decoration: none;
}

.quick-banners .item a.active {
    background: #fff;
    color: #1f6cb6;
    text-decoration: none;
}

.quick-banners .col-md-3, .quick-banners .col-sm-6, .quick-banners .col-xs-6 {
    padding: 0;
}

/* quick banners below */
.quick-banners-below {
    background: #f7f7f7;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.quick-banners-below-row {
    border: 1px solid #ddd;;
    background: #fff;
}

.quick-banners-below-row .item {
    border: 1px solid #ddd;
    padding: 0;
}

.quick-banners-below-row .item a {
    padding: 13px 0;
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 700;
    font-family: OpenSansBold;
    text-transform: uppercase;
    color: #1f6cb6;
}

.quick-banners-below-row .item a:hover, .quick-banners-below-row .item.active a {
    background: #ebebeb;
    color: #3f484a;
    text-decoration: none;
}

/* new adstosport banner CSS */

.ats {
    border: 1px solid black;
    height: 90px;
    width: 728px;
    margin: auto;
}

@media screen and (max-width: 415px) {
    .ats {
        height: 45px;
	width: 366px;
    }
}

@media screen and (max-width: 361px) {
    .ats {
        height: 43px;
	width: 350px;
    }
}

/* scroll down */
.scroll-down {
    position: absolute;
    bottom: 35px;
    width: 100%;
    z-index: 9;
}

.scroll-down a {
    color: #fff;
    font-size: 24px;
}

/* section blocks compact */
.blocks.compact .col-xs-4, .blocks.compact .col-sm-4, .blocks.compact .col-md-4, .blocks.compact .col-md-3, .blocks.compact .col-sm-3, .blocks.compact .col-xs-6, .blocks.compact .col-sm-6, .blocks.compact .col-md-6 {
    padding: 2px;
}

.blocks .item {
    position: relative;
}

.blocks.compact .item {
    text-align: center;
}

.blocks.compact .item:hover {
    z-index: 1;
}

.blocks.compact .item .title {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

.blocks.compact .item .title .name {
    font-size: 24px;
    text-transform: none;
    font-family: OpenSansLight;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.blocks .overlay {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(31,108,182, 0.8);
    opacity: 0;
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
}

.blocks .overlay:hover, .blocks .overlay:focus {
    opacity: 1 !important; /* transform: scale(1.1); */
}

.blocks .overlay .btn-more {
    margin-top: 43%;
}

.section-footer {
    padding: 70px 0 0 0;
}

.section-footer.narrow {
    padding: 35px 0 0 0;
}

.blocks .title {
    font-family: OpenSansLight;
    font-size: 24px;
    margin: 30px 0 10px 0;
    position: relative;
}

.blocks .title.bordered:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 20px;
    background: #1f6cb6;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.blocks .intro {
    margin: 20px 0;
    display: inline-block;
    color: #a0a0a0;
}

.blocks.compact .item.facts {
    min-height: 200px;
}

.blocks.compact .item.facts {
    min-height: 200px;
}

.blocks.compact.facts {
    padding: 0;
    margin-top: 50px;
    border: 1px solid #ebebeb;
}

.blocks.compact.facts .item {
    border: 1px solid #ebebeb;
    padding: 100px 0;
}

.blocks.compact.facts .item:hover {
    background: #f2f2f2;
}

.blocks.compact.facts .item:hover .count {
    color: #3f484a;
}

.blocks.compact.facts .item .count {
    font-size: 42px;
    font-family: OpenSansLight;
    color: #1f6cb6;
}

.blocks.compact.facts .item .count-subject {
    font-size: 12px;
    color: #b0b2b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    font-weight: 700;
    font-family: OpenSansBold;
}

.blocks.compact.facts .col-md-3, .blocks.compact.facts .col-sm-3, .blocks.compact.facts .col-xs-6 {
    padding: 0;
}

.blocks.compact .item.facebook img {
    width: 100%;
}

.blocks.compact .item.facebook .overlay {
    color: #fff;
    overflow: hidden;
}

.blocks.compact .item.facebook .overlay .info {
    padding: 29px;
}

.blocks.compact .item.facebook .overlay .info .name {
    font-size: 24px;
    font-family: OpenSansLight;
}

.blocks.compact .item.facebook .overlay .info .work {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding: 10px 0;
}

.blocks.compact .item.facebook .overlay .info .work.bordered:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 20px;
    background: #dedede;
    bottom: 0;
    left: 0;
}

.blocks.compact .item.facebook .overlay .info .about {
    padding: 10px 0;
}

.blocks.compact .item.facebook .overlay .info .phone,
.blocks.compact .item.facebook .overlay .info .email{
    line-height: 18px;
}

.blocks.compact .item.facebook .overlay .info .phone {
    /* margin-top: 10px; */
    font-weight: 700;
    font-family: OpenSansBold;
    width: 35%;
    display: inline-block;
}

.blocks.compact .item.facebook .overlay .info .email {
    font-weight: 700;
    font-family: OpenSansBold;
    width: 35%;
    display: inline-block;
    margin-top: 10px;
}

.blocks.compact .item.facebook .overlay .info .email-address a {
    color: #fff;
}

.blocks.compact .item.facebook .overlay .info .social {
    margin-top: 20px;
}

.blocks.compact .item.facebook .overlay .info .social a {
    color: #fff;
}

.blocks.compact .item.facebook .overlay .btn-more {
    margin-top: 33%;
}

.blocks.compact .item.facebook .overlay .button-right {
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.blocks.compact .item.facebook .overlay .button-right .btn-more {
    margin-top: 0;
}

.blocks.compact .item.facebook .overlay .button-center {
    text-align: center;
}

.facebook-single {
    border: 1px solid #ddd;
}

.facebook-single .inner {
    padding: 30px 50px;
}

.field-actiefoto {
    margin-top: 30px;
}

/*.blocks.compact .item.facebook:hover .title{display: none;transition: all 300ms;-moz-transition: all 300ms;-webkit-transition: all 300ms;-o-transition: all 300ms; }*/

.blocks.compact.themas .item .title {
    font-weight: 700;
    font-family: OpenSansBold;
    top: 80%;
    width: 100%;
    text-align: center;
    left: auto;
    letter-spacing: 1px;
    padding-left: 10px;
    padding-right: 10px;
    word-break: break-word;
}
/*
.blocks.compact.themas .item .title {
    font-weight: 700;
    font-family: OpenSansBold;
    top: 80%;
    width: 100%;
    text-align: center;
    left: auto;
    letter-spacing: 1px;
}*/

.blocks.compact.themas .item.inverse-orange {
    background: #1f6cb6;
    color: #fff;
    padding: 30px;
    text-align: left;
    min-height: 289px;
}

.blocks.compact.media .item img {
    max-width: 100%;
    height: auto;
}

.blocks.compact.media .item i {
    margin-top: 30%;
    color: #fff;
    font-size: 32px;
}

.jackbox {
    width: 100%;
    height: 100%;
}

/* section blocks */
.blocks .item .box-bottom-left {
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    height: 75%;
    width: 75%;
    padding: 30px;
}

.blocks .item .box-bottom-left .category a {
    text-transform: uppercase;
    font-weight: 700;
    font-family: OpenSansBold;
    letter-spacing: 2px;
    color: #1f6cb6;
    font-size: 12px;
    margin-bottom: 20px;
    display: inline-block;
}

.blocks .item .box-bottom-left .title {
    margin: 0;
}

.blocks .item .box-bottom-left .title a {
    font-family: OpenSansLight;
    font-size: 24px;
    line-height: 28px;
    color: #333;
}

.blocks .item .box-bottom-left .title a:hover {
    text-decoration: none;
    color: #1f6cb6;
}

@media ( max-width: 900px ) {
    .blocks .item .box-bottom-left .title a {
        font-size: 20px;
    }
}

@media ( max-width: 600px ) {
    .blocks .item .box-bottom-left .title a {
        font-size: 16px;
    }
}

.blocks .item .box-bottom-left .tags {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

/*  section testimonials */
.section.testimonials {
    position: relative;
}

.section.testimonials .avatar {
    position: absolute;
    width: 100%;
    margin-left: -50%;
    left: 50%;
    top: -120px;
}

.section.testimonials .avatar img {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    box-shadow: 0 0 5px
}

.section.testimonials .avatar-title {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
}

.section.testimonials .quote {
    font-size: 36px;
    font-family: OpenSansLight;
    color: #fff;
    margin: 70px 0 10px 0;
    line-height: 32px;
}

.blocks.block .item {
    margin-bottom: 50px;
}

.section.testimonials .section-content {
}

.section.testimonials .section-footer {
}

/* section partners sponsoren */
.blocks .sponsors, .blocks .partners {
    margin: 25px 0;
}

.blocks .sponsors a img, .blocks .partners a img {
    margin: 25px 0;
}

.carousel-sponsors img {
    width: auto !important;
    display: inline-block !important;
}

/* section list */
.list {
    margin: 50px 0
}

/* section list matches */
.list .item.match {
    background: #fff;
    margin-bottom: 10px;
    position: relative;
}

.list .item.match:hover {
    background: #f9f9f9;
}

.list .item.match:hover .date {
    background: #1f6cb6;
}

.list .item.match .col-sm-3, .list .item.match .col-sm-7, .list .item.match .col-sm-2 {
    padding: 0;
}

.list .item.match .date {
    padding: 37px;
    background: #333;
}

.list .item.match .date .number {
    font-size: 30px;
    color: #fff;
    font-family: OpenSansExtraBold;
}

.list .item.match .date .month {
    font-size: 24px;
    color: #fff;
    font-family: OpenSansLight;
}

.list .item.match .date .month {
    font-size: 30px;
    color: #fff;
    font-family: OpenSansLight;
}

.list .item.match .info {
    padding: 25px;
}

.list .item.match .info .place {
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    margin-right: 10px;
}

.list .item.match .info .category {
    text-transform: uppercase;
    color: #adadad;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
}

.list .item.match .info .title {
    font-family: OpenSansLight;
    font-size: 24px;
    line-height: 30px;
}

.list .item.match .more {
    margin-top: 45px;
    margin-right: 25px;
}

/* section list news */
.list .item.news {
    background: #fff;
    margin-bottom: 10px;
    position: relative;
}

.list .item.news:hover {
    background: #f9f9f9;
}

.list .item.news .col-sm-3, .list .item.news .col-sm-7, .list .item.news .col-sm-2 {
    padding: 0;
}

.list .item.news .img {
    padding: 0;
    background: #333;
    height: 285px;
    position: relative;
}

.list .item.news .img .box-top-right {
    position: absolute;
    height: 50%;
    width: 50%;
    right: 0;
    top: 0;
    padding: 30px 10px;
    background: rgba(0, 0, 0, 0.6);
}

.list .item.news .img .box-top-right .date .number {
    font-size: 30px;
    color: #fff;
    font-family: OpenSansExtraBold;
    display: block;
    line-height: 30px;
}

.list .item.news .img .box-top-right .date .month {
    font-size: 24px;
    color: #fff;
    font-family: OpenSansLight;
    display: block;
    line-height: 30px;
}

.list .item.news .date .month {
    font-size: 30px;
    color: #fff;
    font-family: OpenSansLight;
}

.list .item.news .info {
    padding: 25px;
}

.list .item.news .info .place {
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .list .item.news .info .category {
        display: none !important;
    }
}

.list .item.news .info .category {
    text-transform: uppercase;
    color: #1f6cb6;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    margin-bottom: 15px;
    display: block;
}

.list .item.news.vacancies .category {
    margin-left: 10px;
}

.list .item.news .info .category a {
    color: #1f6cb6;
    margin-right: 0px;
}

.list .item.news .info .title, .list .item.news .info .title a {
    font-family: OpenSansLight;
    font-size: 24px;
    margin-bottom: 30px;
    color: #3f484a;
}

.list .item.news .info .title a:hover {
    text-decoration: none;
    color: #1f6cb6;
}

.list .item.news .more {
    margin-right: 0;
}

.view-vacatures .list .item.news {
    border-left: 3px solid transparent;
}

.view-vacatures .list .item.news:hover {
    border-left: 3px solid #1f6cb6;
    background: #fff;
}

/* section list timelines */
.list .item.timeline:hover {
    background: #f7f7f7;
}

.list .item.timeline .info {
    padding: 10% 15%;
    text-align: right;
}

.list .item.timeline .year {
    font-size: 24px;
    margin-bottom: 15px;
}

.list .item.timeline .title {
    text-transform: uppercase;
    font-weight: 700;
    font-family: OpenSansBold;
    letter-spacing: 1px;
    color: #1f6cb6;
    font-size: 12px;
    margin-bottom: 15px;
}

.list .item.timeline .intro {
    line-height: 30px;
    margin-bottom: 25px;
}

.list .item.timeline .info:before {
    position: absolute;
    content: "";
    background: #ebebeb;
    width: 3px;
    height: 100%;
    right: 0;
    top: 0;
    display: inline;
}

.list .item.timeline .info:after {
    position: absolute;
    content: "";
    background: #ebebeb;
    width: 20px;
    height: 20px;
    right: 2px;
    top: 45px;
    margin-right: -11px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    visibility: visible;
}

.list .item.timeline .img {
    padding: 7% 15%;
}

.list .item.timeline .img img {
    width: 100%;
}

.btn-grey-outline.btn-timeline {
    letter-spacing: 1px;
    padding: 13px 40px;
    position: relative;
}

.btn-grey-outline.btn-timeline:before {
    position: absolute;
    content: "";
    background: #ebebeb;
    width: 3px;
    height: 100px;
    right: 50%;
    bottom: -100px;
}

.timeline-footer {
    padding-top: 0;
}

.timeline-footer .btn-grey-outline.btn-timeline:before {
    position: absolute;
    content: "";
    background: #ebebeb;
    width: 3px;
    height: 100px;
    right: 50%;
    top: -100px;
}

/* section list search results */
.section.search {
    padding-top: 0;
}

.list .item.search-results {
    background: #fff;
    margin-bottom: 10px;
}

.list .item.search-results:hover {
    background: #f9f9f9;
}

.list .item.search-results:hover .number {
    background: #1f6cb6;
}

.list .item.search-results .col-xs-1 {
    padding: 0;
}

.list .item.search-results .number {
    background: #333;
    min-height: 213px;
    position: relative;
}

.list .item.search-results .number .numbers {
    color: #fff;
    font-weight: 700;
    font-family: OpenSansBold;
    top: 42%;
    position: absolute;
    width: 100%;
}

.list .item.search-results .info {
    padding: 25px;
}

.list .item.search-results .info .title a {
    font-family: OpenSansLight;
    font-size: 24px;
    margin-bottom: 20px;
    display: inline-block;
    color: #3f484a;
    line-height: 38px;
}

.list .item.search-results .info .title a:hover {
    text-decoration: none;
    color: #1f6cb6;
}

.list .item.search-results .info p {
    margin-bottom: 30px;
}

.list .item.search-results .info .location {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.list .item.search-results .info .location a {
    color: #1f6cb6
}

.search-count .highlight-text {
    font-size: 24px;
    font-weight: 600;
    padding: 5px;
    display: inline-block;
}

.search-field {
    margin: 30px 0;
}

.search-field .form-control {
    width: 50%;
    display: inline-block;
    position: relative;
    padding: 10px 40px 10px 15px;
    color: #b0b2b3 !important;
    font-size: 14px;
    font-weight: 700;
    font-family: OpenSansBold;
}

.search-field .search-btn {
    position: relative;
    right: 40px;
    top: 3px;
    background: url(../img/search-icon.png) no-repeat center center;
    width: 25px;
    height: 25px;
    border: 0;
}

.search-field .search-btn:focus {
    outline: none;
}

#close-search-box-input {
    position: absolute;
    top: 25px;
    right: 30px;
    cursor: pointer;
    opacity: 1;
}

#close-search-box-input:hover {
    position: absolute;
    top: 25px;
    right: 30px;
    cursor: pointer;
    opacity: 0.5
}

.search-box {
    margin-left: 10px;
}

/* nav tabs overwrite */
.nav-tabs {
    position: absolute;
    top: -42px;
    border-bottom: 0
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover {
    border: 0;
    border-bottom: 3px solid #333;
    outline: none;
    background: transparent;
}

.nav-tabs > li > a {
    border: 0 solid transparent;
    font-weight: 700;
    font-family: OpenSansBold;
    color: #b0b2b3;
    margin-right: 0;
}

.nav > li > a:hover {
    background: #fff;
}

/* owl slider overwrites */
.owl-controls .owl-nav .owl-prev {
    position: absolute;
    left: 50px;
    top: 50%;
    background: url(../img/teaser-arrow-prev.png) no-repeat center center;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    cursor: pointer;
    opacity: 0.85;
    transition: 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
}

.owl-controls .owl-nav .owl-next {
    position: absolute;
    right: 50px;
    top: 50%;
    display: block;
    background: url(../img/teaser-arrow-next.png) no-repeat center center;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    opacity: 0.85;
    cursor: pointer;
    transition: 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
}

.owl-controls .owl-nav .owl-prev:hover, .owl-controls .owl-nav .owl-next:hover {
    opacity: 1;
}

.recent-articles .owl-controls .owl-nav .owl-prev {
    left: -0px;
    background: rgba(0, 0, 0, 0.1) url(../img/teaser-arrow-prev.png) no-repeat center center;
    height: 160px;
    width: 70px;
    top: 44%;
    opacity: 1
}

.recent-articles .owl-controls .owl-nav .owl-next {
    right: -0px;
    background: rgba(0, 0, 0, 0.1) url(../img/teaser-arrow-next.png) no-repeat center center;
    height: 160px;
    width: 70px;
    top: 44%;
    opacity: 1
}

.recent-articles .owl-controls .owl-nav .owl-prev:hover {
    left: -0px;
    background: rgba(0, 0, 0, 0.2) url(../img/teaser-arrow-prev.png) no-repeat center center;
}

.recent-articles .owl-controls .owl-nav .owl-next:hover {
    right: -0px;
    background: rgba(0, 0, 0, 0.2) url(../img/teaser-arrow-next.png) no-repeat center center;
}

.recent-articles.owl-carousel {
    position: inherit;
}

.recent-articles.agenda .owl-controls .owl-nav .owl-prev {
    left: -0px;
    background: url(../img/agenda-arrow-prev.png) no-repeat center center;
    height: 160px;
    width: 70px;
    top: 30%;
    opacity: 1;
    border-right: 2px solid #d4d4d4;
    border-top: 2px solid #d4d4d4;
    border-bottom: 2px solid #d4d4d4;
}

.recent-articles.agenda .owl-controls .owl-nav .owl-next {
    right: -0px;
    background: url(../img/agenda-arrow-next.png) no-repeat center center;
    height: 160px;
    width: 70px;
    top: 30%;
    opacity: 1;
    border-left: 2px solid #d4d4d4;
    border-top: 2px solid #d4d4d4;
    border-bottom: 2px solid #d4d4d4;
}

.recent-articles.agenda .owl-controls .owl-nav .owl-next:hover {
    right: -0px;
    background: rgba(0, 0, 0, 0.05) url(../img/agenda-arrow-next.png) no-repeat center center;
}

.recent-articles.agenda .owl-controls .owl-nav .owl-prev:hover {
    left: -0px;
    background: rgba(0, 0, 0, 0.05) url(../img/agenda-arrow-prev.png) no-repeat center center;
}

.recent-articles.agenda {
    margin-top: 30px;
}

.recent-articles.agenda .owl-dots {
    text-align: center;
    position: absolute;
    top: 35px;
    width: 100%;
    margin-left: -50%;
    left: 50%;
}

.recent-articles.agenda .owl-dots .owl-dot {
    display: inline-block;
    height: 3px;
    width: 40px;
    background: #e5e5e5;
    margin: 0 5px;
}

.recent-articles.agenda .owl-dots .owl-dot.active {
    background-color: #1f6cb6;
}

.recent-articles.highlights {
    margin-top: 110px;
}

.owl-item {
    -webkit-backface-visibility: hidden !important;
    -webkit-transform: translateZ(0) scale(1.0, 1.0) !important;
}

/* footer nav */
.list.footer-nav {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.list.footer-nav .item,
.list.footer-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.list.footer-nav .item .link,
.list.footer-nav li a {
    font-size: 18px;
    font-weight: 700;
    font-family: OpenSansBold;
    color: #838383;
    padding: 0 20px;
}

.list.footer-nav .item .link span {
    font-family: OpenSansLight;
}

.list.footer-nav .item.active .link,
.list.footer-nav .item .link:hover,
.list.footer-nav li a:hover {
    color: #1f6cb6;
    text-decoration: none;
}

/* footer quote */
.quote .title {
    font-family: OpenSansLight;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    line-height: 36px
}

/* footer cols */
.footer-cols {
    padding: 70px 0 40px;
}

.footer-cols .title {
    text-transform: uppercase;
    color: #adadad;
    font-size: 12px;
    font-weight: 700;
    font-family: OpenSansBold;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 30px;
}

.footer-cols .title:after {
    position: absolute;
    bottom: 0;
    content: "";
    height: 3px;
    width: 100%;
    background: #484848;
    display: block;
}

.footer-cols .list, .footer-cols .text {
    margin: 30px 0;
    padding: 0;
}

.footer-cols .text {
    color: #9a9a9a;
    line-height: 30px;
}

.footer-cols .list .item {
    list-style: none;
    padding: 12px 0;
}

.footer-cols .list .item .link, .copyright p {
    color: #9a9a9a;
    display: block;
    transition: color 300ms ease-in;
    -moz-transition: color 300ms ease-in;
    -webkit-transition: color 300ms ease-in;
    -o-transition: color 300ms ease-in;
}

.footer-cols .list .item .link:hover {
    color: #c9c9c9;
    text-decoration: none;
}

.copyright {
    padding-bottom: 40px;
}

.copyright span {
    font-weight: 700;
    font-family: OpenSansBold;
}

.footer-cols .inner, .copyright .inner {
    padding: 0 50px;
}

.footer-cols .list.social i {
    padding: 5px 10px;
    width: 40px;
    border-radius: 2px;
    color: #fff;
    margin-right: 10px;
    text-align: center;
}

.footer-cols .list.social .youtube i {
    background: #e56868;
}

.footer-cols .list.social .twitter i {
    background: #42b9cf;
}

.footer-cols .list.social .facebook i {
    background: #3389e1;
}

/* scrollup*/
#scrollUp {
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #555;
    color: #fff;
    background: url(../img/scroll-up.png) no-repeat center center;
}

/* top banner */
.top-banner {
    min-height: 170px;
    position: relative;
}

.top-banner .section-header {
    margin-top: 100px;
    position: relative;
}

@media (min-width: 768px) {
    .page-agenda .top-banner {
        min-height: 425px !important;
    }

    .page-agenda .top-banner .section-header {
        margin-top: 200px !important;
    }

    .top-banner {
        min-height: 425px;
    }

    .top-banner .section-header {
        margin-top: 200px;
    }
}

.top-banner .back {
    position: absolute;
    top: 5px;
    left: 0;
    background: url(../img/back-arrow.png);
    height: 40px;
    width: 19px;
    display: block;
    text-indent: -9999px;
    opacity: 1;
}

.top-banner .back:hover {
    background: url(../img/back-arrow-hover.png);
}

/* Important links */
.important-links {
    border: 1px solid #dedede;
    padding: 20px;
    margin-top: 50px;
    background: #fff;
}

.important-links .title {
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/*.important-links i {
	color: #666;
	margin-right: 10px;
	font-family: OpenSansLight;
	}*/
.important-links a {
    margin-left: 30px !important;
}

.important-links a:before {
    font-family: 'FontAwesome';
    content: "\f1c1";
    color: #666;
    position: absolute;
    left: 20px;
    font-family: OpenSansLight;
}

/*tooltip */
.tooltip {
    font-weight: 600;
}

/* mediaboek */
.media-items {
    margin: 30px 0;
}

.media-item a {
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    margin: 5px 0;
}

.media-item a:hover {
    color: #1f6cb6;
    text-decoration: none;
}

.media-item .media-image img {
    max-width: 100%;
    height: auto;
}

/* webforms */
.node-webform {
    margin: 0 auto;
    width: 55%;
}

.webform-client-form input, .webform-client-form textarea {
    border-radius: 0;
    box-shadow: 4px 4px 0 #eee;
    /*border-color: #ddd;*/
    color: #3f484a !important;
    font-weight: 600;
    height: auto;
    padding: 13px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    width: 100%;
}

.webform-client-form input.webform-calendar {
    width: auto;
    padding: 10px 10px 11px;
}

.webform-client-form input:focus, .webform-client-form textarea:focus {
    outline: 1px solid #1f6cb6;
    box-shadow: none;
}

.webform-client-form label {
    display: block;
}

.webform-client-form .form-type-radio input, .webform-client-form .form-type-checkbox input {
    display: inline-block;
    width: auto;
    margin: 0 5px 0 0;
}

.webform-client-form .form-type-radio label, .webform-client-form .form-type-checkbox label {
    display: inline-block;
}

.webform-client-form .webform-component-select select, .webform-client-form .webform-component-date select {
    background: #fff;
    border-radius: 0;
    box-shadow: 4px 4px 0 #eee;
    color: #3f484a !important;
    font-weight: 600;
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 13px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.webform-client-form .webform-submit {
    background: #1f6cb6;
    color: #fff !important;
    font-weight: 600;
    width: auto;
    min-width: 0;
    border: 0;
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 13px 40px;
    height: auto;
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    box-shadow: none;
}

.webform-client-form .webform-submit:hover {
    background: #333;
}

/* pace */

/* body > :not(.pace),body:before,body:after {-webkit-transition:opacity .2s ease-in-out;-moz-transition:opacity .2s ease-in-out;-o-transition:opacity .2s ease-in-out;-ms-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}
 body:not(.pace-done) > :not(.pace),
 body:not(.pace-done):before,
 body:not(.pace-done):after {opacity:0} */

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #1f6cb6;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 3px;
}

/* megamenu fix */
.yamm .nav, .yamm .collapse, .yamm .dropup, .yamm .dropdown {
    position: static;
}

.yamm .container {
    position: relative;
}

.yamm .dropdown-menu {
    left: auto;
}

.yamm .yamm-content {
    padding: 0 30px;
    border-radius: 0;
}

.yamm .dropdown.yamm-fw .dropdown-menu {
    left: 0;
    right: 0;
}

.yamm .dropdown.yamm-fw .dropdown-menu:hover {
    display: block;
}

/* search box */
.search-box .form-control {
    border: 0;
    font-size: 32px;
    box-shadow: none;
    height: 100px;
    font-family: OpenSansLight;
    padding: 20px;
}

#search-block-form .form-item {
    margin: 0;
}

/* drupal navbar css */
body.navbar-vertical header {
    top: 40px;
}

body.navbar-vertical nav.navbar {
    top: 90px;
}

/*body.navbar-horizontal header {
    top: 80px;
}

body.navbar-horizontal nav.navbar {
    top: 130px;
}*/

body.navbar-vertical .yamm .dropdown.yamm-fw .dropdown-menu {
    top: 50px;
}

body.navbar-horizontal .yamm .dropdown.yamm-fw .dropdown-menu {
    top: 50px;
}

/* drupal tabs styling */
.page-user .white-bg {
    background: #f5f5f5;
}

.drupal_tabbing ul.tabs.primary {
    justify-content: center;
    display: inline-block;
    width: 100%;
}

.drupal_tabbing ul.primary {
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin: 10px 0 0 0;
}

.drupal_tabbing ul.primary li {
    display: inline-block;
    margin-bottom: -2px;
}

.drupal_tabbing ul.primary li.active a {
    border-bottom: 3px solid #333;
    outline: none;
    color: #333;
}

.drupal_tabbing ul.primary li a {
    border: none;
    background-color: transparent;
    padding: 10px 15px;
    margin: 0;
    display: inline-block;
    font-weight: 700;
    font-family: OpenSansBold;
    color: #b0b2b3;
}

.drupal_tabbing ul.primary li a:hover {
    color: #333;
}

.drupal_messages .alert {
    border: 0;
    border-radius: 0;
    background: #f8fccb;
    color: #3f484a;
    margin-bottom: 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    text-transform: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}

.drupal_messages .alert a {
    color: #3f484a;
}

.drupal_messages .alert .close:hover,
.drupal_messages .alert .close:focus {
    color: #3f484a;
    outline: none;
}

.drupal_messages .alert ul,
.drupal_messages .alert li {
    list-style: none;
}

.form-item .description {
    margin: 0 auto;
    width: 40%;
}

#onsweb-user-edit-profile .form-item .description {
    width: auto;
}

#user-login, #user-register-form, #user-pass {
    text-align: center;
}

#user-login label, #user-register-form label, #user-pass label {
    display: block;
}

#user-login input, #user-register-form input, #user-pass input {
    border-radius: 0;
    box-shadow: 4px 4px 0 #eee;
    color: #3f484a !important;
    font-weight: 600;
    height: auto;
    padding: 13px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
}

#user-login input:focus, #user-register-form input:focus, #user-pass input:focus {
    outline: none;
    border-color: #1f6cb6;
}

#user-login input.form-submit, #user-register-form input.form-submit, #user-pass input.form-submit {
    background: #1f6cb6;
    color: #fff !important;
    font-weight: 600;
    width: auto;
    min-width: 0;
    border: 0;
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 13px 40px;
    height: auto;
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    box-shadow: none;
}

#user-login input.form-submit:hover, #user-register-form input.form-submit:hover, #user-pass input.form-submit:hover {
    background: #333;
}

/* filters drupal output */

.view-filters {
    text-align: center;
}

.view-filters .views-exposed-form .views-exposed-widget {
    display: inline-block;
    float: none;
    vertical-align: top;
    padding: 0;
}

.btn-multiselect, .view-filters input, .view-filters select {
    background: #fff;
    border-radius: 2px;
    box-shadow: 4px 4px 0 #eee;
    color: #3f484a !important;
    font-weight: 600;
    border: 1px solid #ddd;
    padding: 6px 30px 6px 12px;
    font-size: 13px;
}

.view-filters input[type="text"], .view-filters select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.btn-multiselect b {
    display: none;
}

.view-filters select::-ms-expand {
    display: none;
}

.date-month.form-select,
.date-year.form-select,
.form-select {
    min-width: 90px;
}

#edit-distance-search-distance {
    min-width: 70px;
}

.view-filters .form-type-textfield input.form-text {
    /*background-image: url(../img/search-input-icon.png);*/
    /*background-repeat: no-repeat;*/
    /*background-position: right;*/
    background: url(../img/search-input-icon.png) no-repeat right;
    background-size: 23px;
}

.view-filters .form-item-distance-postal-code input.form-text {
    max-width: 174px;
}

.btn-multiselect,
.view-filters select {
    /*background-image: url(../img/dropdown-select-arrow.png);*/
    /*background-repeat: no-repeat;*/
    /*background-position: right;*/
    background: url(../img/dropdown-select-arrow.png) no-repeat right;
    background-size: 19px;
}

.btn-multiselect {
    min-width: 100px;
    text-align: left;
}

.view-filters input:focus, .view-filters select:focus {
    outline: 1px solid #1f6cb6;
    box-shadow: none;
}

.multiselect-item input {
    box-shadow: initial;
    padding: 6px 6px;
}

.form-item-field-disability-tid .btn-group.open {
    box-shadow: initial;
}

.form-item-field-disability-tid .btn-group.open .dropdown-toggle {
    -webkit-box-shadow: initial;
    box-shadow: initial
}

.view-filters .form-submit {
    background: #333;
    color: #fff !important;
    box-shadow: none !important;
    text-transform: none;
    letter-spacing: 0;
    border: 0;
    border-radius: 2px;
    padding: 0 10px;
    height: 27px;
    margin-top: 6px !important;
    font-size: 12px;
    font-family: OpenSansBold;
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
}

.view-filters .form-submit:hover {
    /*color: #fff;*/
    /*border: 1px solid #999;*/
    color: #999;
    border: 0;
    background: #1f6cb6;
}

.views-exposed-form .form-item, .views-exposed-form .form-submit {
    display: inline-block;
}

/* these apply to auto-completing form fields */
html.js input.form-autocomplete {
    /*background-image: url(../img/ajax-loader.gif); !* tweak this according to your gif *!*/
    /*background-position: center center; !* tweak this according to your gif *!*/
    /*background-repeat: no-repeat;*/
    background: url(../img/ajax-loader.gif) center center no-repeat;
}

html.js input.throbbing {
    background-position: center center; /* tweak this according to your gif */
}

/* these apply to all ajax progresses */
.ajax-progress {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.ajax-progress .throbber {
    background: transparent url(../img/ajax-loader.gif) no-repeat 0 0; /* tweak this according to your gif */
    float: left;
    height: 11px; /* tweak this according to your gif */
    width: 16px; /* tweak this according to your gif */
    margin: 2px;
}

/* ajax pager */
.pager.pager-load-more li > a {
    border: none;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 30px;
    text-shadow: none;
    border-radius: 0;
    background: #1f6cb6;
    color: #fff;
}

.pager.pager-load-more li > a:hover, .pager li > a:focus {
    background: #333;
}

/* page faq */
.view-kennisbank .view-filters {
    margin-bottom: 60px;
}

.view-kennisbank .view-filters input.form-text {
    display: inline-block;
    position: relative;
    padding: 10px 40px 10px 15px;
    color: #b0b2b3 !important;
    font-size: 14px;
    font-weight: 700;
    font-family: OpenSansBold;
    width: 420px;
}

.view-kennisbank .view-filters input.form-submit {
    position: relative;
    right: 55px;
    background: url(../img/search-icon.png) no-repeat center center;
    border: 0;
    top: 4px;
    opacity: 1;
}

.view-kennisbank .view-filters input.form-submit:hover {
    opacity: 0.7;
}

.faq { /*background: #fff;border: 1px solid #dedede;*/
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item .cat-title {
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.faq-item .cat-title:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 20px;
    background: #dedede;
    bottom: 0;
    left: 0;
}

.faq-item a {
    text-transform: none;
    padding: 0;
    /*display: block;*/
    margin: 10px 0;
    color: #1f6cb6;
    font-weight: 700;
    font-family: OpenSansBold;
    font-size: 12px;
    display: inline-block;
    line-height: 22px;
}

.faq-item .faq-inner {
    background: #fff;
    padding: 30px;
    border: 1px solid #dedede;
}

.faq-item .faq-inner.backdrop {
    -moz-box-shadow: 15px 15px rgba(235, 235, 235, 1);
    -webkit-box-shadow: 15px 15px rgba(235, 235, 235, 1);
    box-shadow: 15px 15px rgba(235, 235, 235, 1);
    background: #fff;
}

.faq-list-item a {
    font-family: OpenSansLight;
    font-size: 24px;
    margin-bottom: 30px;
    color: #1f6cb6;
    text-decoration: none;
}

.faq-list-item a:hover {
    color: #1f6cb6;
}

#block-onsweb-sports-onsweb-sports-google-map #map_canvas {
    height: 400px !important;
}

.gmap-control {
    margin-top: 40px;
}

.gmap-control a {
    color: #1f6cb6;
}

/* find clubs */
.view-clubs .view-content {
    margin-top: 30px;
    -moz-box-shadow: 20px 20px rgba(235, 235, 235, 1);
    -webkit-box-shadow: 20px 20px rgba(235, 235, 235, 1);
    box-shadow: 20px 20px rgba(235, 235, 235, 1);
    background: rgba(235, 235, 235, 1);
}

.view-clubs .views-row {
    background: #fff;
    margin-bottom: 10px;
    padding: 30px;
    border-left: 3px solid transparent
}

.view-clubs .views-row:hover {
    border-left: 3px solid #1f6cb6;
    background: #f9f9f9
}

.view-clubs .title a {
    font-family: OpenSansLight;
    font-size: 24px;
    /*margin-bottom: 30px;*/
    color: #3f484a;
    margin-bottom: 10px;
    display: inline-block;
}

.view-clubs .title a:hover {
    color: #1f6cb6;
    text-decoration: none;
}

.view-clubs .nav-tabs {
    position: inherit;
    margin-top: 20px;
    border-bottom: 1px solid #ccc;
}

.view-clubs .view-filters {
    text-align: left;
}

.item-list .pager {
    margin: 50px 0;
}

.pager li > a, .pager li > span {
    border-radius: 3px;
    font-weight: 600;
    padding: 3px 12px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    background: #1f6cb6;
    color: #fff;
    border: 0;
}

.item-list .pager li, .item-list ul li {
    padding: 0;
    margin: 0;
}

.item-list .pager li.pager-current {
    padding: 5px 14px;
}

.pager li > a:hover, .pager li > a:focus {
    background: #3f484a;
    color: #fff;
    border: none;
}

/*.domain-atletiekunie-nl .hero section.section,*/
/*.domain-atletiek-nl .hero {*/
/*background: none !important;*/
/*}*/
.hero section.section {
    background: none !important;
}

/*.domain-atletiek-nl .hero{*/
/*background-color: #333 !important;*/
/*}*/
/* filedeopot */
#filedepot {
    padding: 0;
}

#filedepot_centercol {
    font-size: 13px;
    font-weight: 600;
}

.filedepot-wrapper {
    margin-top: 0;
}

.filedepot-wrapper .filedepottoolbar {
    background-color: #3f484a;
    height: auto;
    padding: 5px;
    margin-bottom: 10px;
}

.filedepot-wrapper .action-dropdown .floatleft {
    padding-top: 0 !important;
    margin-left: 5px;
}

.filedepot-wrapper .action-dropdown select {
    height: 26px !important;
}

.filedepot-wrapper .filedepottoolbar_searchbox {
    width: auto;
}

.filedepot-wrapper .filedepottoolbar_searchform {
    width: auto;
    position: inherit;
    top: -4px;
}

.filedepot-wrapper .filedepottoolbar_searchbox form {
    background: none;
}

.filedepot-wrapper .filedepottoolbar_searchbox form input {
    float: left;
    height: 26px;
    padding: 5px;
}

.filedepot-wrapper .form-submit {
    margin-right: 10px;
}

.yui-skin-sam .yui-layout {
    background: #f7f7f7 !important;
    border: 0 !important;
}

div.ctools-modal-content .modal-header {
    padding: 10px;
    background: #3f484a;
}

div.ctools-modal-content .modal-content {
    width: 100% !important;
    padding: 0 20px;
}

.pluginReportTitle div {
    padding-left: 15px !important;
    padding-top: 0 !important;
}

.pluginReportTitle {
    padding-top: 0 !important;
}

.yui-skin-sam .yui-layout .yui-layout-unit div.yui-layout-bd {
    padding-top: 0;
}

#modalBackdrop {
    z-index: 9999 !important;
}

#modalContent {
    z-index: 9999 !important;
}

.blockMsg {
    border: 0 !important
}

.blockMsg h1 {
    height: 30px;
    background: #fff !important;
    width: auto !important;
    padding: 5px 20px !important;
    position: fixed !important;
    top: 44% !important;
    left: 44% !important;
    font-size: 18px;
    font-weight: 400;
    color: #3f484a;
    border: none !important;
}

.yui-skin-sam .yui-navset .yui-nav a, .yui-skin-sam .yui-navset .yui-navset-top .yui-nav a {
    transition: none;
}

.yui-skin-sam .yui-navset .yui-nav .selected a, .yui-skin-sam .yui-navset .yui-nav .selected a:focus, .yui-skin-sam .yui-navset .yui-nav .selected a:hover {
    background: #3f484a !important;
}

.yui-skin-sam .yui-navset .yui-nav, .yui-skin-sam .yui-navset .yui-navset-top .yui-nav {
    border: solid #3f484a !important;
    border-width: 0 0 5px !important;
}

#reportlisting_container {
    margin-top: 15px;
}

/* bootstrap tables */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    border: none;
    padding: 5px;
    font-size: 14px;
}

.table a {
    color: #1f6cb6;
    font-weight: 600;
}

tbody {
    border-top: none;
}

/* onsweb signature */
.onsweb a {
    color: #9a9a9a;
}

/* mailchimip page */
.page-nieuwsbrief .white-bg {
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}

.mailchimp-signup-subscribe-form {
    margin: auto 15%;
}

.mailchimp-signup-subscribe-form input.form-text:focus {
    outline: none;
    border-color: #1f6cb6;
}

.mailchimp-signup-subscribe-form input.form-text {
    border-radius: 0;
    box-shadow: 4px 4px 0 #eee;
    /*border-color: #ddd;*/
    color: #3f484a !important;
    font-weight: 600;
    height: auto;
    padding: 13px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    width: 100%;
}

.mailchimp-signup-subscribe-form label {
    width: 100%;
    vertical-align: top;
    margin-top: 5px;
}

.mailchimp-signup-subscribe-form .form-checkboxes {
    display: inline-block;
    width: 100%;
}

.mailchimp-signup-subscribe-form input.form-submit {
    background: #1f6cb6;
    color: #fff !important;
    font-weight: 600;
    width: auto;
    min-width: 0;
    border: 0;
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 13px 40px;
    height: auto;
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    box-shadow: none;
}

.mailchimp-signup-subscribe-form input.form-submit:hover {
    background: #333;
}

.mailchimp-signup-subscribe-form fieldset {
    margin-left: 20px;
    margin-top: 0;
}

.mailchimp-signup-subscribe-form fieldset legend {
    display: none;
}

.mailchimp-signup-subscribe-form div.fieldset-wrapper div.form-type-checkboxes {
    margin-top: 0;
}

/* profile page */
.page-profile .white-bg {
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}

.page-profile table.table {
    background-color: white;
    border: 1px solid #ddd;
}

.page-profile table.table td:first-child {
    font-weight: 700;
    font-family: OpenSansBold;
}

.page-profile table.table td {
    padding: 15px;
}

/* profile page edit */
#renflex-edit-profile {
    margin: auto 15%;
}

#renflex-edit-profile label {
    display: block;
}

#renflex-edit-profile input.form-text {
    border-radius: 0;
    box-shadow: 4px 4px 0 #eee;
    /*border-color: #ddd;*/
    color: #3f484a !important;
    font-weight: 600;
    height: auto;
    padding: 13px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    width: 100%;
}

#renflex-edit-profile input.form-submit {
    background: #1f6cb6;
    color: #fff !important;
    font-weight: 600;
    width: auto;
    min-width: 0;
    border: 0;
    margin: 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 13px 40px;
    height: auto;
    transition: all 300ms;
    -moz-transition: all 300ms;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    box-shadow: none;
    border-radius: 0;
}

#renflex-edit-profile input.form-submit:hover {
    background: #333;
}

.date-padding {
    padding: 0;
}

/* ------------------------ REGISTER ------------------------ */
.page-register .white-bg {
    background: #f7f7f7;
    border-top: 1px solid #ddd;
}

.container-inline-date .date-padding {
    float: none;
    padding: 0;
}

#onsweb-user-register .container-inline-date .form-item, .container-inline-date .form-item input {
    width: 100%;
}

.form-type-date-popup.form-item .description,
.form-type-password.form-item .description,
.form-type-textfield.form-item .description,
.form-type-select.form-item .description {
    margin: 0;
    width: 100%;
    padding: 3px 10px;
}

.back-btn-profile {
    margin-right: 15px;
}

/* site map */
.page-sitemap .white-bg {
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}

#site-map h2 {
    font-size: 18px;
    font-weight: 700;
    font-family: OpenSansBold;
}

#site-map li.expanded > a {
    font-weight: 700;
    font-family: OpenSansBold;
}

/* subsites */
.blocks.compact.subsites .item .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.blocks.compact.subsites .item .title {
    position: relative;
    top: auto;
    left: auto;
    letter-spacing: 0;
    font-size: 24px;
    text-transform: none;
    /*font-weight: 500;*/
    color: #fff;
    font-family: OpenSansLight;
    margin: 20% 20px 5px 20px
}

.blocks.compact.subsites .item .title a {
    color: #fff;
}

.blocks.compact.subsites .item .title a:hover {
    text-decoration: none;
}

.blocks.subsites .overlay .btn-more {
    margin-top: 0;
}

.blocks.compact.subsites .item .date {
    color: #1f6cb6;
    font-weight: 600;
    font-size: 16px;
    margin: 5% 10% 10% 10%;
    display: inline-block;
}

.subsites-news .owl-controls .owl-nav .owl-next,
.subsites-news .owl-controls .owl-nav .owl-prev {
    background-color: transparent;
    top: 46%;
}

.subsites-news .owl-controls .owl-nav .owl-next {
    background: transparent url(../img/teaser-arrow-next-grey.png) no-repeat center center;
    border-left: 2px solid #dfdfdf;
    border-bottom: 2px solid #dfdfdf;
    border-top: 2px solid #dfdfdf;
}

.subsites-news .owl-controls .owl-nav .owl-next:hover {
    background: #fff url(../img/teaser-arrow-next-grey.png) no-repeat center center;
}

.subsites-news .owl-controls .owl-nav .owl-prev {
    background: transparent url(../img/teaser-arrow-prev-grey.png) no-repeat center center;
    border-right: 2px solid #dfdfdf;
    border-bottom: 2px solid #dfdfdf;
    border-top: 2px solid #dfdfdf;
}

.subsites-news .owl-controls .owl-nav .owl-prev:hover {
    background: #fff url(../img/teaser-arrow-prev-grey.png) no-repeat center center;
}

.blocks .sponsors.subsites,
.blocks .partners.subsites {
    margin: 50px 0;
}

.blocks .sponsors.subsites {
    border-top: 2px solid #e5e5e5;
    padding-top: 50px;
}

.partner-title {
    font-size: 24px;
    font-family: OpenSansLight;
    padding: 40px 0;
}

.partner-title span {
    font-weight: 800;
}

.mobile-title {
    font-size: 10px;
    color: #333;
    padding: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

/* -----------------------------------------------------------------------
	ACTIFY ONE PAGE
 ----------------------------------------------------------------------- */
.actify h2 {
    font-family: SignikaBold, OpenSansBoldItalic, sans-serif !important;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: #023a47;
}

.actify h2.title.bordered-orange:after {
    position: absolute;
    bottom: 0;
    content: "";
    height: 3px;
    width: 200px;
    background: #ff532a;
    display: block;
    left: 50%;
    margin-left: -100px;
}

.actify h2.title.bordered-white:after {
    position: absolute;
    bottom: 0;
    content: "";
    height: 3px;
    width: 200px;
    background: #fff;
    display: block;
    left: 50%;
    margin-left: -100px;
}

.actify .top-banner h1.title,
.actify .top-banner .intro-text {
    display: none;
}

.actify .top-banner:after {
    content: url('../img/actify-logo.png');
    position: absolute;
    text-align: center;
    width: 100%;
    top: 140px;
}

.actify .navbar-custom {
    background-color: #349ead;
}

.actify .btn-login {
    color: #ff532a !important;
}

.actify .navbar-static-top.affix {
    background-color: #349ead;
}

.actify .actify-body .intro-text {
    font-size: 24px;
    line-height: 40px;
    color: #737373;
}

.actify .actify-body .intro-text.small {
    font-size: 18px;
    line-height: 30px;
}

.actify .short-list {
    margin-top: 50px;
    color: #fff;
    font-size: 18px;
    line-height: 32px;
}

.actify .short-list li {
    list-style: url(../img/short-list-bullet.png);
    /*list-style-position: 3px;*/
    padding-left: 20px;
    line-height: 40px;
}

.actify .down-arrow {
    position: absolute;
    bottom: -110px;
}

.actify .down-arrow-bestellen {
    position: absolute;
    top: -110px;
}

.actify .webform-client-form input, .actify .webform-client-form textarea, .actify .webform-client-form select {
    box-shadow: none;
    border-width: 2px;
    border-color: #ddd;
    font-size: 14px;
}

.actify .webform-client-form select {
    background-image: url(../img/dropdown-select-arrow.png);
    background-position: right;
    background-repeat: no-repeat;
}

.actify .webform-client-form select#edit-submitted-trainingslocatie,
.actify .webform-client-form select#edit-submitted-voorkeursdag-voor-training {
    width: 100%;
    padding: 11px 12px;
}

.actify .form-type-radio {
    display: inline-block;
    margin-right: 20px;
}

.actify .webform-client-form .form-actions {
    text-align: center;
}

.actify .form-item,
.actify .form-actions {
    margin-top: 8px;
    margin-bottom: 8px;
}

.actify .webform-client-form .webform-submit,
.btn-actify {
    border-radius: 5px;
    font-size: 24px;
    font-family: SignikaBold, OpenSansBoldItalic, sans-serif !important;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
    background: #ff532a;
    opacity: 1;
    color: #fff !important;
}

.actify .webform-client-form .webform-submit:hover,
.btn-actify:hover {
    opacity: 0.8;
    background: #023a47;
}

.actify .webform-component-markup span {
    color: #3f484a !important;
    font-size: 16px !important;
    background-color: #f7f7f7 !important;
}

.actify .webform-component-markup a {
    font-size: 16px !important;
    background-color: #f7f7f7 !important;
    font-weight: 600 !important;
}

.zilveren-kruis {
    background: #023a47;
    position: relative;
    padding-top: 100px;
}

.zilveren-kruis .actify-footer-logo {
    position: absolute;
    width: 100px;
    top: -50px;
}

/* responsive styles */
@media (max-width: 1327px) {
    .recent-articles .owl-controls .owl-nav {
        display: none;
    }
}

@media (max-width: 1200px) {
    .blocks.compact.themas .item .title {
        top: 78%;
    }

    .blocks.compact.themas .item.inverse-orange {
        min-height: 238px;
    }

    .list .item.news .img {
        height: 250px;
    }
}

/* collapsing navbar at 991px */
@media (max-width: 991px) {
    .navbar-header {
        float: none;
    }

    .navbar-left, .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }

    .navbar-nav > li {
        float: none;
    }

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .collapse.in {
        display: block !important;
    }

    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: #fff;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;

    }

    .blocks .overlay .btn-more {
        padding: 10px 10px;
        white-space: normal;
        margin-left: 20px;
        margin-right: 20px;
    }

    .teaser-slider-item-content {
        top: 21%;
    }

    .blocks.compact .item {
        overflow: hidden;
    }

    .navbar-brand {
        visibility: visible;
        padding: 12px 15px;
    }

    .list .item.timeline .info:before {
        left: 0;
    }

    .list .item.timeline .info:after {
        left: -8px;
    }

    .list .item.timeline .img:before {
        position: absolute;
        content: "";
        background: #ebebeb;
        width: 3px;
        height: 100%;
        left: 0;
        top: 0;
    }

    .list .item.timeline .info {
        text-align: left;
    }

    .blocks.compact.facts .item .count {
        font-size: 32px;
    }

    .blocks.compact.facts .item {
        padding: 60px 0;
    }

    .blocks.compact.themas .item.inverse-orange {
        min-height: 246px;
    }

    .sidebar {
        margin-right: 0;
    }

    .list .item.news .img {
        height: 200px;
    }

    .list .item.news .img .box-top-right {
        padding: 17px;
    }

    .node-webform {
        margin: 0 auto;
        width: 75%;
    }

    .onsweb {
        padding-top: 30px !important;
        text-align: left;
    }

    #user-login input, #user-register-form input, #user-pass input {
        width: 100%;
    }

    .domain-bar .container {
        margin: 0;
    }

    .domain-bar {
        position: inherit;
        height: auto;
    }

    .domain-bar .list {
        display: block;
    }

    .domain-bar .list .item .link,
    .domain-bar .list li a {
        width: 100%;
        padding: 5px;
        margin-bottom: 4px;
        background: rgba(0, 0, 0, 0.2);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        border-radius: 2px;
    }

    .domain-bar .list .item.active .link,
    .domain-bar .list .item .link:hover,
    .domain-bar .list li.active a,
    .domain-bar .list li a:hover {
        background: #333333;
    }

    .domain-bar .list .item.active:before,
    .domain-bar .list li.active:before {
        display: none;
    }

    .single .domain-bar .list .item .link,
    .single .domain-bar .list li a {
        color: #fff;
    }

    .navbar-static-top {
        top: 0;
    }

    .navbar-default .navbar-nav > li.dropdown {
        position: relative; /* For absolute positioned arrow hit area */
    }

    .navbar-default .navbar-nav > li.dropdown > a:after {
        content: "\f078";
        font-family: "FontAwesome";
        float: right;
    }

    .navbar-default .navbar-nav > li.dropdown > .arrow-hit-area {
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 40px;
        text-align: center;
        z-index: 1;
    }

    .navbar-default .navbar-nav > li.dropdown > a.-after {
    }

    .navbar-default .navbar-nav > li.dropdown.open > a:after {
        content: "\f077";
        font-family: "FontAwesome";
        float: right;
    }

    .responsive-img {
        width: 100%;
    }

    .partners img.responsive-img,
    .sponsors img.responsive-img {
        width: auto;
    }
}

@media (min-width: 991px) {
    .figure-header {
        background: url(../img/figure-header.png) no-repeat left top;
        height: 169px;
        width: 521px;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
    }

    .single .figure-header {
        background: url(../img/figure-header-single.png) no-repeat left top;
        height: 169px;
        width: 521px;
        top: 0;
    }

    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

@media (max-width: 767px) {
    .teaser-slider-item-content-title h1 {
        font-size: 60px;
        line-height: 65px;
    }

    .section-header .intro-text {
        margin: 30px 0%;
    }

    .navbar-collapse.collapse {
        max-height: 340px;
    }

    .yamm .yamm-content {
        background: #fff;
    }

    .list .item.match .more {
        padding: 0 25px 25px 25px;
        margin: 0;
        text-align: left;
    }

    .list .item.match .date {
        text-align: left;
    }

    .section-content.blocks.compact {
        margin: -13px;
    }

    .top-banner .back {
        left: 10px;
    }

    .node-webform {
        margin: 0 auto;
        width: 100%;
    }

    .table-responsive {
        border: 0;
    }

    .quick-banners-below-row {
        margin: 0 25px;
    }

    .blocks.compact.subsites .item .date {
        display: block;
        margin-bottom: 3%;
        margin-top: 1%;
    }

    .blocks.compact.subsites .item .title {
        margin: 33% 20px 5px 20px;
    }
}

@media (max-width: 479px) {
    .teaser-slider-item-content-title h1 {
        font-size: 38px;
        line-height: 50px;
    }

    .owl-controls .owl-nav .owl-prev {
        left: 0;
    }

    .owl-controls .owl-nav .owl-next {
        right: 0;
    }

    .teaser-slider-item-content-sub-title {
        margin: 0 5%;
        line-height: 32px;
        font-size: 24px;
    }

    .blocks .item .box-bottom-left {
        padding: 20px;
        width: 85%;
        height: 85%;
    }

    .blocks .item .box-bottom-left .tags {
        bottom: 10px;
        left: 10px;
    }

    .blocks .item .box-bottom-left .category a {
        margin-bottom: 10px;
    }

    .blocks .item .box-bottom-left .title a {
        /*font-size: 18px;*/
    }

    .domain-bar .list .item.active:before {
        top: -14px;
    }

    .list .item.news .more {
        float: none !important;
        margin-top: 10px;
    }

    .list .item.news .img .box-top-right {
        left: 0;
    }

    .tags {
        margin-bottom: 10px;
    }

    .alert-bottom.alert-cookie {
        width: 100%;
    }

    .blocks.compact .item .title {
        font-size: 11px;
        top: 15px;
        left: 15px;
        /*display: none;*/
    }

    .scroll-down {
        bottom: 10px;
    }

    .section-header .title {
        word-wrap: break-word;
    }

    .blocks.compact .item.facebook .overlay {
        position: inherit;
        opacity: 1;
        background: #fff;
        color: #3f484a;
    }

    .facebook-single .inner {
        padding: 10px;
    }

    .yamm .dropdown.yamm-fw .dropdown-menu ul {
        padding: 0;
        margin: 0 0;
        display: inline-block;
    }

    .hero .section {
        padding: 30px 0;
    }

    .view-filters input, .view-filters select {
        width: 100%;
        margin-bottom: 10px;
    }

    .view-filters .views-exposed-form .views-exposed-widget {
        display: block;
    }

    .views-exposed-form .form-item, .views-exposed-form .form-submit {
        display: block;
        width: 100%;
    }

    #clubs-list .pull-left {
        float: none !important;
        display: block;
    }

    #clubs-list .more {
        display: block;
        float: none !important;
    }

    #clubs-list .more a {
        display: inline-block;
        margin-top: 10px;
    }

    .blocks.compact .item.facebook .overlay .button-right {
        position: inherit;
    }

    .blocks.compact .item.facebook .overlay .button-right .btn-more {
        background: #1f6cb6;
        color: #ffffff;
        margin: 20px 0 0 0;
    }

    .blocks.compact .item.facebook .overlay .info .email-address a {
        color: #1f6cb6;
    }

    .blocks.compact .item.facebook .overlay .info .email,
    .blocks.compact .item.facebook .overlay .info .phone {
        width: 100%;

    }

    .views-exposed-form .container-inline-date .date-padding {
        width: 100%;
    }

    .navbar-default .navbar-nav > li > a {
        padding-left: 25px;
        padding-right: 25px;
    }

    .mas-menu-item {
        border-bottom: 1px solid #ddd;
    }

    .yamm .dropdown.yamm-fw .dropdown-menu ul li.title > a {
        font-size: 11px;
    }

    .navbar-static-top.affix,
    .navbar-custom {
        /* background: rgba(227, 83, 0, 0.95); */
        background: #1f6cb6;
    }
}

@media screen and (max-height: 875px) {
    .quick-banners {
        display: none;
    }
}

@media screen and (min-height: 875px) {
    .quick-banners-below {
        display: none;
    }
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
    .nav > li > a {
        padding: 10px 10px;
    }
}

.krumo-root {
    text-align: left;
}

.multiselect-item.active a,
.multiselect-item.active a:hover,
.multiselect-item.active a:focus {
    background: #F1EFEF;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.image-section-header, /* Horizontal orientation = default */
.image-section-header.image-orientation-default,
.image-section-header.image-orientation-horizontal {
    height: 400px;
    margin: 0;
}

.image-section-header.image-orientation-vertical {
    height: auto;
    max-width: 100%;
}

.backdrop-img {
    margin-bottom: 50px;
}

.backdrop-img.backdrop-image-vertical {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 350px;
}

/****************
*	LIVE BLOG	*
*****************/

.live-blog {
    background: #F5F5F5;
    border-top: 1px solid #C4C4C4;
}

.live-blog .container {
    border-left: 1px solid #C4C4C4;
    position: relative;
}

.live-blog-item {
    margin: 100px;
    line-height: 24px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .live-blog-item {
        margin: 20px 10px;
    }
}

.live-blog-item:before {
    content: "";
    width: 5px;
    height: 32px;
    background: #E95314;
    position: absolute;
    left: -3px;
}

.live-blog-item h2 {
    color: #000;
    font-size: 26px;
    font-family: OpenSansBold;
    margin-bottom: 35px;
    margin-top: 20px;
}

.live-blog-item h3 {
    font-size: 18px;
    color: #000;
    font-family: OpenSansBold;
    margin-bottom: 25px;
    margin-top: 10px;
}

.live-blog-timeago {
    font-size: 14px;
    color: #000;
    font-family: OpenSansBold;
    text-transform: uppercase;
}

.live-blog-item article {
    margin-bottom: 35px;
}

.live-blog-item * {
    max-width: 100%;
}

.live-blog-news-image {
    margin: 30px 0;
}

.live-blog-news-item {
    padding: 40px;
    background: #fff;
    border: 1px solid #C4C4C4;
}

.live-blog-news-item .btn-orange-small {
    margin-top: 20px;
}

/* END LIVE BLOG */

#edit-field-forum-category > .form-type-checkboxes > label {
    display: block;
    float: none;
}

#edit-field-forum-category .form-type-checkbox {
    display: inline-block;
    width: 20%;
    min-width: 125px;
    margin: 0;
}

#edit-field-forum-category .form-type-checkbox label.option {
    float: none;
}

.navbar-default .navbar-nav > li > a:focus {
    background: #1f6cb6;
    color: white;
}

.navbar-default .navbar-nav.navbar-left-side > li > a:hover {
    background: #fff;
    color: #1f6cb6;
}

/* header info block */
.header-info-block-wrapper{
    min-height: 286px;
    position: relative;

    background-color: #2d2d2d;
}
    @media(max-width: 991px){
        .header-info-block-wrapper{
            padding-bottom: 60px;
        }
    }
    .header-info-block{
        width: 100%;
        min-height: 248px;
        padding-top: 35px;
        padding-bottom: 35px;

        background-color: #1f6cb6;
    }
        @media(max-width: 991px){
            .header-info-block{
                position: relative;
                top: 60px;
                background-color: #1f6cb6;
            }
        }
        @media(min-width: 992px){
            .header-info-block{
                position: absolute;
                top: 106px; left: 0;
                background-image: url("/sites/all/themes/atletiekunie/img/atletiekunie_header_bg.png");
                background-repeat: no-repeat;
                background-position: 50% bottom;
            }
        }
/* header info search */
.header-info-search{}
    @media(max-width: 991px){
        .header-info-search{
            margin-bottom: 40px;
        }
    }
    @media(min-width: 992px){
        .header-info-search-inner{
            padding-left: 45px;
        }
    }

    .header-info-search h2{
        margin-top: 0;
        margin-bottom: 30px;

        font-size: 32px;
        font-weight: 700;
        font-family: OpenSansBold;
        line-height: 36px;
        color: #fff;
    }
        .header-info-search h2 .first-word{
            display: block;
            font-family: OpenSansRegular;
            font-weight: normal;
        }
    .header-info-search form > div {
        display: flex;
    }
    .header-info-search img{
        display: none;
    }

    /* label & search field */
    .header-info-search .form-control{
        box-shadow: none;
        height: 50px;

        color: #222222;
        font-size: 16px;
        font-weight: normal;

        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }
        @media(max-width: 991px){
            .header-info-search .form-item{
                flex-grow: 1;
            }
            .header-info-search .form-control{
                min-width: auto;
            }
        }
        @media(min-width: 992px){
            .header-info-search .form-control{
                min-width: 240px;
            }
        }

    /* submit wrapper & button */
    .header-info-search .form-actions{
        display: block !important;
        margin: 0;
    }
        .header-info-search .form-actions .form-submit{
            border: 0;
            outline: 0;
            height: 50px;
            width: 90px;
            border-radius: 2px;

            font-size: 18px;
            letter-spacing: 1px;
            color: #fff !important;
            background-color: #E45807;
        }
        .header-info-search .form-actions .form-submit .fa {
            margin-right: 8px;

            font-size: 14px;
            color: #fff;
        }

/* header info list */
.header-info-list{
    display: flex;
}
    @media(max-width: 767px){
        .header-info-list{
            flex-direction: column;
        }
        .header-info-list > div:first-child{
            margin-bottom: 15px;
        }
    }
    @media(min-width: 768px){
        .header-info-list{
            justify-content: space-between;
        }
    }
    .header-info-list h2{
        margin: 0;

        font-size: 18px;
        line-height: 37px;
        color: #fff;
    }
    .header-info-list .menu{
        padding: 0;
        margin: 0;
        list-style: none;

        font-weight: 700;
        font-family: OpenSansBold;
    }
        .header-info-list .menu li{
            padding-left: 20px !important;
            position: relative;
        }
            .header-info-list .menu li::before{
                content: "\f054";
                display: block;

                position: absolute;
                top: 50%; left: 0;
                z-index: 2;

                font-weight: 700;
                font-family: OpenSansBold;
                font-size: 14px;
                font-family: FontAwesome;
                line-height: 1;
                color: #E45807;

                transform: translateY(-50%);
            }
        .header-info-list .menu a{
            text-decoration: none;
            color: #fff;
            font-size: 18px;
            line-height: 44px;
            font-weight: 700;
            font-family: OpenSansBold;
        }


/* news-agenda */
.news-agenda-wrapper{}
    @media(max-width: 991px){
        .news-agenda-wrapper{
            padding-top: 60px;
        }
        .news-agenda-wrapper .no-gutter > [class*='col-'] {
            padding-right: 15px;
            padding-left: 15px;
        }
    }
    @media(min-width: 992px){
        .news-agenda-wrapper{
            padding-top: 110px;
        }
    }
    .news-agenda-wrapper .aside-news,
    .news-agenda-wrapper .aside-agenda{
        box-shadow: 6px 6px 0 0 #EBEBEB;
        border: 1px solid #CBD5DF;
        background-color: #fff;
    }
    @media(max-width: 991px){
        .news-agenda-wrapper .aside-news{
            margin-bottom: 25px;
        }
    }
    @media(min-width: 992px){
        .news-agenda-wrapper .aside-news{
            margin-right: 15px;
        }
        .news-agenda-wrapper .aside-agenda{
            margin-left: 15px;
        }
    }

/* homepage highlighted news item */
.view-display-id-home_page_highlighted_news_block{
}
    .view-display-id-home_page_highlighted_news_block .news{
        display: flex;
        height: 262px;
        text-decoration: none;
    }
        @media(max-width: 767px){
            .view-display-id-home_page_highlighted_news_block .news{
                flex-direction: column;
            }
        }
    .view-display-id-home_page_highlighted_news_block .news img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .view-display-id-home_page_highlighted_news_block .news .left .image{
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
    }
    .homepage-news-list .views-field.views-field-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    }
    @media(max-width: 767px){
        .view-display-id-home_page_highlighted_news_block .news .left{
            height: 100%;
        }
        .homepage-news-list {
            margin-top: 0px;
        }
    }
    @media(min-width: 768px){
        .view-display-id-home_page_highlighted_news_block .news .left{
            width: 100%;
            max-width: 65.67%;
        }
    }
    .view-display-id-home_page_highlighted_news_block .news .right{
        padding: 25px 18px;

        background-color: #CBD5DF;
    }
        @media(min-width: 768px){
            .view-display-id-home_page_highlighted_news_block .news .right{
                max-width: 34.3%;
            }
        }
    .view-display-id-home_page_highlighted_news_block .news .news-label{
        color: #1f6cb6;
        font-size: 12px;
        font-family: OpenSansBold;
        letter-spacing: 1.3px;
        line-height: 17px;
        text-transform: uppercase;
    }
    .view-display-id-home_page_highlighted_news_block .news .title{
        color: #3F484A;
        font-size: 21px;
        line-height: 30px;
        word-wrap: break-word;
        hyphens: auto;
    }

    @media(max-width: 767px){
      .view-display-id-home_page_highlighted_news_block .news .title{
        line-height: 28px;
        display: -webkit-box;
        text-overflow: ellipsis;
        height: 60px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
    }

.homepage-news-list{
    padding: 25px 20px;
}
    .homepage-news-list > div {
        padding-left: 20px;
        position: relative;
    }
        .homepage-news-list > div:not(:last-child){
            margin-bottom: 4px;
        }
        .homepage-news-list > div::before{
            content: "\f054";
            display: block;

            position: absolute;
            top: 50%; left: 0;
            z-index: 2;

            font-weight: 700;
            font-family: OpenSansBold;
            font-size: 14px;
            color: #1f6cb6;
            font-family: FontAwesome;
            line-height: 1;

            transform: translateY(-50%);
        }
    .homepage-news-list a{
        color: #3F484A;
        font-size: 14px;
        line-height: 19px;
        text-decoration: none;
    }

/* agenda item */
.homepage-agenda-items-wrapper > div {

}
/* link */
.homepage-agenda-items-wrapper .agenda{
    display: flex;
    width: 100%;

    color: #3F484A;
    text-decoration: none;
    background: white !important;
}
    @media(min-width: 767px){
        .homepage-agenda-items-wrapper .agenda{
            height: 140px;
        }
    }
    .homepage-agenda-items-wrapper > div:not(:last-child) .agenda .right{
        border-bottom: 1px solid #CBD5DF;
    }
    .homepage-agenda-items-wrapper .agenda .left{
        flex-shrink: 0;
        flex-basis: 25%;
        max-width: 25%;
    }
    .homepage-agenda-items-wrapper .agenda .left .image{
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
    }
        @media(max-width: 767px){
            .homepage-agenda-items-wrapper .agenda .left{
                display: none;
            }
        }
    .homepage-agenda-items-wrapper .agenda .right{
        padding: 25px;
        flex-grow: 1;
        width: 100%;
    }
        @media(min-width: 768px){
            .homepage-agenda-items-wrapper .agenda .right{
                flex-basis: 75%;
                max-width: 75%;
            }
        }
    .homepage-agenda-items-wrapper .icon-pin {
        position: relative;
    }
    .homepage-agenda-items-wrapper .icon-pin:after {
        position: absolute;
        font-family: FontAwesome;
        content: '\f08d';
        font-weight: 700;
        right: 5px;
        top: 5px;
        width: 20px;
        height: 20px;
        font-size: 16px;
    }

    /* inside el's */
    .homepage-agenda-items-wrapper .agenda img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .homepage-agenda-items-wrapper .agenda-label{
        text-transform: uppercase;
        color: #1f6cb6;
        font-size: 12px;
        font-family: OpenSansBold;
        letter-spacing: 1.3px;
        line-height: 17px;
    }
    .homepage-agenda-items-wrapper .title{
        margin-top: 0;
        margin-bottom: 10px;
        height: 27px;
        overflow: hidden;

        font-size: 20px;
        line-height: 27px;
        font-weight: normal;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .homepage-agenda-items-wrapper .date,
    .homepage-agenda-items-wrapper .location{
        position: relative;
        padding-left: 20px;

        font-size: 12px;
        line-height: 17px;
    }
    .homepage-agenda-items-wrapper .date{
        margin-bottom: 5px;
    }
    .homepage-agenda-items-wrapper .date::before,
    .homepage-agenda-items-wrapper .location::before{
        display: block;

        position: absolute;
        top: 50%;
        z-index: 2;

        font-size: 12px;
        color: #3F484A;
        font-family: FontAwesome;
        line-height: 1;

        transform: translateY(-50%);
    }
    .homepage-agenda-items-wrapper .date::before{
        content: "\f073";
        left: 0;
    }
    .homepage-agenda-items-wrapper .location::before{
        content: "\f041";
        left: 2px;
    }

/* ======== Download page ========= */

/* leftside nav */
#block-menu-menu-handige-downloads{
    border: 1px solid #E2DFDF;
    padding-top: 35px;
    padding-bottom: 40px;

    box-shadow: 17px 17px 0 0 #eee;
}
    @media(max-width: 990px){
        #block-menu-menu-handige-downloads{
            margin-bottom: 50px;
        }
    }
    #block-menu-menu-handige-downloads h2{
        margin-top: 0;
        margin-bottom: 20px;
        padding-left: 30px;
        padding-bottom: 27px;
        position: relative;

        color: #3F484A;
        font-size: 12px;
        font-family: OpenSansBold;
        letter-spacing: 1px;
        line-height: 14px;
        text-transform: uppercase;
    }
        #block-menu-menu-handige-downloads h2::after{
            content: '';

            position: absolute;
            bottom: 0; left: 30px;
            z-index: 2;

            height: 1px;
            width: 20px;
            background-color: #DEDEDE;
        }
    #block-menu-menu-handige-downloads .menu{
        padding: 0;
        margin: 0;
    }
    #block-menu-menu-handige-downloads .content > .menu > li > a{
        color: #fff;
        background-color: #3F484A;
        padding-left: 30px;
    }
    #block-menu-menu-handige-downloads .menu .menu li{
        padding-left: 30px !important;
    }
    #block-menu-menu-handige-downloads .menu .menu a{
        padding-left: 8px;
        border-left: 2px solid #3F484A;
        color: #818687;
    }
    #block-menu-menu-handige-downloads a{
        display: block;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-right: 10px;

        line-height: 14px;
        font-size: 12px;
        font-weight: 700;
        font-family: OpenSansBold;
        text-decoration: none;
    }

/* downloads table wrapper */
.view-downloads{}

    /* header/counter */
    .view-downloads .view-header{
        color: #3F484A;
        font-size: 14px;
        font-weight: 600;
        line-height: 44px;
    }

    .view-downloads .views-row:not(:last-child){
        margin-bottom: 6px;
    }

    /* each item */
    .view-downloads .download-item{
        display: flex;
        align-items: center;

        min-height: 44px;
        border: 1px solid #E2DFDF;

        background-color: #FFFFFF;
    }
        @media(max-width: 575px){
            .view-downloads .download-item{
                flex-direction: column;
            }
        }

        .view-downloads .download-item .title{
            flex-grow: 1;

            color: #3F484A;
            font-size: 14px;
            font-weight: 600;
            line-height: 44px;
        }
            @media(max-width: 575px){
                .view-downloads .download-item .title{
                    width: 100%;
                    padding-left: 15px;
                    padding-right: 15px;
                    border-bottom: 1px solid #E2DFDF;

                    text-align: center;
                }
            }
            @media(min-width: 576px){
                .view-downloads .download-item .title{
                    padding-left: 25px;
                    border-right: 1px solid #E2DFDF;
                }
            }

        /*  */
        .view-downloads .download-item .download-btn{
            display: block;
        }
            @media(max-width: 575px){
                .view-downloads .download-item .download-btn{
                    width: 100%;
                }
            }
            @media(min-width: 576px){
                .view-downloads .download-item .download-btn{
                    flex: 0 0 150px;
                    max-width: 150px;
                }
            }
            .view-downloads .download-item .download-btn a{
                display: flex;
                justify-content: center;
                align-items: center;

                width: 100%;
                height: 100%;

                color: #1f6cb6;
                font-size: 14px;
                font-weight: 600;
                letter-spacing: 0.88px;
                text-decoration: none;
                text-align: center;
                line-height: 44px;
            }
            .view-downloads .download-item .download-btn i {
                font-size: 20px;
                margin-right: 5px;
            }

/* Downloads filter */
.view-downloads .view-filters{
    margin-top: 25px;
    margin-bottom: 25px;
}
.view-downloads .views-exposed-widgets{
    display: flex;
}
    @media(max-width: 575px){
        .view-downloads .views-exposed-widgets{
            flex-wrap: wrap;
        }
    }
.view-downloads .views-exposed-widget .form-item,
.view-downloads .views-exposed-widget .form-item * {
    width: 100%;
}
.view-downloads .views-exposed-widget .form-select,
.view-downloads .views-exposed-widget .form-text{
    box-shadow: none;
    height: 50px;
    font-size: 16px;
    color: #222 !important;
    border-radius: 0;
}

@media(min-width: 576px){
    .view-downloads .views-exposed-widget .form-text{
        border-right: 0;
    }
}

.view-downloads .views-exposed-widgets .views-widget-filter-title{
    flex-grow: 1;
}
    @media(max-width: 575px){
        .view-downloads .views-exposed-widgets .views-widget-filter-title{
            width: 100%;
        }
    }
@media(min-width: 576px){
    .view-downloads .views-exposed-widgets .views-widget-filter-field_download_category_tid{
        flex: 0 0 230px;
        max-width: 230px;
    }
}
@media(max-width: 575px){
    .view-downloads .views-exposed-widgets .views-widget-filter-field_download_category_tid{
        max-width: calc(100% - 90px);
    }
}
.view-downloads .views-exposed-widgets .views-submit-button{
    flex: 0 0 90px;
    max-width: 90px;
}
    .view-downloads .views-exposed-widgets .form-submit{
        display: block;
        width: 100%;
        height: 50px;
        margin: 0 !important;
        border-radius: 0;

        font-size: 18px;
        font-family: OpenSansBold;
        letter-spacing: 1px;
        background-color: #E45807;
    }

    .view-downloads .views-exposed-widgets .form-submit .fa {
        display: inline !important;
    }
/* Downdload page End */

/* mainpage block sponsor: show background only from 768px+ */
@media(min-width: 768px){
    #block-views-sponsors-block{
        background-image: url(../img/triangles--left.png), url(../img/triangles--right.png);
        background-repeat: no-repeat, no-repeat;
        background-position: left bottom, right bottom;
    }
}

div#block-onsweb-news-blocks-onsweb-ads-block {
    margin-top: 20px;
    margin-bottom: 20px;
}

.owl-carousel.owl-loaded .col-md-2.col-sm-4.col-xs-6 a img {
    height: 65px;
    object-fit: scale-down;
}

@media (max-width: 768px){
.row.partners.text-center .col-xs-6 {
    min-height: 115px;
    }

.row.partners.text-center .col-xs-6 img{
    margin-right: auto;
    margin-left: auto;
    }
}

.respons-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.parent-video {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}

@media (max-width: 768px) {
    .view-agenda-pagina .tags {
        display: none;
    }
}

    #themas .section-content.blocks.compact.themas {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media (min-width: 360px) {
    #themas .section-content.blocks.compact .col-md-3 {
        width: calc(100% / 2);
    }
}
@media (max-width: 580px) {
    .blocks.compact.themas .item .title {
        top: auto;
        bottom: 0;
        word-break: break-word;
        line-height: 1.5;
        padding-bottom: 5px;
    }
}
@media (min-width: 800px) {
    #themas .section-content.blocks.compact .col-md-3 {
        width: calc(100% / 3);

    }
}
@media (min-width: 992px) {
    #themas .section-content.blocks.compact .col-md-3 {
    width: calc(100% / 4);
  }
}

@media (max-width: 768px) {
    .section.white-bg {
        padding: 35px 0 70px;
    }
}

.page-taxonomy.page-taxonomy-term.page-taxonomy-term section#top-banner {
    background: white;
}

.page-taxonomy.page-taxonomy-term.page-taxonomy-term .section-header .title.inverse {
    color: #3f484a !important;
}

@media (max-width: 768px) {
    #block-block-10,
    #block-block-11 {
        display: none;
    }
}

/*added fix for new-item not showing list-items*/
.field.field-name-body.field-type-text-with-summary.field-label-hidden li {
    color: rgb(63, 72, 74);
}

/*banner slider */
.banner-items {
  margin-top: 50px;
  position: relative;
}
.banner-items .banner-item img {
  vertical-align: middle;
  border-style: none;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.banner-item:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
}
.banner-items.desktop {
  display: none;
}
.banner-items.mobile {
  display: block;
}
@media (min-width: 700px) {
  .banner-items.desktop {
    display: block;
  }
  .banner-items.mobile {
    display: none;
  }
}

.view-faq h3 {
  margin-bottom: 0;
  font-size: 14px;
}

.view-faq h3.views-accordion-header.ui-state-default,
.view-faq h3.views-accordion-header.ui-widget-content .ui-state-default,
.view-faq h3.views-accordion-header.ui-widget-header .ui-state-default {
 background-image: none;
 background-color: #1F6CB6;
}


.view-faq h3.views-accordion-header.ui-state-default a,
.view-faq h3.views-accordion-header.ui-state-default a:link,
.view-faq h3.views-accordion-header.ui-state-default a:visited {
  color: #ffffff;
}

.view-content.ui-accordion.ui-widget.ui-helper-reset p {
    margin-bottom: 20px;
    font-size: 14px;
    color: rgb(63 72 74);
    line-height: 24px;
}

.view-content.ui-accordion.ui-widget.ui-helper-reset strong {
    font-size: 18px;
    font-family: Inter-Loom,Helvetica,sans-serif;
    color: rgb(63 72 74);
}

.view-faq .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  left: unset;
  right: .5em;
  background: none;
}

.view-faq .ui-accordion .ui-accordion-header .ui-accordion-header-icon:before {
  color: #ffffff;
  display: block;
  font:normal normal normal 14px/1 FontAwesome;
  font-size:inherit;
  text-rendering:auto;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  transform:translate(0, 0);
  text-indent: 0;
  width: 32px;
  height: 32px;
  position:relative;
}


.view-faq .ui-accordion .ui-icon-triangle-1-e:before {
  background: none;
  content: "\f078";
  font-family: "FontAwesome";
}

.view-faq .ui-accordion .ui-icon-triangle-1-s:before {
  background: none;
  content: "\f077";
  font-family: "FontAwesome";
}


.view-faq .ui-accordion-content.ui-helper-reset.ui-widget-content.ui-corner-bottom.ui-accordion-content-active {
  background: #F7F7F7;
  border: 0;
}

div#block-onsweb-news-blocks-onsweb-medewerkers-block .col-md-6.col-sm-6.col-sm-6 {
    display: inline-table;
}
