
@font-face {
    font-family: "OpenSans-Light";
    src: url("/fonts/OpenSans-Light.ttf");
}

@font-face {
    font-family: "OpenSans-Regular";
    src: url("/fonts/OpenSans.ttf");
}

@font-face {
    font-family: "OpenSans-ExtraBold";
    src: url("/fonts/OpenSans-ExtraBold.ttf");
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* general */

#main-content {
    background-color: white;
    padding-top: 100px;
}


h1 {
    font-weight: normal !important;
    font-family: Arial, Helvetica, sans-serif;
}

h2 {
    font-weight: normal !important;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 30px;
    margin-bottom: 0;
}

a {
    color: #F46B0F;
    text-decoration: none;
}

input[type=text], input[type=password], textarea {
    border-style: inset;
    padding: 8px;
    font-size: 20px;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: #b8b8b8;
    background: white !important;
    outline: none;
}

input:focus, textarea:focus, select:focus {
    /* outline-color: #F46B0F; */
    border-color: transparent;
    -webkit-box-shadow: 0px 0px 2px 1px rgb(253, 101, 0);
    -moz-box-shadow: 0px 0px 2px 1px rgb(253, 101, 0);
    box-shadow: 0px 0px 2px 1px rgb(253, 101, 0);
}

.button, input[type="button"], input[type="submit"], input[type="reset"] {
    background-color: rgb(248, 134, 57);
    font-size: 20px;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-block;
    border: none;
}

.button:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
    background-color: rgb(255, 120, 31);
}

.buttonDangerous {
    background-color: #e83232;
}

.buttonDangerous:hover {
    background-color: #dd1b1b;
}

.buttonSemiDangerous {
    background-color: #a96a23;
}

.buttonSemiDangerous:hover {
    background-color: #945d1e;
}




/* checkboxes */

.customCheckbox {
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.customCheckbox:hover {
    opacity: 0.8;
}

.customCheckbox > input[type=checkbox]{
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


.customCheckbox > input[type=checkbox] + label{
    width: 24px;
    height: 24px;
    display: inline-block;
    border: 1px solid rgb(87, 87, 87);
    border-radius: 2px;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-image: none;
    cursor: pointer;
}

.customCheckbox > input[type=checkbox]:checked + label{
    background-image: url("../icon/done-24px.svg");
}

.eyeCheckbox > input[type=checkbox] + label{
    border-color: transparent;
    background-image: url("../icon/visibility_off-24px.svg");
}

.eyeCheckbox > input[type=checkbox]:checked + label{
    background-image: url("../icon/visibility-24px.svg");
}


.lockCheckbox > input[type=checkbox] + label{
    border-color: transparent;
    background-image: url("../icon/lock_open-24px.svg");
    opacity: 0.3;
    transition: 200ms linear opacity;
}

.lockCheckbox:hover > input[type=checkbox] + label{
    opacity: 0.8;
}

.lockCheckbox > input[type=checkbox]:checked + label{
    background-image: url("../icon/lock-24px.svg");
    opacity: 1;
}


/* dialog */

.dialogBackground {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.dialogBackground > .dialog {
    display: table;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30%;
}



.dialogBackground > .loadingDialog {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* homePage */

#homePage {
    width: 100%;
    height: 100%;
    max-width: 1300px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}

#homePage h1 {
    font-family: OpenSans-Light;
    text-align: center;
    text-transform: uppercase;
    color: #4a4a4a;
}

#homePage #navBar {
    position: fixed;
    z-index: 20000;
    width: 100%;
    left: 0;
    top: 0;
    transition: opacity 200ms linear;
    background: white;
    border-bottom: 1px solid rgb(168, 168, 168);
    -webkit-box-shadow: 0px 4px 22px 4px rgba(0,0,0,0.08); 
    box-shadow: 0px 4px 22px 4px rgba(0,0,0,0.08);
}

#homePage #navBar.hidden {
    opacity: 0;
    background: transparent;
}

#homePage #navBar span {
    float: right;
    color: #f0a472;
    padding: 20px;
    font-family: OpenSans-ExtraBold;
    cursor: pointer;
    transition: color 100ms linear;
}

#homePage #navBar span:hover {
    color: #f89451;
}

#homePage .headder {
    position: relative;
}

#homePage .headder img {
    width: 100%;
}

#homePage .headder::after {
    position: absolute;
    content: '';
    background-image: url("/images/cut-off.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#homePage .headder #section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
    z-index: 400;
    padding-top: 6%;
}

#homePage .seperator {
    width: 10px;
    height: 10px;
    margin: 0px auto;
    background: #F46B0F;
    position: relative;
    display: inline-block;
    border-radius: 50%;
}

#homePage .seperator::before {
    position: absolute;
    right: 5%;
    bottom: 4px;
    height: 1px;
    width: 80px;
    background: #eee;
    content: "";
    display: inline-block;
    margin-right: 20px;
}

#homePage .seperator::after {
    position: absolute;
    left: 5%;
    bottom: 4px;
    height: 1px;
    width: 80px;
    background: #eee;
    content: "";
    display: inline-block;
    margin-left: 20px;    
}

#homePage .headder #section span{
    font-size: 20px;
    font-family: OpenSans-Regular;
    opacity: 0.8;
}

#homePage .headder #section h1 {
    margin-top: 15px;
    margin-bottom: 0px;
    color: white;
    font-family: OpenSans-ExtraBold;
}

#homePage .headder #section h1 + p {
    margin-top: 5px;
}

#homePage .headder #section p{
    font-size: 18px;
    font-family: OpenSans;
    opacity: 1;
}

#homePage .headder #scrollDownButton{
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    padding: 10px;
    border-radius: 30px;
    background: #e7e8ec;
    bottom: -22px;
    left: calc( 50% - 12px );
    z-index: 1000;
    cursor: pointer;
}



.tabbar {
    margin-top: 150px;
    border: orange solid 1px;
    border-radius: 5px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.tabbar > span {
    display: inline-block;
    padding: 20px 25px;
    font-size: 1.7em;
    color: orange;
    cursor: pointer;
    transition: background 150ms linear, color 100ms linear;
}

.tabbar > span:hover,
.tabbar > span.active {
    color: white;
    background-color: orange;
}

.tabContentWrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    transition: transform 300ms ease-in-out;
}

.tabContent {
    width: 50%;
    transition: opacity linear 200ms;
}

/* .tabContent:not(.active) {
    opacity: 0;
} */


#homePage #kastenWrapper {
    margin-top: 120px;
    vertical-align: top;
}

