/**
 * Foundation for Sites by ZURB
 * Version 6.5.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
#list-display {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 37px; }
  #list-display button {
    display: block;
    width: 46px;
    height: 46px;
    border: 1px solid #036ba1;
    cursor: pointer;
    color: #036ba1;
    font-size: 20px; }
    #list-display button.active {
      background: #036ba1;
      color: #ffffff; }
  #list-display li:first-child button {
    border-radius: 5px 0 0 5px; }
  #list-display li:last-child button {
    border-radius: 0 5px 5px 0; }

#chart_legend {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px; }
  @media screen and (max-width: 63.99875em) {
    #chart_legend {
      justify-content: flex-start; } }
  #chart_legend li {
    flex: 0 0 calc(100% / 3);
    text-align: center;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 63.99875em) {
      #chart_legend li {
        flex: 0 0 50%;
        justify-content: flex-start; } }
    #chart_legend li select {
      height: 26px;
      border-radius: 3px;
      border: 1px solid #707070;
      width: 44px;
      appearance: auto;
      position: 0 6px;
      cursor: pointer;
      margin: 0 6px; }
    #chart_legend li:before {
      content: "";
      display: inline-block;
      width: 19px;
      margin-right: 8px; }
    #chart_legend li:not(.rain):before {
      height: 3px;
      border-radius: 2px; }
    #chart_legend li.rain:before {
      height: 9px;
      background: #80CEFD; }
    @media screen and (max-width: 39.99875em) {
      #chart_legend li.rain {
        flex: 0 0 100%; } }
    #chart_legend li.wind:before {
      background: #93ACC9; }
    #chart_legend li.temperature:before {
      background: #D62C2C; }
    #chart_legend li.gust:before {
      background: #3C62A8; }
    #chart_legend li.pression:before {
      background: green; }

#table-observation .table_wrapper {
  border: 1px solid #eaeaea; }
  @media screen and (max-width: 39.99875em) {
    #table-observation .table_wrapper {
      overflow: auto; } }
  #table-observation .table_wrapper table {
    width: 100%;
    color: #333333;
    font-family: "Quicksand", sans-serif;
    min-width: 560px;
    background: #ffffff; }
  #table-observation .table_wrapper th,
  #table-observation .table_wrapper td {
    vertical-align: middle; }
  #table-observation .table_wrapper th {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    height: 60px; }
    @media screen and (max-width: 63.99875em) {
      #table-observation .table_wrapper th {
        font-size: 13px; } }
    #table-observation .table_wrapper th:nth-last-child(3), #table-observation .table_wrapper th:nth-last-child(2), #table-observation .table_wrapper th:last-child {
      padding-top: 20px; }
    #table-observation .table_wrapper th:nth-last-child(2) {
      position: relative; }
      #table-observation .table_wrapper th:nth-last-child(2):before {
        content: "Cumul de pluie : mm";
        position: absolute;
        top: 10px;
        left: -70px;
        right: -70px;
        text-align: center; }
  #table-observation .table_wrapper tbody tr:nth-child(2n+1) {
    background: #f3f3f3; }
  #table-observation .table_wrapper tbody tr td {
    height: 24px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    width: 70px; }
    @media screen and (max-width: 63.99875em) {
      #table-observation .table_wrapper tbody tr td {
        font-size: 13px; } }
    #table-observation .table_wrapper tbody tr td:first-child {
      width: 150px; }
    #table-observation .table_wrapper tbody tr td img {
      width: 18px;
      height: auto; }

#table-observation .table_legend {
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  margin-top: 10px; }

#obs-bar-top {
  display: flex;
  justify-content: flex-end;
  align-items: center; }

#obs-toggle-wind-unit {
  margin-right: 30px;
  margin-bottom: 37px; }
  #obs-toggle-wind-unit input[type=checkbox] {
    position: absolute;
    opacity: 0; }
    #obs-toggle-wind-unit input[type=checkbox] + label {
      display: block;
      padding-left: 55px;
      font-size: 13px;
      color: #333333;
      line-height: 20px;
      position: relative;
      cursor: pointer;
      font-weight: 400;
      text-transform: none; }
      #obs-toggle-wind-unit input[type=checkbox] + label:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 20px;
        border-radius: 10px;
        background: #9b9b9b;
        border: 0;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
      #obs-toggle-wind-unit input[type=checkbox] + label:after {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        top: 3px;
        left: 3px;
        border-radius: 50%;
        background: #ffffff;
        opacity: 1;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
    #obs-toggle-wind-unit input[type=checkbox]:checked + label:before {
      background: #28d661; }
    #obs-toggle-wind-unit input[type=checkbox]:checked + label:after {
      left: 23px; }
