/*
 Theme Name:   Picteos
 Theme URI:    https://www.picteos.com/wordpress-themes
 Description:  Picteos WordPress Theme (Divi Child Theme) by Picteos
 Author:       Christophe Serra <technique@picteos.com>
 Author URI:   https://www.picteos.com/wordpress-themes
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         dark, responsive-layout, accessibility-ready
 Text Domain:  picteos
*/
:root {
  --card-border-color: #e5e7eb;
  --card-border-radius: 8px;
  --card-background-color: #ffffff;
  --card-padding: 1em;
  --card-inner-separator-color: #eff0f0;
  --ui-primary-color: #86a13f;
  --ui-primary-color-hover: #a9ca4f;
  --link-color:#a938ac;
  --text-discret-color:#72607f;
}

body.home {
  font-size: 16px;
}

.text--discret {
  font-weight: normal;
  color: #666666;
}

:focus-visible {
  outline: 2px solid #2ea3f2 !important;
}

.link {
  cursor: pointer;
}
.link:focus {
  outline: 2px solid #2ea3f2;
}
.link_primary {
  color: var(--ui-primary-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.link_primary:hover {
  color: var(--ui-primary-color-hover);
  text-decoration: none;
}

.icon_external {
  width: 1.1em;
  position: relative;
  top: 0.2em;
  left: 0.2em;
}

.icon_before_text {
  position: relative;
  top: 0.2em;
  margin-right: 0.15em;
}
.icon_after_text {
  position: relative;
  top: 0.2em;
  margin-left: 0.15em;
}

/* Archives */
body.archive h1 {
  font-size: 40px;
}
body.archive .loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
body.archive .loop article {
  border: 1px solid #dddddd;
  border-radius: 3px;
  padding: 20px;
  background: #ffffff;
  max-width: 1024px;
}
body.archive .loop .post-date {
  color: var(--text-discret-color);
  font-size: 13px;
  margin-top: 8px;
}
body.archive .loop .post-title {
  font-size: 24px !important;
  font-weight: 600;
}
body.archive .loop .post-title:hover {
  text-decoration: underline;
}
body.archive .loop .post-link__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  font-size: 13px;
}
body.archive .loop .post-link__button:hover {
  text-decoration: underline;
}
body.archive .loop .post-content--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
body.archive .loop .post-thumbnail {
  min-width: 150px;
  max-width: 150px;
}
body.archive .loop .post-footer {
  margin-top: 24px;
}

@media (min-width: 769px) {
  .posts-loop-container--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1%;
  }
  .posts-loop-container--flex article {
    width: 75%;
  }
}
@media (min-width: 981px) and (max-width: 1100px) {
  .posts-loop-container .post-content--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .posts-loop-container .post-content--flex .post-thumbnail {
    width: 31%;
  }
  .posts-loop-container .post-content--flex .post-content-text {
    width: 62%;
  }
}
@media (min-width: 1101px) {
  .posts-loop-container--flex {
    gap: 1%;
  }
  .posts-loop-container--flex article {
    width: 75%;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_v_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_h_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_gap_10 {
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}

.flex_gap_15 {
  -webkit-column-gap: 1.5em;
     -moz-column-gap: 1.5em;
          column-gap: 1.5em;
}

.flex_gap_20 {
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}

.flex_gap_25 {
  -webkit-column-gap: 2.5em;
     -moz-column-gap: 2.5em;
          column-gap: 2.5em;
}

.list_no-space {
  padding: 0;
  margin: 0;
}

.card {
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  background-color: var(--card-background-color);
}
.card__title {
  font-size: 1.3em !important;
  font-weight: 600;
  padding: 0.5em 1em;
  border-bottom: 1px solid var(--card-inner-separator-color);
}

.list_no-space {
  margin: 0 !important;
  padding: 0 !important;
}

.breadcrumb li {
  list-style-type: none;
  display: inline-block;
  margin-right: 8px;
  color: inherit;
}
.breadcrumb li a {
  color: inherit !important;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  display: inline-block;
  margin-right: 10px;
}

.dark-background .breadcrumb {
  color: #976da0;
}

.pagination {
  position: relative;
}

.liste__compteur {
  color: #666666;
  margin-bottom: 10px;
}

/**
 * Mini liste
 **/
.mini-liste {
  background: #F3F3F3;
  padding: 22px 10px 1px 10px;
  border-radius: 5px;
}

.mini-liste.has-footer {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.mini-liste-footer {
  background-color: #a9ca4f;
  min-height: 30px;
  border-radius: 0px 0px 5px 5px;
  padding: 14px 10px;
  text-align: center;
}

.mini-liste-footer a {
  color: #ffffff;
  font-weight: 600;
}

.mini-liste-footer a:hover {
  opacity: 0.8;
}

.mini-liste .post-excerpt,
.mini-liste .post-description {
  margin-top: 0;
}

.mini-liste .post-excerpt img {
  width: 100px;
  float: left;
  margin-right: 14px;
}

/**
 * 
 **/
.liste-scrollable .liste-content {
  position: relative;
  max-height: 700px;
  overflow-y: auto;
}

/**
 * Titre de section
 **/
.titre-de-section {
  color: #612262;
  font-weight: 700;
  line-height: 1.1;
}

.mini-liste .titre-de-section {
  font-size: 19px;
  padding-left: 10px;
  line-height: 1.1;
  padding-bottom: 20px;
}

.mini-liste .bouton {
  font-size: 15px;
  background-color: #a9ca4f;
  border-width: 0px !important;
  border-radius: 50px;
  padding: 0.3em 1em !important;
  color: #ffffff;
  margin-top: 8px;
  display: inline-block;
  font-weight: 600;
}

/**
 * Liste des ressources documentaires 
 **/
.liste article,
.liste .as-article {
  display: block;
  background: #ffffff;
  border-radius: 5px;
  margin: 0 0 10px;
  overflow: hidden;
  padding: 15px 20px;
}

.liste .post-title,
.liste .as-article .post-title {
  font-size: 17px !important;
  font-weight: bold;
  color: #000000;
}

.liste .post-excerpt,
.liste .post-description {
  line-height: 1.3;
  padding-bottom: 0.7em;
}

.liste .post-date {
  font-size: 14px;
  color: #666666;
  line-height: 1.3;
  padding-bottom: 0px;
}

.attachment {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.attachment__icon {
  width: 24px;
  min-width: 24px;
}
.attachment__size {
  color: #9ca3af;
}
.attachment__title {
  font-weight: 700;
  color: #78297a;
}
.attachment__author {
  color: var(--text-discret-color);
}
.card .attachment {
  border-bottom: 1px solid var(--card-inner-separator-color);
  padding-left: 1em;
  padding-right: 1em;
}
.card .attachment:last-child {
  border-bottom-width: 0;
}

.posts-loop-container article {
  border: 1px solid #dddddd;
  border-radius: 3px;
  padding: 20px;
  margin-top: 30px;
  background: #ffffff;
}
.posts-loop-container article .post-title {
  font-size: 22px !important;
  font-weight: 600;
}
.posts-loop-container article .post-date {
  font-size: 14px;
  color: #666666;
  line-height: 1.3;
}
.posts-loop-container article .post-excerpt {
  margin-bottom: 10px;
}

@media (min-width: 769px) and (max-width: 980px) {
  .post-thumbnail {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.card--personne-ressource {
  margin-top: 24px;
}
.card__content {
  padding: 20px 24px;
}

.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

p a {
  text-decoration: underline;
}

p a:hover {
  text-decoration: none;
}

p a {
  text-decoration: underline;
}

p a:hover {
  text-decoration: none;
  color: #a9ca4f;
}

.et_pb_text_inner a {
  color: #922F93;
}

#map {
  height: 80vh;
  width: 100%;
  background: #fafafa;
  margin-bottom: 0px;
}

.map-legende img {
  max-width: 12px;
}

#map .leaflet-popup-close-button {
  background-color: #a9ca4f;
  border-radius: 15px;
  border: 2px solid #ffffff;
}

#map .leaflet-popup-close-button:hover {
  background-color: #612262;
  cursor: pointer;
}

#map .leaflet-popup-close-button:hover span {
  color: #ffffff;
}

#map .leaflet-popup-close-button span {
  position: relative;
  top: -3px;
  font-weight: bold;
}

.map-legende {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.map-legende p {
  font-size: 14px;
}

.map-legende span {
  display: inline-block;
  width: 24%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

#et-boc #map .leaflet-popup-content h3 {
  display: block;
  font-size: 16px;
  background: #612262;
  padding: 6px;
  margin: 0 -10px 15px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
}

#et-boc #map .leaflet-popup-content h4 {
  font-size: 15px;
  margin-top: 3px;
  padding-bottom: 2px;
}

#et-boc #map .leaflet-popup-content p,
#et-boc #map .leaflet-popup-content p:last-of-type {
  margin: 0;
  padding-bottom: 1em;
}

