﻿/* welcome to hell */

@font-face {
    font-family: wrc_roman;
    src: url('fonts/WRCROMAN.eot');
    src: local(wrc_roman), url('fonts/WRCROMAN.woff') format('woff'), url('fonts/WRCROMAN.svg#WRCCleanRoman') format('svg'), url('fonts/WRCROMAN.ttf') format('opentype');
}

@font-face {
    font-family: wrc_clean;
    src: url('fonts/WRCCLEAN.eot');
    src: local(wrc_clean), url('fonts/WRCCLEAN.woff') format('woff'), url('fonts/WRCCLEAN.svg#WRCCleanBold') format('svg'), url('fonts/WRCCLEAN.ttf') format('opentype');
}

html {
    scroll-behavior: smooth;
}

/* text markieren aus */
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: wrc_roman;
}

/* animation & blur für unsichtbar/sichtbar */
.invisible {
    opacity: 0;
    visibility: hidden; /*-moz-transition: all 0.75s ease;      -webkit-transition: all 0.75s ease;      -o-transition: all 0.75s ease;      -ms-transition: all 0.75s ease;*/
    transition: visibility 0s 0.75s,opacity 0.75s ease;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -o-filter: blur(20px);
    filter: blur(20px);
    transition: filter 2s ease,visibility 0s 0.75s,opacity 0.75s ease;
}

.visible {
    opacity: 1;
    visibility: visible; /*-moz-transition: all 0.75s ease;      -webkit-transition: all 0.75s ease;      -o-transition: all 0.75s ease;      -ms-transition: all 0.75s ease;*/
    transition: opacity 0.75s ease;
}

/* fixme: splittime buttons auf und zu fahren */
.sample-show-hide {
    transition: all 0.75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
    max-height: 200px;
    transform: scaleY(1);
    opacity: 1;
}
    /*
.sample-show-hide.ng-hide-add, .sample-show-hide.ng-hide-remove {
  display:block!important;
}*/

    .sample-show-hide.ng-hide {
        transition: all 0.75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
        transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
        opacity: 0;
        max-height: 0px;
        transform: scaleY(0);
    }

    .sample-show-hide.ng-show {
        transition: all 0.75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
        transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
        opacity: 1;
        max-height: 200px;
        transform: scaleY(1);
    }

/* sortieranimation */
.moveable {
    transition: all 0.75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
    opacity: 1;
    max-height: 300px;
}


    .moveable.ng-enter {
        transform: scaleY(0);
        opacity: 0;
        max-height: 0px;
    }

        .moveable.ng-enter.ng-enter-active {
            transform: scaleY(1);
            opacity: 1;
            max-height: 200px;
        }

    .moveable.ng-leave {
        transform: scaleY(1);
        opacity: 1;
        max-height: 200px;
    }

        .moveable.ng-leave.ng-leave-active {
            transform: scaleY(0);
            opacity: 0;
            max-height: 0px;
        }

    .moveable.ng-move {
        transform: scale(0);
        opacity: 0;
        max-height: 0px;
    }

        .moveable.ng-move.ng-move-active {
            transform: scale(1);
            opacity: 1;
            max-height: 200px;
        }

/* sortieranimation */
.scaleable {
    transition: all 0.75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transform: scale(1)
}

    .scaleable.ng-enter {
        transform: scaleY(0);
        opacity: 0;
        max-height: 0px;
    }

        .scaleable.ng-enter.ng-enter-active {
            transform: scaleY(1);
            opacity: 1;
            max-height: 300px;
        }

    .scaleable.ng-leave {
        transform: scaleY(1);
        max-height: 300px;
    }

        .scaleable.ng-leave.ng-leave-active {
            transform: scaleY(0);
            max-height: 0px;
            transition: unset;
        }

/* sortieranimation */
.scale_channel {
    transition: all 0.75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transform: scale(1)
}

    .scale_channel.ng-enter {
        opacity: 0;
    }

        .scale_channel.ng-enter.ng-enter-active {
            opacity: 1;
        }

    .scale_channel.ng-leave {
        transition: unset;
        opacity: 1;
        visibility: hidden;
    }

        .scale_channel.ng-leave.ng-leave-active {
            transition: unset;
            visibility: hidden;
            opacity: 0;
        }

