﻿body {
    background: #F5F2E1;
    font-family: "Microsoft JhengHei,Arial,serif,sans-serif";
    font-size: 13px;
}


.row {
    padding: 2vh 1vw 1vh;
}

img {
    width: 100vw;
}

.lineChartIndex {
    height: 230px;
    width: 90vw;
}

.barChartIndex {
    height: 230px;
    width: 90vw;
}

.lineChart {
    height: 400px;
    width: 90vw;
}

.barChart {
    height: 650px;
    width: 90vw;
}

.chartTitle {
    font-size: x-large;
    font-weight: bold;
}

.hide {
    visibility: hidden;
}

select {
    font-size: large;
}

.large {
    font-size: large;
}

.margin-top-10 {
    margin-top: 10px;
}

@media screen and (max-width:768px) {
    .row:first-child {
        margin-top: 10vw;
    }
}

@media screen and (min-width: 768px) and (max-width:1000px) {
    body {
        font-size: 28px;
    }
}

@media screen and (min-width: 1000px) {
    body {
        font-size: 30px;
    }
}

.w3-animate-fading {
    animation: fading 10s infinite;
}

@keyframes fading {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.w3-animate-opacity {
    animation: opac 0.8s;
}

@keyframes opac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.w3-animate-top {
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.w3-animate-left {
    position: relative;
    animation: animateleft 0.4s;
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}

.w3-animate-right {
    position: relative;
    animation: animateright 0.4s;
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

.w3-animate-bottom {
    position: relative;
    animation: animatebottom 0.4s;
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

.w3-animate-zoom {
    animation: animatezoom 0.6s;
}

@keyframes animatezoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}