#et-boc #map .leaflet-popup-content .permanences {
  background: #f4f4f4;
  padding: 10px;
  margin: 0 -10px 10px;
  border-radius: 5px;
}

#et-boc #map .leaflet-popup-content .contacts {
  background: #a9ca4f;
  padding: 10px 10px 0;
  margin: 0 -10px 10px;
  border-radius: 5px;
  color: #612262;
  text-align: center;
}

#et-boc #map .leaflet-popup-content .contacts p {
  font-size: 15px;
}

#et-boc #map .leaflet-popup-content .contacts h4 {
  color: #ffffff;
}

ul.news-categories_nav,
ul.news-subcategories_nav {
  list-style-type: none;
  padding: 0;
}

.news-categories_nav li,
.news-subcategories_nav li {
  display: inline-block;
  margin-right: 15px;
}

.news-categories_nav li a,
.news-subcategories_nav li a {
  display: inline-block;
  padding: 3px 5px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
}

.news-subcategories_nav li a {
  border: 1px solid #999999;
  padding: 3px 10px;
}

.news-excerpt {
  padding: 3px 25px;
  color: #777777;
}

.news-caption {
  bottom: 87px;
  position: absolute;
  margin: 0 35px;
}

.news-title {
  position: relative;
  background-color: #f60086;
  color: #ffffff;
  display: inline;
  padding: 4px 0px;
  -webkit-box-shadow: 10px 0 0 #f60086, -10px 0 0 #f60086;
          box-shadow: 10px 0 0 #f60086, -10px 0 0 #f60086;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Heebo", Helvetica, Arial, Lucida, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.3em;
}

