/*13.TABLEAU ONGLET.CSS*/
.tabs-container {
  background-color: #fff;
  width: 100%;
  max-width: 768px;
  border: 1px solid #DEDEDE;
  position: relative;
}
.tabs-container .tabs {
  width: 100%;
  position: relative;
  background: #E8430C;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
      -webkit-box-pack: start;
          justify-content: flex-start;
  border-bottom: 2px solid #FFFFFF;
}
.tabs-container .tabs:after {
  content: '';
  display: block;
  clear: both;
}
.tabs-container .tabs .tab {
  display: block;
  line-height: 1.3;
  padding: 1em; 
  text-align: center;
  cursor: default;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  background: #E8430C;
  border-left: 1px solid #FFFFFF;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 200ms;
  transition: 200ms;
}
.tabs-container .tabs .tab:first-child {
  border-left: 0;
}
.tabs-container .tabs .tab:active,
.tabs-container .tabs .tab.active {
  background-color: #FFFFFF;
}
.tabs-container .tabs .active-bar {
  display: block;
  position: absolute;
  width: 100px;
  height: 2px;
  background: #FFFFFF;
  top: 100%;
  left: 0;
  margin-top: 0px;
}
.tabs-container .article {
  display: none;
  padding: 1.4285em 0 0;
}
.tabs-container .article.active {
  display: block;
}

/*13.FIN TABLEAU ONGLET.CSS*/