#homePage .kasten {
    vertical-align: top;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-left: 10%;
    width: 20%;
}


#homePage .kasten img {
    position: relative;
    display: inline-block;
    padding: 30px;
    text-align: center;
    /* transition: border 200ms linear; */
    pointer-events: none;
}

#homePage .kasten::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    top: 0px;
    left: calc( 50% - 40px );
    border: 1px solid #d3d3d3;
    transition: border 200ms linear, transform 200ms linear;
    pointer-events: none;
}

#homePage .kasten:hover:after {
    border: 1px solid #ff924a;
    transform: rotate(45deg);
}

#homePage .kasten span {
    display: block;
    text-align: center;
    font-family: OpenSans-Light;
    font-size: 20px;
    margin-top: 20px;
    transition: color 200ms linear;
}

#homePage .kasten:hover span {
    color: #db7f42;
}

#homePage .kasten p::before{
    content: '';
    position: absolute;
    display: block;
    width: 40%;
    height: 2px;
    top: -30px;
    left: 30%;
    background: #919191;
}

#homePage .kasten p {
    position: relative;
    opacity: 0.4;
    margin-top: 60px;
}

#homePage .tabContent {
    margin-top: 80px;
    margin-left: 5%;
    margin-right: 5%;
}

#homePage .videoHeadding {
    font-family: OpenSans-Bold;
}

#homePage #videoContainer {
    width: 100%;
    padding-bottom: 56.25%;
    margin-left: 0%;
    margin-top: 40px;
    position: relative;
    background-color: rgb(228, 228, 228);
}

#homePage #videoIframe,
#homePage #videoContainer img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#homePage #kontaktHeadding {
    margin-top: 160px;
}

#homePage .tabContent h2 {
    color: #dc8a54;
    margin-top: 50px;
}

#homePage textarea {
    font-size: 20px;
    width: 50%;
    height: 350px;
    resize: none;
    margin-left: 25%;
    font-family: Arial, Helvetica, sans-serif;
}

#homePage #sendMailButton {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 100px;
}



@media only screen and (max-width: 1100px){

    #homePage .headder #section {
        padding-top: 5%;
    }
        
    #homePage .kasten {
        margin-left: 8%;
        width: 22%;
    }

}


@media only screen and (max-width: 1000px){

    #homePage h1 {
        font-size: 25px;
    }

    #homePage .headder img {
        display: none;
    }
    
    #homePage .headder::after {
        display: none;
    }
    
    #homePage .headder #section {
        position: static;
        color: #555;
    }
    
    #homePage .seperator {
        margin: 0px auto;
    }
    
    #homePage .seperator::before {
        background: #b5b5b5;
    }
    
    #homePage .seperator::after {
        background: #b5b5b5; 
    }
    
    #homePage .headder #section h1{
        color: black;
    }
    
    #homePage .headder #scrollDownButton{
        opacity: 0;
    }

    #homePage .headder img {
        display: none;
    }

    #homePage .kasten {
        margin-left: 25%;
        width: 50%;
        margin-bottom: 100px;
    }

    #homePage textarea {
        width: 80%;
        margin-left: 10%;
    }
}



@media only screen and (max-width: 400px){

    #homePage .kasten {
        margin-left: 10%;
        width: 80%;
        margin-bottom: 100px;
    }

}


/* login */

.index-main-content {
    padding-top: 0px !important;
    width: 100%;
}


#indexBanner > img {
    width:100%;
}

#indexH1 {
    display: inline-block;
    margin-left: 10%;
    padding-top: 200px;
    margin-top: 0;
    font-weight: bold !important;
    color: rgb(27, 27, 27);
    vertical-align: top;
}

#login_field {
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-top: calc((100vh - 400px) / 4);
}

#login_field > * {
    display: table;
}

#login_field input {
    margin-top: 10px;
}

#login_field .button {
    margin-top: 20px;
}

#login_field a {
    margin-top: 30px;
}


#login_field #checkBoxDiv {
    padding-top: 15px;
}

#login_field #checkBoxDiv .customCheckbox + label {
    padding-left: 15px;
    vertical-align: top;
}





.index-main-content footer {
    position: absolute;
    bottom: 0;
}

footer {
    width: 100%;
    background-color: #282e31;
    display: flex;
    justify-content: space-around;
	align-items: center;
}

footer > div {
    padding-top: 40px;
    padding-bottom: 40px;
}

footer > div > * {
    display: block;
    color: rgb(209, 209, 209);
    font-size: 18px;
    line-height: 24px;
    font-family: 'Open Sans', Arial, sans-serif;
}

footer > ul {
    list-style: none;
}

footer > ul > li{
    display: inline-block;
    font-size: 28px;
    padding-right: 20px;
}


footer > ul > li > a {
    color: rgb(209, 209, 209);
}

footer > ul > li::before {
    content: '▸';
    color: #F46B0F;
}

footer > ul > li:hover > a {
    color: #F46B0F;
}


@media only screen and (max-width: 1200px){

    footer > div {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    footer > div > * {
        font-size: 16px;
        line-height: 20px;
    }
    
    footer > ul > li{
        font-size: 20px;
    }
}

@media only screen and (max-height: 800px){

    footer > div {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    footer > div > * {
        font-size: 16px;
    }

    
    footer > ul > li{
        font-size: 20px;
    }

}

@media only screen and (max-width: 950px){

    footer {
        flex-direction: column;
        text-align: center;
        position: static;
        margin-top: 200px;
    }

    footer > ul {
        padding: 0;
    }

    footer > ul > li{
        display: block;
        padding: 3px;
    }

    footer > ul > li > a {
        font-size: 16px;
        color: #F46B0F;
    }

    footer > ul > li::before{
        content: '';
    }
}


/* headder */

#headder {
    width: 100%;
    box-shadow:inset 0px -2px 0px 0px #F46B0F;
    top: 0;
    position: fixed;
    margin: 0;
    background-color: white;
    z-index: 10000;
}

#headder > span {
    display: none;
}

#headder > ul {
    margin: 0;
}

#headder > ul > li > a {
    outline: none;
}

#headder > ul > li > a > span {
    display: none;
}

#headder > ul > li > a > img {
    opacity: 0.5;
}

#headder > ul > li:hover > a > img {
    opacity: 0.8;
}

#headder li {
    display: inline-block;
    list-style-type: none;
    cursor: pointer;
  }

  #headder li > a {
    display: block;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 30px;
    text-decoration: none;
    color: grey ;
    font-family: Arial, Helvetica, sans-serif;
  }