#top-menu li a {
  font-weight: bold;
}

.form_error {
  color: red;
}

.picteos-main-header-inner {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.picteos_main_header_nav {
  -webkit-box-shadow: 0px 5px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 4px rgba(0, 0, 0, 0.1);
}

.picteos_open_close {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.picteos_open_close:hover {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.picteos_main_header_nav.open {
  display: block;
}

.picteos_main_header_nav_area {
  /*width:76%;
  float:left;*/
  padding: 16px 20px 5px;
}

.picteos_main_header_login_area {
  width: 24%;
  float: right;
}

.picteos_main_header_login {
  text-align: center;
  cursor: pointer;
}

.picteos_main_header_login a {
  display: block;
  padding: 20px 10px;
  background-color: #612262;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; /* Standard */
}

.picteos_main_header_login a:hover {
  background-color: #888888;
  color: #ffffff;
}

.picteos_main_header_search {
  padding: 20px 10px;
  background-color: #666;
  text-align: center;
  color: #fff;
}

#picteos_main_header_search_field {
  border: 0 none transparent;
  padding: 5px 15px;
  background: #ffffff;
  border-radius: 20px;
  max-width: 90%;
  width: 90%;
}

.picteos_main_header_logo_container {
  width: 30%;
  float: left;
  margin-top: 12px;
}

.picteos_main_header_logo_container a {
  display: inline-block;
}

.picteos_main_header_logo_container img {
  width: 100%;
}

.menu-principal-container .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}

.menu-principal-container .menu .menu-item {
  margin-bottom: 10px;
  line-height: 1.2em;
  font-size: 15px;
}

/* Burger Menu Icon */
.picteos_menu_burger_bar {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 20px;
  height: 2px;
  background-color: #612262;
  -webkit-transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}

.picteos_menu_burger_bar_1 {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.picteos_menu_burger_bar_3 {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

.picteos_menu_burger {
  display: inline-block;
  position: relative;
  height: 40px;
  width: 40px;
  top: 11px;
  right: 2%;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: rgba(255, 255, 255, 0.2);
}

.picteos_menu_burger:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.picteos_menu_burger.open .picteos_menu_burger_bar_1 {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.picteos_menu_burger.open .picteos_menu_burger_bar_3 {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.picteos_menu_burger.open .picteos_menu_burger_bar_2 {
  opacity: 0;
}

.picteos_main_header_elements_on_right {
  width: 60%;
  float: right;
  text-align: center;
}

.on_right_item {
  padding: 12px 0px 0px;
  width: 20%;
  height: 90px;
  display: inline-block;
  float: left;
}

.on_right_item span {
  font-size: 32px;
  font-weight: bold;
  color: #612262;
  display: inline-block;
  height: 37px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: 3px;
}

.on_right_item img {
  max-height: 32px;
}

.on_right_item p {
  line-height: 1.2;
  font-size: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.on_right_item_4 {
  background-color: #a9ca4f;
  color: #ffffff;
}

.on_right_item_wrapper {
  border-right: 1px solid #a9ca4f;
}

.on_right_item_3,
.on_right_item_4,
.on_right_item_wrapper {
  padding-right: 8px;
  padding-left: 8px;
}

body:not(.home) .et_builder_inner_content {
  top: 90px !important;
}

@media (max-width: 980px) {
  .picteos_main_header_elements_on_right {
    width: 50%;
  }
  .on_right_item {
    width: 50%;
  }
  .on_right_item_1,
  .on_right_item_2,
  .on_right_item_3 {
    display: none;
  }
  .menu-principal-container .menu .menu-item {
    text-align: center;
  }
  .picteos_main_header_login_area,
  .picteos_main_header_nav_area {
    float: none;
    width: 100%;
  }
  .picteos_main_header_login_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .picteos_main_header_login,
  .picteos_main_header_search {
    width: 50%;
  }
  .picteos_main_header_login a,
  .picteos_main_header_search {
    height: 70px;
  }
  .picteos_main_header_nav .container {
    width: 100%;
    max-width: 100%;
  }
  #picteos_main_header_search_field {
    width: 100%;
  }
  .picteos_main_header_logo_container {
    width: 35%;
    margin-top: 14px;
  }
  .columns-4-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .columns-4-mobile .et_pb_column {
    width: 20% !important;
    margin-right: 5% !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 620px) {
  .menu-principal-container .menu {
    display: block;
  }
  .menu-principal-container .menu .menu-item {
    width: 100%;
    text-align: left;
  }
  .menu-principal-container .menu .menu-item a br {
    display: none;
  }
  .picteos_main_header_elements_on_right {
    width: 40%;
  }
  .on_right_item {
    width: 50%;
  }
  .picteos_main_header_logo_container {
    width: 45%;
  }
}
.picteos_main_header_logo_container img {
  width: 100%;
}

@media (min-width: 480px) and (max-width: 980px) {
  .columns-3-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .columns-3-mobile .et_pb_column {
    width: 31% !important;
    margin-right: 2% !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 479px) {
  #section-trouver-structure {
    background-position: -35px;
  }
}
.et_builder_inner_content .et_pb_section:last-child {
  padding-bottom: 0;
}

.entry-mon-compte .container {
  padding-top: 0 !important;
}

.align-right {
  text-align: right;
}

body .et_pb_button.et_pb_button_grey {
  background-color: #f3f3f3;
  color: #333333 !important;
}

body .et_pb_button.et_pb_button_grey:hover {
  background-color: #f3f3f3;
  color: #612262 !important;
}

.wpcf7 input.text,
.wpcf7 input.title,
.wpcf7 input[type=email],
.wpcf7 input[type=password],
.wpcf7 input[type=tel],
.wpcf7 input[type=text],
.wpcf7 select,
.wpcf7 textarea {
  background-color: #f3f3f3;
  border-radius: 2px;
  border-width: 0;
  padding: 10px 16px;
  font-size: 15px;
  width: 100%;
}

.wpcf7 textarea.description-courte {
  height: 80px;
}

sup {
  font-size: 10px;
  left: 2px;
}

.posts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.posts-list article {
  background-color: #f3f3f3;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 5px;
  width: 49%;
}

@media (max-width: 980px) {
  .post-type-archive-organization .posts-list article {
    width: 100%;
  }
}
.posts-list article .posts-list .post-title {
  font-size: 27px !important;
}

.posts-list .post-terms p {
  color: #87b211;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pagination {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}

.pagination .page-numbers {
  list-style-type: none;
  padding-left: 0;
}

.pagination .page-numbers li {
  display: inline-block;
  margin-right: 10px;
  text-align: center;
}

#main-content .pagination .page-numbers li a,
#main-content .pagination .page-numbers li .current {
  display: inline-block;
  background-color: #a9ca4f;
  color: #ffffff;
  padding: 1px 7px;
  min-width: 34px;
  text-align: center;
}

#main-content .pagination .page-numbers li a:hover,
#main-content .pagination .page-numbers li .current {
  color: #ffffff;
  background-color: #612262;
}

#main-content .pagination .page-numbers li .current {
  padding: 1px 9px;
}

.filter-container {
  background-color: rgba(243, 243, 243, 0.9);
  border-radius: 4px;
  padding: 10px 20px;
  margin-bottom: 30px;
}

.green-container {
  background-color: #A9CA4F;
  color: #fff;
}

.green-container h4 {
  color: #612262;
}

#et-boc .filter-container.green-container a.filter-link {
  color: #fff;
  font-size: 14px;
}

#et-boc .green-container a.filter-link.filtered,
#et-boc .green-container a.filter-link.remove-all {
  background-color: rgba(255, 255, 255, 0.2);
  color: #612262;
  padding: 1px 8px 0px;
  border-radius: 16px;
  margin-left: -9px;
}

.filter-summary {
  margin-bottom: 20px;
}

#et-boc .filter-summary a.filter-link {
  font-size: 14px;
}

#et-boc .filter-summary a.filter-link {
  padding: 1px 8px 0px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 5px;
  color: #612262;
  font-size: 14px;
}

