/* @import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap"); */
/* poppins-regular - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local(''), url('/fonts/poppins-v15-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/fonts/poppins-v15-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-700 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: local(''), url('/fonts/poppins-v15-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/fonts/poppins-v15-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-900 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    src: local(''), url('/fonts/poppins-v15-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/fonts/poppins-v15-latin-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


:root {
    --main-color: #e6b30e;
    --gray-color: #FFFFFF8C;
}

html {
    scroll-behavior: smooth;
    
}

body {
    background-color: black;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/images/party01.jpg");
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0% 50%;
    z-index: -100;
    overflow-y: scroll;
    font-size: 1rem;
}

i, .far, .fas {
    font-size: 1rem !important;
    color: black;
}

.loadingText {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    width: 70%;
    color: var(--main-color) !important;
    font-size: 2rem;
}
.lds-heart {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    transform-origin: 40px 40px;
}

    .lds-heart div {
        top: 32px;
        left: 32px;
        position: absolute;
        width: 32px;
        height: 32px;
        background: var(--main-color);
        animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    }

        .lds-heart div:after,
        .lds-heart div:before {
            content: " ";
            position: absolute;
            display: block;
            width: 32px;
            height: 32px;
            background: var(--main-color);
        }

        .lds-heart div:before {
            left: -24px;
            border-radius: 50% 0 0 50%;
        }

        .lds-heart div:after {
            top: -24px;
            border-radius: 50% 50% 0 0;
        }

@keyframes lds-heart {
    0% {
        transform: scale(0.95);
    }

    5% {
        transform: scale(1.1);
    }

    39% {
        transform: scale(0.85);
    }

    45% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(0.9);
    }
}



.gb-fulltrans {
    background-color: white;
    background-color: transparent;
    border: none;
}

.bg-trans {
    background-color: white;
    background-color: rgba(255,255,255,0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    border-right: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container1700 {
        max-width: 1650px !important;
    }
}
@media (min-width: 991px) {
    .w-75 {
        width: 75% !important;
    }

    .w-50 {
        width: 50% !important;
    }
}
@media (max-width: 990px) {
    .w-75 {
        width: 100% !important;
    }

    .w-50 {
        width: 75% !important;
    }
}



#header, #headerV {
    background-color: black;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/images/party01.jpg");
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0% 50%;

    position: relative;
}

#headerV {
    background-image: none;
    background-color: #323A45;
}

.act,
.navbar ul li a:hover {
    color: var(--main-color) !important;
    border-bottom: 1px solid var(--main-color);
}

.LinkNotActive {
    color: var(--gray-color) !important;
}

.LinkActive,
.LinkNotActive:hover
{
    color: var(--main-color) !important;
}

.sideMenuTitle {
    padding-left: -10px;
    background-color: #2c3137;
    color: var(--gray-color);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    box-shadow: rgba(0,0,0,0.1) 5px 5px;
}

.sidenav .nav-link a:hover {
    color: var(--main-color) !important;
    border-bottom: 1px solid var(--main-color);
}

.theme-text {
    color: var(--main-color) !important;
}

svg.wave {
    position: absolute;
    bottom: -70px;
}

.middle {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 80vh;
    width: 70%;
}

.middle h1 {
    font-size: 5rem;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

.form-signin-info {
    margin: auto;
}
    .form-signin .checkbox {
        font-weight: 400;
    }

    .form-signin .form-floating:focus-within {
        z-index: 2;
    }

    .form-signin input[type="email"] {
        margin-bottom: -1px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .form-signin input[type="password"] {
        margin-bottom: 10px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.downArrows {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-family: 'Georgia';
    z-index: 101;
}

.inputCard label {
    margin-top: 5px;
    margin-bottom: -1px;
    padding: 0px 15px 0px 10px;
    background-color: silver;
    border: 1px solid silver;
    border-radius: 3px 20px 0px 3px;
}

input[type=checkbox] {
    /* Double-sized Checkboxes */
    -ms-transform: scale(2); /* IE */
    -moz-transform: scale(2); /* FF */
    -webkit-transform: scale(2); /* Safari and Chrome */
    -o-transform: scale(2); /* Opera */
    padding: 0px;
    margin: 6px;
}

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@media (min-width: 991px) {
    .hrow {
        overflow: hidden;
    }

    [class*="hcol"] {
        margin-bottom: -99999px;
        padding-bottom: 99999px;
    }
}
@media (max-width: 990px) {
    .hrow {
    }

    [class*="hcol"] {
        width: 100%;
    }
}

.VvideoContainer {
    position: relative;
}

.Vvideo {
    position: relative;
}

.VvideoIcon {
    position: absolute;
    font-size: 6em;
    color: rgba(0, 0, 0, 0.5);
    top: 10px;
    left: 10px;
}

.bg-yellow{
    font-weight: bold;
    background-color: yellow;
}

.bg-yellow:read-only {
    font-weight: bold;
    background-color: yellow;
}

.onlyVerySmall{
    display: none;
}

@media (max-width: 990px) {
    .middle h1 {
        font-size: 3rem;
    }

    .container .oeanml {
        width: 100% !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .table .oeanml {
        /* width: 100% !important; */
        margin-left: 0px !important;
        margin-right: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        font-size: 0.7rem !important;
    }
    .btn .oeanml {
        font-size: 0.5rem !important;
    }

    .kontaktform {
        width: 100% !important;
        margin: 2px 0px 10px 0px !important;
    }
    .sidenav, .min-vh-100 {
        min-height: 0px !important;
        width: 100% !important;
        margin: 5px !important;
        padding: 5px !important;
    }

    @media screen and (orientation:portrait) {
        .onlyVerySmall {
            display: block;
            font-size: 0.75rem;
            color: white;
        }
    }
 }

@media (max-width: 400px) {
    .middle h1 {
        font-size: 2rem;
    }

    footer {
        font-size: 0.75rem;
    }

    .container .oeanml {
        font-size: 0.5rem;
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .oeanml thead {
        font-size: 0.3rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        /*        white-space: nowrap !important;*/
    }

    .oeanml2 td, .oeanml2 a {
        font-size: 0.3rem !important;
        white-space: nowrap !important;
        width: 30px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .erklaerung {
        font-size: 1rem !important;
    }

    .WasIstDas {
        font-size: 2rem !important;
    }
}