/* sortieranimation */
.moveableright {
    transition: all 0.75s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
    opacity: 1;
    max-height: 300px;
}

    .moveableright.ng-move {
        transform: translateX(100%);
        max-height: 0px;
    }

        .moveableright.ng-move.ng-move-active {
            transform: translateX(0);
            max-height: 200px;
        }

/* material design themes überschreiben */
md-content.md-default-theme {
    font: 12px/12px 'wrc_roman';
    background: none;
}

md-toolbar {
    font: 12px/12px 'wrc_roman';
    min-height: 1em;
    box-shadow: none;
    padding: 5px;
    margin: 0;
}

md-checkbox {
    margin: 0;
}

.transitions {
    transition: opacity 0.33s ease-in-out;
}

/* bezier einbledung für panels */
.bouncein {
    transition: transform 0.5s cubic-bezier(0.075, 0.820, 0.165, 1.000);
    transition-timing-function: cubic-bezier(0.075, 0.820, 0.165, 1.000);
}

.bouncein_all {
    transition: all 0.5s cubic-bezier(0.075, 0.820, 0.165, 1.000);
    transition-timing-function: cubic-bezier(0.075, 0.820, 0.165, 1.000);
}

/* mehr material theme replacements */
.md-button.md-default-theme {
    font: 1.1em/1.2em 'wrc_clean';
    border-radius: 0px;
    transition: none;
}

md-switch .md-checked.md-primary .md-bar {
    background-color: #ac2601 !important;
}

md-switch.md-checked.md-primary .md-thumb {
    background-color: #fc4c02 !important;
}

/* hintergrundfarbe für aktive buttons */
.btn-selected {
    background-color: #fc4c02 !important;
}

/* das gleiche nur als border unten ( split time auswahl )*/
.btn-selected-low {
    border-bottom: 2px solid #fc4c02;
    border-bottom-style: ridge;
}
/* glow effekt für buttons im panel unten */
.btn-glow:hover {
    box-shadow: 0px 0px 10px 3px rgba(252,76,2,.75);
}

.btn-glow-right:hover {
    box-shadow: 4px 0px 10px 0px rgba(252,76,2,.75);
}

.btn-glow-left:hover {
    box-shadow: -4px 0px 10px 0px rgba(252,76,2,.75);
}

.btn-glow-white:hover {
    box-shadow: 0px 0px 10px 3px rgba(141,141,141,.75);
}

/* mehr material replacements */
.md-button.md-default-theme.md-flat {
    color: #000;
    background: none;
    border-radius: 20%;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    border: 2px solid #ffffff;
}

.angle_img_noscale {
    width: 2.75em;
    height: 2.75em;
}

.angle_noscale {
    color: #fff;
    text-shadow: 1px 1px 1px black, 1px -1px 1px black, -1px 1px 1px black, -1px -1px 1px black;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 2.75em;
}

@media (max-width: 60em) {
    .angle_img {
        width: 1.75em;
        height: 1.75em;
    }

    .angle {
        color: #fff;
        text-shadow: 1px 1px 1px black, 1px -1px 1px black, -1px 1px 1px black, -1px -1px 1px black;
        position: absolute;
        bottom: 0;
        text-align: center;
        width: 2.5em;
        font-size: x-small;
    }
}

@media (min-width: 60em) {
    .angle_img {
        width: 2.75em;
        height: 2.75em;
    }

    .angle {
        color: #fff;
        text-shadow: 1px 1px 1px black, 1px -1px 1px black, -1px 1px 1px black, -1px -1px 1px black;
        position: absolute;
        bottom: 0;
        text-align: center;
        width: 2.75em;
    }
}

.md-button.md-default-theme.md-flat:not([disabled]):hover {
    /* background-color: #fc4c02; */
    background: none;
    background-color: #fff;
    /* box-shadow: 0px 0px 10px 3px rgba(252,76,2,.75); */
    border: 2px solid #fc4c02;
    color: #000;
    transform: none;
}

.md-button.md-default-theme.md-flat:not([disabled]):focus {
    color: #000;
    /* box-shadow: 0px 0px 10px 3px rgba(252,76,2,.75); */
    border: 2px solid #fc4c02;
    background: none;
    background-color: #fff;
    transform: none;
}

