@charset "UTF-8";

/********************************************************
 *
 *             General
 *
 ********************************************************/
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 16px;
}

@font-face {
    font-family: "texgyreadventorregular";
    src: url("/fonts/texgyreadventor-regular-webfont.eot");
    src: url("/fonts/texgyreadventor-regular-webfont.eot?#iefix") format("embedded-opentype"),
    url("/fonts/texgyreadventor-regular-webfont.woff") format("woff"),
    url("/fonts/texgyreadventor-regular-webfont.ttf") format("truetype"),
    url("/fonts/texgyreadventor-regular-webfont.svg#texgyreadventorregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/MaterialIcons-Regular.eot'); /* For IE6-8 */
    src: local('/fonts/Material Icons'),
    local('/fonts/MaterialIcons-Regular'),
    url('/fonts/MaterialIcons-Regular.woff2') format('woff2'),
    url('/fonts/MaterialIcons-Regular.woff') format('woff'),
    url('/fonts/MaterialIcons-Regular.ttf') format('truetype');
}

body {
    font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
    margin:0;
    /*height:100%;*/
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
    font-size: 20px;
}

a {
    color: #000000;
    text-decoration: none;
}

h1 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.8em;
}

h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.6em;
}

h3 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.4em;
}

h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.3em;
}

h5 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.2em;
}

h6 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.1em;
}

h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
    margin-top: 0;
}

h1:first-of-type,
h2:first-of-type,
h3:first-of-type,
h4:first-of-type,
h5:first-of-type,
h6:first-of-type {
    margin-top: 0;
}

table {
    font-size: 1em;
}


/********************************************************
 *
 *             Container
 *
 ********************************************************/

#page-wrap {
    margin: auto;
    width: 100%;
    position: relative;
    /*background: url("http://www.ravens.patrickherms.de/media/images/main_bg.jpg") no-repeat center fixed;*/
    background-size: cover;

    /* Flex-Properties */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

#header {
    /*display: block;*/
    position: fixed;
    top: 0;
    left: 0;
    height: 65px;
    width: 100%;
    background: #000000;
    color: #FFFFFF;
    z-index: 999;
    transition: all 436ms ease;

    /* Flex-Properties */
    -webkit-box-flex: 0;
    -webkit-flex: none;
    flex: none;
}

@media all and (min-width: 62em) {
    /* Design: XL */
    /* min-width is 992px */

    #header:hover {
        height: 100px;
    }

}


#main {
    position: relative;
    /*margin-top: 64px;*/
    margin-left: auto;
    margin-right: auto;
    /*background-color: rgba(255, 255, 255, 0.8);*/

    /*padding: 15px 15px 15px 15px;*/
    transition: 0.2s all ease-in;

    /* Flex-Properties */
    display: flex;
    flex-direction: column;

    /*box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;*/


}

#main-gradient-container {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    margin-top: -30px;
    z-index: -1;
}

#main-gradient-left {
    flex: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
}

#main-gradient-center {
    flex: none;
    width: 1200px;
    background-color: rgba(255, 255, 255, 0.8);
}

#main-gradient-right {
    flex: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
}

#content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 15px 15px 15px;
    transition: 0.2s all ease-in;

    /* Flex-Properties */
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

#menu{
    width:250px;
    background-color:rgba(0, 0, 0, 0.6);
    position: fixed;
    top:64px;
    left:-180px;
    right:0;
    bottom:0;
    z-index: 0;
    transition: 0.2s all ease-in;
    height:auto;
}


#footer {
    display: block;
    /*height: 50px;*/
    line-height: 1.5em;
    /*text-align: right;*/
    background-color: rgba(0, 0, 0, 1);
    transition: 0.2s all ease-in;
    color: #FFFFFF;
    z-index: 1;
    padding: 0 15px;

    /* Flex-Properties */
    -webkit-box-flex: 0;
    -webkit-flex: none;
    flex: none;
}

#container-content {
    background: fixed url("http://media.krefeld-ravens.de/images/container-content-background.jpg") center/cover no-repeat;
    z-index: 1;
    padding: 0 15px;
}


