/* Style Toggle Accordion  */

.accordion {
  list-style: none;
  padding: 0;
  background: #ffffff;
  margin-bottom: 0rem;
}

.accordion .toggle {
  text-decoration: none;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  background: #024f8e !important;
  color: #ffffff !important;
  border-bottom: 1px solid #024f8e !important;
  padding: 0.75em;
  /*-webkit-border-radius: 0.15em;
  -moz-border-radius: 0.15em;
  border-radius: 0.15em;*/
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.accordion .toggle:hover {
  background: #ffffff !important;
  color: #024f8e !important;
}

.accordion .toggle.active {
  border: none;
  background: #024f8e !important;
  color: #ffffff !important;
}

.accordion .inner {
  overflow: hidden;
  display: none;
  margin: 0rem;
  padding: 2rem;
  background-color: #fff !important;
  border-left: 4px solid #024f8e;
  border-right: 4px solid #024f8e;
  border-bottom: 4px solid #024f8e;
}


.accordion .inner li {
  padding-top: 0rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  /*padding-left: 5.5rem;*/
  /*display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;*/
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  list-style: decimal;
}

.accordion .inner ol {
  padding-left: 5.5rem;
}

.accordion .inner .ressource-link {
  text-decoration: none;
  width: 100%;
}

.accordion .date {
  float: right;
  display: block;
}

.accordion a.local-link::before {
  content: none !important;
}

.accordion a:hover {
  transform: none;
}

.accordion button:focus {
  outline: none;
}

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

/*	17. Media Queries
  /* -------------------------------------------------------------------------- */

@media (max-width: 479px) {}

@media (min-width: 480px) {}

@media (max-width: 599px) {
  .accordion .date {
    float: none;
    display: block;
  }
}

@media (min-width: 600px) {}

@media (min-width: 660px) {}

@media (min-width: 700px) {}

@media (min-width: 788px) {}

@media (min-width: 1000px) {}

@media (min-width: 1220px) {}

@media (min-width: 1280px) {}

@media (min-width: 1330px) {}