.md-button.md-default-theme.md-raised {
    color: #000;
    margin: 1px;
}

.md-button.md-button.md-raised::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 1px solid #fc4c02;
    background-color: white !important;
    background-image: url('../icons/2020/bg-flag-sk.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 700%;
    content: "";
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.md-button.md-button.md-raised.btn-selected {
    color: #ffffff
}

    .md-button.md-button.md-raised.btn-selected::before {
        border: 1px solid #fc4c02;
        background-size: 200%;
        background-position-x: 0%;
    }

.md-button.md-default-theme.md-raised:not([disabled]):hover {
    color: #ffffff
}

    .md-button.md-default-theme.md-raised:not([disabled]):hover::before {
        border: 1px solid #fc4c02;
        background-size: 200%;
        background-position-x: 0%;
    }

.md-button:not([disabled]).md-raised:focus, .md-button:not([disabled]).md-raised:hover, .md-button:not([disabled]).md-fab:focus, .md-button:not([disabled]).md-fab:hover {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
}


.md-button.md-default-theme.md-fab {
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.8) !important;
    /* transition: background-color 250ms linear; */
    margin: 7px;
    width: 3em;
    height: 3em;
}

    .md-button.md-default-theme.md-fab:hover {
        background-color: rgba(141, 199, 45, 0.8) !important;
        transition: background-color 250ms linear;
        box-shadow: 0px 0px 10px 3px rgba(255, 255, 190, .75);
    }

md-progress-linear.md-default-theme.md-hue-2 .md-container {
    background-color: black;
}

md-progress-linear.md-default-theme.md-hue-2 .md-bar {
    background-color: rgba(252,76,2,1);
}

md-progress-circular.md-default-theme.md-hue-2 .md-container {
    background-color: black;
}

md-progress-circular.md-default-theme.md-hue-2 .md-inner .md-right .md-half-circle {
    border-right-color: transparent;
    border-left-color: rgba(252,76,2,1);
    border-top-color: transparent;
    border-bottom-color: rgba(252,76,2,1);
}

md-progress-circular.md-default-theme.md-hue-2 .md-inner .md-left .md-half-circle {
    border-right-color: rgba(252,76,2,1);
    border-left-color: transparent;
    border-top-color: rgba(252,76,2,1);
    border-bottom-color: transparent;
}

md-tooltip {
    z-index: 300;
}

/* panel unten container */
.bottompanel {
    margin: auto;
    overflow-y: hidden;
    overflow-x: hidden;
    /*background-color: rgba(0,0,0,0.4); */
    /*padding: 10px;*/
}

.bottombutton {
    margin-left: 5px;
    margin-right: 5px;
}

.subtitle {
    padding: 5px;
    /*border: 1px solid #555;
    border-radius: 10px;*/
    color: #fff;
    white-space: nowrap;
    text-align: center;
}

/* lasche rechts */
.flap_right {
    cursor: pointer;
    background: linear-gradient(to right, rgba(30, 30, 30, 0.7), rgba(0, 0, 0, 0.0)) !important;
    border-radius: 15px 0px 0px 15px;
    height: 8em;
    width: 25%;
}

/* lasche links */
.flap_left {
    cursor: pointer;
    background: rgba(30, 30, 30, 0.7) !important;
    border-radius: 0px 15px 15px 0px;
    height: 8em;
    width: 3em;
}

/* lasche unten */
.flap {
    cursor: pointer;
    background-color: rgba(30, 30, 30, 0.7) !important;
    border-radius: 15px 15px 0px 0px;
}

.image-cropper {
    width: 7em;
    height: 7em;
    position: relative;
    overflow: hidden;
    transform: skew(-15deg);
}

    .image-cropper img {
        display: inline;
        margin-left: -12.5%;
        height: 130%;
        width: 130%;
        transform: skew(15deg);
    }

@media (min-width: 60em) {
    .image-cropper-small {
        max-width: 7.5em;
        height: 100%;
        position: relative;
        overflow: hidden;
        transform: skew(-15deg);
    }
}