.circle {
    border-radius: 50%;
}


#main-header {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #000000;
    transition: all 436ms ease;
}

#main-header:before {
    content: "";
    display: block;
    margin-top: 40%;
    transition: all 436ms ease-in;
}

#main-header-img {
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 436ms ease;
    transition-delay: 500ms;
    opacity: 0;
    background-repeat: no-repeat;
}

#main-header-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    transition: all 436ms ease;
    transition-delay: 500ms;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover !important;
    filter: blur(5px) brightness(0.5);
}

/*.small-main-header:before {*/
/*    content: "";*/
/*    display: block;*/
/*    margin-top: 30%;*/
/*}*/

/*.medium-main-header:before {*/
/*    content: "";*/
/*    display: block;*/
/*    margin-top: 40%;*/
/*}*/

/*.large-main-header:before {*/
/*    content: "";*/
/*    display: block;*/
/*    margin-top: 50%;*/
/*}*/


/*#main-title-inner {*/
/*    display: block;*/
/*    !*width: 100%;*!*/
/*    position: absolute;*/
/*    bottom: 50;*/
/*    left: 50;*/
/*    font-size: 2.5em;*/
/*    font-weight: bold;*/
/*    background: rgba(255,195,0,0.9);*/
/*    padding: 10px 20px;*/
/*}*/

/*#main-title-outer {*/
/*    width: 100%;*/
/*    font-size: 1.75em;*/
/*    font-weight: bold;*/
/*    background: rgba(255,195,0,0.9);*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

/*#main-title-inner span,*/
/*#main-title-outer span {*/
/*    width: 100%;*/
/*    margin: 0 auto;*/
/*    !*padding: 5px 10px;*!*/
/*    color: #000000;*/
/*}*/

@media all and (min-width: 62.5625em) {
    /* min-width is 1001px */
    /* LARGE */

    #main-title {
        display: block;
        /*width: 100%;*/
        position: absolute;
        bottom: 50px;
        left: 50px;
    }

}

@media all and (min-width: 40.6875em) and (max-width: 62.5em) {
    /* width is between 651px and 1000px */
    /* MEDIUM */

    #main-title {
        display: block;
        /*width: 100%;*/
        position: absolute;
        bottom: 30px;
        left: 30px;
    }

}

@media all and (max-width: 40.625em) {
    /* max-width is 650px */
    /* SMALL */

    #main-title {
        display: block;
        /*width: 100%;*/
        position: absolute;
        bottom: 30px;
        left: 30px;
    }

}


#main-header-pre-title {
    display: inline-block;
    padding: 10px 20px 0;
    background: rgba(0,0,0,0.75);
    color: #FFFFFF;
    font-size: 1.25em;
    font-weight: bold;
}

#main-header-title {
    padding: 0 20px 10px;
    background: rgba(0,0,0,0.75);
    color: #FFFFFF;
    font-size: 2.25em;
    font-weight: bold;
}

.wrapper {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}


























.section-header {
    display: flex;
    position: relative;
    color: #000000;
}

.section-header + .margin {
    margin-top: 15px;
}

.spacer + .section-header {
    margin-top: 40px;
}

.text-header {
    width: 100%;
}

.text-header h1 span i {
    margin-right: 0.25em;
}

.img-header {
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 10px solid rgba(255,195,0,0.9);
    border-bottom: 5px solid rgba(255,195,0,0.9);
}

.text-header h1 {
    display: flex;
    width: 1200px;
    margin: 0 auto;
}

.text-header h1 span {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    padding: 10px;
    background: rgba(255,195,0,0.9);
    border-top: 5px solid rgba(255,195,0,0.9);
    border-bottom: 5px solid rgba(255,195,0,0.9);
    text-align: center; 
}

.img-header h1 {
    position: absolute;
    margin: 0;
    padding: 10px;
    background: rgba(255,195,0,0.9);
}

@media all and (max-width: 46.875em) {
    /* max-width is 750px */

    .img-header:before {
        content: "";
        display: block;
        margin-top: 40%;
    }

    .img-header h1 {
        left: 0;
    }



}

