:root {
    --bg-darkprime: rgba(38,38,38,1);
}

body {
    max-height: 100vh;
    overflow-x: hidden;
    background: #ADA996; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, aliceblue); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, aliceblue); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

@font-face {
    font-family: railway;
    src: url('/fonts/raleway/Raleway-VariableFont_wght.ttf') format("opentype");
}

* {
    font-family: railway;
}

.text-shadow {
    text-shadow: 2px 2px black;
}

.font-italic {
    font-style: italic;
}

.text-line-through {
    text-decoration: line-through;
}

.overflow {
    overflow: auto;
}

.large-font {
    font-size: 25px;
}

.xxlarge-font {
    font-size: xx-large;
}

.text-purple {
    color: purple;
}

.clickable {
    cursor: pointer !important;
}

.transition {
    transition: 0.25s;
}

    .transition:hover {
        transition: 0.25s;
    }

.hoverable {
    transition: 0.25s;
}

    .hoverable:hover {
        transform: scale(1.55, 1.55);
        transition: 0.25s;
    }

/*loader*/
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid black;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.menu-icon {
    object-fit: contain;
    width: auto;
    height: 100%;
}

.flexed {
    display: flex !important;
}

.h-auto {
    height: auto !important;
}

.main-content-shadow {
    box-shadow: rgba(0, 0, 0, 0.7) 0px 3px 8px;
}

.top-navbar-shadow {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.navbar-wrapper {
    /*position:fixed;*/
    z-index: 10;
    height: auto;
}

.navbar-nav {
    left: -100%;
    background-color: white;
    min-width: calc(33vw + 6px) !important;
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    z-index: 6 !important;
}

    .navbar-nav:before {
        content: '';
        position: fixed;
        pointer-events: all;
        z-index: 3;
        background-color: rgba(0,0,0,0.4);
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
    }

    .navbar-nav .navbar-content {
        padding: 12px;
        z-index: 6;
        overflow-y: auto;
        height: 100vh;
        border-right: gold 6px solid;
    }

.main-content-header {
    top: 0;
    border-bottom: 1px gold solid;
    position: sticky !important;
    align-items: center;
    z-index: 5;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 10px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.nav-button {
    transition: 0.25s;
    outline: none !important;
    padding: 6px !important;
    border-bottom: none;
    box-shadow: none !important;
}

    .nav-button:hover {
        transition: 0.25s;
        transform: scale(1.1, 1.1);
    }

.position-fixed {
    position: fixed;
}

.img-shadow {
    -webkit-filter: drop-shadow(1px 1px 0 gray) drop-shadow(-1px -1px 0 gray);
    filter: drop-shadow(1px 1px 0 gray) drop-shadow(-1px -1px 0 gray);
}

.margin-top-navbar {
    height: 20px !important;
}

.bg-lightgray {
    background-color: rgb(213,213,213);
}

.chart-shadow {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border: 1px darkgray solid;
    transition: 0.25s;
}

    .chart-shadow:hover {
        transition: 0.25s;
        border-color: var(--bg-darkprime);
    }

.card-shadow {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.card-shadow-light {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.text-black {
    color: black;
}

.border-left-lightgray {
    border-left: lightgray 1px solid;
}

.img-fit {
    object-fit: cover;
}

.rounded-0 {
    border-radius: 0;
}

.small-font {
    font-size: small;
}

.xsmall-font {
    font-size: x-small;
}

.medium-font {
    font-size: medium;
}

.max-w-0 {
    max-width: 0;
}

.hidden {
    visibility: hidden;
}

.pointer-events-none {
    pointer-events: none;
}

.border-dashed {
    border-style: dashed !important;
}

.standard-input {
    border-radius: 0;
    border-bottom: 2px solid gray;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.text-underlined {
    text-decoration: underline;
}

.display-none {
    display: none;
}

.equal {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.bg-darkprime {
    background-color: var(--bg-darkprime);
}

.mh-100 {
    min-height: 100%;
}

.max-height-100vh {
    max-height: 100vh;
}

.link-container {
    border: 1px lightgray solid;
    background-color: white;
}

.nav-item {
    transition: .15s;
    cursor: pointer;
    margin-bottom: 0px !important;
}

    .nav-item a {
        padding: 12px !important;
    }

        .nav-item a:first-child {
            transition: .15s;
        }

            .nav-item a:first-child:hover {
                transform: scale(1.025, 1.025);
                transition: .15s;
                color: black;
            }

.selected-nav-item {
    color: black;
    border-left: solid gold 8px;
    border-top: lightgray 1px solid;
    border-bottom: lightgray 1px solid;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.start-loader {
    position: fixed;
    background-image: url(/img/logo/Logo_schwarz_transparent_RGB_1069x1024.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

    .start-loader .bg-img {
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 50%;
        opacity: 0.5;
        width: 100%;
        max-width: 700px;
        transform: translate(-50%, -50%);
        -webkit-filter: drop-shadow(0px 0px 1px lightgray) drop-shadow(0px 0px 1px lightgray) drop-shadow(0px 0px 1px lightgray) drop-shadow(0px 0px 1px lightgray);
    }

    .start-loader .lds-ripple {
        position: absolute;
        margin-left: calc(50% - 36px);
        top: calc(45% - 36px);
    }

    .start-loader .progress {
        position: absolute;
        top: 50%;
        left: 25%;
        width: 50%;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .start-loader #startLoaderStatusMessage {
        position: absolute;
        color: var(--bg-darkprime);
        width: 100%;
        text-align: center;
        top: 55%;
    }

    .start-loader .copyright {
        position: absolute;
        top: 75%;
        width: 100%;
        text-align: center;
    }

    .start-loader img {
        width: 150px;
    }

.dashboard-ribbon {
    width: 100%;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 10;
    height: auto;
    display: flex;
    justify-content: space-between;
    border: none;
    align-items: center;
}

    .dashboard-ribbon .selected-ribbon {
        background-color: white !important;
    }

        .dashboard-ribbon .selected-ribbon h5 {
            color: black !important;
        }

    .dashboard-ribbon .ribbon-item {
        padding-top: 5px;
        padding-bottom: 5px;
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: 0.25s;
    }

        .dashboard-ribbon .ribbon-item:hover {
            transition: 0.25s;
            background-color: white;
            transform: scale(1.02, 1.02);
        }

            .dashboard-ribbon .ribbon-item:hover h5 {
                color: black;
            }

        .dashboard-ribbon .ribbon-item h5 {
            margin: 0;
            color: white;
        }

.dashboard {
}

    .dashboard .chart-loader {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(255,255,255,0.8);
        top: 0;
        left: 0;
        display: none;
    }

        .dashboard .chart-loader .load-message {
            position: absolute;
            left: 0;
            width: 100%;
            text-align: center;
            top: 60%;
        }

        .dashboard .chart-loader .lds-ripple {
            position: absolute;
            left: calc(50% - 40px);
            top: calc(50% - 40px);
        }

#dashboardTemplate {
    display: none;
}

.delete-dashboard-btn {
    cursor: pointer;
    transition: 0.25s;
}

    .delete-dashboard-btn:hover {
        transition: 0.25s;
    }

#speaker-tooltip {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1.5px var(--bg-darkprime) solid;
    position: relative;
}

    #speaker-tooltip img {
        border-radius: 50%;
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    #speaker-tooltip p {
        position: absolute;
        top: 85%;
        padding-top: 4px;
        padding-bottom: 4px;
        padding-left: 3px;
        padding-right: 3px;
        width: 100%;
        text-align: center;
        font-size: small;
        color: black;
        background-color: white;
    }

#faqContent .question-container {
}

    #faqContent .question-container h5 {
        color: var(--bg-darkprime);
        font-weight: 600;
    }

/*SpeechViewModelsList*/
.speechviewmodel-list .speech {
    margin: 15px 0px;
    width: 100%;
}

    .speechviewmodel-list .speech .agenda {
        font-size: small;
        color: black;
        cursor: pointer !important;
    }

        .speechviewmodel-list .speech .agenda:hover {
            text-decoration: underline;
        }

    .speechviewmodel-list .speech .date {
        font-size: small;
    }

    .speechviewmodel-list .speech .topic {
        font-size: small;
        font-style: italic;
        padding-right: 6px;
    }

    .speechviewmodel-list .speech .text {
        font-size: small;
        border-left: 1px lightgray solid;
        padding-left: 6px;
        padding-top: 4px;
    }

    .speechviewmodel-list .speech .open-speech-btn {
        cursor: pointer;
        color: gray;
    }

/*SpeechCommentViewModelList*/
.speechcommentviewmodel-list .shout {
    position: relative;
    border-left: transparent 6px solid;
    transition: 0.25s;
    padding: 6px;
    margin-bottom: 12px;
    width: 100%;
    border-bottom: lightgray 1px dashed;
}

    .speechcommentviewmodel-list .shout:hover {
        border-left: gold 6px solid;
        border-bottom: gray 1px solid;
        background-color: lightgray;
        transition: 0.25s;
    }

    .speechcommentviewmodel-list .shout .img-speaker {
        height: 50px;
        object-fit: cover;
        width: 50px;
        border-radius: 50% 0% 50% 50%;
        border-left: gray 1px solid;
        border-bottom: gray 1px solid;
        border-top: var(--bg-darkprime) 1px solid;
    }

    .speechcommentviewmodel-list .shout .divider {
        border-left: 1px gray solid;
        height: 100%;
        width: 100%;
    }

    .speechcommentviewmodel-list .shout .name {
        color: black;
        font-size: small;
        margin: 0;
        text-align: center;
        text-decoration: underline;
    }

    .speechcommentviewmodel-list .shout .info {
        font-size: small;
        margin: 0;
        padding-left: 12px;
        width: 100%;
        padding-right: 12px;
        border-bottom: gray 1px solid;
        padding-bottom: 6px;
    }

    .speechcommentviewmodel-list .shout .sneekpeak {
        font-size: small;
        font-weight: bold;
        margin-left: 6px;
        margin-bottom: 6px;
        margin-right: 6px;
    }


    .speechcommentviewmodel-list .shout .shouter {
        text-align: right;
    }

        .speechcommentviewmodel-list .shout .shouter img {
            height: 40px;
            object-fit: cover;
            border-radius: 50% 0% 50% 50%;
            width: 40px;
        }

        .speechcommentviewmodel-list .shout .shouter p {
            font-size: small;
            margin: 0px;
            text-decoration: underline;
        }

/*pollViewModelList*/
.pollviewmodel-list {
    margin-top: 12px;
}

    .pollviewmodel-list .poll {
        padding: 8px;
        transition: 0.25s;
        margin-bottom: 12px;
    }

        .pollviewmodel-list .poll:hover {
            background-color: lightgray;
            transition: 0.25s;
        }

    .pollviewmodel-list .title {
        margin-bottom: 0;
        font-size: small;
        color: black;
        width: auto;
        cursor: pointer;
        text-decoration: underline;
    }

    .pollviewmodel-list .info {
        margin-bottom: 0;
        font-size: small;
    }

    .pollviewmodel-list .date {
        margin-bottom: 0;
        font-size: small;
    }

    .pollviewmodel-list .entry {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: small;
        border-bottom: lightgray 1px dashed;
    }

        .pollviewmodel-list .entry .name {
            font-weight: bold;
            margin-bottom: 0;
        }

        .pollviewmodel-list .entry .vote {
            font-weight: bold;
            margin-bottom: 0;
        }

/* helper popup here */
.view-helper-tooltip {
    position: absolute;
    top: 65%;
    width: 37px;
    height: 37px;
    background-color: white;
    left: calc(100% - 36px);
    z-index: 98;
    border-radius: 50% 0% 0% 50%;
    text-align: center;
    border: gray 1px solid;
    transition: 0.25s;
}

    .view-helper-tooltip:hover {
        transform: scale(1.1, 1.1);
        transition: 0.25s;
        cursor: pointer;
        background-color: white;
    }

.view-helper-video-box {
    position: absolute;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 99;
}

    .view-helper-video-box iframe {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    }

@media only screen and (max-width: 750px) {
    .view-helper-video-box iframe {
        height: 205px;
        width: 350px;
    }
}

/*Color fade animation*/
@-webkit-keyframes bgAnimation {
    0% {
        background-position: 0% 76%
    }

    50% {
        background-position: 100% 25%
    }

    100% {
        background-position: 0% 76%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 76%
    }

    50% {
        background-position: 100% 25%
    }

    100% {
        background-position: 0% 76%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 76%
    }

    50% {
        background-position: 100% 25%
    }

    100% {
        background-position: 0% 76%
    }
}

/*bg darkprime gradient*/
.bg-darkprime-gradient {
    background: linear-gradient(245deg, #ffffff, #818181, #000000);
    background-size: 600% 600%;
    -webkit-animation: bgAnimation 2s ease infinite;
    -moz-animation: bgAnimation 2s ease infinite;
    animation: bgAnimation 0s ease infinite;
}
/*end darkprime gradient*/

/* bg animation*/
/* Cool infinite background scrolling animation.
 * Twitter: @kootoopas
 */
/* Exo thin font from Google. */
@import url(https://fonts.googleapis.com/css?family=Exo:100);
/* Background data (Original source: https://subtlepatterns.com/grid-me/) */
/* Animations */
@-webkit-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

@-moz-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

@-o-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

@keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}

@-webkit-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}

@-moz-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}

@-o-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}

@keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}
/* Main styles */
.bg-anim {
    position: fixed;
    z-index: -2;
    left: 0;
    top: 0;
    pointer-events: none !important;
    height: 100%;
    width: 100%;
    color: #999;
    text-align: center;
    /* img size is 50x50 */
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABnSURBVHja7M5RDYAwDEXRDgmvEocnlrQS2SwUFST9uEfBGWs9c97nbGtDcquqiKhOImLs/UpuzVzWEi1atGjRokWLFi1atGjRokWLFi1atGjRokWLFi1af7Ukz8xWp8z8AAAA//8DAJ4LoEAAlL1nAAAAAElFTkSuQmCC") repeat 0 0;
    -webkit-animation: bg-scrolling-reverse 5.92s infinite;
    /* Safari 4+ */
    -moz-animation: bg-scrolling-reverse 5.92s infinite;
    /* Fx 5+ */
    -o-animation: bg-scrolling-reverse 5.92s infinite;
    /* Opera 12+ */
    animation: bg-scrolling-reverse 5.92s infinite;
    /* IE 10+ */
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}
/*end bg animation*/
