
*{
    box-sizing: border-box;
}

html {
}

body {
    font-family: 'Mooli', sans-serif;
    background-color: #d9ffff;
    margin: 0;
    position: relative;
    min-height: 1075px;
}

@media screen and (max-width: 606px) {
    body {
        min-height: 1075px;
    }
}

.waitloader {
    border: 12px solid rgba(211, 211, 211, 1);
    border-top: 12px solid mediumblue;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

hr {
    margin-right: 5px;
    height:1px;
    border-width:0;
    color:gray;
    background-color:#48b5e0;
}

footer {
    margin-top: auto;
    width: 100%;
    height: 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    background-color: paleturquoise;
    justify-content: space-evenly;
    z-index: 2;
}

footer a{
    color: brown;
    margin-top: 7px;
    font-size: 12px;
    text-decoration: none;
}

footer p {
    color: brown;
    margin-top: 7px;
    font-size: 12px;
}

.headerdiv {
    background-image: linear-gradient(90deg, #87cfeb, #def6ff);
    border-top: medium solid #48b5e0;
}

.headerdiv h2{
    font-family: 'Mooli', san-serif;
    text-align: center;
    color: #3636b7;

    margin: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.container {
    display: none;
    width: 90%;
    height: auto;
    top: -7%;
    position: fixed;
    transform: translate(5%, 100%);
    border: 1px solid black;
    cursor: pointer;
    z-index: 3;
}

@media screen and (min-width: 900px){
    .container{
        width: 50%;
        top: 0;
        transform: translate(50%, 50%);
    }
}

@media screen and (min-width: 1750px){
    .container{
        width: 50%;
        top: -10%;
        transform: translate(50%, 50%);
    }
}

.container img {
    width: 100%;
    height: auto;
}

.container .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 800;
    margin-top: 38%;
    cursor: pointer;
    line-height: .5;
    text-align: center;
    background-color: white;
    border: 2px solid green;
    border-radius: 12px;
}

.container .centered p {
    padding-left: 10px;
    padding-right: 10px;
}

.container .centered:hover {
    color: white;
    background-color: green;
}

.loginbar{
    font-family: Sans-Serif;
    height: 30px;
    width:100%;
    display:flex;
    background-color:paleturquoise;
    justify-content: space-between;
    line-height:3px;
}

.loginbar p, .loginbar a{
    font-size: 14px;
    color: darkblue;
}

.rightdesktop{
    height:73px;
    width:auto;
    float:right;
    margin-top:9px;
    margin-right:10px;
}

.leftdesktop{
    height:43px;
    width:auto;
    float:left;
    margin-top:2px;
    margin-left:5px;
    cursor: pointer;
    z-index: 3;
}

/* Page Content*/

.content {
    width: 76%;
    position: absolute;
    left: 12%;
    margin-top: 15px;
    z-index: 1;
}


@media screen and (min-width: 133px) {
    .content {
        width: 96%;
        position: absolute;
        left: 2%;
        z-index: 0;
    }
}

@media screen and (min-width: 733px){
    .content{
        width: 58%;
        position: absolute;
        left: 21%;
    }
}

@media screen and (min-width: 1000px){
    .content{
        width: 66%;
        position: absolute;
        left: 17%;
    }
}

@media screen and (min-width: 1375px){
    .content {
        width: 76%;
        position: absolute;
        left: 12%;
    }
}

.content p {
    position: relative;
    font-family: "Mooli", sans-serif;
    line-height: 160%;
    color: darkblue;
    font-size: 16px;
    z-index: 1;
}

@media screen and (min-width: 1000px){
    .content p {
        font-size: 18px;
    }
}

@media screen and (min-width: 1375px){
    .content p {
        font-size: 20px;
    }
}

/* Dropdown Menu */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    text-align: center;
    left: -50px;
    top: 30px;
    background-color: #b8e9fc;
    border-radius: 22px;
    min-width: 125px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: darkblue;
    margin: 10px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {color: white; background-color: #46b7e3; border-radius: 22px;}

.dropdown:hover .dropdown-content {display: block;}


/* Sidebar Div */

.side {
    color: darkblue;
    height: auto;
    width: 10%;
    padding-left: 3px;
    display: block;
    background-image: linear-gradient(0deg, #def6ff, #87cfeb);
    border-top-right-radius: 90px;
    border-bottom-right-radius: 90px;
    float: left;
    margin-bottom: 45px;
    margin-top: 5px;
    margin-right: 15px;
    position: absolute;
    z-index: 1;
}

@media screen and (min-width: 125px){
    .side{
        width: 40%;
    }
}


@media screen and (min-width: 475px){
    .side{
        width: 30%;
    }
}


@media screen and (min-width: 733px){
    .side{
        width: 20%;
    }
}

@media screen and (min-width: 1000px){
    .side{
        width: 15%;
    }
}

@media only screen and (min-width: 1375px){
    .side {
        width: 10%;
    }
}

/* Div header */
.side h3 {
    text-align: center;
    margin: 0;
    padding: 12px 0 12px 0;

}

/* Div links */
.side a {
    font-size: 14px;
    color: darkblue;
    display: block;
    padding: 12px 12px 12px 0px;
    text-align: center;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

/* Div link on hover */
.side a:hover {
    color: white;
    position: static;
    background-color: #46b7e3;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
}

.side i{
    cursor: pointer;
    margin-top: 5px;
}

/* Sidebar Div */
.rside {
    color: darkblue;
    width: 10%;
    height: auto;
    background-image: linear-gradient(180deg, #def6ff, #87cfeb);
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
    float: right;
    margin-bottom: 45px;
    margin-top: 5px;
    margin-left: 15px;
    position: absolute;
    right: 0;
    z-index: 1;
}

@media screen and (min-width: 125px){
    .rside{
        width: 40%;
    }
}


@media screen and (min-width: 475px){
    .rside{
        width: 30%;
    }
}


@media screen and (min-width: 733px){
    .rside{
        width: 20%;
    }
}

@media screen and (min-width: 1000px){
    .rside{
        width: 15%;
    }
}

@media only screen and (min-width: 1375px){
    .rside {
        width: 10%;
    }
}


/* Div header */
.rside h3 {
    text-align: center;
    padding: 20px 0 0 0;
}

.rside i{
    cursor: pointer;
    margin-top: 5px;
}

.encompass{
    text-align: center;
    padding-top: 5px;
    margin-right: 5px;
}

.encompass p{
    margin: 0px;
    padding: 5px 0px 5px 0px;
}

.encompass img{
    height: 65px;
    margin-left: 0%;
    margin-top: 0px;
    margin-bottom: 10px;
}

.encompass:hover{
    color: white;
    cursor: pointer;
    text-align: center;
    position: static;
    background-color: #46b7e3;
    border-top-right-radius: 44px;
    border-bottom-right-radius: 44px;
}

.encompass:active{

}

.rmenu{
    float: right;
    height: 25px;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.lmenu{
    float: left;
    height: 25px;
    margin-left: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.languageScreen {
    float: right;
    width: 150px;
    height: auto;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 38px;
    position: relative;
    z-index: 0;
}

@media screen and (min-width: 1000px){
    .languageScreen{
        width: 200px;
    }
}

@media only screen and (min-width: 1375px){
    .languageScreen {
        width: 250px;
    }
}

.enlargeCanvas {
    display: none;
    width: 50%;
    height: auto;
    left: 25%;
    top: 25%;
    position: absolute;
    z-index: 1;
}

@media screen and (max-width: 732px){
    .enlargeCanvas{
        width: 90%;
        left: 5%;
        height: auto;
    }
}

@media screen and (min-width: 733px) {
    .rside{display: initial}
    .side{display: initial}
}

@media screen and (max-width: 732px){
    .rside{display: none}
    .side{display: none}
}

table{
    width: 95%;
    font-family: "Mooli", sans-serif;
    color: darkblue;
    font-size: 20px;
    border: 2px solid darkblue;
    margin-left: 10px;
}

th, td {
    padding: 10px;
}

th {text-align: center;}

tr:nth-child(even) {
    background-color: #b9e7ff;
}