@media all and (min-width: 46.9375em) {
    /* min-width is 751px */

    .img-header:before {
        content: "";
        display: block;
        margin-top: 40%;
    }

    .img-header h1 {
        left: 25px;
    }

}



.spacer {
    height: 3px;
    width: 90%;
    margin: 0 auto;
    background: rgba(255,195,0,0.8);
}

.spacer-margin {
    height: 3px;
    width: 90%;
    margin: 30px auto;
    background: rgba(255,195,0,0.8);
}

.text-links {
    white-space: nowrap;
}

.text-links i {
    color: #FFB700;
}

.sized-icon {
    width: 1.25em;
    text-align: center;
}

.external-link-icon {
    font-size: 0.75em !important;
    width: 30px;
    text-align: center;
}

.vertical-spacer {
    background: url("http://ravens.patrickherms.de/media/images/vertical-spacer.jpg") repeat-y center 0;
}









.display-none {
    display: none;
}

.input-fadeout {
    width: 0px;
    overflow: hidden;
    opacity: 0;
}

.input-faded-out {
    width: 0px;
    overflow: hidden;
    opacity: 0;
}

.input-faded-in {
    width: 190px;
    opacity: 1;
}

.input-fadein {
    width: 190px;
    overflow: hidden;
    opacity: 1;
}

.label-faded-out {
    visibility: hidden;
}

.label-faded-in {
    visibility: visible;
}

.label-fadeout {
    visibility: hidden;
}

.label-fadein {
    visibility: visible;
}


/*.display-none {*/
    /*display: none;*/
/*}*/

/*.fadeout {*/
    /*height: 0 !important;*/
    /*margin-top: 0 !important;*/
    /*overflow: hidden;*/
    /*!*transition: 0.5s all ease-in;*!*/
/*}*/

/*.faded-out {*/
    /*height: 0 !important;*/
    /*margin-top: 0 !important;*/
    /*overflow: hidden;*/
/*}*/

/*.faded-in {*/
    /*overflow: hidden;*/
    /*height: auto !important;*/
/*}*/

/*.fadein {*/
    /*height: 88px !important;*/
    /*transition: 0.5s all ease-in;*/
    /*overflow: hidden;*/
/*}*/









/* PROCESS-REPLY ==================================================================================================== */

.container-process-reply {
    border-radius: 5px;
    display: block;
    padding: 10px;
    color: #FFFFFF;
    margin-top: 10px;
}

.container-process-reply-notes {
    margin-right: 80px;
}

.container-process-reply-mark {
    float: right;
    font-size: 60px;
}

.red-bg-border {
    background: #FFB2B2;
    border: 5px solid #FF0000;
}

.green-bg-border {
    background: #B2FFB2;
    border: 5px solid #00FF00;
}
















/********************************************************
 *
 *             Site-Navigation
 *
 ********************************************************/

.site-navigation {

}

.site-navigation ul {
    display: flex;
    list-style: none;
    line-height: 2em;
    font-size: 1.25em;
    text-align: center;
    text-transform: uppercase;
}

.site-navigation ul li {
    flex: 1;
}

.site-navigation ul li a {
    display: flex;
    background: #000000;
    color: #FFC300;
    justify-content: center;
    transition: all 436ms ease;
}

.site-navigation ul li a:hover {
    background: #FFC300;
    color: #000000;
}

.site-navigation ul li a.active {
    background: #FFC300;
    color: #000000;
    font-weight: bold;
}









/********************************************************
 *
 *             Container-Menu
 *
 ********************************************************/

/*#menu ul{*/
/*margin-top:100px;*/
/*padding:0;*/
/*}*/

/*#menu li{*/
/*color:rgba(255,255,255,1);*/
/*list-style: none;*/
/*height:50px;*/
/*width:195px;*/
/*border-right:5px solid transparent;*/
/*line-height:50px;*/
/*transition: 0.3s all ease-out;*/
/*font-size:14px;*/
/*display:table;*/
/*}*/
/*#menu li:hover{*/
/*color:rgba(255,255,255,1);*/
/*border-right:5px solid #ff7317;*/
/*transition: 0.2s all ease-in;*/
/*cursor:pointer;*/
/*background-color:rgba(0,0,0,0.15);*/
/*}*/

