:root {
    --black: #000;
    --white: #fff;
    --white-grey: #fafafa;

    --blue: #00adef;
    --blue-trans: rgba(0, 173, 239, .86);
    --blue-hover: #4a90e2;
    --grey-ultralight: #ebebeb;
    --grey-light: #bbbbbb;
    --grey: #898989;
    --grey-medium: #5f5f5f;
    --grey-dark: #2e2e2e;
    --grey-ultradark: #1e1e1e;

    --shadow: 0 0 6px rgba(0, 0, 0, .1);
    --shadow-hover: 0 0 16px rgba(0, 0, 0, .1);

    --padding: 1.5rem;
    --padding-half: .75rem;
    --padding-double: 3rem;

    --transition-opacity: opacity ease .25s;
    --transition-color: color ease .25s;
    --transition-bgcolor: background-color ease .25s;
    --transition-shadow: box-shadow ease .25s;

    --font: 1.2rem;
    --font-small: 1.2rem;
    --font-double: 3.2rem
}

:root {
    --main-padding: 1rem;
}

@media (min-width: 768px) {
    :root {
        --main-padding: 1.5rem;
        --font: 1.6rem;

    }
}

@media (min-width: 1200px) {
    :root {
        --main-padding: 2rem;

    }
}


@media (min-width: 1401px) {
    .col-xxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xxl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xxl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xxl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xxl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xxl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xxl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xxl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xxl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xxl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xxl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xxl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xxl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xxl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xxl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xxl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xxl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xxl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xxl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xxl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xxl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xxl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xxl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xxl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.666667%;
    }

    .d-xxl-none {
        display: none
    }
}

.clearfix * {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

html {
    font-size: 10px;
    scroll-padding-top: 150px;
    scroll-behavior: smooth;
}

body, html, #wrapper {
}

@media (max-width: 767px) {
    body, html {
        -ms-overflow-style: scrollbar;
        max-width: 100% !important;
    }
}

body {
    position: relative;
    font-style: normal;
    line-height: 1.5;
    font-size: var(--font);
    color: var(--black);
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    hyphens: auto;
}

html,
body {
    width: 100%;
}

b, strong {
    font-weight: 700;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body section p {
    position: relative;
    z-index: 2
}

/*
button, input, select, input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    border-radius: 0;
    border: 0;
}
 */

hr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}

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


a {
    color: var(--grey)
}

a:hover,
a:focus {
    color: var(--blue-hover);
    text-decoration: none;
    outline: none;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1560px;
    }
}

/*
.maincontent {
    padding: 0 15px;
}*/

/* HEADER */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    overflow-wrap: inherit;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    hyphens: auto;
}

h1, .h1 {
    font-size: 4rem;
    font-weight: normal;
    font-family: 'Times New Roman', serif;
}

h2, .h2 {
    font-size: 2.9rem;
    font-weight: normal;
    font-family: 'Times New Roman', serif;
}

h3, .h3 {
    font-size: 2.5rem;
}

h4, .h4 {
    font-size: 2.1rem
}

h5 {
    font-size: 1.8rem
}

/** BREADCRUMB**/
#breadCrumb {
    position: relative;
    z-index: 3;
    font-size: 10px;
}

.breadcrumbmenu {
    padding: 15px 0;
    border-bottom: 1px solid var(--grey-light);
}

.breadcrumbmenu p {
    margin-bottom: 0
}

ol.breadcrumb {
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important
}


.small-gap {
    margin-bottom: 15px !important;
}

@media (min-width: 576px) {
    .small-gap-sm {
        margin-bottom: 15px !important;
    }
}

@media (min-width: 768px) {
    .small-gap-md {
        margin-bottom: 15px !important;
    }
}

@media (min-width: 992px) {
    .small-gap-lg {
        margin-bottom: 15px !important;
    }
}

@media (min-width: 1200px) {
    .small-gap-xl {
        margin-bottom: 15px !important;
    }
}

.gap {
    margin-bottom: 30px !important;
}

@media (min-width: 576px) {
    .gap-sm {
        margin-bottom: 30px !important;
    }
}

@media (min-width: 768px) {
    .gap-md {
        margin-bottom: 30px !important;
    }
}