#et-boc .filter-summary a.filter-link.filtered {
  background-color: rgba(169, 202, 79, 0.7);
}

#et-boc .filter-summary a.filter-link.remove-all {
  background-color: #f3f3f3;
}

#et-boc .filter-summary a.filter-link.remove-all:hover {
  background-color: #612262;
  color: #ffffff;
}

#et-boc .green-container a.filter-link.filtered:hover,
#et-boc .green-container a.filter-link.remove-all:hover,
#et-boc .filter-summary a.filter-link.filtered:hover {
  color: #ffffff;
}

.related-file {
  margin-bottom: 20px;
  background-color: #F3F3F3 !important;
  padding: 20px 20px 30px 30px;
  border-radius: 5px;
}

.related-files-count {
  text-transform: uppercase;
}

.et-db #et-boc .et_pb_button:hover:after,
.et-db #et-boc .et-l .et_pb_button:hover:after {
  margin-left: 5px;
}

.posts-list article {
  padding: 20px 30px;
  background-color: #ffffff;
  border-left: 5px solid #a9ca4f;
  border-radius: 0px 5px 5px 0px;
}

.posts-list-last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.posts-list-last article {
  width: 48%;
}

.posts-list-last .post-title,
.posts-type-archive-event .post-title {
  font-size: 21px;
}