.active-header-item {
    color: rgb(46, 46, 46) !important;
    background-image: url("../icon/stroke_pointer.svg");
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
}
.active-header-item a, #headder li:hover a {
    color: rgb(46, 46, 46) !important;
}

#toggle_button {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 10px;
    right: 15px;
    display: none;
    opacity: 0.6;
    background-image: url("../icon/menu-24px.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1200px){
    #headder li > a {
        font-size: 25px;
    }
    #headder > ul > li > a > img {
        width: 22px;
    }
}

@media only screen and (max-width: 1000px){
    #headder li > a {
        font-size: 18px;
        padding-left: 15px;
        padding-right: 15px;
    }
    #headder > ul > li > a > img {
        width: 18px;
    }

}

@media only screen and (max-width: 800px){

    #headder {
        box-shadow:inset 0px -2px 0px 0px rgb(134, 134, 134);
        position: fixed;
        z-index: 9999;
    }
    
    #headder > span {
        display: block;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
        font-size: 30px;
    }

    #headder li > a {
        font-size: 25px;
        padding-left: 30px;
    }

    #headder ul {
        padding: 0;
        overflow: hidden;
        margin: 0;
        max-height: 0;
    }

    #headder ul li {
        display: block;
        border-top: 1px rgb(223, 223, 223) solid;
    }
    

    .active-header-item {
        background-image: none;
    }

    .active-header-item a, #headder li:hover a {
        color: #F46B0F !important;
    }

    #headder > ul > li > a > span {
        display: inherit;
    }
    
    #headder > ul > li > a > img {
        display: none;
    }

    #toggle_button {
        display: block;
    }

    #main-content {
        position: relative;
        padding-top: 50px;
        height: calc(100% - 50px) !important;
    }
     
}

/* News */

.news_container {
    width: 50%;
    display: table;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(226, 226, 226);
    margin-top: 60px;
    position: relative;
}

.news_container:last-of-type {
    margin-bottom: 60px;
}

.news_container > h1 {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.news_container > p {
    font-size: 22px;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}

.news_container > img {
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity linear 0.1s;
}

.news_container > img:hover {
    opacity: 0.6;
}

.editNewsDialog {
    position: relative;
    margin-top: 15% !important;
}

.editNewsDialog input[type=text] {
    display: block;
    margin-bottom: 20px;
    width: 300px;
}

.editNewsDialog textarea {
    display: block;
    margin-bottom: 30px;
    resize: none;
    width: 450px;
    font-size: 14px;
    height: 220px;
}

.editNewsDialog a {
    margin-right: 20px;
}

.editNewsDialog img {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity linear 0.1s;
}

.editNewsDialog img:hover {
    opacity: 0.8;
}

@media only screen and (max-width: 1000px){

    .news_container {
        width: 70%;
    }
     
}

@media only screen and (max-width: 700px){

    .news_container {
        width: 90%;
    }
     
}

/* Uberblick */

.uberblickContainer h1 {
    margin-top: 50px;
    margin-left: 20%;
}

#taskPage_wrapper {
    display: table;
    width: 60%;
    margin-left: 20%;
    font-size: 20px;
    margin-bottom: 50px;
}

#taskPage_wrapper > div {
    display: table-row;
}

#taskPage_wrapper > div > span {
    display: table-cell;
    padding-right: 20px;
    padding-top: 10px;
    text-align: right;
}

#taskPage_wrapper > div > span:nth-of-type(1) {
    text-align: left;
    padding-left: 20px;
}

.taskPage_wrapper_event > div > span:nth-of-type(2) {
    text-align: left !important;
    white-space: nowrap;
}

/* #taskPage_wrapper > div:nth-of-type(2n+1) > span:nth-of-type(1) {
    text-decoration: underline;
} */

#taskPage_wrapper > div:nth-last-of-type(2n+3) > span {
    padding-bottom: 20px;
    border-bottom: inset rgb(206, 206, 206) 1px;
}

#taskPage_wrapper > div:nth-of-type(2n+1) > span {
    padding-top: 20px;
}

#taskPage_wrapper > div:nth-of-type(2n) > span:nth-of-type(1) {
    width: 400px;
    padding-right: 150px;
    font-size: 16px;
    /* padding-left: 30px; */
    /* color: rgb(102, 102, 102); */
}

#taskHeadding {
    position: relative;
    width: 60%;
}

#taskHeadding > .customSelect {
    position: absolute !important;
    top: 0px;
    right: 10px;
}


.ubersichtPager {
    font-size: 20px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    margin-bottom: 100px;
}


@media only screen and (max-width: 1600px){
 
    #taskPage_wrapper, .uberblickContainer h1 {
        width: 70%;
        margin-left: 15%;
    }
     
    #taskHeadding {
        width: 70%;
    }
}

@media only screen and (max-width: 1300px){
 
    #taskPage_wrapper, .uberblickContainer h1 {
        width: 80%;
        margin-left: 10%;
    }

    #taskHeadding {
        width: 80%;
    }
     
}

@media only screen and (max-width: 1100px){
 
    #taskPage_wrapper > div:nth-of-type(2n) > span:nth-of-type(1) {
        width: 290px;
        padding-right: 30px;
    }
     
}

@media only screen and (max-width: 800px){
 
    #taskPage_wrapper, .uberblickContainer h1 {
        width: 95%;
        margin-left: 5%;
    }

    #taskPage_wrapper > div {
        display: block;
        position: relative;
    }

    #taskPage_wrapper > div > span {
        display: block;
        margin-left: 0;
        padding-left: 0 !important;
        text-align: left;
    }

    #taskPage_wrapper > div > span:nth-of-type(1), #taskPage_wrapper > div > span:nth-of-type(2) {
        border: none !important;
    }

    #taskPage_wrapper > div:nth-of-type(2n+1) > span:nth-of-type(2) {
        position: absolute;
        right: 0;
        top: 0;
    }

    #taskPage_wrapper > div:nth-of-type(2n+1) > span:nth-of-type(3) {
        position: absolute;
        right: 0;
        top: 25px;
    }

    #taskPage_wrapper > div:nth-of-type(2n) > span:nth-of-type(2) {
        display: none;
    }

    #taskPage_wrapper > div > span > span {
        display: block;
        text-align: right;
    }
    
    #taskPage_wrapper .addressFix {
        top: 45px !important;
    }
     
}

/* Veranstaltungen */

.showInfoDialog {
    position: relative;
    margin-top: 15% !important;
    max-width: 80%;
}

.showInfoDialog img {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity linear 0.1s;
}

.showInfoDialog img:hover {
    opacity: 0.8;
}