@media (min-width: 992px) {
    .gap-lg {
        margin-bottom: 30px !important;
    }
}

@media (min-width: 1200px) {
    .gap-xl {
        margin-bottom: 30px !important;
    }
}


.big-gap {
    margin-bottom: 60px !important;
}

@media (min-width: 576px) {
    .big-gap-sm {
        margin-bottom: 30px !important;
    }
}

@media (min-width: 768px) {
    .big-gap-md {
        margin-bottom: 30px !important;
    }
}

@media (min-width: 992px) {
    .big-gap-lg {
        margin-bottom: 30px !important;
    }
}

@media (min-width: 1200px) {
    .big-gap-xl {
        margin-bottom: 30px !important;
    }
}

.no-gap {
    margin-bottom: unset !important;
}

@media (min-width: 576px) {
    .no-gap-sm {
        margin-bottom: unset !important;
    }
}

@media (min-width: 768px) {
    .no-gap-md {
        margin-bottom: unset !important;
    }
}

@media (min-width: 992px) {
    .no-gap-lg {
        margin-bottom: unset !important;
    }
}

@media (min-width: 1200px) {
    .no-gap-xl {
        margin-bottom: unset !important;
    }
}

.no-margin {
    margin: 0;
    padding: 0;
}

.tcenter {
    text-align: center;
}

.tright {
    text-align: right;
}

.versteckt {
    opacity: 0
}

.sichtbar {
    opacity: 1
}

.date {
    font-size: 1rem;
    color: var(--grey-light)
}

/** SECTIONS **/
section {
    padding: 5rem 0
}

#cockpit {
    background: var(--black);
    background: linear-gradient(180deg, #000 0, var(--grey-dark) 300px, #000 1000px)
}

#cockpit h1 {
    color: var(--white)
}

/** ITEMS **/
.itemsmain {
    height: 100%
}

@media (min-width: 992px) {
    .itemsmain {
        padding-right: var(--padding-double);
        border-right: 1px solid var(--grey-ultralight);
    }

    #cockpit .itemsmain {
        border-right-color: var(--grey-dark)
    }
}

.systemmessage,
.systemmessage:not(.unread) .date {
    color: var(--grey);
    transition: var(--transition-color);
}

.systemmessage {
    border-bottom: 1px solid var(--grey-dark);
    margin-bottom: var(--padding);
    opacity: .4;
}

.systemmessage.unread {
    opacity: 1
}

.systemmessages h3,
.systemmessage.unread {
    color: var(--grey)
}

.systemmessage.unread h4 {
    color: var(--blue)
}

.systemmessage:not(.unread):hover .date,
.systemmessage:hover {
    color: var(--grey)
}


/** MENU**/
header {
    background-color: #000;
}

header.menuheader .container {
    padding: 15px
}

header.menuheader .menuholder .container {
    padding: 0 15px
}

header .menuholder {
    border-top: 1px solid var(--grey-dark)
}

@media (max-width: 575px) {
    .navbar-brand {
        display: block;
    }
}

.navbar {
    padding-top: 0;
    padding-bottom: 0
}

.navbar li {
    border-top: 1px solid transparent
}

.navbar li.special {
    background-color: var(--grey-dark);
}
.navbar li.highlight {
    background-color: var(--blue);
}
.navbar li.highlight > a {
	    color: var(--white);
}

.navbar li.special > a {
    color: var(--white);
}

.navbar li.special:hover {
    background-color: var(--grey-medium);
}