@media (max-width: 60em) {
    .image-cropper-small {
        max-width: 5.5em;
        height: 100%;
        position: relative;
        overflow: hidden;
        transform: skew(-15deg);
    }
}

.image-cropper-small img {
    display: inline;
    margin-left: -12.5%;
    height: 120%;
    width: 140%;
    transform: skew(15deg);
    object-fit: cover
}

@media (max-width: 60em) {
    .map_marker {
        font: 0.75em/0.75em 'wrc_clean';
        padding: 0.125em;
        font-weight: bolder;
        width: 4em;
        height: 4em;
        background-image: url(../icons/2020/location_pin.svg);
        background-repeat: no-repeat;
        background-size: cover;
        text-transform: uppercase;
        transform: scale(1);
        transition: transform 0.5s ease-in-out;
        position: relative;
        cursor: pointer;
    }
}
@media (min-width: 60em) {
    .map_marker {
        font: 1.0em/1.0em 'wrc_clean';
        font-weight: bolder;
        width: 4em;
        height: 4em;
        background-image: url(../icons/2020/location_pin.svg);
        background-repeat: no-repeat;
        background-size: cover;
        text-transform: uppercase;
        transform: scale(1);
        transition: transform 0.5s ease-in-out;
        position: relative;
        cursor: pointer;
    }
}

