.g-cols.offset_small:after {
    content: "";
    display: table;
    clear: both;
}

.oba-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width:auto;
    max-width: 500px;
    margin: 20px auto;
}

.frmFilter input[name=spelers] {
    width: 100px;
}
/**
 * DIT MOET NOG GE-PREFIXED WORDEN OM CROSS BROWSER TE WERKEN
 */
.formWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-form {
    display: flex;
    width: 100%;
    border: 20px solid rgba(0,0,0, .2);
    border-radius: 5px;
}
.flex-form > * {
    flex: 1;
    height: auto !important;
    width: auto;
    border: 0;
    padding: 10px;
    background-color: #FFF;
    line-height: 24px !important;
    font-size: 16px;
    border-radius: 0 !important;
    outline: 0;
    border-right: 1px solid rgba(0,0,0, .2);
    -webkit-appearance: none;
}
.flex-form > *:last-child {
    border-right: 0;
}

@media all and (min-width: 1025px){
    body .flex-form .zoekwoorden {
        flex-basis: 140px;
        flex-shrink: 0 !important;
    }
}
@media all and (max-width:900px){
    /* portrait landscape */
    .flex-form {
        flex-wrap: wrap;
    }
    .flex-form > *,
    .flex-form .spelers {
        flex: 1 0 50% !important;
    }
}
@media all and (max-width:700px){
    /* tablet portrait / mobile */
    .flex-form > *,
    .flex-form .spelers {
        flex-basis: 100% !important;
    }
}

.flex-form input[type="submit"] {
    padding: 10px;
    margin: 0;
    height: auto;
    font-weight: normal;
    line-height: 24px !important;
    overflow: visible;
}
.flex-form input:focus,
.flex-form textarea:focus,
.flex-form select:focus {
    box-shadow: inset 0 0 0 1px #FC6719;
}
.results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}


