:root{
    --grey: rgba(29,29,31,0.7);
    --color: rgba(128, 128, 125, 0.9);
    --red: rgba(255,0,0,0.6);
    --text: #a1a1a6;
    --background: #1D1C1E;
    --header: #2D2C2E77;
    --player: var(--header);
    --divider: #3D3C3E55;
    --headertext: #FFFFFF;
    --bodytext: #969696;
    --sidenavcolour: #3b83f6;
    --sidenavgrey: #5D5C5E55;
    --sidenavhover: #1D1C1E55;
    --headerheight: 30px;
    --radius: 5px;
    --noise: url(/img/noise4.png);
    --scrollbarthumb: rgba(255,255,255,0.05);
    --scrollbarthumbhover: rgba(255,255,255,0.2);
    --switchbackground: rgba(255,255,255,0.05);
    --switchcolor: rgba(255,255,255,0.3);
    --switch: rgba(255,255,255,0.8);
    --transparent: #00000000;

}

.switch {
    position: relative;
    display: inline-block;
    margin: 0px;
    -webkit-appearance: none;
    width: 70px;
    height: 250px;
    border-radius: 10px;
    background: var(--switchbackground);
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    padding: 0px;
    opacity: 0.7;
    transform: rotate(180deg);
}

.switch:hover{
    opacity: 1;
}

.panel{
    border-radius: var(--radius);
    color: var(--headertext);
    font-family: roboto, sans-serif;
    font-weight: normal;
}

