/**
 * @file
 * Styles pour le composant Sidebar
 */
/* Composant principal */
@media screen and (min-width: 768px) {
  #pasquier-aside {
    position: absolute;
    top: 2rem;
    left: 0;
    background: #162667;
    z-index: 1000;
    text-align: center;
    max-width: 140px;
  }
  #pasquier-aside ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
  }
  #pasquier-aside a {
    display: block;
    padding: 5px;
    font: 600 11px/14px "ClanPro", Arial, sans-serif;
    color: #fff;
    background: #162667;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 300ms ease-in-out, color 300ms ease-in-out;
  }
  #pasquier-aside a.active,
  #pasquier-aside a:hover {
    color: #162667;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  #pasquier-aside {
    position: static;
    width: 100%;
    margin: 1rem 0;
  }
  #pasquier-aside ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
  }
  #pasquier-aside a {
    display: inline-flex;
    color: #162667;
    background-color: #fff;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border: 3px solid #f1f0ee;
    padding: 5px 10px;
    margin: 5px;
    transition: all 300ms ease-in-out;
  }
  #pasquier-aside a.active {
    color: #162667;
    border: 3px solid #162667;
  }
  #pasquier-aside a.active:hover,
  #pasquier-aside a:hover {
    border: 3px solid #162667;
    color: #fff;
    background-color: #162667;
  }
}

/*# sourceMappingURL=sidebar.css.map*/