body {
    background-color:#F4F5EE;
    margin: 0;
    padding: 0;
    
}

a {
    text-decoration: none;
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

ul > li {
    display: inline-block;
    *display: inline;
}

#top-wrapper {
    width: 100%;
    height: 5%;
    padding: .25rem 0;
    background-color: brown;
    text-align: center;
    z-index: 9;
}

#sied-navbar {
    z-index: 10;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 100%;
    background-color: gray;
    margin: 0;
    padding: 0;
    
}

#sied-navbar ul > li {
    display: block;
    margin: 5rem auto;   
}

#main-wrapper {
    /* Tyle co szerokość side-navbar */
    margin: 0 auto;
}

#curr-station {
    font-size: 1.75rem;
}


#charts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
}

.chartbox {
    width: 35rem;
    height: 35rem;
    /* flex: 0 0 50%; */
    margin: 1rem auto;
    text-align: center;
    background-color: #FFF;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .18);

}

.chart {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 15rem;
}

#resume {
    width: 100%;
    margin-top: .5rem;
    background-color: #FFF;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .18);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-shrink: 2;
}

.dataItem{
    display: flex;
    flex-direction: row;
    justify-content: center;
    
}

.item {
    width: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

    
}

.item img {
    width: 50%;
    height: 50%;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.gauge {
    overflow: hidden;
    height: 15rem;
}

.gaugeifreame{
    height: 100%;
    width: 100%;
    align-items: center;
    display: block;
}

.hamburger {
    float: left;
    justify-content: center;
}
.phoneResumeText {
    display: none;
}

#stormMap{
    width: 100%;
    height: 100%;
}
footer{
    width: 100%;
    margin:0 1rem 0 0;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .18);
}


@media screen and (max-width: 1050px){
    .item img{
        width: 35%;
        height: 35%;
    }
    .item p{
        font-size: .95rem;
    }
}

@media screen and (max-width: 765px){
    .item img{
        width: 30%;
        height: 30%;
    }
    .item p{
        font-size: .70rem;
    }
}


/* Smartphones */
@media screen and (max-width: 400px){
    .curr-station{
        font-size: 1rem;
    }
    .item img{
        display: none;
    }
    .phoneResumeText{
        display: block;
    }
    .item p{
        font-size: .70rem;
    }
    
    .item{
        flex-direction: column;
        flex-wrap: wrap;
        flex-flow: column;
    }

    #charts {
        flex-direction: column;
        flex-wrap: wrap;
        align-content: space-between;
    }

    .chartbox {
        width: 100%;
        height: 35rem;
        /* flex: 0 0 50%; */
        margin: 1rem auto;
        text-align: center;
        background-color: #FFF;
        box-shadow: 0 0 1rem rgba(0, 0, 0, .18);
    
    }
    #sotrmMap{

    }

}