.eventsPage h1 {
    margin-top: 80px;
    position: relative;
}

.eventsPage h1 img {
    position: absolute;
    margin-right: 0;
    margin-top: -15px;
    width: 22px;
    height: 22px;
    opacity: 0.7;
    transition: opacity 0.1s linear;
    cursor: pointer;
}

.eventsPage h1 img:hover {
    opacity: 0.9;
}

#openPriceView {
    position: absolute;
    top: 220px;
    right: 180px;
    cursor: pointer;
    font-size: 22px;
    text-decoration: underline;
    z-index: 40;
}

#notAuthorizedSpan {
    font-size: 25px;
    display: block;
    margin-top: 15px;
    margin-left: 10px;
}

#eventPage_eventSelect {
    width: 80%;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}


#eventContent {
    padding-left: 10%;
    padding-bottom: 150px;
}

/* #eventContent > h1 {
    margin-top: 40px;
} */

#filterRow {
    width: 80%;
    display: flex;
	justify-content: left;
	align-items: center;
    margin-left: 10%;
    font-size: 20px;
}

#filterOptions {
    width: 80%;
    margin-left: 10%;
    padding-left: 90px;
}

@media only screen and (max-width: 1350px){

    #openPriceView {
        right: 5%;
    }

    #eventPage_eventSelect {
        width: 90%;
        display: table;
        margin-left: auto;
        margin-right: auto;
    }
 
    #eventContent {
        padding-left: 5%;
    }

    #filterRow, #filterOptions {
        width: 90%;
        margin-left: 5%
    }
    
}

@media only screen and (max-width: 800px){

    #openPriceView {
        top: 140px;
        text-decoration: none;
        background-color: rgba(232, 232, 232, 0.9);
        padding: 10px;
        border-radius: 5px;
    }

    #eventPage_eventSelect > div > .staticSpan:nth-of-type(1), #eventPage_eventSelect .customSelectTableRow > span:nth-of-type(1) {
        width: 40%;
    }

    
    #eventPage_eventSelect > div > .staticSpan:nth-of-type(2), #eventPage_eventSelect .customSelectTableRow > span:nth-of-type(2) {
        width: 40%;
    }

    #eventPage_eventSelect > div > .staticSpan:nth-of-type(3), #eventPage_eventSelect .customSelectTableRow > span:nth-of-type(3) {
        display: none;
    }
    
    
}



#filterRow > span {
    padding-left: 10px;
}

#filterRow > .customSelect {
    margin-left: 30px;
}

#filterRow > .customSelect .staticSpan:nth-of-type(1) {
    color: #858585;
}

#filterRow > .customSelect .customSelectTableRow > span:nth-of-type(1) {
    color: transparent;
}

#filterRow > .customSelect:nth-of-type(1) {
    width: 270px;
}

#filterRow > .customSelect:nth-of-type(2) {
    width: 220px;
}

#filterRow > .customSelect:nth-of-type(3) {
    width: 220px;
}

#filterOptions input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

#filterOptions input[type=checkbox] + div {
    display: none;
    margin-top: 8px;
}

#filterOptions input[type=checkbox]:checked + div {
    display: block;
}


#filterOptions input[type=checkbox] + div > input {
    width: 255px;
    margin-right: 15px;
}


#eventPage_daten {
    font-size: 20px;
    padding-left: 5.8%;
}

#eventPage_daten > div {
    display: inline-block;
    width: 45%;
    margin-bottom: 20px;
}

#eventPage_daten #checkBoxWrapper {
    display: inline-block;
}

#eventPage_daten #checkBoxWrapper + span {
    vertical-align: top;
}

#eventEmployeeRights, #eventAnmeldung {
    font-size: 20px;
    padding-left: 5.8%;
}

#eventEmployeeRights > div > * {
    margin-right: 10px;
    vertical-align: top;
}

#eventEmployeeRights > div > label {
    display: inline-block;
    padding-top: 4px;
}


#eventPage_leistungsWrapper, #eventPage_eckdatenWrapper {
    margin-left: 3%;
    width: 87%;
}

#eventPage_leistungsWrapper > div, #eventPage_eckdatenWrapper > div {
    white-space: nowrap;
    display: block;
    width: 49%;
    margin-bottom: 20px;
}

#eventPage_leistungsWrapper > div > input[type=text], #eventPage_eckdatenWrapper > div > input[type=text] {
    width: 400px;
    vertical-align: top;
}


#eventPage_eckdatenWrapper > div > *:nth-child(3) {
    margin-left: 30px;
}

#eventPage_leistungsWrapper > div > .customCheckbox, #eventPage_eckdatenWrapper > div > .customCheckbox {
    margin-right: 10px;
    margin-top: 7px;
    display: inline-block;
}

#eventPage_eckdatenWrapper > div:last-of-type .customCheckbox, #eventPage_eckdatenWrapper > div:last-of-type input:nth-of-type(2) {
    opacity: 0;
}


@media only screen and (max-width: 1300px){

    /* #eventPage_leistungsWrapper > div, #eventPage_eckdatenWrapper > div {
        width: 99%;
    }     */

    
}




#eventPage_eckdaten_static {
    margin-left: 3%;
    font-size: 20px;
}

/* #eventPage_eckdaten_static > div {
    display: inline-block;
    width: 99%;
    margin-bottom: 10px;
    white-space: nowrap;
}
 */

#eventPage_eckdaten_static > tr > td {
    padding-right: 20px;
}

#eventPage_eckdaten_static > tr > td:nth-of-type(2) {
    color: rgb(68, 68, 68);
}




#eventPage_leistungsWrapper > div:last-of-type .customCheckbox {
    opacity: 0;
}

#eventPage_leistungen_static {
    width: 80%;
    margin-left: 3%;
}

#eventPage_leistungen_static > div {
    white-space: nowrap;
    font-size: 20px;
    width: 49%;
    display: inline-block;
    margin-bottom: 15px;
}

/* #eventPage_leistungen_static > div > img {
    margin-top: 5px;
} */

#eventPage_leistungen_static > div > span {
    margin-left: 10px;
    vertical-align: top;
}

#eventPage_leistungen_static > label > input {
    margin-right: 10px;
}

@media only screen and (max-width: 1024px){

    #eventPage_eckdaten_static > div, #eventPage_leistungen_static > div {
        width: 99%;
    }    

    
}


.moduleRowWrapper {
    margin-left: 3%;
}

.moduleRowWrapper > div{
    display: table;
    padding-top: 7px;
    padding-bottom: 7px;
    /* border-top: 2px solid rgb(206, 206, 206); */
}
.moduleRowWrapper > div:nth-of-type(1){
    padding-top: 0px;
    border-top: none;
}