.map_marker .marker_container {
    text-align: center;
    top: 0.55em;
    position: relative;
    display: flex;
    flex-direction: column
}

    .map_marker img {
        height: 1.3em;
        width: 1.3em;
        margin: auto;
        position: relative;
        top: 0;
    }

    .map_marker:hover {
        transform: scale(1.1);
    }

    /* fahrer & stageauswahl */
    .sidepanel {
        /* background-image: linear-gradient(-75deg, #013A6Bff 30%, #1f2a44ff 70%); */
        background-color: #1f2a44 !important;
        /*border-radius: 15px;*/
        font: 1em/1.1em 'wrc_roman';
        /*font-weight: lighter; */
    }

        .sidepanel .panel {
            border: none !important;
            /* box-shadow: 2px 2px 2px #000; */
            /*margin: 4px;*/
        }

        .sidepanel .panel-group {
            margin-bottom: 0;
            padding-bottom: 10px;
        }

        .sidepanel .panel-body {
            padding: 5px 10px 10px 10px;
            text-transform: uppercase;
            border: none;
        }


    @media (max-width: 60em) {
        .sidepanel .face_n {
            transform: scale(1) translateX(0.1em);
            width: 24em;
            height: 75px;
            background-color: transparent !important;
            transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
        }
    }

    @media (min-width: 60em) {
        .sidepanel .face_n {
            transform: scale(1) translateX(0.1em);
            width: 31em;
            height: 95px;
            background-color: transparent !important;
            transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
        }
    }



    .sidepanel .face_n .driver_header {
        position: absolute;
        top: 0;
        left: 5%;
        width: 97.5%;
        height: 100%;
        text-transform: uppercase;
    }

    .sidepanel .face_n:hover {
        transform: translateX(-0.3em);
        color: white
    }

    .sidepanel .face_n .flag {
        position: relative;
        left: 0;
        width: 1.75em;
        height: 2em;
        bottom: 2px;
    }

    .sidepanel .face_n .category {
        color: #fff;
        position: relative;
        bottom: 1.25em;
        font-size: larger;
        font-weight: bolder;
        text-shadow: 1px 1px 1px black, 1px -1px 1px black, -1px 1px 1px black, -1px -1px 1px black;
    }

    .sidepanel .face_n .start_num {
        width: 1.5em;
        top: 1em;
        left: 0.85em;
        position: absolute;
        font-weight: bold;
        font-size: 1.25em;
	text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    }

    .sidepanel .unselected {
        color: #000;
    }

    .sidepanel .selected {
        color: #fff;
    }

    .sidepanel .unselected::before {
        position: absolute;
        top: 2.5%;
        left: 5%;
        z-index: -1;
        width: 90%;
        height: 95%;
        border: 1px solid #fc4c02;
        background-color: white !important;
        background-image: url('../icons/2020/bg-flag.png');
        background-repeat: no-repeat;
        background-size: 0%;
        background-position-x: -50%;
        content: "";
        transform: skew(-15deg);
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .sidepanel .selected::before {
        position: absolute;
        top: 2.5%;
        left: 5%;
        z-index: -1;
        width: 90%;
        height: 95%;
        border: 1px solid #fc4c02;
        background-color: white !important;
        background-image: url('../icons/2020/bg-flag.png');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position-x: 0;
        content: "";
        transform: skew(-15deg);
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .sidepanel .unselected:hover::before {
        background-size: 100%;
        background-position-x: 0;
    }

    @media (max-width: 60em) {
        .sidepanel .driver_n {
            width: 100%;
            height: 100%;
            color: #000;
            background-color: transparent !important;
            transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
            text-transform: uppercase;
            font-size: 0.85em;
        }
    }

    @media (min-width: 60em) and (max-width: 80em) {
        .sidepanel .driver_n {
            width: 100%;
            height: 100%;
            color: #000;
            background-color: transparent !important;
            transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
            text-transform: uppercase;
            font-size: 0.95em;
        }
    }

    @media (min-width: 80em) {
        .sidepanel .driver_n {
            width: 100%;
            height: 100%;
            color: #000;
            background-color: transparent !important;
            transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
            text-transform: uppercase;
            font-size: 1.1em;
        }
    }

    .sidepanel .driver_n .driver_header {
        position: absolute;
        left: 5%;
        width: 97.5%;
        height: 6em;
        line-height: 1.75em;
    }

        .sidepanel .driver_n .driver_header::before {
            content: "";
            position: absolute;
            z-index: -1;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            /*background-color: white !important;*/
            transform: skew(-15deg);
        }

        .sidepanel .driver_n .driver_header img {
        }

    .sidepanel .driver_n:hover {
        transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: scale(1.05);
        color: #fff;
    }

    .sidepanel .driver_n .content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 85%;
        width: 85%;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .sidepanel .driver_n h4 {
        text-overflow: ellipsis;
        overflow: hidden;
        width: 85%;
        left: 7.5%;
        position: relative;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .sidepanel .driver_n .clip {
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%
    }

    .sidepanel .driver_n .flag {
        position: relative;
        left: 0;
        width: 1.75em;
        height: 2em;
        bottom: 2px;
    }

    .sidepanel .driver_n .category {
        margin-left: 1em;
        color: #fc4c02;
        font-size: large;
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        font-weight: bold;
    }

    .sidepanel .driver_n:hover .category {
        color: #fff;
    }

    .sidepanel .driver_n .heading {
        filter: grayscale(0) brightness(1);
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .sidepanel .driver_n:hover .heading {
        filter: grayscale(1) brightness(4);
    }

    .sidepanel .driver_n::before {
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        top: 0.125em;
        bottom: 0.125em;
        border: 1px solid #ffffff;
        background-color: #ffffff !important;
        background-image: url('../icons/2020/bg-flag.png');
        background-repeat: no-repeat;
        background-size: 0%;
        background-position-x: -150%;
        content: "";
        transform: skew(-15deg);
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .sidepanel .driver_n:hover:before {
        border: 1px solid #fc4c02;
        background-size: 100%;
        background-position-x: 0%;
    }

    .sidepanel .channel_n_bro {
        width: 100%;
        height: 100%;
        color: white;
        background-color: transparent !important;
        transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
        text-transform: uppercase;
    }

    .sidepanel .main_header h4::before {
        content: "\0000a0\0000a0\0000a0";
        background-image: url(../icons/2020/heading-element.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: relative;
        left: 0;
        top: 3px;
    }

    .sidepanel .channel_n_bro .play_btn {
        background-image: url('../icons/2020/bg-flag-sk.png');
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 2.5em;
        height: 1.7em
    }

        .sidepanel .channel_n_bro .play_btn::after {
            font-family: "glyphicons-halflings-regular";
            color: #FFF;
            font-size: 10px;
            display: block;
            margin-bottom: 0;
            margin-top: 0;
            position: relative;
            top: 3px;
            left: 9px;
            content: "\e072";
        }

    .sidepanel .Channel {
        /* border: 1px solid #fc4c02 !important; */
    }

    .sidepanel .bg_image {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

        .sidepanel .bg_image img {
            margin: 1px;
            width: 100%;
            height: 100%;
        }

        .sidepanel .bg_image img {
            transform: scale(1);
            transition: all 2s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

            .sidepanel .bg_image img:hover {
                transform: scale(1.25);
            }


    .sidepanel .Season {
        height: 60px !important;
    }

        .sidepanel .Season.ch_selected {
            opacity: 1;
            transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
            border: 2px solid transparent !important;
            border-bottom: 2px solid #fc4c02 !important;
        }

    .sidepanel .Event {
        /* border: 1px solid #fc4c02 !important; */
    }

    .sidepanel .Session {
        /* border: 1px solid #fc4c02 !important; */
    }

    .sidepanel .Event .content {
        background-color: rgba(0,0,0,0.5) !important;
    }

    .sidepanel .Session .content {
        background-color: rgba(0,0,0,0.4) !important;
    }

    .sidepanel .ch_selected {
        transform: scale(1);
        opacity: 1;
        transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
        border: 1px solid #fc4c02 !important;
    }

    .sidepanel .ch_unselected {
        transform: scale(1);
        opacity: 1;
        transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
        color: #aaa;
        border: 1px solid transparent !important;
    }

        .sidepanel .ch_unselected:hover {
            color: #fff;
        }

    .sidepanel .ch_selected h4::before {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        border-bottom: 3px solid #fc4c02;
    }

    .sidepanel .channel_n_bro .content {
        display: inline;
        position: absolute;
        left: 0;
        right: 0;
        height: 100%;
        align-items: center;
        /*justify-content: center;*/
        white-space: normal;
        overflow-wrap: break-word;
        pointer-events: none;
    }

    .sidepanel .channel_n_bro .md-button {
        position: absolute;
        right: 5px;
        bottom: 0.25em;
        width: 3em;
        height: 2em;
    }

    .sidepanel .channel_n_bro h3 {
        background: rgba(0,0,0,0.5);
        padding: 10px;
        font-weight: bold;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
    }

    .sidepanel .channel_n_bro h4 {
        text-overflow: ellipsis;
        overflow: hidden;
        position: relative;
        white-space: normal;
        overflow-wrap: break-word;
        padding: 5px;
        margin: auto;
    }

    .sidepanel .channel_n_bro .clip {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .sidepanel .channel_n_bro .flag {
        position: relative;
        left: -25%;
        width: 25%;
        bottom: 1.5em;
    }

    .sidepanel .channel_n_bro .category {
        position: relative;
        left: 25%;
        bottom: 1em;
        font-size: larger;
    }



    .panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
        border: none;
    }

    .sidepanel .panel-group .panel {
        border-radius: 0px;
        background: none;
        /*border-radius: 15px;*/
    }

    .sidepanel .panel-heading {
        color: #fff;
        padding: 0;
        border: none;
        background: none;
    }

    .sidepanel .panel-title {
        font-size: 12px !important;
    }

    .sidepanel .md-button, .sidepanel .md-like {
        transition: background 0.3s ease;
        background: none;
        /* border-radius: 15px; */
        margin: 0;
        /* color: white; */
        color: black;
        background: white;
    }

        .sidepanel .md-button:not([disabled]):hover {
            /*background-color: rgba(252,76,2,0.5) !important; */
            background-color: rgba(252,76,2,0.0) !important;
        }

        .sidepanel .md-button:not([disabled]):focus {
            background: none;
        }

        .sidepanel .md-button:not([disabled]):active {
            background: none;
        }

    .sidepanel .md-tile-left {
        font-size: 11px;
        margin-left: 2px;
        margin-right: 2px;
        min-width: 0;
    }

        .sidepanel .md-tile-left div {
            margin: 1px;
            /*white-space: normal;*/
        }

    .sidepanel .md-tile-right img {
        margin-left: 4px;
    }

    .sidepanel .md-tile-content {
        padding-top: 0;
        padding-bottom: 0;
        padding: 0;
    }

    .drivertable {
        table-layout: fixed;
        overflow: hidden;
    }

        .drivertable td:nth-child(even) {
            height: 100%;
            width: 66% !important;
            max-width: 66% !important;
            color: #fff;
        }

        .drivertable td:nth-child(odd) {
            height: 100%;
            width: 33% !important;
            max-width: 33% !important;
            min-width: 33% !important;
            /* color: #fc4c02; */
            color: #fff;
        }

        .drivertable td div {
            padding: 4px;
            margin: 2px;
            min-height: 20px;
            white-space: normal;
            background-color: #fff !important;
            font-weight: bold;
            color: #000;
        }

    .stagetable {
        width: 100%;
        font-size: 10px;
    }

        .stagetable td:nth-child(even) {
            height: 100%;
            width: 66% !important;
            max-width: 66% !important;
            color: #fff;
        }

        .stagetable td:nth-child(odd) {
            height: 100%;
            width: 33% !important;
            max-width: 33% !important;
            min-width: 33% !important;
            color: #fc4c02;
        }

        .stagetable td div {
            padding: 4px;
            margin: 2px;
            min-height: 20px;
            white-space: normal;
            background-color: #000 !important;
        }



    /* cleanme: ab hier alte styles, kann man wenn zeit aufräumen */
    .overall-x {
        background-color: rgba(0, 0, 0, 0.8) !important;
        color: #fff;
        font: 1em/1.1em 'wrc_roman';
        border: 1px solid grey;
        position: absolute;
        top: 0.1em;
        right: 0.1em;
        width: 1.0em;
        text-align: center;
        vertical-align: middle;
        padding: 0.1em;
        cursor: pointer;
    }

    .overall-title-ajs {
        background: none;
        color: #fff;
        width: 100%;
        font: 1.2em/1.3em 'wrc_roman';
        max-height: 2em;
        text-align: center;
    }

    .overall-header-ajs {
        background: none;
        color: #fff;
        width: 100%;
        font: 1em/1.1em 'wrc_roman';
        height: 2em;
    }

    .overall-inner-ajs {
        position: relative;
        top: 40px;
        max-height: 400px;
        overflow-y: auto;
    }

    .overall-header-ajs td {
        width: 12%;
        text-align: center;
        vertical-align: middle;
    }

        .overall-header-ajs td div {
            height: 1.9em;
            background-color: rgba(0, 0, 0, 0.8) !important;
            margin-left: 3px;
            margin-right: 3px;
            padding: 1px;
            line-height: 1.9em;
        }

            .overall-header-ajs td div img {
                padding: 0 !important;
                max-height: 100%;
                max-width: 100%;
            }

    .overall-header-najs {
        background: none;
        color: #000;
        width: 100%;
        font: 0.9em/1.0em 'wrc_roman';
        font-weight: bold;
        /* height: 2em; */
        border-bottom: 1px solid #eee;
    }

        .overall-header-najs div {
            /*height: 20px;*/
            background-color: white;
            margin: 0;
            padding: 10px;
            width: 20%;
        }

        .overall-header-najs .overall-image-ajs {
            width: 4%;
            text-align: left;
            padding: 0;
            margin: auto;
        }

            .overall-header-najs .overall-image-ajs img {
                width: 100%;
                margin: auto;
                padding: 0px;
                padding-top: 0.125em;
                max-height: 20px;
                max-width: 20px;
            }


    .overall-header-img-ajs {
        height: 1.43em;
        background-color: rgba(0, 0, 0, 0.8) !important;
        padding: 10px;
    }

    .overall-bg-ajs {
        /*background-image: url('../images/thumb_app_blurred.jpg');
            background-size: 100% 100%;*/
        background: none;
        width: 95%;
        height: 95%;
        left: 2.5%;
        top: 3em;
        position: absolute;
        overflow: hidden;
        text-transform: uppercase;
    }

    .box p {
        padding: 10px;
        font: 0.85em/1.1em 'wrc_roman';
        background-color: black;
        color: #fff;
    }

    .box strong {
        font: 1em/1.2em 'wrc_roman';
        color: #fc4c02;
    }

    .ol-zoom {
        /*left: 10.25em;
        box-shadow: 4px 4px 10px #000;*/
    }

    .ol-rotate {
        /*top: 5.25em;
    right: inherit;
    left: 0.5em */
        /*left: 10.25em;
    box-shadow: 4px 4px 10px #000;*/
    }

    .ol-control button {
        /* background-color: black; */
    }

    .ol-unselectable {
        /* background-color: #000; */
    }

    .last {
    }

    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        background: url("../images/bg_select.png") no-repeat scroll right center #fc4c02;
        border: medium none;
        box-shadow: none;
        box-sizing: border-box;
        color: #eee;
        cursor: pointer;
        display: block;
        font: 11px/13px 'wrc_roman';
        margin: 0 0 6px;
        outline: medium none;
        padding: 3px 23px 3px 8px;
        text-indent: 0.01px;
        text-overflow: "";
        text-transform: uppercase;
    }
    /* openlayers logo aus */
    .ol-logo {
        visibility: hidden;
    }

    /* webkit scrollbar */
    ::-webkit-scrollbar {
        width: 12px; /* for vertical scrollbars */
        height: 12px; /* for horizontal scrollbars */
    }

    ::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(50, 50, 50, 1.0);
    }

    /* carousel */
    .rn-carousel-control.rn-carousel-control-next:before {
        content: ">";
        font-size: 45px;
        color: #fff;
    }

    .rn-carousel-control.rn-carousel-control-prev:before {
        content: "<";
        font-size: 45px;
        color: #fff;
    }

    /* box kopie ;) */

    .box .promo dl dt, .box .promo dl dd {
        color: #fff;
        float: left;
        font: 0.75em/0.9em 'wrc_roman';
        margin: 0 0 6px;
        padding: 0;
        text-transform: uppercase;
    }

    .box .promo dl dt {
        clear: both;
        width: 45%;
    }

    .box .promo dl dt, .box .promo dl dd {
        font-size: 0.7em;
        line-height: 0.85em;
    }

    .box .promo dl dd {
        color: #fc4c02;
        width: 55%;
    }

    /* videojs */
    .vjs-loading-spinner {
        display: none;
        visibility: hidden;
    }


    /* test */


    .unselected {
        transition: all 0.5s ease-in-out;
        transform: scale3d(0.75,0.75,0.75);
        /*opacity:0.5;*/
    }

    .selected {
        transition: all 0.5s ease-in-out;
        transform: scale3d(1,1,1);
        opacity: 1;
    }

    .animated {
        /*transition: all 0.5s ease-out; */
        transition: all 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .selection:not(:hover) {
        transform: scale3d(0.75,0.75,0.75);
        transition: all 0.25s ease-in-out;
    }

    .selection:hover {
        transform: scale3d(1,1,1);
        transition: all 0.25s ease-in-out;
    }

    .player_select {
        border: 2px solid #666;
        padding: 10px;
        margin: 10px;
        cursor: pointer;
        background-color: #000;
    }

        .player_select:hover, .player_selected {
            border: 2px solid #fc4c02;
            box-shadow: 0px 0px 10px 3px rgba(252,76,2,.75);
            padding: 10px;
            margin: 10px;
            background-color: #000;
        }


    .playbtn {
        font-size: 3.125em;
        display: block;
        position: absolute;
        width: 4em;
        height: 2.6em;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        background-color: #07141e;
        border: 0.1em solid #3b4249; /* border-radius */
        -webkit-border-radius: 0.8em;
        -moz-border-radius: 0.8em;
        border-radius: 0.8em; /* box-shadow */
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
    }

        .playbtn:hover {
            outline: 0;
            border-color: #fc4c02; /* IE8 needs a non-glow hover state */
            background-color: #505050;
            -webkit-box-shadow: 0 0 3em #ffffff;
            -moz-box-shadow: 0 0 3em #ffffff;
            box-shadow: 0 0 3em #ffffff; /* transition */
            -webkit-transition: all 0s;
            -moz-transition: all 0s;
            -o-transition: all 0s;
            transition: all 0s;
        }

        .playbtn:before {
            content: "\e001";
            color: #ccc;
            font-family: VideoJS;
            line-height: 2.3em;
            text-shadow: 0.05em 0.05em 0.1em #000;
            text-align: center;
            vertical-align: middle;
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
        }

    .video-js {
        width: 100% !important;
        height: 100% !important;
    }