/*#menu li i{*/
/*width:50px;*/
/*font-size: 23px;*/
/*float:right;*/
/*padding-right:7px;*/
/*vertical-align:middle;*/
/*text-align: center;*/
/*line-height:50px;*/
/*display:table-cell;*/
/*transition: 0.2s all ease-in;*/
/*}*/

/*#menu li span{*/
/*display:none;*/
/*vertical-align: middle;*/
/*text-align:left;*/
/*}*/

.menu_btn {
    position:fixed;
    width:20px;
    height:20px;
    left:15px;
    top:20px;
    right:0;
    z-index:2;
    text-decoration: none;
    font-size:20px;
    color:white;
    transition: 150ms all ease-in;
    display: inline-block;
    cursor: pointer;
}

.normal-btn {
    top:22px;
}

.small-btn {
    top:15px;
}

.bar1, .bar2, .bar3 {
    width: 20px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
    transition: 0.2s all ease-in;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}

#sidebartoggler{
    display:none;
}

#sidebartoggler:checked + #page-wrap #menu {
    left: 0;
}

#sidebartoggler:checked + #page-wrap .menu_btn {
    left: 270px;
    transition: all 436ms ease;
}

#sidebartoggler:checked + #page-wrap .menu_btn .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 3px) ;
    transform: rotate(-45deg) translate(-9px, 3px) ;
}

#sidebartoggler:checked + #page-wrap .menu_btn .bar2 {
    opacity: 0 ;
}

#sidebartoggler:checked + #page-wrap .menu_btn .bar3 {
    -webkit-transform: rotate(45deg) translate(-5px, 0px) ;
    transform: rotate(45deg) translate(-5px, 0) ;
}

#sidebartoggler:checked + #page-wrap #content {
    margin: 15px 15px 15px 265px;
    /*transition: 0.2s all ease-in;*/
}

#sidebartoggler:checked + #page-wrap #menu {
    left: 0;
    opacity: 1;
}

#sidebartoggler:checked + #page-wrap #menu span{
    display:table-cell;
    text-align:left;
    width:120px;
}

#sidebartoggler:checked + #page-wrap #menu li i{
    vertical-align:middle;
    display:table-cell;
    float:left;
    padding-left:10px;
    transition: 0.2s all ease-in;
}

#sidebartoggler:checked + #page-wrap #mobile-menu {
    width: 300px;
}

#sidebartoggler:checked + #page-wrap #mobile-menu li {
    opacity: 1;
    transition: all 436ms ease 200ms;
}





.bold {
    font-weight: bold;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


#fixed-title {
    /*display: none;*/
    position: fixed;
    top: 50px;
    width: 100%;
    background: rgba(255,165,0,0.9);
    z-index: 2;
    transition: all 500ms ease;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.fixed-title-slide-full {
    opacity: 1;
}

.fixed-title-slide-zero {
    opacity: 0;
}

#fixed-title .main-title {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
}

#fixed-title .main-header-pre-title {
    display: inline-block;
    color: #FFFFFF;
    font-size: 1.25em;
    font-weight: bold;
    border-bottom: 2px solid #FFFFFF;
}

#fixed-title .main-header-title {
    color: #FFFFFF;
    font-size: 2.25em;
    font-weight: bold;
}







/********************************************************
 *
 *             Ticket Button Overlay
 *
 ********************************************************/


#ticket-button-overlay {
    position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: 999;
}

#ticket-button-overlay a {
    padding: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
    color: white;
    background-color: #FFB700;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
}

#ticket-button-overlay a:hover {
    background-color: #FFB700;

}

#ticket-button-overlay-tooltip {
    display: none;
    position: absolute;
    right: 115px;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    font-size: 0.8em;
    background: #666666;
    color: white;
}


