/*spaghetti-translation.tspserver.de CSS package*/

@font-face {
    font-family: 'ZillaSlab-Regular';
    src: url('/util/fonts/ZillaSlab-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ZillaSlab-RegularItalic';
    src: url('/util/fonts/ZillaSlab-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ZillaSlab-Light';
    src: url('/util/fonts/ZillaSlab-Light.ttf') format('truetype');
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: 'ZillaSlab-LightItcalic';
    src: url('/util/fonts/ZillaSlab-LightItalic.ttf') format('truetype');
    font-weight: lighter;
    font-style: italic;
}

@font-face {
    font-family: 'ZillaSlab-Medium';
    src: url('/util/fonts/ZillaSlab-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ZillaSlab-MediumItalic';
    src: url('/util/fonts/ZillaSlab-MediumItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ZillaSlab-SemiBold';
    src: url('/util/fonts/ZillaSlab-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ZillaSlab-SemiBoldItalic';
    src: url('/util/fonts/ZillaSlab-SemiBoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ZillaSlab-Bold';
    src: url('/util/fonts/ZillaSlab-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ZillaSlab-BoldItalic';
    src: url('/util/fonts/ZillaSlab-BoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: ZillaSlab-Light;
}

body {
    background-color: rgb(15,15,15);
}

/*Site-wide link behaviour*/

a {
    color: rgb(255,175,0);
}

a:visited {
    color: rgb(255,175,0);
}

a:hover {
    color: rgb(255,100,0);
    text-decoration: underline;
}

/*Structure DIVs*/
.titleBar {
    width: calc(100% - 204px);
    height: 80px;
    background-color: rgb(25,25,25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.titleBarSubPage {
    width: 100%;
    height: 80px;
    background-color: rgb(25,25,25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.titleBarM {
    width: 100%;
    height: 65px;
    background-color: rgb(25,25,25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navBar {
    width: calc(100% - 204px);
    height: 26px;
    background-color: rgb(25,25,25);
    border-top: 2px solid rgb(150,150,150);
    border-bottom: 2px solid rgb(150,150,150);
    position: fixed;
    top: 80px;
    left: 0px;
    z-index: 999;
}

.navBarSubPage {
    width: 100%;
    height: 26px;
    background-color: rgb(25,25,25);
    border-top: 2px solid rgb(150,150,150);
    border-bottom: 2px solid rgb(150,150,150);
    position: fixed;
    top: 80px;
    left: 0px;
    z-index: 999;
}

.navBarM {
    width: 100%;
    height: 26px;
    background-color: rgb(25,25,25);
    border-top: 2px solid rgb(150,150,150);
    border-bottom: 2px solid rgb(150,150,150);
    position: fixed;
    top: 65px;
    left: 0px;
    z-index: 999;
}

.page {
    width: 100%;
    position: absolute;
    top: 120px;
    z-index: 800;
}

.pageM {
    width: 100%;
    position: absolute;
    top: 95px;
    z-index: 800;
}

.pageLearning {
    width: 1000px;
    position: absolute;
    top: 120px;
    z-index: 800;
}

/*Non-structural Divs*/
.tableContainer {
    width: 95%;
}

.signInDiv {
    position: fixed;
    width: 200px;
    height: 106px;
    top: 0;
    right: 0;
    border: 2px solid rgb(150,150,150);
    background-color: rgb(25,25,25);
}

/*Iframe*/
.signInFrame {
    width: 0px;
    height: 0px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.signinFrame::-webkit-scrollbar {
    display: none;
}

/*Buttons and Checkmarks*/
/*Nav Bar*/
.navBarButton {
    width: 100px;
    height: 28px;
    border-right: 2px solid rgb(150,150,150);
}

.navBarButtonM {
    width: 75px;
    height: 28px;
    border-right: 2px solid rgb(150,150,150);
}

.navBarButtonNonF {
    width: 100px;
    height: 28px;
    border-right: 2px solid rgb(150,150,150);
    color: rgb(255,0,0);
    background-color: rgb(100,25,25)
}

.navBarButtonNonFM {
    width: 75px;
    height: 28px;
    border-right: 2px solid rgb(150,150,150);
    color: rgb(255,0,0);
    background-color: rgb(100,25,25)
}

.navBarButton:hover {
    background-color: rgb(50,50,50);
    height: 26px;
    top: 0px;
    cursor: pointer;
    border-bottom: 2px dotted rgb(255,175,0);
}

.navBarButton_current {
    width: 100px;
    height: 28px;
    border-right: 2px solid rgb(150,150,150);
    background-color: rgb(50,50,50)
}

.navBarButton_currentM {
    width: 75px;
    height: 28px;
    border-right: 2px solid rgb(150,150,150);
    background-color: rgb(50,50,50)
}

#nBB1 {
    position: absolute;
    left: 0px;
}

#nBB2 {
    position: absolute;
    left: 102px;
}

#nBB2M {
    position: absolute;
    left: 77px;
}

#nBB3 {
    position: absolute;
    left: 204px;
}

#nBB3M {
    position: absolute;
    left: 154px;
}

#nBB4 {
    position: absolute;
    left: 306px;
}

#nBB4M {
    position: absolute;
    left: 231px;
}

/*Cookies/LocalStorage related*/
.signInButton {
    margin: 5px;
    margin-bottom: 2.5px;
    background-color: rgb(25,25,25);
    border: 2px solid rgb(255,175,0);
    color: rgb(255,255,255);
}

.signInButton:hover {
    background-color: rgb(0,0,0);
    border: 2px solid rgb(255,100,0);
}

.signInLSCheck {
    margin: 5px;
    background-color: rgb(25,25,25);
    border: 2px solid rgb(255,175,0);
}

.signInLSCheck:hover {
    background-color: rgb(0,0,0);
    border: 2px solid rgb(255,100,0);
}

/*Text*/
/*Headers*/
.hMain {
    position: absolute;
    margin: 0;
    color: rgb(255,255,255);
    font-size: 60px;
    font-family: ZillaSlab-BoldItalic;
    left: 100px;
    top: 5px;
}

.hSec {
    margin: 5px;
    margin-top: 15px;
    color: rgb(255,255,255);
    font-size: 30px;
    font-family: ZillaSlab-Regular;
}

.hSecL {
    margin: 5px;
    color: rgb(255,255,255);
    font-size: 30px;
    font-family: ZillaSlab-Regular;
}

.hThird {
    margin: 5px;
    color: rgb(255,255,255);
    font-size: 22px;
    font-family: ZillaSlab-Light;
}

.hThirdT1 {
    margin: 5px;
    margin-left: 50px;
    color: rgb(255,255,255);
    font-size: 22px;
    font-family: ZillaSlab-Light;
}

/*Paragraphs*/
.p17 {
    margin: 5px;
    color: rgb(255,255,255);
    font-size: 17px;
}

.p12 {
    margin: 5px;
    color: rgb(255,255,255);
    font-size: 12px;
}

.p17T1 {
    margin: 5px;
    margin-left: 50px;
    color: rgb(255,255,255);
    font-size: 17px;
}

.pNBB {
    width: 95px;
    margin: 2.5px;
    margin-top: 3px;
    color: rgb(255,255,255);
    font-size: 17px;
    font-family: ZillaSlab-Medium;
    text-align: center;
}

.pNBBM {
    width: 70px;
    margin: 2.5px;
    margin-top: 5px;
    color: rgb(255,255,255);
    font-size: 14px;
    font-family: ZillaSlab-Medium;
    text-align: center;
}

.pNNB, .pNBBM {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/*Spans*/
.green {
    color: rgb(0, 255, 0);
}

.yellow {
    color: rgb(255, 212, 5);
}

.red {
    color: rgb(255,0,0);
}

/*Tables*/
/*Body*/
.standardTable {
    width: 90%;
    border: 2px solid rgb(150,150,150);
}

.standardTableM {
    width: 100%;
    border: 2px solid rgb(150,150,150);
}

/*Header Cells*/
.standardTHeader {
    width: 15%;
    background-color: rgb(50,50,50);
    color: rgb(255,255,255);
    border-left: 2px solid rgb(150,150,150);
    font-size: 17px;
    font-family: ZillaSlab-Light;
}

.standardTHeaderM {
    width: 15%;
    background-color: rgb(50,50,50);
    color: rgb(255,255,255);
    border-left: 2px solid rgb(150,150,150);
    font-size: 12px;
    font-family: ZillaSlab-Light;
}

.standardTHeaderF {
    width: 15%;
    background-color: rgb(50,50,50);
    color: rgb(255,255,255);
    font-size: 17px;
    font-family: ZillaSlab-Light;
}

.standardTHeaderFM {
    width: 15%;
    background-color: rgb(50,50,50);
    color: rgb(255,255,255);
    font-size: 12px;
    font-family: ZillaSlab-Light;
}

/*Cells*/
.standardTCell {
    width: 15%;
    color: rgb(255,255,255);
    border-left: 2px solid rgb(150,150,150);
    text-align: center;
    font-size: 17px;
    font-family: ZillaSlab-Light;
}

.standardTCellM {
    width: 15%;
    color: rgb(255,255,255);
    border-left: 2px solid rgb(150,150,150);
    text-align: center;
    font-size: 12px;
    font-family: ZillaSlab-Light;
}

/*Images*/
.tbImage {
    position: absolute;
    width: auto;
    height: 70px;
    left: 10px;
    top: 5px;
}

.tbImageM {
    position: absolute;
    width: auto;
    height: 55px;
    left: 10px;
    top: 5px;
}

.lPImg {
    width: 80%;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.lPImgHigh {
    width: 20%;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*Functional*/
.invis {
    display: none;
}

.erm {}

/*Mobile Layout*/
#loginButton {
    position: fixed;
    right: 2.5px;
    width: 25px;
    height: auto;
    z-index: 998;
}

#loginButton:hover {
    cursor: pointer;
    width: 23px;
    border: 1px solid rgb(255,100,0);
}

#userIcon {
    position: fixed;
    right: 2.5px;
    width: 25px;
    height: auto;
    z-index: 998;
}

#menuButton {
    position: fixed;
    right: 32.5px;
    width: 25px;
    height: auto;
    z-index: 998;
}

#menuButton:hover {
    cursor: pointer;
    width: 23px;
    border: 1px solid rgb(255,100,0);
}

#navMenu {
    position: fixed;
    right: 32.5px;
    top: 95px;
    width: 100px;
    border: 2px solid rgb(150,150,150);
    background-color: rgb(25,25,25);
    z-index: 1000;
}

#infoPages {
    position: absolute;
    margin: 0;
    right: 5px;
    top: 0;
    z-index: 1001;
}

/*Responsive Resizing and more*/
@media (max-width: 1000px) {
    .pageLearning { width: 100%; }
}

@media (max-width: 875px) {
    #mainHeader { font-size: 40px; margin-top: 7.5px; }
}

@media (max-width: 680px) {
    #mainHeader { font-size: 30px; margin-top: 15px; }
}

@media (max-width: 450px) {
    #mainHeader { font-size: 25px; margin-top: 12.5px; left: 85px; }
}

@media (max-width: 340px) {
    #mainHeader { font-size: 22.5px; margin-top: 12.5px; }
}

@media (max-width: 305px) {
    #mainHeader { margin-top: 0; }
}