article.event {
  margin-bottom: 30px;
}

.liste-nombre-elements {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #a9ca4f;
}

/* 
 * GENERIQUE ARCHIVE POSTS LOOP 
 * 
 * Use class .posts to wrap all articles in the loop
 * */
.posts {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.posts article {
  padding: 20px 30px;
  background-color: #ffffff;
  border-bottom: 8px solid #a9ca4f;
  border-radius: 8px;
}

.posts .post-title {
  font-size: 20px !important;
}

.post-excerpt {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 0;
}

.post-thumbnail {
  text-align: center;
  padding-top: 6px;
}

.post-event-date {
  font-size: 20px;
  font-weight: 700;
  color: #87b211;
  padding-bottom: 10px !important;
}

.post-event-date time {
  font-weight: bold;
}

.post-edit-link {
  marging-top: 0px;
  font-size: 13px;
  color: #444 !important;
}

/*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 479px) {
  .posts article {
    width: 100%;
  }
}
/*** Responsive Styles Smartphone Only ***/
@media all and (min-width: 480px) {
  .posts article {
    width: 100%;
  }
}
/*** Responsive Styles Tablet Only ***/
@media all and (min-width: 768px) {
  .posts article {
    width: 48%;
  }
  .archive .posts-count {
    text-align: left;
  }
}
/*** Responsive Styles Tablet And Below ***/
@media all and (min-width: 980px) {
  .posts article {
    width: 48%;
  }
}
/*** Responsive Styles Standard Desktop Only ***/
@media all and (min-width: 1100px) {
  .posts article {
    width: 32%;
  }
}
/*** Responsive Styles Large Desktop And Above ***/
@media all and (min-width: 1441px) {
  .posts article {
    width: 24%;
  }
}
.post-event-location {
  color: #612262;
  font-size: 14px;
  padding-bottom: 0px;
  line-height: 1;
}

.icon-position-left:before {
  display: inline-block;
  margin-right: 1px;
  position: relative;
  top: -1px;
}

.post-entry .post-event-date {
  font-size: 36px;
  font-weight: 400;
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
  /*color: #87b211;*/
  color: #612262;
  border-bottom: 1px solid #e8e8e8;
}

.post-entry .post-event-date time {
  font-weight: bold;
}

.post-entry .post-date {
  margin-top: 50px;
  border-top: 1px solid #e8e8e8;
  padding-top: 20px;
  color: #999999;
  padding-bottom: 0;
}

.post-entry .post-author {
  color: #666666;
  font-size: 14px;
}

.post-entry .post-thumbnail {
  margin-top: 30px;
  margin-bottom: 30px;
}

nav#picteos_breadcrumb ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  padding-bottom: 0;
}