.moduleRowWrapper > div > .customCheckbox {
    margin-right: 10px;
    margin-top: 7px;
    vertical-align: top;
}

.moduleRowWrapper > div > input[type=text] {
    margin-right: 30px;
    vertical-align: top;
}

.moduleRowWrapper > div > input[type=text]:nth-of-type(2) {
    width: 350px;
}

.moduleRowWrapper > div > .customSelect {
    width: 60px;
    display: inline-table;
}

.moduleRowWrapper > div > .customSelect > div > div > div:nth-of-type(1) span, .customSelectRed {
    color: rgb(231, 71, 71);
}

.moduleRowWrapper > div > .customSelect > div > div > div:nth-of-type(2) span, .customSelectYellow {
    color: rgb(255, 196, 0);
}

.moduleRowWrapper > div > .customSelect > div > div > div:nth-of-type(3) span, .customSelectGreen {
    color: rgb(24, 192, 24);
}

.moduleRowWrapper > div > .customSelect > div > div > div span:hover {
    background-color: rgb(221, 221, 221);
}

.moduleRowWrapper > div:last-of-type .customCheckbox, .moduleRowWrapper > div:last-of-type input:nth-of-type(3), .moduleRowWrapper > div:last-of-type .customSelect {
    opacity: 0;
}

#event_admin_moduleRowWrapper_static {
    display: table;
    margin-left: 3%;
    font-size: 20px;
    margin-right: 30px;
}

#event_admin_moduleRowWrapper_static > div {
    display: table-row;
}

#event_admin_moduleRowWrapper_static > div > span {
    display: table-cell;
    padding-right: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 2px solid rgb(206, 206, 206);
}

#event_admin_moduleRowWrapper_static > div:nth-of-type(1) > span {
    border-top: none;
}

#event_admin_moduleRowWrapper_static > div > span:last-of-type {
    padding-right: 20px;
}


@media only screen and (max-width: 550px){

    #event_admin_moduleRowWrapper_static > div > span {
        padding-right: 60px;
    }
    
}


#eventPage_taskTable {
    margin-left: 3%;
    width: 87%;
    /* margin-bottom: 120px; */
}

#eventPage_taskTable > tr {
    vertical-align: top;
}

#eventPage_taskTable > tr > td:nth-of-type(1) > .customCheckbox {
    margin-right: 5px;
    margin-top: 7px;
}

#eventPage_taskTable > tr > td:nth-of-type(3) > textarea {
    resize: none;
    width: 250px;
    font-size: 14px;
    height: 85px;
    margin-bottom: 20px;
}

#eventPage_taskTable > tr > td:nth-of-type(4) {
    position: relative;
}

#eventPage_taskTable > tr > td:nth-of-type(4) > input {
    position: relative;
    width: 130px;
    float: right;
    clear: both;
}

#eventPage_taskTable > tr > td:nth-of-type(4) > input + input {
    margin-top: 10px;
}

#eventPage_taskTable > tr > td:nth-of-type(4)::after {
    content: '';
    position: absolute;
    right: 5px;
    bottom: 35px;
    width: 24px;
    height: 24px;
    opacity: 0.4;
    background-image: url("../icon/mail_outline-24px.svg");
}

#eventPage_taskTable > tr > td:nth-of-type(5) > input {
    width: 220px;
}

#eventPage_taskTable > tr > td:nth-of-type(6) > .customCheckbox {
    margin-top:7px;
    /* margin-left: 20px; */
}

#eventPage_taskTable > tr:last-of-type .customCheckbox, #eventPage_taskTable > tr:last-of-type > td:nth-of-type(3), #eventPage_taskTable > tr:last-of-type > td:nth-of-type(4), #eventPage_taskTable > tr:last-of-type > td:nth-of-type(5) {
    opacity: 0;
}


@media only screen and (max-width: 1300px){

    #eventPage_taskTable {
        width: 93%;
    }

    #eventPage_taskTable > tr > td:nth-of-type(2) > textarea {
        width: 220px;
    }
    
}


#eventContent > h2 {
    margin-left: 0%;
    margin-bottom: 20px;
    text-decoration: underline;
}

.eventPage_taskWrapper_static {
    display: table;
    margin-left: 3%;
    font-size: 20px;
    width: 80%;
}

.eventPage_taskWrapper_static > div {
    display: table-row;
}

.eventPage_taskWrapper_static > div > span {
    display: table-cell;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(206, 206, 206);
}

.eventPage_taskWrapper_static > div:last-of-type > span {
    border-bottom: none;
}

.eventPage_taskWrapper_static > div > span:nth-of-type(2) {
    width: 300px;
}

.eventPage_taskWrapper_static > div > span:nth-of-type(3), .eventPage_taskWrapper_static > div > span:nth-of-type(4) {
    text-align: end;
    white-space: nowrap;
}

@media only screen and (max-width: 1024px){

    #eventContent > h2 {
        display: block;
        width: 80%;
        text-decoration: none;
        border-bottom: 2px solid rgb(110, 110, 110);
    }

    .eventPage_taskWrapper_static > div {
        position: relative;
        display: block;
    }

    .eventPage_taskWrapper_static > div {
        margin-bottom: 30px;
        border-bottom: 2px solid rgb(206, 206, 206);
    }

    .eventPage_taskWrapper_static > div:last-of-type {
        border-bottom: none;
    }

    .eventPage_taskWrapper_static > div > span {
        display: block;
        padding-top: 0;
        padding-bottom: 8px;
    }

    .eventPage_taskWrapper_static > div > span {
        border: none;
    }

    .eventPage_taskWrapper_static > div > span:nth-of-type(2) {
        font-size: 16px;
    }

    .eventPage_taskWrapper_static > div > span:nth-of-type(3) {
        position: absolute;
        right: 0;
        top: 0;
    }

    .eventPage_taskWrapper_static > div > span:nth-of-type(4) {
        position: absolute;
        right: 0;
        top: 25px;
    }
    
    
}



@media only screen and (max-width: 700px){

    .eventPage_taskWrapper_static > div > span:nth-of-type(2) {
        width: 220px;
    }

}










#eventPageButtonWrapper {
    /* float: right; */
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 10000;
}

#eventPageButtonWrapper > .button {
    margin-left: 30px;
}

#eventPageButtonWrapper > .dw {
    float: right;
    margin-right: 20px;
    font-size: 20px;
}


/* kostenubersicht */



.priceTable {
    text-align: right;
    width: 90%;
}

