#onglets {
  background: #66686a;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

#onglets .container_toggle {
  display: none;
}

#onglets .container_onglet {
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: space-around;
  max-width: 1140px;
  margin: 0px auto;
}

#onglets .onglets a.text-light {
  font-size: 15px;
  display: block;
}

#onglets .separator {
  width: 2px;
  height: 16px;
  background: #8f8f8f;
}

@media screen and (max-width: 1199px) {
  #onglets .container_onglet {
    max-width: 960px;
  }
}

@media screen and (max-width: 991px) {
  #onglets .container_onglet {
    max-width: 720px;
  }
}

@media screen and (max-width: 767px) {
  #onglets .container_onglet {
    max-width: 540px;
  }
  
  #onglets .onglets a.text-light {
    font-size: 12px;
  }
}

@media screen and (max-width: 575px) {
  #onglets {
    /*min-height: 62px;*/
  }
  
  #onglets .container_onglet {
    /*display: none;*/
    max-width: 575px;
    display: block;
    height: auto;
    padding: 5px;
    margin: 0;
  }
  
  #container_onglet {
    height: auto;
    padding: 5px;
    margin-right: 88px;
  }
  
  #onglets .onglets {
    padding: 5px 10px;
  }
  
  #onglets .separator {
    display: none;
  }
  
  #onglets .container_toggle {
    position: absolute;
    top: 0;
    right: 0;
    padding: 11px 16px;
    /*display: block;*/
  }
  
  #onglets .navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
    color: rgba(255,255,255,.5);
    border-color: rgba(255,255,255,.1);
  }
  
  #onglets .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background-size: auto;
    background-size: 100% 100%;
  }
}