/**
 * BeFlex Annuaire
 * Copyright 2017 Eoxia
 */
.annuaire .element {
  float: left;
  padding: 10px;
}
.annuaire .element:not(.active) .content:hover {
  cursor: pointer;
}
.annuaire .element.hide {
  display: none;
}
.annuaire .element .content {
  background: #fff;
}
.annuaire .element .content .entry-header {
  position: relative;
  background: #f4f6f8;
  padding: 16px;
  padding: 1rem;
  margin: 0;
}
.annuaire .element .content .entry-header:before,
.annuaire .element .content .entry-header:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  border-left: 16px solid transparent;
  border-left: 1rem solid transparent;
  border-right: 16px solid transparent;
  border-right: 1rem solid transparent;
  border-top: 16px solid transparent;
  border-top: 1rem solid transparent;
}
.annuaire .element .content .entry-header:before {
  border-bottom: 16px solid #fff;
  border-bottom: 1rem solid #fff;
  -webkit-transform: translate(50%, -50%) rotateZ(45deg);
     -moz-transform: translate(50%, -50%) rotateZ(45deg);
          transform: translate(50%, -50%) rotateZ(45deg);
}
.annuaire .element .content .entry-header:after {
  border-bottom: 16px solid #cacaca;
  border-bottom: 1rem solid #cacaca;
  -webkit-transform: translate(-20%, 20%) rotateZ(225deg);
     -moz-transform: translate(-20%, 20%) rotateZ(225deg);
          transform: translate(-20%, 20%) rotateZ(225deg);
}
.annuaire .element .content .entry-header .entry-title {
  min-height: 2.2em;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  padding-bottom: 0;
}
.annuaire .element .content .entry-header .entry-title:after {
  display: none;
  content: '';
}
.annuaire .element .content .entry-content {
  background: #fff;
  padding: 16px;
  padding: 1rem;
  border-left: 1px solid #f4f6f8;
  border-bottom: 1px solid #f4f6f8;
  border-right: 1px solid #f4f6f8;
}
.annuaire .element .content .entry-content .title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding: 0;
  color: rgba(0, 0, 0, 0.4);
}
.annuaire .element .content .list-contact {
  margin: 4px 0;
  padding: 0;
  list-style-type: none;
}
.annuaire .element .content .list-contact .contact {
  font-size: 14px;
  font-weight: 300;
}
.annuaire .element .content .list-contact .contact .name,
.annuaire .element .content .list-contact .contact .firstname {
  font-weight: 600;
}
.annuaire .element .content .list-contact .contact .phone {
  float: right;
}
.annuaire .element .content .list-contact .contact .icon-phone:before {
  padding-right: 6px;
}
.annuaire .element .content .list-contact .contact:before {
  display: none;
  content: '';
}
.annuaire .element.size {
  width: 25%;
}
@media screen and (max-width: 1080px) {
  .annuaire .element.size {
    width: 33.333333%;
  }
}
@media screen and (max-width: 680px) {
  .annuaire .element.size {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .annuaire .element.size {
    width: 100%;
  }
}
.annuaire-search .content {
  width: 100%;
  display: block;
  padding: 20px 20px 20px 60px;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 20px;
  min-height: 66px;
}
.annuaire-search .content:before {
  display: block;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f002";
  color: rgba(0, 0, 0, 0.7);
  font-size: 22px;
  position: absolute;
  left: 20px;
}
.annuaire-search .content:focus {
  outline: none;
}
.annuaire-search .placeholder {
  position: absolute;
  top: 20px;
  left: 80px;
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.annuaire-search .placeholder.active {
  display: block;
}
.annuaire-search .placeholder:not(.active) {
  display: none;
}
