@charset "UTF-8";
/*!
 * Accordion v2.8.0
 * Simple accordion created in pure Javascript.
 * https://github.com/michu2k/Accordion
 *
 * Copyright 2017-2019 Michał Strumpf
 * Published under MIT License
 */
.ac:first-child {
  margin-top: 10px;
  box-sizing: border-box;
}

.ac > .ac-q {
  padding: 0 30px 6px 0;
  margin: 0;
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #e3ebf0;
  margin-bottom: 19px;
}

.ac > .ac-q::after {
  content: url('https://www.typingpal.com/user/themes/taptouche/images/icones/icone-menudevoilant-ferme.svg');
  text-align: center;
  width: 15px;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
}

.ac > .ac-a {
  overflow: hidden;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.ac.js-enabled > .ac-a {
  visibility: hidden;
}

.ac.is-active > .ac-a {
  visibility: visible;
}

.ac.is-active > .ac-q::after {
  content: url('https://www.typingpal.com/user/themes/taptouche/images/icones/icone-menudevoilant-ouvert.svg');
}