.panelcenter{
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle{ 
    opacity: 0;
    width: 0;
    height: 0;
}

.homelabel{
    display: grid;
    grid-template-rows: auto min-content;
}

.togglecont{
    display: grid;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0px;
    padding: 10px;
}

.switchslide{
    margin: 5px;
    position: absolute;
    width: calc(100% - 10px);
    border-radius: 5px;
    height: 115px;
    background-color: var(--switchcolor);
    transition: .4s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

input:checked + .switchslide{
    margin: 5px;
    position: absolute;
    width: calc(100% - 10px);
    border-radius: 5px;
    height: 115px;
    background-color: var(--switch);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .4s;
    transform: translateY(125px) ;
}

p{
    padding: 0px;
    margin: 0px;
}

h2{
    margin-top: 0px;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #007aff; 
}

@font-face {
    font-family: cschoolbook;
    src: url(/fonts/CENSCBK.TTF);
}

@font-face {
    font-family: cschoolbookb;
    src: url(/fonts/SCHLBKB.TTF);
}

@font-face {
    font-family: roboto;
    src: url(/fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: robotob;
    src: url(/fonts/Roboto-Bold.ttf);
}

body{
    background-color: rgb(22, 22, 23);
    margin: 0px;
}

.click{
    cursor: pointer;
}

.name{
    display: flex;
    align-items: right;
    grid-area: name;
    height: 100%;
    font-family: roboto;
    font-size: 15px;
    padding-right: 15px;
    padding-left: 10px;
    color: white;
}

.body{
    grid-area: body;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.bodybox2{
    grid-column-start: 1;
    grid-column-end: 3;
    border-radius: 7px;
    background-color: var(--grey);
    padding: 10px;
}

@media only screen and (max-width: 840px) {
    .name{
        display: none;
    }

    .body{
        grid-template-columns: 1fr;
    }

    .bodybox2{
        grid-column-start: none;
        grid-column-end: none;
        grid-column: 1;
    }
}

.center{
    text-align: center;
}


.bold{
    font-family: robotob;
    display: inline;
}

span{
    font-family: robotob;
}

.responsecontainer{
    height: min-content;
}
 
.grid{
    grid-gap: 10px;
    display: grid;
    width: 100%;
    grid-template-areas: 'body''footer';
    grid-template-rows: min-content min-content;
    padding-bottom: 20px;
    padding-top: 72px;
}

.header{
    display: block;
    background-color: rgba(29,29,31,0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    height: 56px;
    z-index: 2;
}

.headerc{
    grid-template-columns: max-content auto max-content;
    grid-template-areas: 'logo space title';
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.content{
    max-width: 1024px;
    box-sizing: border-box;
    width: 100%;
    margin: auto;

    padding-left: 20px;
    padding-right: 20px;
}

.title{
    display: flex;
    grid-area: title;
    height: auto;
    box-sizing: border-box;
    font-family: roboto;
    font-weight: normal;
    font-size: 30px;
    align-items: center;
    color: white;
    float: right;
}

.four04{
    grid-column: 1;
    grid-row-start: 2;
    grid-row-end: 3;
    border-radius: 15px;
    background-color: var(--grey);
    height: 100%;
    font-family: roboto;
    font-weight: normal;
    font-size: 40px;
    align-items: center;
    padding: 40px 40px;
    color: white;
}

.red{
    background-image: linear-gradient(65deg,  rgba(255,0,0,0.6) 0%,  rgba(255,0,0,0.6) 65%, rgba(255,0,0,0.4) 65%) !important;
}

.red:hover{
    background-image: linear-gradient(65deg,  rgba(255,0,0,0.5) 0%, rgba(255,0,0,0.5) 65%, rgba(255,0,0,0.25) 65%) !important;
}

.green{
    background-image: linear-gradient(65deg,  rgba(0,255,0,0.5) 0%,  rgba(0,255,0,0.5) 65%, rgba(0,255,0,0.4) 65%) !important;
}

.green:hover{
    background-image: linear-gradient(65deg,  rgba(0,255,0,0.4) 0%, rgba(0,255,0,0.4) 65%, rgba(0,255,0,0.25) 65%) !important;
}

.blue{
    background-image: linear-gradient(65deg,  rgba(0,0,255,0.5) 0%,  rgba(0,0,255,0.5) 65%, rgba(0,0,255,0.4) 65%) !important;
}

.blue:hover{
    background-image: linear-gradient(65deg,  rgba(0,0,255,0.4) 0%, rgba(0,0,255,0.4) 65%, rgba(0,0,255,0.25) 65%) !important;
}

.square{
    position: relative;
}

.square:after {
    content: "";
    height: 0px;
    display: block;
    padding-bottom: 60%;
}

.squarei{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.squareh:after{
    padding-bottom: 25% !important;
}

.squarec:after{
    padding-bottom: 25% !important;
}

.whitetext{
    padding: 16px;
    position: absolute;
    bottom: 0px;
    color: white;
    font-family: roboto;
    font-size: 30px;
}

#logo{
    height: 100%;
}

.logo{
    grid-area: logo;
    height: calc(100% - 20px);
    box-sizing: border-box;
    display: grid;
    grid-template-areas: 'logoimg name';
    grid-template-columns: max-content auto;
}

.logoimg{
    margin: 0px;
    grid-area: logoimg;
    height: 36px;
    width: 36px;
}

.btitle{
    display: flex;
    grid-row: 1;
    border-radius: 7px;
    height: 50px;
    background-color: rgba(128,128,128,0.2);
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: normal;
    font-family: roboto;
    color: var(--text);
    margin-bottom: 10px;
}

.bodybox{
    border-radius: 7px;
    background-color: var(--grey);
    padding: 10px;
}

.footer{
    grid-area: footer;
    border-radius: 7px;
    background-color: var(--grey);
    padding: 15px;
    font-size: 12px;
    font-weight: normal;
    font-family: roboto;
    color: var(--color);
}

.data{
    display: grid;
    height: 25px;
    border-radius: 7px;
    width: 100%;
    grid-template-columns: 70% auto 20px;
    margin-bottom: 10px;
}

.datav{
    background-color: rgba(128,128,128,0.2);
}

.datar{
    padding: 10px;
    display: grid;
    height: auto;
    grid-gap: 10px;
    grid-template-columns: auto;
    grid-template-rows: auto 25px 25px;
    font-family: roboto;
    font-size: 18px;
    width: calc(100% - 20px);
    margin-bottom: 10px;
    border-radius: 7px;
}

.read2{
    color: red;
}

.read3{
    color: white;
}

.maa{
    background-color: var(--grey);
    border-radius: 5px;
    width: max-content;
    font-size: 15px;
    padding: 5px;
    cursor: pointer;
}

.roboto{
    font-family: roboto;
    color: var(--text);
}

.datatext{
    height: 100%;
    padding-left: 10px;
    display: flex;
    align-items: center;
    font-family: roboto;
    color: var(--text);
}

.datavalue{
    height: 100%;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: roboto;
    color: var(--text);
}

.videos{
    grid-column-start: 1;
    grid-column-end: 3;
    border-radius: 7px;
    background-color: var(--grey);
    padding: 20px 20px 10px 20px;
    overflow: hidden;
    font-family: roboto;
    color: var(--color);
    font-size: 18px;
}

.videos2{
    padding: 10px 10px 0px 10px;
}

input, select, textarea{
    border: 1px  solid var(--color);
    border-radius: 10px;
    background-color: transparent;
    color: var(--color);
    height: 80px;
    font-size: 18px;
    width: calc(100% - 20px);
    margin: 10px;
    padding: 5px;
    font-family: roboto;
}


input:focus, select:focus, textarea:focus{
    border: 1px solid red;
    background-color: transparent;
    color: var(--color);
    outline: none;
}

input[type=email], select, input[type=submit], input[type=password]{
    height: 33px;
}