@media all and (max-width: 30em) {
    /* Layout: XS */
    /* max-width is 480px */

    #ticket-button-overlay a {
        height: 60px;
        width: 60px;
        font-size: 1.2em;
    }

}

@media all and (min-width: 30.0625em) and (max-width: 43.75em) {
    /* Layout: S */
    /* width is between 481px and 700px */

    #ticket-button-overlay a {
        height: 70px;
        width: 70px;
        font-size: 1.4em;
    }

}

@media all and (min-width: 43.8125em) and (max-width: 53.125em) {
    /* Layout: M */
    /* width is between 701px and 850px */

    #ticket-button-overlay a {
        height: 80px;
        width: 80px;
        font-size: 1.6em;
    }

}

@media all and (min-width: 53.1875em) and (max-width: 61.9375em) {
    /* Layout: L */
    /* width is between 851px and 991px */

    #ticket-button-overlay a {
        height: 90px;
        width: 90px;
        font-size: 1.8em;
    }

}

@media all and (min-width: 62em) {
    /* Design: XL */
    /* min-width is 992px */

    #ticket-button-overlay a {
        height: 100px;
        width: 100px;
        font-size: 2em;
    }

}





@media all and (min-width: 62.5625em) {
    /* min-width is 1001px */
    /* LARGE */

    #floating-title .main-title {
        display: block;
        max-width: 1300px;
        /*width: 100%;*/
    }

    #content-navigation {
        max-width: 1300px;
    }

    #floating-title .main-header-pre-title {
        display: inline-block;
        padding: 10px 20px 0;
        color: #000000;
        font-size: 1.25em;
        font-weight: bold;
    }

    #floating-title .main-header-title {
        padding: 0 20px 10px;
        color: #000000;
        font-size: 2.25em;
        font-weight: bold;
    }

}

@media all and (max-width: 62.5em) {
    /* max-width is 1000px */
    /* SMALL and MEDIUM */

    #floating-title .main-title {
        display: block;
        max-width: 1100px;
        /*width: 100%;*/
    }

    #content-navigation {
        max-width: 1100px;
    }

    .main-title {
        padding: 10px 15px;
    }

    #floating-title .main-header-pre-title {
        display: inline-block;
        padding: 10px 5px 0;
        font-size: 1em;
        font-weight: bold;
    }

    #floating-title .main-header-title {
        padding: 0 5px 10px;
        font-size: 2.0em;
        font-weight: bold;
    }

    #fixed-title {
        display: none;
    }


}

@media all and (min-width: 43.8125em) {
    /* Design: M & L & XL */
    /* min-width is 992px */

    #floating-title {
        margin: 0 auto;
        transform: translate(0, -50px);
    }


}

@media all and (max-width: 43.75em) {
    /* Layout: XS & S */
    /* width is between 0 and 700px */

    #floating-title {
        margin: 0 -15px;
        transform: translate(0, -10px);
    }


}



.main-title {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    background: rgba(255,195,0,1);
    border-radius: 10px;
}

.main-header-pre-title,
.main-header-title {
    width: 100%;
    max-width: 1200px;
}

.main-header-title span {
    display: flex;
    align-items: center;
}


#content-navigation {
    margin: -15px auto 0 auto;
    padding: 20px 40px 5px 40px;
    background: #000000;
    color: #FFFFFF;
    z-index: -1;
    border-radius: 0 0 15px 15px;
    font-size: 0.8em;
}


#main-header-small {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


#main-header-small-pre-title {
    display: inline-block;
    padding: 10px 20px 0;
    font-size: 1.25em;
    font-weight: bold;
    border-bottom: 2px solid #FFFFFF;
}

#main-header-small-title {
    padding: 0 20px 10px;
    font-size: 2.5em;
    font-weight: bold;
}

#header-spacer {
    height: 50px;
    width: 100%;
}


#overlay-background {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    display: none;
}

.overlay-active {
    filter: blur(5px) brightness(0.5);
}

.anchor {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}

.clearer {
    margin: 0;
    clear: both;
    border: none;
}

#homepage-livestream-embed {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
}