@font-face {
    font-family: 'Century Gothic';
    src: url('CenturyGothic.woff2') format('woff2'),
        url('CenturyGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --backCol1: #151b3d;
    --backCol2: #0e1329;
    --backCol3: #131c40;
    --backCol4: #2d3558;
    --backPoint1: 33%;
    --backPoint2: 66%;
    --backAngle: 45deg;
}


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




body {
    background: black;
    padding: 0;
    margin: 0;
    font-family: 'Century Gothic';
    color: white;
}

#page {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(2,0,36);
    background: -webkit-linear-gradient(var(--backAngle), var(--backCol1) 0%, var(--backCol2) var(--backPoint1), var(--backCol3) var(--backPoint2), var(--backCol4) 100%);
    background: linear-gradient(var(--backAngle), var(--backCol1) 0%, var(--backCol2) var(--backPoint1), var(--backCol3) var(--backPoint2), var(--backCol4) 100%);
}

.backgroundImage {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.logoImage {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-repeat: no-repeat;
    background-size: contain;
}


#login {
    background: rgba(9,9,121,1);
    background: linear-gradient(42deg, rgba(21,27,61,1) 0%, rgba(14,19,41,1) 33%, rgb(19 28 64) 66%, rgba(45,53,88,1) 100%);    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}
#login::before {
    content: "";
    background-image: url(adminBackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
}
#login::after {
    content: "";
    background-image: url(logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    top: 20px;
    left: 20px;
    position: absolute;
    width: 300px;
    height: 300px;
}

.loginBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    text-align: center;
    background:#00000029;
    border: 1px solid #8080804d;
    padding: 20px 30px;
    border-radius: 5px;
    color: white;
    box-shadow: 0px 0px 5px 0px #0000007d;
    overflow-y: auto;
    max-height: 100%;
}
.loginTitle {
    color: white;
    font-size: 20px;
    padding-bottom: 20px;
}
.loginerror {
    background: #8e0000;
    color: white;
    margin-bottom: 10px;
    padding: 3px;
    border-radius: 4px;
    font-weight: bold;
}




#banner {
    background: #0000007d;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0px;
    color: white;
    display: table;
}
#banner .logo {
    padding-right: 10px;
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    width: 1%;
}
#topLogo img {
    position: relative;
    max-height: 80px;
    max-width: 400px;
    padding: 0px 10px;
}
#topLogo {
    height: 100%;
}
#banner .titleContainer {
    display: table-cell;
    vertical-align: middle;
    padding-right: 10px;
}
#banner .title {
    vertical-align: middle;
    font-size: 20px;
}
#banner .streamtitle {
    padding-top: 6px;
    vertical-align: middle;
    font-size: 15px;
}


#banner .buttons {
    display: table-cell;
    vertical-align: middle;
    width: 1%;
    white-space: nowrap;
    padding-right: 20px;
}

.callcontainer {
    position: absolute;
    top: 80px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
}
.callcontainer iframe {
    position: relative;
    width: 100%;
    height: 100%;
}