.priceTable th:first-of-type{
    position: relative;
}


.priceTable th:first-of-type > span{
    position: absolute;
    top: 0;
    left: -25px;
}

.priceTable td {
    padding-top: 10px;
    vertical-align: top;
}

.priceTable tr > th:nth-of-type(1), .priceTable tr > th:nth-of-type(2), .priceTable tr > td:nth-of-type(1), .priceTable tr > td:nth-of-type(2){
    text-align: left;
    padding-right: 40px;
}

.priceTable tr > th:nth-of-type(1){
    max-width: 300px;
}

.priceTable input {
    font-size: 14px;
    text-align: right;
    float: right;
    clear: both;
    margin-bottom: 10px;
}

.priceTable tr td > span {
    font-size: 14px;
    text-align: right;
    float: right;
    clear: both;
    margin-bottom: 10px;
    padding-right: 10px;
}

.priceTable textarea {
    font-size: 12px;
    width: 90%;
    height: 50px;
    resize: none;
    font-family: Arial, Helvetica, sans-serif;
}

.priceTable tr > td:nth-of-type(1) > input {
    width: 90%;
    text-align: left;
}


.priceTable tr > td:nth-of-type(3) > input {
    width: 60px;
}

.priceTable tr > td:nth-of-type(4) > input {
    width: 80px;
}

.priceTable tr > td:nth-of-type(5) > input {
    width: 100px;
}

.priceTable tr > td:nth-of-type(3) > input.pricetable_row_input3, .priceTable tr > td:nth-of-type(4) > input.pricetable_row_input4, .priceTable tr > td:nth-of-type(5) > input.pricetable_row_input5 {
    background-color: rgb(223, 223, 223) !important;
}

.priceTable tr > td:nth-of-type(3) > input.pricetable_row_input3x, .priceTable tr > td:nth-of-type(4) > input.pricetable_row_input4x, .priceTable tr > td:nth-of-type(5) > input.pricetable_row_input5x {
    background-color: rgb(255, 231, 200) !important;
}


.pricetable_row_span3x, .pricetable_row_span4x, .pricetable_row_span5x {
    color: rgb(211, 112, 0);
}


.priceTable tr > td > input.locked {
    background-color: #ffffff !important;
    pointer-events: none;
    border-color: #ffffff;
}

.priceTable tr > td:nth-of-type(3){
    white-space: nowrap;
    padding-left: 10px;
}

.priceTable tr > td:nth-of-type(4) {
    white-space: nowrap;
    padding-left: 10px;
}

.priceTable tr > td:nth-of-type(5) {
    white-space: nowrap;
    padding-left: 10px;
}

.priceTable tr > td:nth-of-type(1) {
    position: relative;
}

.priceTable tr > td:nth-of-type(1) > img {
    position: absolute;
    top: -10px;
    left: -30px;
}

.priceTable tr:nth-of-type(1) > td:nth-of-type(1) > img {
    top: 10px;
}

.priceTable tr > td {
    position: relative;
}

.priceTable tr > td > .lockCheckbox {
    position: absolute;
    left: 100%;
    top: 15px;
    z-index: 10;
}

.priceTable + div > img {
    position: absolute;
    top: -22px;
    left: -30px;
}

.priceTableAdder {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 200ms ease-in-out;
}

.priceTableAdder:hover {
    opacity: 0.7;
}




.priceTable + div {
    position: relative;
}

.priceTableResult {
    margin-right: 10%;
    margin-left: auto;
    margin-top: 100px;
    font-size: 18px;
}

.priceTableResult tr > th:nth-of-type(1), .priceTableResult tr > td:nth-of-type(1) {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
}

.priceTableResult tr > th:nth-of-type(2), .priceTableResult tr > td:nth-of-type(2), .priceTableResult tr > th:nth-of-type(3), .priceTableResult tr > td:nth-of-type(3) {
    text-align: right;
    padding-left: 30px;
}

.priceTableResult + div {
    width: 90%;
    border-bottom: 2px #c7c7c7 solid;
    margin-top: 20px;
    margin-bottom: 80px;
}

.kostenubersichtButtonWrapper{
    padding-bottom: 200px;
}


#price_table_gesamt {
    font-size: 20px;
    margin-left: 0;
    margin-right: 10%;
}

#price_table_gesamt td {
    padding-top: 20px;
    vertical-align: top;
}

#price_table_gesamt td span {
    display: block;
    white-space: nowrap;
    margin-bottom: 5px;
}

#price_table_gesamt tr > th:nth-of-type(2) {
    text-align: left;
    font-size: 24px;
}

#price_table_gesamt tr > th, #price_table_gesamt tr > td {
    padding-right: 30px;
}

#price_table_gesamt tr > th:nth-of-type(3), #price_table_gesamt tr > th:nth-of-type(4){
    width: 150px;
    text-align: right;
}

#price_table_gesamt tr > td:nth-of-type(3), #price_table_gesamt tr > td:nth-of-type(4){
    text-align: right;
}


#price_table_last {
    font-size: 20px;
    margin-left: auto;
    margin-right: 10%;
    margin-top: 80px;
    font-weight: bold;
}



#price_table_last tr > th, #price_table_last tr > td {
    padding-right: 30px;
}

#price_table_last tr > td:nth-of-type(2), #price_table_last tr > td:nth-of-type(3){
    width: 150px;
    text-align: right;
}

#price_table_last + div, #price_table_last + div + div {
    width: 60%;
    border-bottom: 2px #c7c7c7 solid;
    margin-top: 3px;
    float: right;
    margin-right: 10%;
}

#price_table_last + div + div {
    margin-top: 4px;
}

#kostenoverlay .button {
    /* bottom:300px; */
    float: right;
}

#kostenoverlay .button + div {
    clear: both;
    float: right;
    height: 60px;
    width: 100px;
}