.navbar-nav li a.nav-link {
    line-height: 40px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.navbar-nav li:hover > a {
    color: var(--white)
}

.navbar-nav li.dropdown.show {
    border-top: 1px solid var(--blue-hover);
}

.navbar-nav li.current-menu-parent,
.navbar-nav li.current-menu-item {
    border-top-color: var(--blue);
    color: #fff
}

.navbar-nav li.current-menu-parent > a,
.navbar-nav li.current-menu-item > a {
    color: #fff
}

.userpanel { line-height:1}

.usermenu {
    list-style: none;
    text-align: right;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
	margin-top:3px;
}
.usermenu li.points { width:100%; font-size:11px; margin-bottom:3px}

.mobilenav .usermenu {
    text-align: left
}

.usermenu li {
    display: inline-block;
    line-height: 1;
    padding: 0 .5rem;
    position: relative;
}

header .userpanel {
    text-align: right
}

.userpanel {
    color: var(--grey-ultralight);
    font-weight: bold;
}

.userpanel .avatar {
    max-width: 45px
}

.userpanel .tooltip-qm {
    float: left;
    margin: -2px 0px 3px 4px;
    font-size: 12px;
}

.userpanel-tooltip .tooltip-inner {
    background: var(--blue);
    color: var(--white);
    border: 1px solid #737373;
    text-align: left;
}

.userpanel-tooltip.tooltip.show {
    opacity: 1;
}

.userpanel-tooltip.arrow::before,
.userpanel-tooltip .arrow::before {
    border-bottom-color: var(--blue);
    /* Red */
}

.userpanel li .badge {
    position: absolute;
    right: 0;
    top: 100%;
    line-height: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: bold;
    font-size: 10px;
    margin-top: -7px;
    min-width: 15px;
    padding: 0;
    pointer-events: none;
}

.userpanel li:hover i {
    color: var(--white)
}

.userpanel li:hover .badge {
    background-color: var(--blue-hover);
}

.usermenu li i {
    color: var(--grey)
}

@media (max-width: 576px) {
    /*    header .usermenu { display: none} */
    header .container-fluid {
        padding: 0
    }

    header .container-fluid .col-9 {
        padding-left: 0
    }
}

/** DROPDOWNMENU **/
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    height: calc(100vH - 190px);
    width: 400px;
    padding: var(--padding-double);
    overflow: auto;
}

.dropdown-menu a {
    font-size: var(--font);
    padding: 0;
    line-height: 40px;
    padding: 0 var(--padding-half);
    position: relative;
}

.dropdown-menu > a + .dropdown-menu {
    position: relative !important;
    display: block;
    width: 100%;
    height: auto;
    top: 0;
    padding: 0;
    padding-left: var(--padding-double);
    border: 0
}

.dropdown-menu > a + .dropdown-menu a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-left: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    margin-top: -7px;
    margin-left: -15px
}

/** BUTTONS **/
.btn-default {
    background-color: var(--blue);
    transition: var(--transition-bgcolor);
    border: 1px solid var(--blue-hover);
    color: var(--white);
    font-weight: bold;
    font-size: var(--font);
    line-height: 3;
    border-radius: 2px;
    margin-bottom: var(--padding-half);
    padding: 0 var(--padding);
}

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