nav#picteos_breadcrumb li {
  display: inline;
}

.post-tags {
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-tags .tag {
  padding: 1px 8px 0px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 5px;
  background-color: #612262;
  color: #fff !important;
  font-size: 13px;
  margin-right: 3px;
}

.map-filters-heading {
  font-size: 22px !important;
}

.map-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.map-filter-wrapper {
  width: 31%;
}

.map-filter-wrapper select {
  width: 100%;
}

.post-event-title {
  font-size: 22px !important;
  padding-bottom: 0;
  font-weight: 700;
}

.evenements-wrapper {
  background: #ffffff;
  border-radius: 5px;
  padding: 22px 10px;
}

.mini-liste ul {
  padding-left: 0;
  list-style-type: none;
}

.mini-liste .as-article {
  display: block;
  background: #ffffff;
  border-radius: 5px;
  margin: 0 0 10px;
  overflow: hidden;
  padding: 15px 20px;
}

#liste-des-outils.mini-liste {
  background-color: #612262;
}

/**
 * Archive des structures
 **/
article.type-organization {
  background: #ffffff;
  border-radius: 5px;
  padding: 22px 20px;
  margin-bottom: 10px;
}

article.type-organization .post-title {
  font-size: 22px !important;
  padding-bottom: 0;
  font-weight: 700;
}

article.type-organization address {
  color: #612262;
  font-size: 15px;
  font-style: normal;
  line-height: 1.3;
  padding-bottom: 2px;
}

article.type-organization .post-terms {
  color: #87b211;
  font-size: 15px;
  font-weight: bold;
}

article.type-organization .contacts {
  font-size: 15px;
  line-height: 1.3;
  margin-top: 3px;
}

article.type-organization .permanences {
  font-size: 15px;
  line-height: 1.3;
  margin-top: 3px;
  background: #f4f4f4;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
}

article.type-organization .permanences .permanence-title {
  color: #612262;
  font-weight: 600;
}

article.type-organization .contact-title {
  font-weight: 600;
}

.links-list ul {
  padding-left: 0;
}

.links-list li {
  list-style-type: none;
  position: relative;
}

.links-list li:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(https://www.ovff34.fr/wp-content/themes/agencepicteos/public/icons/arrow-drop-right-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 0;
}

.links-list a {
  display: inline-block;
  padding: 3px 15px 3px 25px;
  -webkit-transition: padding 200ms ease-in-out;
  transition: padding 200ms ease-in-out;
}

.links-list a:hover {
  background-color: #f2f2f2;
  padding: 3px 10px 3px 30px;
}

input.sib-nom-area,
input.sib-prenom-area,
input.sib-email-area {
  padding: 5px 10px;
  border-radius: 4px;
  min-width: 80%;
}

.term-acceptance {
  font-size: 13px;
  text-align: justify;
  display: inline-block;
}