@media only screen and (max-width: 800px){

    #kostenoverlay {
        width: 85%;
        padding-left: 15%;
        padding-top: 70px;
    }

    #kostenoverlay h1 {
        font-size: 30px;
    }

    #priceCloseButton {
        position: fixed;
        top: 80px;
        right: 50px;
        background-color: #d2d2d2;
        padding: 10px;
        border-radius: 30px;
    }

    .priceTable {
        text-align: left;
        margin-left: 30px;
    }

    /* .priceTable tr > th:nth-of-type(1) {
    } */

    .priceTable tr > th:nth-of-type(2), .priceTable tr > th:nth-of-type(3), .priceTable tr > th:nth-of-type(4), .priceTable tr > th:nth-of-type(5) {
        display: none;
    }

    /* .priceTable tr > th:nth-of-type(2), .priceTable tr > td:nth-of-type(2) {
        display: none;
    } */

    .priceTable > tr {
        display: block;
        padding-bottom: 20px;
    }

    .priceTable > tr:nth-of-type(n+1) {
        padding-top: 20px;
    }

    .priceTable tr > td {
        display: block;
        padding-left: 0 !important;
    }

    .priceTable tr > td:nth-of-type(1) {
        text-decoration: underline;
        font-weight: bold;
    }


    .priceTable tr > td:nth-of-type(3)::before  {
        content: "Anzahl: ";
    }

    
    .priceTable tr > td:nth-of-type(4)::before  {
        content: "Preis: ";
    }
    
    .priceTable tr > td:nth-of-type(5)::before  {
        content: "Gesamt: ";
    }



    .priceTableResult {
        margin-right: 30px;
    }
    
    .priceTableResult + div {
        width: calc( 100% - 20px);
    }


    #price_table_gesamt {
        font-size: 12px;
    }

    #price_table_gesamt tr > th:nth-of-type(1) {
        display: none;
    }

    #price_table_gesamt tr > th:nth-of-type(2) {
        padding-right: 0;
    }

    #price_table_gesamt tr > td:nth-of-type(1) {
        display: none;
    }

    #price_table_gesamt tr > td:nth-of-type(2) {
        font-size: 10px;
    }

    #price_table_gesamt tr > td:nth-of-type(3), #price_table_gesamt tr > td:nth-of-type(4) {
        white-space: nowrap;
    }

    #price_table_gesamt tr > th:nth-of-type(2) {
        font-size: 14px;
    }

    #price_table_last {
        font-size: 12px;
    }

    
    #price_table_last + div, #price_table_last + div + div {
        margin-right: 30px;
    }

    #price_table_last tr > th, #price_table_last tr > td {
        padding-right: 30px;
    }

    #price_table_last tr > td:nth-of-type(1){
        display: none;
    }

    #price_table_last tr > td:nth-of-type(2), #price_table_last tr > td:nth-of-type(3){
        width: 50%;
        text-align: right;
    }

    /* #kostenoverlay {
        padding-top: 0px;
    } */

}


/* Einstellungen */
.settingsHeadding {
    margin-left: 20%;
    margin-top: 30px;
}

#settingsUserData {
    margin-left: 25%;
    font-size: 25px;
}

#settingsUserData > div {
    padding-bottom: 15px;
}

#settingsUserData > div > span {
    display: inline-block;
    vertical-align:top;
}

#settingsUserData > div > span:first-of-type {
    width: 200px;
}

#settingsUserData > div > table {
    display: inline-block;
}

#settingsUserData > div > table td {
    padding-right: 30px;
}

#SettingsForm {
    width: 60%;
    margin-left: 25%;
}

#SettingsForm > div {
    width: 49%;
    font-size: 25px;
    display: inline-block;
    padding-bottom: 10px;
    white-space: nowrap;
}

#SettingsForm > div > .customCheckbox {
    margin-right: 10px;   
    vertical-align: middle;
}

#SettingsForm > div > label {
    vertical-align: top;
}


#SettingsForm > input[type="submit"] {
    margin-top: 20px;
    margin-left: 70%;
    margin-bottom: 40px;
}

#settingsPasswordArea {
    /* margin-left: 20%; */
}

#settingsPasswordArea h1 {
    margin-left: 20%;
}

#settingsPasswordArea input {
    margin-left: 25%;
    display: block;
    margin-bottom: 10px;
}

#settingsPasswordArea > .button {
    margin-left: 69%;
    margin-top: 20px;
    margin-bottom: 60px;
}

@media only screen and (max-width: 1200px){
 
    .settingsHeadding {
        margin-left: 5%;
    }
    
    #settingsUserData{
        margin-left: 10%;
    }

    #SettingsForm {
        width: 90%;
        margin-left: 10%;
    }

    #settingsPasswordArea h1 {
        margin-left: 5%;
    }
    
    #settingsPasswordArea input {
        margin-left: 10%;
    }

    #settingsPasswordArea > .button {
        margin-left: 75%;
    }
    
     
}

@media only screen and (max-width: 850px){


    .settingsHeadding {
        font-size: 24px;
    }
    
    #settingsUserData > div {
        font-size: 18px;
    }

    #settingsUserData > div > table {
        display: block;
        margin-left: 30px;
    }
    
    #SettingsForm {
        width: 80;
        margin-left: 10%;
    }

    #SettingsForm > div {
        width: 100%;
        font-size: 18px;
    }

    #SettingsForm > input[type="submit"] {
        margin-left: 0%;
    }

    #settingsPasswordArea > .button {
        margin-left: 10%;
    }
}


/* Kontakt */

#kontakt-info {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#kontakt-info div {
    display: flex;
    padding-left: 50px;
    padding-right: 50px;
}

#kontakt-info div img {
    height: 50px;
    opacity: 0.6;
}

#kontakt-info div span {
    padding-top: 10px;
}

#kontakt_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30%;
    margin-top: 40px;
}


#kontakt_form textarea {
    margin-top: 10px;
    resize: none;
    width: 500px;
    height: 250px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
}

#kontakt_button_senden {
    margin-top: 10px;
}

#kontakt_form #checkBoxDiv {
    padding-top: 15px;
    padding-bottom: 15px;
}

#checkBoxDiv > .customCheckbox + label {
    vertical-align: top;
    padding-left: 15px;
}

@media only screen and (max-width: 1000px){
 
    #kontakt_form {
        margin: 0 auto;
        padding-left: 0;
        width: 70%;
    }
     
}

@media only screen and (max-width: 700px){

    #kontakt-info {
        flex-direction: column;
        margin-left: 10%;
    }
    
    #kontakt-info div {
        margin-top: 10px;
        margin-left: 0;
        padding: 0;
    }
 
    #kontakt_form {
        margin: 0 auto;
        margin-left: 10%;
        width: 90%;
    }

    #kontakt_form textarea {
        width: 80%;
    }
     
}


/* admin-tools */

#adminPageMenu {
    position: absolute;
    display: inline-block;
    border-right: 2px solid rgb(170, 170, 170);
    top: 20%;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#adminPageMenu > li {
    list-style-type: none;
    display: block;
    text-align: end;
    margin-top: 15px;
    font-size: 25px;
    text-decoration: none;
    color: grey ;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.activeAdminPageItem {
    color: rgb(43, 43, 43) !important;
}


.adminPage {
    position: absolute;
    display: none;
    top: 20%;
    left: 30%;
    padding-bottom: 100px;
}

