* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #88c9f5;
  font-family: 'Arimo', sans-serif;
}

h1 {
  color: #000;
  text-align: center;
  font-size: 2em;
}

.warpper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tab {
  cursor: pointer;
  padding: 10px 10px;
  margin: 0px 0px;
  background: #244ca1;
  display: inline-block;
  color: #fff;
  border-radius: 5px 5px 0px 0px;
  box-shadow: 0 0.5rem 0.8rem #00000080;
}

.panels {
  background: #fffffff6;
  box-shadow: 0 2rem 2rem #00000080;
  min-height: 400px;
  width: 100%;
  max-width: 500px;
  border-radius: 3px;
  overflow: hidden;
  padding: 20px;
}

.panel {
  display: none;
  animation: fadein .8s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.panel-title {
  font-size: 1.5em;
  font-weight: bold
}

.radio {
  display: none;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel,
#four:checked~.panels #four-panel {
  display: block
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab,
#three:checked~.tabs #three-tab,
#four:checked~.tabs #four-tab {
  background: #fffffff6;
  color: #244ca1;
  /* border-top: 3px solid #244ca1; */
}

input {
  border: unset;
  background: #e9e9e9;
  padding: 0.5em;
  /* width: 15em; */
}

button {
  cursor: pointer;
}

.btn-submit {
  border: unset;
  background: #268ef0;
  padding: 0.5em;
  color: white;
}


.autocomplete-wrapper {
  display: inline-block;
  position: relative;
}

.autocomplete-list {
  list-style: none;
  padding: unset;
  margin: unset;
  position: absolute;
  width: 100%;
}


.autocomplete-list li {
  border: 1px solid #e9e9e9;
  border-top: unset;
}

.autocomplete-list li:hover {
  background: #f7f7f7;
}


.autocomplete-list button {
  border: unset;
  background: unset;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5em;
}


.stationUrl {
  visibility: hidden;
}

table {
  width: 100%;
  border: solid 1px;
  background: #FFF0F0;
  padding: 5px;
}

td,
th {
  text-align: left;

  padding: 5px;
  cursor: pointer;
}

tr:hover {
  background: #88c9f5;
}

.conteneur {
  display: grid;
  grid-template-colums: 100%;
  grid-row-gap: 20px;
  padding: 5px;

}

.box {
  padding-top: 10px;
}

input {
  width: 100%;
  field-sizing: content;
}

/* --------------------------------------------------------------------------------------------------- */