/** CSS Easing functions */ /* Bulma Utilities */
.widget-annuaire .widget-header {
  margin-bottom: clamp(1rem, 0.7813rem + 0.9722vw, 1.875rem);
}
.widget-annuaire .widget-header h2 {
  text-transform: uppercase;
  margin: 0;
  color: black;
}
.widget-annuaire .widget-header .search {
  margin: 1rem auto;
  max-width: 500px;
  position: relative;
}
.widget-annuaire .widget-header .search input[type=search] {
  height: 52px;
  border: 1px solid rgba(90, 55, 147, 0.5);
  width: 100%;
  max-width: 500px;
  padding: 0 1rem;
  -webkit-transition: border 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out;
  transition: border 0.25s ease-in-out;
  outline-color: #5A3793;
}
.widget-annuaire .widget-header .search input[type=search]:hover {
  border-color: #5a3793;
}
.widget-annuaire .widget-header .search input[type=search]:focus {
  border-width: 2px;
}
.widget-annuaire .widget-header .search .submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 55%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.widget-annuaire .list {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  margin: 3.25rem 0 0;
}
@media only screen and (min-width: 900px) {
  .widget-annuaire .list {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
.widget-annuaire .list .user {
  width: 100%;
  border-bottom: 1px solid #E4E4E4;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.widget-annuaire .list .user header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  position: relative;
  padding: 1.25rem 0;
  cursor: pointer;
}
.widget-annuaire .list .user header .avatar {
  width: 80px;
  height: 80px;
  border: 1px solid #14B493;
  border-radius: 50%;
}
.widget-annuaire .list .user header .name {
  font-size: 1.25rem;
  color: #14B493;
}
.widget-annuaire .list .user header::after {
  content: "+";
  font-size: 1.5rem;
  color: #14B493;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.widget-annuaire .list .user .content {
  display: none;
  padding: 1rem 0;
}
.widget-annuaire .list .user .content .formation {
  margin-bottom: 1.25rem;
}
.widget-annuaire .list .user .content .formation strong {
  color: #5A3793;
  text-transform: uppercase;
}
.widget-annuaire .list .user .content .presentation {
  margin-bottom: 1.25rem;
}
.widget-annuaire .list .user .content .presentation strong {
  color: #5A3793;
  text-transform: uppercase;
}
.widget-annuaire .list .user .content .coords strong {
  color: #5A3793;
  text-transform: uppercase;
  display: block;
}
.widget-annuaire .list .user .content .coords div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.widget-annuaire .list .user .content .coords div .phone, .widget-annuaire .list .user .content .coords div .mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.widget-annuaire .list .user .content .coords div .phone svg, .widget-annuaire .list .user .content .coords div .mail svg {
  color: #14B493;
}
.widget-annuaire .list .user .content .coords div .linkedin {
  width: 100%;
}
.widget-annuaire .list .user .content .coords div .linkedin a {
  color: #14B493;
}
.widget-annuaire .list .user.active header::after {
  content: "-";
}