.results > div {
    margin: 0px 0px 30px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
@media all and (-ms-high-contrast:none) {
    .results > div, /* IE10 */
    *::-ms-backdrop, .results > div { /* IE11 */
        min-height: 400px;
    }
}

.result-box {
    background: #FFF;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0, .2);
    position: relative;
    overflow: visible;
    text-align: center;
    -webkit-transition: border 150ms;
    -o-transition: border 150ms;
    transition: border 150ms;
    margin: 0px 15px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.result-box:hover {
    border-color: #FC6719;
}

.result-cover {
    max-height: 300px;
    background: #FFF url('../img/basketball_123-768x480.jpg') no-repeat 20% 20%;
    background-size: cover;
    overflow: hidden;
    height: 150px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.skills .result-cover {
    background: #FFF url('../img/skills_default-768x480.jpg') no-repeat 50% 50%;
    background-size: cover;
}

.result-icon {
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.result-icon img {
    background-color: #FFF;
    border: 5px solid #FFF;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    width: 55px;
    height: 55px;
}

.result-content {
    margin-top: -25px;
    padding: 0 20px 20px;
    font-size: .9em;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-preferred-size: calc(100% - 150px);
        flex-basis: calc(100% - 150px);
}
    .result-content .content {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 100%;
                flex: 1 1 100%;
        font-size: .9em;
        line-height: 1.5em;
    }
    .result-box.person .result-content h6 {
        min-height: 50px;
    }


/**
 * OWL CAROUSEL
 */
.owl-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
}
    .owl-carousel.owl-drag:hover {
        cursor: grab;
        cursor: -webkit-grab;
    }
    .owl-carousel.owl-drag.owl-grab:hover {
        cursor: grabbing;
        cursor: -webkit-grabbing;
    }

    .owl-carousel .owl-next,
    .owl-carousel .owl-prev {
        display: block;
        position: absolute;
        top: 50%;
        cursor: pointer;
        z-index: 21;
        font-size: 40px;
        text-align: center;
        line-height: 60px;
        height: 60px;
        width: 60px;
        margin-top: -32px;
        /*text-shadow: 0 1px 3px rgba(0,0,0, .3);*/
        background-color: rgba(255,255,255, .8) !important;
        color: rgba(252, 103, 25, .8) !important;
        /*color: #0181c4;*/
        border: 2px solid rgba(252, 103, 25, .8) !important;
        border-radius: 30px;
        transition: background 100ms;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        font-family: FontAwesome !important;
    }
        .owl-carousel .owl-next:hover,
        .owl-carousel .owl-prev:hover {
            background-color: rgba(255,255,255, .95) !important;
            border-color: rgba(252, 103, 25, 1) !important;
            color: #0181C4 !important;
        }
        .owl-carousel .owl-next:after,
        .owl-carousel .owl-prev:after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
    .owl-carousel .owl-prev.disabled,
    .owl-carousel .owl-next.disabled { display: block; border-color: #CCC; }

    .owl-carousel .owl-prev.disabled:hover,
    .owl-carousel .owl-next.disabled:hover { display: block; border-color: #DDD; }

    .owl-carousel .owl-next { right: -30px; }
    .owl-carousel .owl-next:after {
        content: '\f105'; /* > */
        top: 15px;
        right: 8px;
    }

    .owl-carousel .owl-prev { left: -30px; }
    .owl-carousel .owl-prev:after {
        content: '\f104'; /* < */
        top: 15px;
        left: 8px;

    }

    .owl-carousel .item-video { background-color: #000; }

    /* center video in container */
    .owl-carousel .item-video > div {
        margin-left: auto;
        margin-right: auto;
    }

    /**
     * DOTS
     */
    .owl-dots {
        margin-top: 30px;
        text-align: center;
    }
        .owl-dot {
            display: inline-block;
            float: none;
            width: 6px;
            height: 6px;
            margin: 0 8px;
            padding: 6px;
            background: transparent;
            border-radius: 50%;
            overflow: hidden;
            text-indent: -999em;
            border: 2px solid #fc6719;
            cursor: pointer;
            opacity: .4;
            transition: background 100ms;
        }
        .owl-dot.active {
            background: #fc6719;
            cursor: default;
            opacity: 1;
        }
        .owl-dot:first-of-type { border-color: #0181C4; }
        .owl-dot:first-of-type.active { background-color: #0181C4; }

/**
 * Vaardigheid
 */
.oba-single-page {
    font-size: .9em;
}
    .oba-single-page .w-testimonial p {
        margin: 0 0 1.5em;
    }

/**
 * LIST ITEMS
 */
ul.ball.white {
    margin: 0 0 1em 40px;
    padding: 0;
    list-style-image: url('../img/ball-white-32x32.png');
}
ul.ball.white li a {
    vertical-align: top;
    line-height: 34px;
}
.no-touch ul.ball.white li a {
    transition: padding 100ms ease-in-out;
}
.no-touch ul.ball.white li a:hover {
    color: #FFF;
    padding-left: 5px;
}

/**
 * TITLES
 */
.title-ball {
    padding-top: 38px !important;
    display: inline-block;
    background: transparent url('../img/title-top.png') no-repeat 50% 0;
}
    .title-ball.large {
        background: transparent url('../img/title-top-large.png') no-repeat 50% 0;
        padding-top: 54px !important;
    }

    .entry-title.title-ball.large {
        text-align: center;
        display: block;

        border-bottom: 2px solid #fc6719;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

/**
 * OEFENING
 */
.oefening-slider {
	font-size: 1.5em;
}



/**
 * CSS voor timepicker en pikaday
 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.bootstrap-timepicker-widget table td input {
    box-shadow: none;
    width: 45px;
    padding: 0;
    font-size: 22px;
}
.bootstrap-timepicker-widget table td a {
    padding: 0;
}
.triangle-theme .pika-label:after {
    content:" \25be";
}


/**
 * INPUT FILE
 * http://tympanus.net/Tutorials/CustomFileInputs/
 */
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 100%;
    font-size: 14px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 5px 10px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-js .inputfile + label {
    display: none;
}
/*
.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}
*/
.inputfile + label .fa {
    color: currentColor;
    font-size: 1.2em;
    margin-right: 4px;
}

/* style 2 */
/* http://tympanus.net/Tutorials/CustomFileInputs/css/component.css */
.btn-round-tr,
.inputfile-2 + label {
  transition: color 200ms ease-out;
  color: #fc6719;
  border: 1px solid currentColor;
  -webkit-border-top-right-radius: 12px;
  -moz-border-radius-topright: 12px;
  border-top-right-radius: 12px;
}
.btn-round-tr:hover,
.inputfile-2:focus + label,
.inputfile-2.has-focus + label,
.inputfile-2 + label:hover {
  color: #0182c6;
}
.btn-round-tr {
    font-size: 14px;
    font-weight: 700;
    padding: 6px 13px 0px;
    display: inline-block;
    vertical-align: top;
}

table.zebra tbody tr:nth-child(even) td,
table.zebra tbody tr:nth-child(even) th {
    background-color: rgba(0,0,0, .05);
}
table.table-hover tr:hover td {
    background: rgba(0,0,0, .025);

}


/* PIKADAY TRIANGLE (FIX FOR EVENTS) */
.triangle-theme .pika-label:after {
    content:" \25be";
}

body section.oba-blue-subsection {
    border-top: 20px solid #0181c4;
    background-color: #EFEFEF
}

body .d-block  { display:  block; }
body .d-inline { display: inline; }

body .pt10 { padding-top:    10px; }
body .pr10 { padding-right:  10px; }
body .pb10 { padding-bottom: 10px; }
body .pl10 { padding-left:   10px; }
body .pl30 { padding-left:   30px; }

body .mt10 { margin-top:    10px; }
body .mr10 { margin-right:  10px; }
body .mb10 { margin-bottom: 10px; }
body .ml10 { margin-left:   10px; }
body .mb25rem { margin-bottom: 2.5rem; }

body .txt-primary { color:   #fc6719; }
body .txt-green   { color:   #59ba41; }
body .txt-blue    { color:   #0181c4; }
body .txt-red     { color:   #FF4400; }

body .w-btn.color_blue.style_outlined, .no-touch .btn_hov_reverse .w-btn.color_blue.style_solid:hover {
    color: #0181c4 !important;
}
body .w-btn.color_blue {
    border-color: #0181c4 !important;
}

.w-btn.color_blue.style_solid, .w-btn.color_blue.style_outlined::before, .no-touch .btn_hov_reverse .w-btn.color_blue.style_outlined:hover {
    background-color: #0181c4;
}
.w-btn.light-bg {
    background-color: rgba(255,255,255,0.9);
}
body span.info {
    border: 2px solid #CCC;
    border-radius: 4px;
    background: #DDD;
    padding: 0.5em 1.75em;
    font-size: 13px;
    line-height: 1.4em;
    display: inline-block;
}
body span.info.info-blue {
    background-color: rgba(255,255,255,0.9);
    border-color: #DDD;
    color: #0181c4;
}
body span.info.right {
    float: right;
}

body .g-cols.no-flex > div {
    display: block;
}
body .pull-right {
    float: right;
}
body .training-overview .author,
body .training-overview .target,
body .training-overview .intensity {
    color: #AAA;
    font-size: .85em;
}

/* hide username field in profile page */
.ccl-user-login-wrap {
    display: none;
}

/* Messages ******************************************/
.messages .message {
    display: block;
    border: 1px solid #d6d8db;
    padding: 15px;
    background-color: #e2e3e5;
    margin-bottom: 20px;
}
.messages .message.success {
    border-color: #c3e6cb;
    background-color: #d4edda;
    color: #155724;
}
.messages .message.error {
    border-color: #f5c6cb;
    background-color: #f8d7da;
    color: #721c24;
}
.messages .message .title {
    font-weight: bold;
    margin-bottom: 5px;

}
.mfp-container.removeClose:after {
    content: "";
}

/* BUTTONS */


.oba-btn {
    font-size: 18px;
    padding: 0.5em 1.75em !important;
    border-radius: 4px;
    line-height: 18px;
    display: inline-block;
}
.oba-btn.icon_atleft i {
    margin-right: 0.5em;
}
.oba-btn.size_small {
    font-size: 13px;
    line-height: 1.4 !important;
}
.oba-btn .w-btn-label {
    padding: 0px !important;
}

/* PRIMARY (ORANGE) */
.oba-btn.color_primary {
    color: #FFF;
    background: #fc6719 !important;
    border-color: #fc6719 !important;
}
    .oba-btn.color_primary:hover {
        color: #FFF;
        background: #d65815 !important;
        border-color: #d65815 !important;
    }
.oba-btn.color_primary.style_outlined {
    color: #fc6719 !important;
    background: none !important;
    border: 2px solid #fc6719 !important;
}
    .oba-btn.color_primary.style_outlined:hover {
        background: #fc6719 !important;
        border-color: #fc6719 !important;
        color: #FFF !important;
    }

/* GREEN */
.oba-btn.color_green {
    color: #FFF;
    background: #59ba41 !important;
    border-color: #59ba41 !important;
}
    .oba-btn.color_green:hover {
        color: #FFF;
        background: #4c9e37 !important;
        border-color: #4c9e37 !important;
    }
.oba-btn.color_green.style_outlined {
    color: #59ba41 !important;
    background: none !important;
    border: 2px solid #59ba41 !important;
}
    .oba-btn.color_green.style_outlined:hover {
        background: #59ba41 !important;
        border-color: #59ba41 !important;
        color: #FFF !important;
    }

/* BlUE */
.oba-btn.color_blue {
    color: #FFF;
    background: #0181c4 !important;
    border-color: #0181c4 !important;
}
    .oba-btn.color_blue:hover {
        color: #FFF;
        background: #015c8c !important;
        border-color: #015c8c !important;
    }
.oba-btn.color_blue.style_outlined {
    color: #0181c4 !important;
    background: none !important;
    border: 2px solid #0181c4 !important;
}
    .oba-btn.color_blue.style_outlined:hover {
        background: #0181c4 !important;
        border-color: #0181c4 !important;
        color: #FFF !important;
    }

/* RED */
.oba-btn.color_red {
    color: #FFF;
    background: #FF4400 !important;
    border-color: #FF4400 !important;
}
    .oba-btn.color_red:hover {
        color: #FFF;
        background: #d93a00 !important;
        border-color: #d93a00 !important;
    }
.oba-btn.color_red.style_outlined {
    color: #FF4400 !important;
    background: none !important;
    border: 2px solid #FF4400 !important;
}
    .oba-btn.color_red.style_outlined:hover {
        background: #FF4400 !important;
        border-color: #FF4400 !important;
        color: #FFF !important;
    }


input.readonly {
    background-color: #EEE;
    color: #888;
}

/**
 * Club bewerken
 */
form.form-club-bewerken #old-preview img,
form.form-club-bewerken #pdf-preview img {
    max-width: 250px;
    height: auto;
    object-fit: cover;
}


/**
 * Settings
 */
form.settings .vc_col-sm-2 label {
    line-height: 2.75;
}
form.settings #old-preview img,
form.settings #pdf-preview img {
    max-width: 250px;
    height: auto;
    object-fit: cover;
}
form.settings .textarea_options {
    padding: 10px;
    margin-top: 5px;
    background: #ffffd2;
    font-style: italic;
}
form.settings .textarea_options p,
form.settings .textarea_options table th,
form.settings .textarea_options table td {
    margin-bottom: 0px;
    font-size: 0.875rem;
}
form.settings ul.checklist {
    margin: 0;
}
form.settings ul.checklist li {
    list-style-type: none;
    line-height: 1;
    display: flex;
    padding: 15px 10px;
    margin: 0px;
}
.form-bewerken ul.checklist li:nth-child(2n+1) {
    background: #F2F2F2;
}
form.settings ul.checklist li input[type=checkbox]{
    margin-top: -3px;
}
form.settings ul.checklist li input[type=color]{
    padding: 0px;
    display: none;
}
form.settings ul.checklist li.enabled input[type=color]{
    display: block;
}
form.settings ul.checklist li label {
    flex-grow: 1;
}
form.settings .heading {
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #fc6719;
    color: #0d7cc1;
}

form.settings .mt0 {
    margin-top: 0px;
}

/**
 * Single page
 */
body .oba-single-page.oba-sidebar-none .l-content {
    width: 100%;
}
body .oba-single-page .g-cols {
    display: flex;
    flex-wrap: wrap;
}

/**
 * Icons
 */
i.fa {
    font-family: "fontawesome";
}
i.far {
    font-weight: 400;
}
i.fas {
    font-weight: 900;
}

/**
 * 🚑 Hide appended <br> between <li> elements
 */
.oba-single-page ul > li + br {
    display: none;
}
/**
 * 🚑 .select2 style fixes
 */
body .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f5f5f5;
    border: 1px solid #e2e2e2;
    line-height: 1.75rem !important;
}
body .select2-container .select2-search--inline {
    line-height: 1.75rem !important;
}

/**
 *  🚑 Impreza tabs
 */
.w-tabs-item {
    cursor: pointer;
}