.btn-default.btn-trans {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-default.btn-trans:hover {
    background-color: var(--blue-hover);
    border: 1px solid var(--blue-hover);
    color: var(--white);
}

.btn-default.btn-more {
    position: absolute;
    bottom: 0px;
    z-index: 102;
    /*left: 50%;
    transform: translateX(-50%);*/
    width: 100%;
    background-color: #fff;
    border: 0;
    border-top: 1px solid var(--grey-dark);
    color: var(--grey-dark);
    border-bottom: 1px solid var(--grey-dark);
    box-shadow: 0 0 15px rgba(0, 0, 0, .25);
    background: var(--white-grey);
    border-radius: 0;
}

.btn-default.btn-more:hover {
    background-color: var(--grey-dark);
    color: var(--white)
}

.btn-default.btn-light {
    color: var(--grey);
    border-color: var(--grey);
    background-color: var(--white);
}

.btn-default.btn-light:hover {
    color: var(--grey);
    border-color: var(--grey);
    background-color: var(--grey-ultralight);
}

.btn-default.btn-dark {
    background-color: var(--grey-dark);
    border-color: var(--grey-dark);
    color: var(--white);
}

.btn-default.btn-light:hover {
    color: var(--grey);
    border-color: var(--grey);
    background-color: var(--grey-ultralight);
}

.toggle-btn-holder {
    border-bottom: 1px solid #fff;
}

.toggle-btn {
    outline: none !important;
    box-shadow: none !important;
}

.toggle-btn.active {
    background-color: var(--blue) !important;
    color: #fff !important;
}

/** FORMS **/
.new-comment .form-group {
    margin-bottom: 0
}

.form-control {
    border-radius: 2px;
    border: 1px solid var(--grey-light);
    background-color: var(--grey-ultralight);
    color: var(--black);
    line-height: 45px;
    height: 45px;
    padding: 1rem;
    padding-top: 20px;
    font-size: var(--font);
    display: block;
    margin-bottom: 1rem !important;
}

textarea.form-control {
    line-height: 1.5
}

input[type=file] {
    padding: 0;
}

span.submitcommentholder {
    position: absolute;
    right: 0;
    bottom: 0;
    /* height: 100%; */
    line-height: 45px;
    padding: 0;
    width: 45px;
    transition: var(--transition-opacity);
    opacity: 1;
    top: 0;
}


.grow-wrap {
    margin-bottom: 1rem !important
}

.grow-wrap textarea {
    padding-right: 60px;
    margin-bottom: 0 !important;
}

.form-group.active span.submitcommentholder {
    opacity: 1
}

span.submitcommentholder input.submitcomment {
    /*position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 45px;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    font-size: 0;
    opacity: 0;*/
    /* position: absolute; */
    /* inset: 0; */
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 45px;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    /* font-size: 0; */
    opacity: 0;
    /* vertical-align: middle;*/
}

span.submitcommentholder:after {
    font-family: FontAwesome;
    content: "\f3e5";
    font-size: 13px;
    position: absolute;
    right: 0px;
    top: 50%;
    line-height: 45px;
    width: 45px;
    margin-top: -22.5px;
    pointer-events: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    /* line-height: 1; */
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    text-align: center;
}

@media (pointer: coarse) and (max-width: 991px) {
    span.submitcommentholder {
        position: relative;
        width: 100%;
        font-size: var(--font);
        line-height: 3;
        top: auto;
        display: block;
        color: #fff;
    }

    span.submitcommentholder {
        color: #fff;
        background: var(--blue);
        font-size: var(--font);
        line-height: 3;
    }

    .comment-form .form-group:not(.active) label {
        transform: translateY(0);
        top: 15px;
    }

    span.submitcommentholder input.submitcomment {
        opacity: 1;
        font-size: var(--font);
        line-height: 3;
        color: #fff;
        font-weight: bold;
    }
}

footer {
    background-color: var(--black);
    color: #fff;
    line-height: 45px;
    font-size: var(--font-small);
}

footer p:last-child {
    margin-bottom: 0
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none
}

footer ul li {
    float: left;
    margin-right: 15px;
}

footer ul li a {
    line-height: 45px;
    color: #fff;
    font-size: var(--font-small);
}

.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    background-color: rgba(255, 255, 255, .5);
    color: var(--black);
    border-radius: 50%;
    z-index: 2;
    border: 0 !important;
    outline: 0 !important;
    margin-top: -22px;
    box-shadow: var(--shadow);
    transition: var(--transition-bgcolor), var(--transition-shadow);
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.slick-prev:hover, .slick-next:hover {
    background-color: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-hover);
}

.wp-post-image {
    border: 1px solid var(--grey-light);
}

.thumb {
    border: 1px solid var(--grey-light);
    object-fit: cover;
    overflow: hidden;
    position: relative;
}

.thumb img {
    position: absolute;
    inset: 0;
}

.thumb:after {
    content: '';
    display: block;
    padding-bottom: 56%;
}

.profile-switch-item {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: var(--padding-double);
    transition: var(--transition-shadow);
}

.profile-switch-item:hover {
    box-shadow: var(--shadow-hover);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--grey);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--blue);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--blue);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/** SUMMARY **/
.sliderholder {
    position: relative;
    padding-bottom: 50px;
}

body.home .sliderholder {
    background-color: var(--black);
}

.summaryholder {
    position: relative;
    inset: 0;
    margin-top: -50px;
}

@media (min-width: 768px) {
    .summaryholder {
        position: absolute;
        margin-top: 0;
    }
}

.summary {
    min-height: 150px;
    color: var(--white);
    isolation: isolate;
    position: relative;
    background-color: var(--grey-dark);
    padding: var(--padding-double);
    box-shadow: 0 0 10px rgba(0, 0, 0, .25)
}