.activeAdminPage {
    display: inline-block !important;
}

.adminPage textarea {
    margin-top: 10px;
    resize: none;
    width: 500px;
    height: 250px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
}

.adminPage .button {
    margin-top: 20px;
    float: right;
}

/* admin addnews */
.adminPage_news input, .adminPage textarea {
    display: block;
}

/* admin adduser */
#adminPage_adduser > input {
    display: inline-block;
    margin-top: 15px;
}

#adminPage_adduser > input:nth-child(3) {
    margin-left: 50px;
}

/* #adminPage_adduser input:nth-child(6) {
    margin-left: 50px;
} */

#adminPage_adduser_employe_wrapper > div {
    margin-top: 20px;
    border-left: 2px solid rgb(209, 209, 209);
    padding-left: 10px;
}

#adminPage_adduser_employe_wrapper > div > .customSelect {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
}

#adminPage_adduser_employe_wrapper > div > .customSelect span:nth-of-type(1) {
    display: none;
}

#adminPage_adduser_employe_wrapper > div > input {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
    width: 200px;
    vertical-align: top;
}

#adminPage_adduser_employe_wrapper > div > input:nth-last-of-type(3) {
    display: block;
    margin-top: 20px;
}

/* #adminPage_adduser_employe_wrapper > div > input:nth-of-type(2n) {
    margin-left: 20px;
} */

/* admin edituser */
#adminPage_edituser{
    width: 50%;
}



#adminPage_edituser > .customSelect {
    top: 20px;
    right: 0;
    /* position: absolute; */
    /* display: block; */
    width: 700px;
    margin-bottom: 30px;
}

#adminPage_edituser > input[type=text] {
    margin-right: 20px;
}

#adminPage_edituser_employe_list > div {
    position: relative;
    margin-top: 20px;
    border-left: 2px solid rgb(209, 209, 209);
    padding-left: 10px;
    font-size: 20px;
}

#adminPage_edituser_employe_list > div > span {
    width: 285px;
    display: inline-block;
}

#adminPage_edituser_employe_list > div > img {
    position: absolute;
    right: 50px;
    width: 30px;
    height: 30px;
    top: 0;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 100ms ease-in-out;
}

#adminPage_edituser_employe_list > div > a {
    position: absolute;
    right: 10px;
    top: 0;
    opacity: 0.4;
    transition: opacity 100ms ease-in-out;
}

#adminPage_edituser_employe_list > div > a > img {
    width: 30px;
    height: 30px;
}

#adminPage_edituser_employe_list > div > img:hover, #adminPage_edituser_employe_list > div > a:hover {
    opacity: 0.6;
}

#adminPage_edituser_employe_wrapper > div {
    margin-top: 20px;
    border-left: 2px solid rgb(209, 209, 209);
    padding-left: 10px;
}

#adminPage_edituser_employe_wrapper > div > .customSelect {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
}

#adminPage_edituser_employe_wrapper > div > .customSelect span:nth-of-type(1) {
    display: none;
}

#adminPage_edituser_employe_wrapper > div > input {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
    vertical-align: top;
}

/* #adminPage_edituser_employe_wrapper > div > input:nth-of-type(2n) {
    margin-left: 20px;
} */

#adminPage_edituser .button {
    margin-left: 10px;
}

/* #deleteUserButton {
    position: absolute;
    top: 100%;
    right: 0;
    color: #e01717;
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 50px;
} */


@media only screen and (max-width: 1300px){
    #adminPage_edituser{
        width: 60%;
    }
}

@media only screen and (max-width: 1100px){
    #adminPage_edituser{
        width: 65%;
    }
}


.popupBackground {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 999999999999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.popup {
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    padding: 30px;
    padding-top: 50px;
    background-color: white;
    border-radius: 15px;
}

.popup img {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 100ms ease-in-out;
}

.popup img:hover {
    opacity: 0.8
}

.popup input[type=password] {
    display: block;
    margin-bottom: 10px;
}

/* admin addevent */

#adminPage_event > input[type=text] {
    display: inline-block;
}

#adminPage_event > h1 {
    display: block !important;
}

#adminPage_event > input {
    width: 250px;
    margin-right: 30px;
    margin-bottom: 20px;
}

#adminPage_event > .customSelect {
    width: 266px;
    margin-right: 30px;
    margin-bottom: 20px;
}

#adminPage_event > .button {
    margin-right: 30px;
}


#adminPage_event > label {
    font-size: 20px;
    margin-top: 15px;
    color: #2b2b2b;
}

#adminPage_event #adminPage_event_template div > span:first-of-type { 
    display: none;
}

#adminPage_event #adminPage_event_template div > div > div:nth-of-type(1), #adminPage_event #adminPage_event_template div > div > div:nth-of-type(2) { 
    font-style: italic;
}

#adminPage_event > #adminPage_event_employee {
    font-size: 20px;
}

#adminPage_event > #adminPage_event_employee > div {
    margin-left: 20px;
}

#adminPage_event > #adminPage_event_employee > div > label {
    margin-left: 10px;
    vertical-align: top;
    padding-top: 3px;
    display: inline-block;
}


/* adminPage Eckdaten/Leistungen */
.adminPage_defaultThing .singleInputRowWrapper{
    width: 581px;
}

.adminPage_defaultThing .singleInputRowWrapper > div {
    display: inline-block;
    width: 250px;
    margin-right: 40px;
    margin-bottom: 20px;
    position: relative;
}

.adminPage_defaultThing .singleInputRowWrapper > div > input {
    width: 100%;
}

.adminPage_defaultThing .button{
    margin-right: 30px; 
}

.adminPage_defaultThing2 .doubleInputRowWrapper input {
    margin-bottom: 10px;
}

.adminPage_defaultThing2 .doubleInputRowWrapper > div > input:nth-of-type(2) {
    margin-left: 20px;
}

.adminPage_defaultThing2 .doubleInputRowWrapper > div:last-of-type > input:nth-of-type(2) {
    opacity: 0;
}


#defaultKostenAdminPage h2 {
    margin-bottom: 20px;
}

#defaultKostenAdminPage .doubleInputRowWrapper {
    margin-bottom: 40px;
}

#defaultKostenAdminPage .doubleInputRowWrapper input {
    margin-bottom: 10px;
}

#defaultKostenAdminPage .doubleInputRowWrapper > div > input:nth-of-type(1) {
    margin-left: 38px;
}

#defaultKostenAdminPage .doubleInputRowWrapper > div > input:nth-of-type(2) {
    margin-left: 20px;
}
