@charset "UTF-8";
/* CSS Document */@font-face {
  font-family: FuturaMed;
  src: url("fonts/FuturaStd-Medium.otf")
}
@font-face {
  font-family: FuturaBold;
  src: url("fonts/FuturaStd-Bold.otf")
}
@font-face {
  font-family: ITCFranklinGothicStd-Book;
  src: url("fonts/ITCFranklinGothicStd-Book.otf")
}
@font-face {
  font-family: ITCFranklinGothicStd-Demi;
  src: url("fonts/ITCFranklinGothicStd-Demi.otf")
}

:root{
    --footer-height: 48px;
}

html{
    /* Entspricht im kompletten Document font-size: 1rem */
    font-size: 16px !important;
}
h1{
    font-family: FuturaMed;
    font-size: 2.8rem !important;
    color: #009CDE;
    line-height: 3.8rem !important;
    text-shadow: none !important;
}
h2{
    font-family: FuturaBold;
    font-size: 1.5rem !important;
    color: #FF6721;
    line-height: 1.0rem !important;
    text-shadow: none !important;
}
h3{
	font-family: FuturaMed;
	font-size: 1.0rem !important;
	color: #009CDE !important;
	line-height: 1.4rem !important;
	text-transform: uppercase;
    text-shadow: none !important;
}
.h3_smaller{
	font-family: FuturaMed;
	font-size: 1.2rem !important;
	color: #009CDE !important;
	line-height: 1.2rem !important;
	text-transform: uppercase;
    text-shadow: none !important;
}
hr{
    color: #54585A;
    height: 10px !important;
    text-shadow: none !important;
}
p{
    margin-bottom: 0.4rem !important;
    text-shadow: none !important;
}
b{
    font-family: ITCFranklinGothicStd-Demi;
    font-size: 1rem;
    color: #54585A;
    line-height: 1.2rem;
    text-shadow: none !important;
}

ul {
  list-style: none;
    text-shadow: none !important;
}

ul li::before {
  content: "\2022";
  color: #FF6721;
  font-weight: bold;
  font-size: larger;  
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
    text-shadow: none !important;
}

.flowtext{
    font-family: ITCFranklinGothicStd-Book;
    font-size: 1rem;
    color: #54585A;
    line-height: 1.3rem;
    font-stretch: 1.2rem;
    text-shadow: none !important;
}

body{
    background-color: white;
    text-shadow: none !important;
}
/*Navigation*/
.navContainerTopRight {
    position: fixed;
    padding-top: 1rem;
    padding-right: 1rem;
    z-index: 10;
    right: 0;
    top: 0;
}
.navContainerTopRight_left {
    padding-top: 1rem;
    padding-left: 1rem;
    z-index: 10;
    left: 0;
    top: 0;
}

.navContainerMiddleLeft {
    position: absolute;
    z-index: 10;
    margin-left: 0px;
    padding-left: 0px;
    top: 45%;
}


.chartContainer{
    /*border: grey thin solid;
    margin-left: 15%;
    margin-top: 15%;
    margin-bottom: 5%;*/
    box-sizing: content-box;
}
.footer{
    margin: 0 10 0 10;
    height: 60px;
    padding: 1rem 1rem 1rem 1rem;
    vertical-align: middle;
    font-size: 0.6rem;
    animation: fadeIn 2s 1;
    color: white;
    text-shadow: none !important;
}
.mainButtonBox {
    margin-bottom: 0.4rem;
    opacity: 0;
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px!important;
}

.opaque {
    opacity: 0;
}

.pl-6 {
    padding-left: 3.4rem !important;
}
.pl-7 {
    padding-left: 4.4rem !important;
}

.pl-8 {
    padding-left: 6rem !important;
}
.pt-6 {
    padding-top: 3.6rem !important;
}
.pt-7 {
    padding-top: 6rem !important;
}
.pt-8 {
    padding-top: 6rem !important;
}


.footerBlue {
	/*background-image: url("../images/balken.svg");
	background-repeat: repeat-x;
	background-position: bottom;
	height: var(--footer-height);
    padding: 1.2em 6em 1em 6em;*/
    height: 6%;
	color: white;
	
	font-size: 0.5rem;
    background-color: #009CDE;
	
}

.page {
    background-color: white!important;

    min-height: calc(100% - var(--footer-height)) !important;/* overwrite bootstrap*/
    height: calc(100% - var(--footer-height));
    position: fixed;
    top: 0;

    /* overflow: hidden !important; */
}
/*Chart*/
.h3_a2{ 
    font-size: 2rem;
    color: #009CDE;
    line-height: 2rem;
}

.breadcrumb_a2 {
    font-size: 0.7rem;
    font-family: FuturaMed;
    color: #54585A;
    line-height: 0.8rem;
    text-shadow: none !important;
}

.footnote {
    font-family: ITCFranklinGothicStd-Book;
    font-size: 0.5rem;
    color: #54585A;
    line-height: 0.7rem;
    margin-top: 2em;
    text-shadow: none !important;
}

.smallBlackHeader {
    font-size: 0.8rem;
    color: #54585A;
    font-family: FuturaMed;
    text-shadow: none !important;
}

.mb-6 {
    margin-bottom: 3.4rem !important;
}


/*error overlay*/
#overlay_all{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: white;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.semitransparentBG {
    background-color: rgba(255,255,255,0.9);
    position: absolute;
    z-index: 20;
    top: 1.5em;
    width: 100%;
    height: 100%;
    padding-top: 20%;
}



/* black Screen*/

#blackScreen{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,0.67);
    z-index: 200;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.playNextKapitelButton {
    margin-left: 15%;
    margin-top: 15%;
}
.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hiddenBlackScreen{
    display: none !important;
}
.posterSlidePdf_btn {
    
    background-image: url("../images/button/pdf_btn.png");
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-color:rgba(17,0,255,0.58);
    position: absolute;
    height: 30px;
    width: 30px;
    margin: 5px;
    right: 0;
    top: 0;
}

.bg {
    background-image: url("../images/HG.png");
    background-repeat: no-repeat;
    width: 100%;
}

.whiteLine {
    background-color: white;
    width: 100%;
    height: 12.5%;
    margin-top: 0.5%;
}
