/*Version 2024.02.09.01*/

body {
    background: linear-gradient(white,#1e83ef 10%, white 99%);
    background-repeat: no-repeat;
    color: #000000;
    background-attachment: fixed;
    font-family: Georgia, Serif;
    padding: 0px;
    margin: 0px;
}

img {
    max-width: 100%;
}

.panel-body {
    max-width: 100%;
    overflow: auto;
}

#logo {
    max-width: 100px;
    vertical-align: middle;
}

#banner {
    width: 100%;
}

#header {
    font-size: 200%;
    font-weight: bold;
    min-height: 3em;
    color: #2f4f4f;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 1em;
    background-color: rgba(255, 255, 255, 0.25);
    border-bottom: 2px solid #D9E0E8;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 98;
}

#navigation {
    text-align: center;
}

#logging {
    text-align: left;
}

#footer {
    bottom: 0;
    color: #2f4f4f;
    text-align: center;
    z-index: 97;
}

a {
    color: #2f4f4f;
    text-decoration: none;
}

    a:hover {
        color: #2f4f4f;
        text-decoration: none;
        cursor: pointer;
    }

#subfooter {
    max-width: 100%;
    display: list-item;
    text-align: center;
    color: #2f4f4f;
    font-size: 75%;
    font-weight: lighter;
}

.hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.live {
    overflow: auto;
    margin: auto;
    text-align: center;
    max-width: 1250px;
}

.livegroup {
    overflow: auto;
    margin: auto;
    max-width: 1210px;
    color: #2f4f4f;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    grid-template-rows: auto;
	justify-items: center;
}

.liveitem {
    width: 190px;
    height: 190px;
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid #D9E0E8;
    border-radius: 20px;
    vertical-align: middle;
    margin-bottom: 4px;
    font-size: 30px;
    font-family: Arial;
    justify-content: center;
    align-items: center;
}

    .liveitem .tooltip {
        visibility: hidden;
        background-color: rgba(247, 247, 247, 0.85);
        color: #333333;
        border: 1px solid #999999;
        text-align: center;
        font-size: 0.85em;
        padding: 5px 0;
        position: absolute;
        box-shadow: 3px 3px 10px #888;
        z-index: 2;
    }

    .liveitem:hover .tooltip {
        visibility: visible;
    }

.liveitemimg {
    max-width: 100px;
    vertical-align: middle;
}

.menugroup {
    overflow: auto;
    display: inline-block;
    margin: auto;
    margin-bottom: -4px;
    color: #2f4f4f;
}

.menuitem {
    width: 120px;
    height: 120px;
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    border-radius: 20px;
    vertical-align: middle;
    margin-bottom: 4px;
    font-size: 20px;
    font-family: Arial;
    justify-content: center;
    align-items: center;
}

    .menuitem .tooltip {
        visibility: hidden;
        background-color: rgba(247, 247, 247, 0.85);
        color: #333333;
        border: 1px solid #999999;
        text-align: center;
        font-size: 0.85em;
        padding: 5px 0;
        position: absolute;
        box-shadow: 3px 3px 10px #888;
        z-index: 2;
    }

    .menuitem:hover .tooltip {
        visibility: visible;
    }

.menuitemimg {
    max-width: 80px;
    vertical-align: middle;
}

.menuitemimgsmall {
    max-width: 40px;
    vertical-align: middle;
}

.charts {
    overflow: auto;
    margin: auto;
    text-align: center;
    max-width: 1210px;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    grid-template-rows: auto;
	justify-items: center;
}

.chartitem {
    max-width: 600px;
    display: inline-block;
}

table {
    margin: 0 auto;
}

.button {
    width: 147px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid #D9E0E8;
    border-radius: 20px;
    vertical-align: middle;
    margin-bottom: 4px;
    font-size: 16px;
    font-family: Arial;
    justify-content: center;
    align-items: center;
}


/*Hamburger menu*/


#menuToggle {
    display: block;
    position: fixed;
    left: 50px;
    top: 30px;
    max-width: 1vw;
    z-index: 99;
    -webkit-user-select: none;
    user-select: none;
}

    #menuToggle input {
        display: block;
        width: 80px;
        height: 64px;
        position: absolute;
        top: -7px;
        left: -10px;
        cursor: pointer;
        opacity: 0; /* hide this */
        z-index: 2; /* and place it over the hamburger */
        -webkit-touch-callout: none;
    }

    /*
 * Just a quick hamburger
 */
    #menuToggle span {
        display: block;
        width: 40px;
        height: 6px;
        margin-bottom: 6px;
        position: relative;
        background: #2f4f4f;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 0px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
    }

        #menuToggle span:first-child {
            transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2) {
            transform-origin: 0% 100%;
        }

    /* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, 0px);
        background: #2f4f4f;
    }

        /*
 * But let's hide the middle one.
 */
        #menuToggle input:checked ~ span:nth-last-child(3) {
            opacity: 0;
            transform: rotate(0deg) scale(0.2, 0.2);
        }

        /*
 * Ohyeah and the last one should go the other direction
 */
        #menuToggle input:checked ~ span:nth-last-child(2) {
            transform: rotate(-45deg) translate(-2px, 0px);
        }

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
    /*position: absolute;
    width: 300px;*/
    position: fixed;
    /*top: 5em;*/
    left: 0;
    /*bottom: 0;*/
    /*right: 0;*/
    overflow: auto;
    /*margin: -40px 0 0 -50px;*/
    margin-top: 3em;
    /*padding: 50px;*/
    /*padding-top: 125px;*/
    color: #2f4f4f;
    font-weight: bold;
    text-align: center;
    background-color: rgba(217, 224, 232, 0.90);
    /*border: 2px solid #D9E0E8;*/
    /*border-radius: 0 20px 20px 0;*/
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    border-radius: 0 20px 20px 0;
}

    #menu li {
        padding: 10px;
        font-size: 30px;
        width: 50%;
        margin: auto;
        list-style: none;
    }

    #menu ul {
        font-weight: normal;
        border-top: 2px solid #999999;
    }

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
    transform: none;
}

#chart_month_rain {
	display: none;
}