.summary:after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url(../images/thekenrallye-kranz.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: .15;
}

.summaryheader {
    padding-bottom: var(--padding);
    border-bottom: 1px solid var(--grey);
    margin-bottom: var(--padding);
}

.summary dl {
    margin-bottom: 0
}

.summary a,
dl dt {
    color: var(--blue)
}

.summary a:hover {
    color: var(--blue-hover)
}

.summary .small-gap:last-child {
    margin-bottom: 0 !important
}

.summary .summaryitem {
    border-bottom: 1px solid var(--grey-medium);
    margin-bottom: 5px;
    padding-bottom: 5px;
}

/** ACCORDION **/
.accordion .card {
    background-color: #fff;
    margin-bottom: 5px;
}

.accordion .card .card-header {
    position: relative;
    cursor: pointer;
    padding: 2rem
}

.accordion .card .card-header:hover {
    background-color: #f0f0f0
}


.accordion .card .card-header h4 {
    margin-bottom: 0 !important
}

.accordion .card .card-header:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 2rem;
    top: 50%;
    font-weight: 300;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: var(--grey-dark);
    transition: transform ease .25s;
    transform: translateY(-50%);
    font-size: 2rem;
}


.accordion .card:hover .card-header:after {
    transform: translateY(-50%) rotate(90deg);
    color: var(--green) !important
}

.accordion .card .card-header[aria-expanded="true"]:after,
.accordion .card .card-header[aria-expanded="true"] {
    color: var(--blue) !important
}

.accordion .card .card-header[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(180deg);
}

.toast {
    font-size: 14px !important
}

.toast-header {
    background-color: var(--blue);
    color: #fff;
    padding: var(--padding-half) var(--padding)
}

.toast-header .close {
    text-shadow: none
}

.toast-body {
    padding: var(--padding)
}

.wp-video {
    width: 100% !important;
}

.loading-overlay {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, .86);
}

.overview-item-holder .loading-overlay {
    height: 150px;
    position: relative;
    left: 0;
    right: 0;
}

.overview-item-holder.loading .loading-overlay,
.loading-overlay.in {
    display: block;
    z-index: 999;
}

.loading-overlay .loadingicon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}


.check-padding + section {
    padding-top: 0 !important
}

.tooltip {
    font-size: 14px;
    hyphens: none;

}

.entry-box {
    border: 1px dashed var(--grey-ultralight);
    padding: 30px;
}

.entry-box table {
    border: 1px solid #dee2e6
}

#popupClickModal .modal-dialog {
    max-width: 100%;
}

#popupClickModal .modal-dialog .modal-content {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {
    #popupClickModal .modal-dialog .modal-content,
    .container {
        max-width: 1360px;
    }
}

@media (min-width: 1600px) {
    #popupClickModal .modal-dialog .modal-content,
    .container {
        max-width: 1560px;
    }
}

.ekko-lightbox .close {
    font-size: 3rem;
}

.modal-backdrop.show {
    opacity: .86
}

.ekko-lightbox-nav-overlay a span {
    background: rgba(255, 255, 255, .5);
    max-width: 50px;
    border-radius: 50%;
    height: 50px;
    padding: 0;
    text-align: center !important;
    line-height: 50px;
    margin: 15px;
    box-shadow: var(--shadow);
}

.ekko-lightbox-nav-overlay a + a span {
    margin-left: auto;
}

.ekko-lightbox-container { overflow: hidden}

@media (hover: none) {
    .ekko-lightbox-nav-overlay a {
        opacity: 1 !important;
    }
}

li.coarse { display: none}

@media(hover: none) {
	.mobilenav li.special.coarse a {
		display: block;
    	background-color: var(--blue);
    	margin-bottom: 45px;
		color:#fff !important
}
}


@media(pointer: coarse) {
	.mobilenav li.special.coarse a {
		display: block;
    	background-color: var(--blue);
    	margin-bottom: 45px;
				color:#fff !important

}
}

table._brlbs-table { width: 100%; }
table._brlbs-table tr th { border: 1px solid #ddd; padding:15px; background-color: #000; color:#ffff } 
table._brlbs-table tr td { border: 1px solid #ddd; padding:15px }