body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    background-color: rgb(243, 248, 252);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2px;
}

.meteo-item {
    display: flex;
    flex-direction: row;
    background-color: white;
    /* align-items: center; */
    border-style: none;
    border-width: 1px;
    margin: 4px 6px 6px 4px;
    padding: 8px;
    border-radius: 6px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -o-text-overflow: clip;
    text-overflow: clip;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}

.meteo-icon {
    flex: 0 0 32px;
    font-size: 2em;
    padding: 8px 4px 4px 4px;
}

.meteo-text-zone {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    white-space: nowrap;
    padding: 8px;
    color: grey;
}

.meteo-lable {
    display: inline;
    /* height: 2em;
   line-height: 2em; */
    white-space: nowrap;
    width: 100%;
    font-size: 1em;
    font-weight: bold;
    color: rgb(70, 70, 70);
}

.meteo-short {
    display: flex;
    white-space: nowrap;
    width: 100%;
    font-size: 0.8em;
    padding: 2px 0px 0px 0px;

}

.meteo-detail {
    margin: 8px 0px 0px 0px;
    /* padding: 8px; */
    width: 98%;
    color: rgb(100, 100, 100);
    /* background-color: rgb(233, 233, 233); */
    font-size: 0.8em;
    border-style: none;
    border-color: Transparent;
    word-break: break-word;
    white-space: pre-line;
    overflow-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.meteo-open {
    flex: 0 0 14px;
    display: inline-block;
    color: rgb(99, 100, 100);
    font-size: 0.8em;
}

.meteo-close {
    flex: 0 0 14px;
    display: inline-block;
    color: rgb(99, 100, 100);
    font-size: 0.8em;
}

.bloc_title {
    text-align: left;
    color: rgb(66, 132, 231);
    font-size: 1em;
    margin: 20px 0px 0px 10px;
    text-transform: uppercase;
}

.info-item {
    display: block;
    border-style: none;
    margin: 4px 6px 6px 4px;
    padding: 8px;
    border-radius: 6px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -o-text-overflow: clip;
    text-overflow: clip;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    color : white;
}

.normal{
    background-color: #52adf3;
}

.warning{
    background-color: #fc8c03;
}

.critical{
    background-color:#fc034e;
}