@charset "UTF-8";

:root {
  --website-max-width: 1300px;
  --header-padding-top: 22px;
  --header-padding-horizontal: 20px;
  --header-inner-padding-horizontal: 10px;
}

/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */
html {
  /* This makes 1.0rem = 10px */
  font-size: 62.5%;
}

html.home3colors {
  height: 100%;
}
::-moz-selection {
  background: #c7c7c7;
  text-shadow: none;
}
::selection {
  background: #c7c7c7;
  text-shadow: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  margin: 0;
  padding: 0;
}

.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}

/* Wait cursor over entire html page during Ajax call */
.wait,
.wait * {
  cursor: wait !important;
}

/* ==========================================================================
   Links
   ========================================================================== */

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a:hover {
  color: inherit;
}
a:focus {
  outline: 0;
}

a.cursor_default {
  cursor: default;
}

a.mouse_over_decoration:hover {
  text-decoration: underline;
}

/* ============
   Fonts
   ============ */

/* Union Fonts */
.union_regular {
  font-family: "Union Regular", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}
.union_bold {
  font-family: "Union Bold", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
}
.union_italic {
  font-family: "Union Regular Italic", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
}

.fs9 {
  font-size: 0.9rem;
}
.fs10 {
  font-size: 1rem;
}
.fs12 {
  font-size: 1.2rem;
}
.fs14 {
  font-size: 1.4rem;
}
.fs16 {
  font-size: 1.6rem;
}
.fs22 {
  font-size: 2.2rem;
}
.fs28 {
  font-size: 2.8rem;
}

.lh10 {
  line-height: 1rem;
}
.lh11 {
  line-height: 1.1rem;
}
.lh14 {
  line-height: 1.4rem;
}
.lh16 {
  line-height: 1.6rem;
}
.lh17 {
  line-height: 1.7rem;
}
.lh18 {
  line-height: 1.8rem;
}
.lh19 {
  line-height: 1.9rem;
}
.lh28 {
  line-height: 2.8rem;
}
.lh29 {
  line-height: 2.9rem;
}

.fc_noir,
a.fc_noir {
  color: #000000;
}
.fc_blanc,
a.fc_blanc {
  color: #ffffff;
}
.fc_bleu,
a.fc_bleu {
  color: #0458b7;
}
.fc_rose,
a.fc_rose {
  color: #f95d80;
}
.fc_vert,
a.fc_vert {
  color: #03b953;
}
.fc_orange,
a.fc_orange {
  color: #feb23b;
}
.fc_w_grey,
a.fc_w_grey {
  color: #8e8e8e;
}

.bg_noir {
  background-color: #000000;
}
.bg_blanc {
  background-color: #ffffff;
}
.bg_bleu {
  background-color: #0458b7;
}
.bg_rose {
  background-color: #f95d80;
}
.bg_vert {
  background-color: #03b953;
}

.border-top {
  border-top: 5px solid #000000;
}
.margin-auto {
  margin: auto;
}

/* ===============
    Generic
	 =============== */

.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}

/* ============
   Grid system
	 ============ */

.grid-row {
  display: flex;
  flex-wrap: wrap;
}
.grid-col {
  flex-basis: 0;
  flex-grow: 1;
}

/* ============
   Simple Flex
	 ============ */

.simple-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.simple-flex-fluid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* ===============
    Responsiveness
	 =============== */
@media screen and (min-width: 767px) {
  .is-mobile {
    display: none;
  }
  .is-desktop {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .is-mobile {
    display: block;
  }
  .is-desktop {
    display: none;
  }
}

/* ===============
    Margins
	 =============== */

.m-5 {
  margin: 5px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.m-10 {
  margin: 10px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.m-15 {
  margin: 15px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.m-20 {
  margin: 20px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.m-30 {
  margin: 30px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.m-40 {
  margin: 40px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.m-60 {
  margin: 60px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.m-80 {
  margin: 80px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.ml-80 {
  margin-left: 80px !important;
}
.mr-80 {
  margin-right: 80px !important;
}

/* ===============
    Paddings
	 =============== */

.p-5 {
  padding: 5px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.p-10 {
  padding: 10px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pl-10 {
  padding-left: 10px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.p-15 {
  padding: 15px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.p-20 {
  padding: 20px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.p-30 {
  padding: 30px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.p-40 {
  padding: 40px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.p-50 {
  padding: 50px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.p-60 {
  padding: 60px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.p-80 {
  padding: 80px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.pr-80 {
  padding-right: 80px !important;
}

/* ===============
    LINKS
	 =============== */
.lk {
  transition: opacity 0.4s;
}
.lk-underline {
  text-decoration: underline;
}
.lk-green {
  color: #03b953 !important;
}
.lk-green:hover {
  opacity: 0.8;
}
.lk-hover-green {
  transition: 0.5s;
}
.lk-hover-green:hover {
  color: #03b953;
}

.lk-black {
  color: #000 !important;
}
.lk-black:hover {
  opacity: 0.4;
}

.lk-underline {
  text-decoration: underline;
}

/* ===============
    ALL: IE Fixes
   =============== */

.lt-ie9 body {
  behavior: url("../css/csshover3.htc");
}

/* ==========================================================================
   Général
   ========================================================================== */

h1 {
  font-family: "Union Regular", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  margin: 0;
}

b,
strong {
  font-family: "Union Bold", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
}
i,
em {
  font-family: "Union Regular Italic", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
}

.mq_state_indicator {
  position: absolute;
  top: -999px;
  left: -999px;
  z-index: 4;
}

ul.small-list li,
ol.small-list li {
  padding-bottom: 3px;
}
ul.large-padding-list li,
ol.large-padding-list li {
  padding-bottom: 6px;
}

/* Mootools-more Mask Class (d'après https://github.com/mootools/mootools-more/blob/master/Styles/Interface/Mask/mask.css) */
.mask {
  position: absolute;
  opacity: 0.69;
  filter: alpha(opacity=69);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=69);
  z-index: 900;
  background: #fff;
  cursor: crosshair;
}

a.menu:hover {
  color: #03b953;
}
a[href^="mailto"],
a.mail2,
a.http {
  color: #03b953;
}
a.bloc {
  display: block;
  margin-bottom: 5px;
}

/* ==========================================================================
   BODY
   ========================================================================== */

body {
  width: 100%;
  min-width: 320px;
  font-size: 1.5rem;
  line-height: 1.9rem;
  position: relative;
}

#container {
  max-width: var(--website-max-width);
  margin: auto;
}

/* ==========================================================================
   C O N S T R U C T I O N => Suppr.
   ========================================================================== */

div#construction {
  width: 100%;
  height: 400px;
  text-transform: uppercase;
  font-size: 2.8rem;
  padding-top: 30px;
}

/* =========================================================================================
   YOUBTUBE VIDEO INTEGRATION
	 ========================================================================================= */

.youtube-player {
  position: relative;
  padding-bottom: 63.5%;
  /* Use 75% for 4:3 videos */
  height: 0;
  overflow: hidden;
  width: 100%;
  background: #000;
}
.homepage-festival-text .youtube-player {
  padding-bottom: 63.5%;
}
.youtube-player a {
  /* added for broken/no JS */
  display: block;
  margin: 10% auto 0 auto;
  text-align: center;
  color: #fff;
}
.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}
.youtube-player img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  -moz-transition: 0.2s all;
  transition: 0.2s all;
}
.youtube-player .placeholder {
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.youtube-player img:hover {
  -webkit-filter: brightness(75%);
  filter: brightness(75%);
}
.youtube-player .play:hover {
  background: no-repeat center/15% url("/img/video-play-icon-active.png");
}

.youtube-player .play {
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
  background: no-repeat center/15% url("/img/video-play-icon.png");
  cursor: pointer;
}

/* ==========================================================================
   H O M E  3  C O U L E U R S
   ========================================================================== */

body.home3colors {
  height: 100%;
  overflow-y: scroll;
}
body.home3colors h1 {
  font-size: 4.4rem;
  line-height: 3.9rem;
  letter-spacing: -0.1rem;
  text-transform: uppercase;
}

body.home3colors header {
  width: 100%;
  min-height: 125px;
  height: calc(((100%) / 1.61803398875) / 1.61803398875);
  padding: 35px;
}
body.home3colors header div.home_header_content {
  float: left;
  width: 50%;
}
body.home3colors nav#nav_1 .nav_1_box {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 10;
}
body.home3colors nav#nav_1 .nav_1_bg_col1 {
  background-size: cover;
}
body.home3colors nav#nav_1 .nav_1_bg_col2 {
  background-size: cover;
}
body.home3colors nav#nav_1 {
  width: 100%;
  min-height: 202px;
  height: calc((100%) / 1.61803398875);
}
body.home3colors nav#nav_1 a {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
}
body.home3colors nav#nav_1 a .nav_1_labelbox {
  margin: auto;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8rem;
  text-transform: uppercase;
}
body.home3colors nav#nav_1 .bg_vert .nav_1_labelbox .nav_1_sublabel {
  color: #acfed0;
}
body.home3colors nav#nav_1 .bg_rose .nav_1_labelbox .nav_1_sublabel {
  color: #fee0e7;
}
body.home3colors nav#nav_1 .bg_vert:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
body.home3colors nav#nav_1 .bg_rose:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

body.home3colors #homepage_sticker.homepage_sticker_mobile {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
}
body.home3colors #homepage_sticker .homepage_sticker_box {
  position: absolute;
  z-index: 10;
  top: 12%;
  right: 0;
  padding: 42px 50px;
  background-color: #fff;
  line-height: 1.8rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: right;
  font-weight: bold;
  -webkit-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.3);
}
body.home3colors
  #homepage_sticker.homepage_sticker_mobile
  .homepage_sticker_box {
  top: auto;
  right: auto;
}
body.home3colors #homepage_sticker .line1 {
  font-size: 2.4rem;
  line-height: 2rem;
  margin-bottom: 4px;
}
body.home3colors #homepage_sticker .button_attention {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: normal;
  padding: 4px 12px;
  margin-top: 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
}
body.home3colors #homepage_sticker .close {
  height: 24px;
  width: 24px;
  position: absolute;
  top: 12px;
  right: 10px;
  cursor: pointer;
}

/**** HOMEPAGE 30 ANS ***/
.home_header_content_layer_back {
  height: calc(100% + 10px);
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  font-size: 37px;
  text-transform: uppercase;
  line-height: 39px;
  opacity: 0.3;
  overflow: hidden;
  white-space: nowrap;
}
.home_header_content_layer_front {
}

.animation .home_header_30ans {
  animation: marquee 50s linear infinite;
}

.padd-0 {
  margin-left: -150px;
}
.padd-r-0 {
  margin-left: calc(-150px);
  transform: translateX(-80000px);
  animation: marquee-reverse 6400s linear infinite !important;
}
.padd-1 {
  margin-left: -5px;
}
.padd-r-1 {
  margin-left: -5px;
}
.padd-2 {
  margin-left: -410px;
}
.padd-r-2 {
  margin-left: calc(-410px);
  transform: translateX(-80000px);
  animation: marquee-reverse 3300s linear infinite !important;
}
.padd-3 {
  margin-left: -20px;
}
.padd-r-3 {
  margin-left: -20px;
}
.padd-4 {
  margin-left: -215px;
}
.padd-r-4 {
  margin-left: calc(-215px);
  transform: translateX(-80000px);
  animation: marquee-reverse 6600s linear infinite !important;
}
.padd-5 {
  margin-left: -800px;
}
.padd-r-5 {
  margin-left: -800px;
}
.padd-6 {
  margin-left: -110px;
}
.padd-r-6 {
  margin-left: calc(-110px);
  transform: translateX(-80000px);
  animation: marquee-reverse 9000s linear infinite !important;
}
.padd-7 {
  margin-left: -405px;
}
.padd-r-7 {
  margin-left: -405px;
}
.padd-8 {
  margin-left: -220px;
}
.padd-r-8 {
  margin-left: calc(-220px);
  transform: translateX(-80000px);
  animation: marquee-reverse 8000s linear infinite !important;
}
.padd-9 {
  margin-left: -25px;
}
.padd-r-9 {
  margin-left: -25px;
}
.padd-10 {
  margin-left: -10px;
}
.padd-r-10 {
  margin-left: calc(-10px);
  transform: translateX(-80000px);
  animation: marquee-reverse 5000s linear infinite !important;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}
@keyframes marquee-reverse {
  to {
    transform: translateX(100%);
  }
}

/* ==========================================================================
   DIVERS
   ========================================================================== */

a#amis_download {
  display: block;
  height: 21px;
  line-height: 2.1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  background: url("../img/download_bis.png") no-repeat 0 0;
  padding: 0 0 0 25px;
}

input#email {
  float: left;
  width: 300px;
  height: 27px;
  line-height: 2.7rem;
  border: 1px solid #000;
  padding: 0 5px;
  margin: 7px 2px 15px 0;
}
input#submit_email {
  width: 80px;
  height: 27px;
  line-height: 2.7rem;
  border: 1px solid #000;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  margin: 7px 0 15px 0;
}

.newsletter .small-notes {
  font-size: 11px;
  max-width: 400px;
  color: #888;
  margin-top: 30px;
}
.newsletter .small-notes a {
  text-decoration: underline;
}

/* ==========================================================================
   H E A D E R
   ========================================================================== */

header {
  position: relative;
  width: 100%;
  padding: var(--header-padding-top) var(--header-padding-horizontal) 8px;
  z-index: 2;
  background-color: #fff;
}
header h1 {
  font-size: 2.2rem;
  line-height: 2.4rem;
}
#header_title {
  display: flex;
  margin: 0 var(--header-inner-padding-horizontal)
    var(--header-inner-padding-horizontal);
  position: relative;
}
#header_title .switch_lang {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
  color: #aaa;
  z-index: 1000;
  font-style: italic;
  padding: 0 6px;
  border-radius: 5px;
  background-color: #ccc;
  color: white;
  text-transform: lowercase;
}
#header_title .header_admin {
  right: 40px;
}
#header_title .header_admin.vert {
  background-color: #03b953;
}
#header_title .header_admin.orange {
  background-color: #feb23b;
}
#header_title .header_admin.bleu {
  background-color: #0458b7;
}

header div#col1 {
  flex-wrap: wrap;
  width: 230px;
  /* height: 70px; */ /* 70 = (28 x 2) pour 2 lignes fs28 + 9px padding-bottom + 5px de border-bottom (on compte pas les 3px de paddin-top pour l'accent sur le A de "A TOULOUSE") */
  margin-bottom: 20px;
}
header div#col2 {
  position: relative;
  flex-wrap: wrap;
  height: 70px; /* 70 = (28 x 2) pour 2 lignes fs28 + 9px padding-bottom + 5px de border-bottom (on compte pas les 3px de paddin-top pour l'accent sur le A de "A TOULOUSE") */
  flex: 1;
}
header.top_header {
  padding: 0 20px 0 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.5rem;
  height: 40px;
  line-height: 4rem;
}

#nav {
  display: flex;
  justify-content: flex-end;
  font-size: 1.5rem;
  text-transform: uppercase;
  align-items: center;
}
#nav div {
  display: flex;
}
#nav .title {
  padding-right: 25px;
}
#nav .separation {
  border-right: 1px solid #ddd;
  margin: 4px 0;
  height: 12px;
}
#nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 25px;
  /* font-weight: bold; */
}
#nav li {
  padding-right: 25px;
}
#nav li.color-gray {
  color: #888;
}
#nav .title,
#nav li.active,
#nav ul a:hover {
  color: #03b953;
}
#nav.menu_adresse .title,
#nav.menu_adresse li.active,
#nav.menu_adresse ul a:hover {
  color: #f95d80;
}
#nav.menu_rencontres .title,
#nav.menu_rencontres li.active,
#nav.menu_rencontres ul a:hover {
  color: #0458b7;
}
#nav .menu_extend_icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media screen and (min-width: 767px) and (max-width: 1090px) {
  #nav .menu_infos_pratiques {
    display: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 925px) {
  #nav .menu_mediation {
    display: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 820px) {
  #nav .menu_archives {
    display: none;
  }
}

#header-bottom {
  margin: 0 20px;
  border-bottom: 5px solid #000000;
  z-index: 1;
}
.layout-map #header-bottom {
  display: none;
}

/* ==========================================================================
	 HEADER MOBILE
	 ========================================================================== */
#header_title_mobile {
  display: none;
  position: relative;
}
#header_title_mobile .menu_extend_icon {
  width: 30px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

/* ==========================================================================
	 FULL PAGE MENU
   ========================================================================== */
#fullpage-menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #111;
  min-height: 100vh;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  transition-delay: 0.2s;
  z-index: 1000;
  /* display: flex;
	flex-direction: column;
	justify-content: space-between; */
}
#fullpage-menu.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
#fullpage-menu .menu-wrapper {
  padding: var(--header-padding-top) var(--header-padding-horizontal);
  max-width: var(--website-max-width);
  margin: 0 auto;
  position: relative;
}
#fullpage-menu .menu-header {
  padding: 0 var(--header-inner-padding-horizontal) 38px;
  font-size: 2.2rem;
  line-height: 2.4rem;
  display: flex;
  color: #ddd;
  border-bottom: 5px solid #eee;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  transition-delay: 0s;
}
#fullpage-menu.open .menu-header {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}
#fullpage-menu .menu-header .col {
  width: 50%;
}
#fullpage-menu .menu-main {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 45px auto;
}
#fullpage-menu .menu-col {
  margin: 0 20px;
  width: 210px;
}
#fullpage-menu .lvl1 {
  font-size: 2.4rem;
  text-transform: uppercase;
  padding: 20px 0px 10px;
  text-align: left;
}
#fullpage-menu .lvl2 {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding-top: 15px;
  text-align: left;
}
#fullpage-menu .lvl2 ul .gray {
  color: #111;
}
#fullpage-menu .lvl2 ul {
  list-style-type: none;
}
#fullpage-menu .lvl2 li {
  padding-bottom: 15px;
}
#fullpage-menu .lvl2 a.color-gray {
  color: #888;
}
#fullpage-menu .lvl1 a,
#fullpage-menu .lvl2 a {
  transition: color 0.4s;
}
#fullpage-menu .lvl1.menu_festival a.active,
#fullpage-menu .lvl1.menu_festival a:hover,
#fullpage-menu .lvl2.menu_festival a:hover,
#fullpage-menu .lvl2.menu_festival a.active {
  color: #03b953;
}
#fullpage-menu .lvl1.menu_adresse a.active,
#fullpage-menu .lvl1.menu_adresse a:hover,
#fullpage-menu .lvl2.menu_adresse a:hover,
#fullpage-menu .lvl2.menu_adresse a.active {
  color: #f95d80;
}
#fullpage-menu .lvl1.menu_hors_les_murs a.active,
#fullpage-menu .lvl1.menu_hors_les_murs a:hover,
#fullpage-menu .lvl2.menu_hors_les_murs a:hover,
#fullpage-menu .lvl2.menu_hors_les_murs a.active,
#fullpage-menu .lvl1.menu_plus a.active,
#fullpage-menu .lvl1.menu_plus a:hover,
#fullpage-menu .lvl2.menu_plus a:hover,
#fullpage-menu .lvl2.menu_plus a.active {
  color: #0458b7;
}
#fullpage-menu .lvl1.first {
  padding-top: 60px;
}
#fullpage-menu-close {
  position: absolute;
  cursor: pointer;
  width: 30px;
  top: var(--header-padding-top);
  right: calc(
    var(--header-padding-horizontal) + var(--header-inner-padding-horizontal)
  );
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  transition-delay: 0s;
}
#fullpage-menu.open #fullpage-menu-close {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}
#fullpage-menu .lvl1 {
  opacity: 0;
  transition: opacity 0.2s;
}
#fullpage-menu.open .social,
#fullpage-menu.open .lvl1 {
  opacity: 1;
  transition-delay: 0.2s;
}
#fullpage-menu .lvl2 ul li {
  opacity: 0;
  -webkit-transform: translate(6px, 0);
  transform: translate(6px, 0);
  transition: all 0.3s ease;
}
#fullpage-menu.open .lvl2 ul li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#fullpage-menu.open .lvl2 ul li:nth-child(1) {
  transition-delay: 220ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(2) {
  transition-delay: 240ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(3) {
  transition-delay: 260ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(4) {
  transition-delay: 280ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(5) {
  transition-delay: 300ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(6) {
  transition-delay: 320ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(7) {
  transition-delay: 340ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(8) {
  transition-delay: 360ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(9) {
  transition-delay: 380ms;
}
#fullpage-menu.open .lvl2 ul li:nth-child(10) {
  transition-delay: 400ms;
}
#fullpage-menu .menu-footer {
  max-width: 1000px;
  padding: 30px 30px 60px;
  margin: auto;
}
#fullpage-menu .social {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}
#fullpage-menu .social .picto {
  font-size: 18px;
  margin-right: 10px;
}
#fullpage-menu .social .separation {
  padding-left: 10px;
  margin: 4px 20px 4px 0;
  border-right: 1px solid #fff;
}
#fullpage-menu .social .newsletter {
  padding: 5px 10px 5px 4px;
}
#fullpage-menu .social .newsletter i {
  vertical-align: text-top;
  font-size: 17px;
  padding-right: 2px;
}
#fullpage-menu .social .tooltip {
  display: inline-block;
  position: relative;
  border-bottom: 1px dotted #666;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}
#fullpage-menu.open .social .tooltip {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.2s;
}
#fullpage-menu .social .tooltip .top {
  position: absolute;
  transform: translate(-10%, -100%);
  top: -28px;
  left: 16px;
  min-width: 168px;
  padding: 10px 20px;
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: normal;
  color: #ffffff;
  background-color: #0458b7;
  z-index: 99999999;
}
#fullpage-menu .social .tooltip .top i {
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}
#fullpage-menu .social .tooltip .top i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #0458b7;
}
#fullpage-menu .icon-plus {
  display: none;
}

/* ==========================================================================
   BANNER GDPR
   ========================================================================== */
#banner-gdpr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #000;
  border-top: 1px solid #000;
  font-size: 13px;
}
.banner-gdpr-wrapper {
  text-align: center;
  padding: 15px;
}
.banner-gdpr-plus {
  text-decoration: underline;
}
#banner-gdpr-accept {
  /* text-decoration: underline; */
  border: 1px solid #000;
  padding: 5px 8px;
  text-transform: none;
  cursor: pointer;
}

/* ==========================================================================
   M A I N
   ========================================================================== */

div#main_container {
  position: relative;
  width: 100%;
  padding: 0 20px 10px 20px; /* TODO: déterminer top et bottom !!! */
}
div#main_container h2.page-name {
  font-family: "Union Regular", Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  text-transform: uppercase;
  font-size: 2.8rem;
  line-height: 2.8rem;
  margin-bottom: 1.5rem;
}
div#main_container div#mos_container {
  position: relative;
  width: 100%;
}
div#main_container div#mos_container.pros {
  padding: 0;
}
div#main_container div#mos_container.archives {
  border-top: 5px solid #000;
  padding: 0;
}

div#main_container div.item_container {
  display: inline-block; /* Afin d'être 'sensible' à la directive 'text-align: center' de div#artist_container  */
  width: 100%;
  max-width: 1400px;
  text-align: left; /* Afin de contrer la directive 'text-align: center' de div#artist_container (div#item_container est centré, mais le texte qu'il contient ne doit pas l'être)  */
}

div#main_container div.title {
  width: 100%;
  font-size: 2.8rem;
  line-height: 2.8rem;
  margin: 10px 0 15px 0;
  text-transform: uppercase;
}

.programmation-nav {
  display: flex;
  justify-content: space-between;
}
.programmation-links {
  display: flex;
  justify-content: right;
  margin-bottom: 15px;
}
.programmation-links a {
  margin-left: 15px;
}
.programmation-links a .text-short {
  display: none;
}
.programmation-links-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
}
.programmation-links-mobile a {
  flex-basis: 50%;
  flex-grow: 1;
  padding: 15px 0;
  border-top: 2px solid #000;
}
.programmation-links-mobile a.br {
  border-right: 2px solid #000;
}
.programmation-links-mobile i {
  font-size: 1.4rem;
  vertical-align: middle;
  margin-right: 7px;
}
.programmation-info {
  background-color: #eee;
  padding: 10px 15px;
  display: flex;
  flex-direction: row;
}
.programmation-info i:first-child {
  padding: 2px 2px 0 0;
}

/* ==========================================================================
   FESTIVAL HOMEPAGE
   ========================================================================== */

.homepage-festival-banner img {
  width: 100%;
  border-bottom: 5px solid #000;
}
.homepage-festival-text {
  width: 100%;
  padding: 50px 20px;
  font-size: 16px;
}
.homepage-festival-text div {
  max-width: 900px;
  margin: auto;
}
.homepage-festival-text-programmation-link {
  margin-top: 20px !important;
  margin: auto;
  text-align: center;
}
.progamme-mobile-links {
  text-transform: uppercase;
}
.progamme-mobile-links a {
  display: block;
  font-size: 24px;
  line-height: 28px;
}
.progamme-mobile-links a:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.instagram {
  display: flex;
}
.instagram__image:not(:first-child) {
  padding-left: 5px;
}
.instagram__image {
  width: 25%;
}
.instagram__image img {
  width: 100%;
}
.instagram-link {
  font-size: 10px;
  vertical-align: top;
}

/* ************ Filtres ************ */
div#main_container div#filtre_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background-color: #fff;
  border-bottom: 5px solid #000;
  z-index: 20;
  overflow-y: hidden;
}

div#main_container div#filtre_container div#filtre_titles {
  width: 100%;
}
div#main_container div#filtre_container div#filtre_titles div {
  float: left;
  width: 25%;
  height: 30px;
  padding: 2px 0 2px 0;
}
div#main_container div#filtre_container div#filtre_titles div a {
  display: inline-block;
  height: 26px;
  line-height: 2.6rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  background: url("../img/fleche_b.png") no-repeat right 10px;
  padding-right: 14px;
}
div#main_container div#filtre_container div#filtre_titles div a.grey {
  color: #b0b0b0;
  background: url("../img/fleche_b_grey.png") no-repeat right 10px;
}
div#main_container div#filtre_container div#filtre_titles div a.green {
  color: #03b953;
  background: url("../img/fleche_h_green.png") no-repeat right 10px;
}
div#main_container
  div#filtre_container
  div#filtre_titles
  div
  a#mos_filtre_delete {
  display: none;
  float: right;
  height: 18px;
  line-height: 1.8rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  background: none;
  padding-right: 0;
  margin-top: 4px;
}
div#main_container
  div#filtre_container
  div#filtre_titles
  div
  a#mos_filtre_delete
  span {
  display: inline-block;
  height: 18px;
  line-height: 1.9rem;
  padding-right: 6px;
}
div#main_container
  div#filtre_container
  div#filtre_titles
  div
  a#mos_filtre_delete
  img {
  float: right;
}

div#main_container div#filtre_container div#filtre_content {
  width: 100%;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 20px 0;
}
div#main_container div#filtre_container div#filtre_content ul {
  float: left;
  list-style-type: none;
  padding-right: 30px;
}
div#main_container div#filtre_container div#filtre_content ul.dates {
  padding-right: 0;
  text-align: center;
}
div#main_container div#filtre_container div#filtre_content ul li {
  line-height: 1.3rem;
  margin-bottom: 10px;
}
div#main_container div#filtre_container div#filtre_content ul li br {
  display: none;
}
div#main_container
  div#filtre_container
  div#filtre_content
  ul
  li.alphabet_segment {
  margin-bottom: 30px;
}
div#main_container
  div#filtre_container
  div#filtre_content
  ul
  li.date_filter_li {
  margin-bottom: 27px;
}
div#main_container div#filtre_container div#filtre_content ul li.grey {
  color: #b0b0b0;
}
div#main_container div#filtre_container div#filtre_content ul li span {
  color: #000;
  cursor: pointer;
}
.no-touchevents
  div#main_container
  div#filtre_container
  div#filtre_content
  ul
  li
  span:hover {
  color: #03b953;
}
div#main_container div#filtre_container div#filtre_content ul li span.selected {
  color: #03b953;
  padding-right: 18px;
  background: url("../img/check.png") no-repeat top right;
}
div#main_container
  div#filtre_container
  div#filtre_content
  ul.dates
  li
  span.selected {
  margin-left: 18px;
}

/* ************ Mosaïque ************ */

div#main_container div.col {
  float: left;
  margin-right: 5px;
}

.event-items .item {
  width: 100%;
}

.event-items .item a {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 3px;
  overflow: hidden;
}
.event-items .item a img {
  display: block;
  width: 100%;
}
.event-items .item a img.gif_anim {
  display: none;
}
.event-items .item a img.icone_play,
.event-items .item a img.zip_download {
  position: absolute;
  top: calc(50% - 22px);
  left: calc(50% - 22px);
  width: 44px;
  height: 44px;
  z-index: 10;
}

.event-items .item h2.item_name,
.event-items .item div.item_title {
  width: 100%;
  line-height: 1.8rem;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.event-items .item h2.item_name {
  font-weight: normal;
}
.event-items .item div.item_type-place,
.event-items .item div.item_img-download {
  width: 100%;
  line-height: 1.1rem;
  font-size: 0.9rem;
  margin: 1px 0 23px 0;
  text-transform: uppercase;
}

.event-items .item div.item_type-date {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.event-items .item div.item_type-date .tag {
  line-height: 10px;
}
.event-items .item div.item_type-date .item_type,
.event-items .item div.item_type-date .item_date {
  background-color: #000;
  color: #fff;
  opacity: 0.8;
  text-transform: uppercase;
  padding: 2px 4px;
  margin-right: 4px;
  font-size: 0.8rem;
}
.event-items .item_type-date .item_date {
  background-color: #03b953 !important;
  opacity: 0.85 !important;
}
.event-items .item_type-date .item_date_rose {
  background-color: #f95d80 !important;
  opacity: 0.85 !important;
}

/* ************ Page Adresse Item ************ */

.addr-item #art_title {
  padding-left: 0 !important;
}
.addr-item .bloc-media {
  position: relative;
}
.addr-item .bloc-media-photo {
  width: 100%;
  height: auto;
}
.addr-item .bloc-media-video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 5px;
}
.addr-item .bloc-media-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.addr-item .bloc-media-legend {
  position: absolute;
  bottom: 45px;
  left: 15px;
  color: grey;
  padding: 10px 15px;
  background-color: white;
  display: none;
  font-size: 13px;
  font-family: "ui-serif";
}
.addr-item .bloc-media-legend-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 20px;
}
.addr-item .bloc-media-legend-icon:hover + .bloc-media-legend {
  display: block;
}
.addr-item .bloc-media-video .bloc-media-legend {
  bottom: 0;
}
.addr-item .bloc-text {
  margin-bottom: 25px;
}
.addr-item .bloc-text-content {
}
.addr-item.is-mobile .bloc-text {
  margin-top: 20px;
}

/* ************ Page Artiste ************ */

div#main_container div#artist_container {
  text-align: center;
  margin-bottom: 15px;
}

div#main_container div#item_nav {
  width: 100%;
  height: 14px;
  margin: 9px 0 19px 0;
}
div#main_container div#item_nav a#item_nav_h {
  float: left;
  height: 14px;
  line-height: 1.4rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  background: url("../img/fleche_h.png") no-repeat 0 4px;
  padding: 0 0 0 14px;
}
div#main_container div#item_nav a#item_nav_g {
  float: right;
  width: 16px;
  height: 14px;
  background: url("../img/fleche_g.png") no-repeat 6px 2px;
  padding: 0 6px 0 6px;
}
div#main_container div#item_nav a#item_nav_d {
  float: right;
  width: 10px;
  height: 14px;
  background: url("../img/fleche_d.png") no-repeat 6px 2px;
  padding-left: 6px;
  margin-left: 14px;
}

div#main_container div.art_bloc {
  width: 50%;
}

div#main_container div#art_title,
div#main_container div#art_crea,
div#main_container div#art_desc,
div#main_container div#art_prod,
div#main_container div#art_plan_partage,
div#main_container div#art_tags {
  clear: right;
  float: right;
  padding-left: 12px;
}
div#main_container div.art_media {
  float: left;
  border-right: 12px solid #fff;
  margin-bottom: 20px;
  overflow-x: hidden;
}

div#main_container div#art_title,
div#main_container div.art_title {
  font-size: 2.8rem;
  line-height: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 35px;
}
div#main_container div.art_title {
  border-top: 5px solid #000;
  padding-top: 15px;
}

div#main_container div#art_title h2.item_name,
div#main_container div#art_title div.item_title,
div#main_container div#art_title div.item_day-hour,
div#main_container div.art_title h2.item_name,
div#main_container div.art_title div.item_title,
div#main_container div.art_title div.item_day-hour {
  width: 100%;
}
div#main_container div#art_title div.item_title,
div#main_container div.art_title div.item_title {
  line-height: 3rem;
}
div#main_container div#art_title h2.item_name,
div#main_container div.art_title h2.item_name {
  font-size: 2.8rem;
  font-weight: normal;
}
div#main_container div#art_title div.item_type-place,
div#main_container div.art_title div.item_type-place {
  width: 100%;
  font-size: 1.2rem;
  line-height: 2rem;
}

div#main_container div#art_crea {
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

div#main_container div#art_desc {
  font-size: 1.4rem;
  line-height: 1.9rem;
  margin-bottom: 15px;
}

div#main_container div#art_prod {
  font-size: 1.4rem;
  line-height: 1.9rem;
  margin-bottom: 15px;
}

div#main_container div#art_plan_partage {
  margin-bottom: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
div#main_container div#art_plan_partage a#art_plan {
}
div#main_container div#art_plan_partage a#art_plan i {
  font-size: 1.4rem;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -2px;
}
div#main_container div#art_plan_partage a#art_partage {
  float: left;
  height: 22px;
  line-height: 2.2rem;
  background: url("../img/icone_partage.png") no-repeat 0 1px;
  padding-left: 25px; /* 18 (largeur de l'image) + 7 */
}

div#main_container div#art_tags {
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
div#main_container div#art_tags div,
div#main_container div#art_tags a {
  float: left;
  border: solid 1px #b0b0b0;
  padding: 8px 9px 7px 9px;
  margin: 10px 10px 0 0;
  cursor: pointer;
}
div#main_container div#art_tags div span,
div#main_container div#art_tags a span {
  display: block;
  line-height: 1.1rem;
}

div#main_container div.art_media div.slide_container {
  overflow-y: hidden;
}
div#main_container div.art_media div.slide_container div.media_item {
  float: left;
}
div#main_container div.art_media div.slide_container div.media_item img {
  display: block;
  width: 100%;
}

/* Pour les deux règles CSS suivantes : https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
/* Tous les site ajoute un padding-top: 25px : il ne fait qu'ajouter des bandes noires en haut et en bas !!! Je l'ai donc supprimé. */
div#main_container
  div.art_media
  div.slide_container
  div.media_item
  div.video_container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* Pour les vidéo 16:9 => (9 / 16) * 100 = 56.25 => il faudrait donc adapter dynamiquement dans le php s'il y avait aussi des vidéos 4:3 !!! */
  overflow: hidden;
}
div#main_container
  div.art_media
  div.slide_container
  div.media_item
  div.video_container
  iframe,
div#main_container
  div.art_media
  div.slide_container
  div.media_item
  div.video_container
  object,
div#main_container
  div.art_media
  div.slide_container
  div.media_item
  div.video_container
  embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

div#main_container div.art_media div.media_container_legend_pts {
  display: table;
  width: 100%;
  margin-top: 9px;
}
div#main_container
  div.art_media
  div.media_container_legend_pts
  div.media_container_legend {
  display: table-cell;
  vertical-align: top;
  font-size: 0.9rem;
  line-height: 1.1rem;
  text-transform: uppercase;
}
div#main_container
  div.art_media
  div.media_container_legend_pts
  div.media_container_legend
  div.media_legend {
  display: none;
}
div#main_container
  div.art_media
  div.media_container_legend_pts
  div.media_container_legend
  div.media_legend.l_active {
  display: block;
}
div#main_container
  div.art_media
  div.media_container_legend_pts
  div.media_container_pts {
  display: table-cell;
  height: 13px; /* Hauteur minimum : sinon apparaît un ascenseur dans 'art_media' => et je ne sais pas pourquoi !!!*/
  vertical-align: top;
  padding-left: 25px;
}
div#main_container
  div.art_media
  div.media_container_legend_pts
  div.media_container_pts
  img,
div#main_container
  div.art_media
  div.media_container_legend_pts
  div.media_container_pts
  a {
  float: right;
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin-left: 10px;
}

div#main_container div#artist_container div#two_cols_container {
  margin-top: 10px;
}

/* ************ Informations pratiques ************ */
a#infos_p_guide {
  display: block;
  width: 35.7%;
  margin-top: 5px;
}
a#infos_p_guide img {
  display: block;
  width: 100%;
  border: 1px solid #000;
  margin-top: 5px;
}

/* ************ L I E U X ************ */

.layout-map header {
  position: fixed;
  top: 0;
  max-width: var(--website-max-width);
}
.layout-map #main_container {
  position: absolute;
  top: 0; /* JS will override this with header height */
  max-width: var(--website-max-width);
}

/* Remove arrow of the google maps tooltip (infowindow) */
.gm-style .gm-style-iw-t::after {
  background: none;
  box-shadow: none;
}
/* Remove close button of the google maps tooltip (infowindow) */
.gm-style-iw-a button {
  display: none;
}
#iw-container {
  max-width: 150px;
}

#map-wrapper {
  width: 100%;
  height: auto; /* JS will override this with header height */
  border-top: 5px solid black;
}
#map-wrapper #map {
  width: 100%;
  padding-bottom: 48.7234043%; /* Le % de padding est un % de width => permet d'exprimer height en fonction de width, et donc de conserver un rapport constant entre l'un et l'autre */
  height: 100%;
}
#map-wrapper .lieu-content {
  position: relative;
  margin-top: 20px;
  padding-right: 20px;
}
#map-wrapper .lieu-map {
  flex-grow: 2;
}

#map-wrapper #map.details {
  padding-bottom: 100%;
}
#map-wrapper #back-to-map {
  position: absolute;
  top: 0;
  right: 20px;
  width: 24px;
  height: 24px;
  background-image: url(../img/close-cross-24x24.png);
  background-size: cover;
}
#map-wrapper #lieu_name {
  font-size: 2.8rem;
  line-height: 2.8rem;
  text-transform: uppercase;
  margin-right: 30px;
}
#map-wrapper .lieu_tel_email_url {
  width: 100%;
  height: 29px;
  line-height: 2.9rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#map-wrapper .lieu_tel_email_url.not_first {
  border-top: 0 none;
}

#map-wrapper .items {
  margin-top: 20px;
}

/* ****** AGENDA ****** */

.fest-item-list .fest-agenda-daylist {
  display: flex;
  flex-wrap: wrap;
}
.fest-item-list .fest-agenda-daylist .item {
  margin-right: 15px;
  max-width: 400px;
}

.fest-item-list__mediation .fest-agenda-daylist .item {
  width: 300px;
}

.fest-item-list .item {
  display: flex;
  margin-bottom: 10px;
  position: relative;
  border: 1px solid #000;
}
.fest-item-list .visual {
  background-position: center center;
  background-size: cover;
  width: 340px;
  min-height: 150px;
}
.fest-item-list .item .content {
  padding: 15px;
  width: 100%;
}
.fest-item-list .item img {
  width: 200px;
}
.fest-item-list .item .artist,
.fest-item-list .item .item_title {
  line-height: 1.8rem;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.fest-item-list .item .artist.small-txt {
  line-height: 1.2rem;
  font-size: 1rem;
}
.fest-item-list .item .lieu {
  line-height: 1.1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.fest-item-list__mediation .item .lieu {
  line-height: 1.4rem;
  font-size: 1rem;
}
.fest-item-list .item .item_type-date div {
  height: 13px;
  /* position: absolute;
	bottom: 5px;
	left: 5px; */
}
.fest-item-list .item .item_type,
.fest-item-list .item .item_date {
  background-color: #000;
  color: #fff;
  opacity: 0.7;
  border-radius: 1px;
  text-transform: uppercase;
  padding: 2px 4px;
  margin-right: 1px;
  font-size: 0.9rem;
}
.fest-item-list .item .item_date {
  background-color: #03b953;
  opacity: 0.85;
}

/* ************ QUAND ************ */
div#main_container div#quand_title {
  width: 100%;
  height: 35px;
  line-height: 3.3rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-bottom: 5px solid #000;
}

/* ************ Médiation ************ */
div#mediation_calendar_container {
  clear: both;
  float: left;
  width: 100%;
  border-top: 5px solid #000000;
  margin-top: 35px;
}

/* ************ Calendar accordion & Calendriers déporté (Médiation sous Artistes et Lieux, etc...) ************ */
div.accordion_toggler {
  width: 100%;
  height: 38px;
  line-height: 3.8rem;
  font-size: 1.2rem;
  border-top: 1px solid #000000;
}
div.accordion_toggler.first {
  border: none;
}
div.accordion_toggler ul {
  width: 100%;
  list-style-type: none;
}
div.accordion_toggler ul li {
  float: left;
  width: 14.2857%;
  height: 38px;
  line-height: 3.8rem;
  text-align: center;
}
div.accordion_toggler ul li.bg_point {
  background: url(../img/bg_point.png) no-repeat center 4px;
}
div.accordion_toggler ul li a {
  display: inline-block;
  height: 30px;
  line-height: 3rem;
}
div.accordion_toggler ul li a.active {
  color: #03b953;
  cursor: default;
}
div.accordion_toggler ul li a:hover {
  color: #03b953;
}
div.accordion_toggler ul li span {
  display: inline-block;
  color: #b0b0b0;
  cursor: default;
}
div.accordion_toggler ul li span.space_before_br {
  display: inline;
}
div.accordion_toggler ul li br {
  display: none;
}

div.accordion_element {
  width: 100%;
}
div.accordion_element div.date_wrapper {
  display: none;
}
div.accordion_element div#two_cols_left,
div.accordion_element div#two_cols_right {
  padding: 17px 0 25px 0;
}
div.accordion_element div.media_item,
div#two_cols_container div.media_item {
  margin-bottom: 18px;
  text-transform: uppercase;
}
div.accordion_element div.media_item div.media_item_date,
div#two_cols_container div.media_item div.media_item_date {
  font-size: 1.6rem;
  color: #f95d80;
}
div.accordion_element div.media_item div.media_item_title,
div#two_cols_container div.media_item div.media_item_title {
  font-size: 1.6rem;
}
div.accordion_element div.media_item div.media_item_other,
div.accordion_element div.media_item div.media_item_other p,
div#two_cols_container div.media_item div.media_item_other,
div#two_cols_container div.media_item div.media_item_other p {
  font-size: 0.9rem;
  line-height: 1.1rem;
}

/* ************ Avec ************ */
div#avec_container {
  width: 100%;
  padding: 20px 0 15px 0;
}
div#avec_container div#avec_title {
  font-size: 2.8rem;
  line-height: 2.8rem;
}
div#avec_container div.avec {
  float: left;
  margin: 25px 5px 50px 0;
}
div#avec_container div.avec div {
  min-height: 45px;
  line-height: 1.5rem;
  font-size: 1.4rem;
  padding-right: 20px;
  margin-bottom: 5px;
}
div#avec_container div.avec img {
  float: left;
  margin-left: 20px;
}

/* ************ Partenaires ************ */
#partenaires .title {
  font-size: 2.8rem;
  line-height: 2.8rem;
}
#partenaires h3 {
  text-transform: uppercase;
  color: #888;
}
#partenaires .logo {
  height: 90px;
  margin-right: 50px;
  margin-bottom: 20px;
  max-width: 300px;
  object-fit: contain;
}
/* ==========================================================================
	 CSS LOADER
   ========================================================================== */
/* generated by https://loading.io/ */

@keyframes ldio {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.ldio div {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #6e6e6e;
  border-top-color: transparent;
  border-radius: 50%;
}
.ldio div {
  animation: ldio 1s linear infinite;
  top: 10px;
  left: 10px;
}
.loadingio-spinner {
  width: 20px;
  height: 20px;
  display: inline-block;
  overflow: hidden;
}
.ldio {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.ldio div {
  box-sizing: content-box;
}

/* ==========================================================================
	 ARTISTE
   ========================================================================== */

.artiste-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-gap: 30px 20px;
}

/* ==========================================================================
	 ARCHIVES
   ========================================================================== */
.archives-index__search input {
  padding: 7px 10px;
  font-size: 18px;
  width: 400px;
}
.autocomplete-wrapper {
  position: relative;
  display: inline;
}
.autocomplete-wrapper .loadingio-spinner {
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 10;
  visibility: hidden;
}
.autocomplete-suggestions {
  background-color: white;
  padding: 10px 0;
  border: 1px solid #aaa;
  font-size: 18px;
  line-height: 20px;
  overflow: hidden;
}
.autocomplete-suggestion {
  padding: 7px 15px;
  cursor: pointer;
}
.autocomplete-selected {
  background-color: #eee;
}
.autocomplete-no-suggestion {
  padding: 10px;
}

.archives-index__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 30px 10px;
}
.archives-index__edition {
}
.archives-index__edition-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 5px solid black;
}
.archives-index__edition-date {
  font-size: 12px;
  font-weight: bold;
}
.archives-index__edition-title {
  text-transform: uppercase;
  font-size: 18px;
}
.archives-index__edition-director {
  font-size: 12px;
}

div#avant_menu_wrapper {
  width: 100%;
  height: 46px;
  border-bottom: 5px solid #000;
  text-transform: uppercase;
}
div#avant_menu_wrapper div#avant_title {
  float: left;
  height: 41px;
  line-height: 4.1rem;
  font-size: 2.8rem;
}
div#avant_menu_wrapper div#avant_menu {
  height: 41px;
  line-height: 2rem;
  font-size: 1.2rem;
  padding: 16px 100px 0 100px;
  text-align: center;
}

div#avant_menu_wrapper div#avant_menu div#year_wrapper {
  display: inline-block;
}
div#avant_menu_wrapper div#avant_menu div#year_wrapper div.submenu_year {
  position: relative;
  display: inline-block;
  height: 12px;
  line-height: 1.2rem;
  margin-right: 20px;
  color: #000;
}
div#avant_menu_wrapper div#avant_menu div#year_wrapper div.submenu_year.active {
  color: #03b953;
}

div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_selected {
  min-width: 52px;
  padding: 0px 25px 0px 0;
  margin-left: 10px;
  background: url("../img/fleche_b.png") no-repeat 80% 3px;
  cursor: pointer;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year.unfolded
  div.year_selected {
  background-image: url("../img/fleche_h_green.png");
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_selected:hover {
  color: #03b953;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_selected
  span {
  cursor: default;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_selected
  span:hover {
  color: #000;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year.active
  div.year_selected
  span:hover {
  color: #03b953;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_selected
  span#first_year {
  display: none;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_selected
  span
  a {
  margin: 0;
  color: #000;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_selected
  span
  a:hover {
  color: #03b953;
}

div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_list {
  position: absolute;
  top: 21px;
  left: 0;
  overflow-y: hidden;
  min-width: 62px;
  height: 5px;
  padding: 0 25px 0 10px;
  margin: 0;
  border-bottom: 5px solid #000;
  background-color: #fff;
  z-index: 60;
  cursor: default;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_list
  ul {
  float: left;
  list-style-type: none;
  padding: 0;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_list
  ul
  li {
  line-height: 1.1rem;
  margin: 0 0 10px 0;
  white-space: nowrap;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_list
  ul
  li
  a {
  float: none;
  display: block;
  width: 100%;
  font-size: 1.2rem;
  margin: 0;
  color: #000;
}
div#avant_menu_wrapper
  div#avant_menu
  div#year_wrapper
  div.submenu_year
  div.year_list
  ul
  li
  a:hover {
  color: #03b953;
}

div#main_container div#a_list_container {
  position: relative;
  width: 100%;
  padding: 20px 0 0 0;
  font-size: 1.2rem;
  line-height: 2rem;
  text-transform: uppercase;
}
div#main_container div#a_list_container div.col ul {
  list-style-type: none;
  border-bottom: 5px solid #000;
  padding-bottom: 8px;
  margin-bottom: 18px;
}
div#main_container div#a_list_container div.col ul li {
  line-height: 1.3rem;
  margin-bottom: 8px;
}
div#main_container div#a_list_container div.col ul li.fl {
  margin-bottom: 30px;
}

div#main_container div#archives_a_propos {
  height: 0px;
  overflow: hidden;
}
div#main_container div#a_propos_tirette {
  font-size: 1.2rem;
  height: 10px;
  line-height: 1rem;
  text-transform: uppercase;
  margin-top: 15px;
  cursor: pointer;
}

div#main_container div#mos_container.archives div#mos_archive_title {
  height: 41px;
  line-height: 4.1rem;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 9px;
}

/* ************ Il Muro - Home ************ */
div#muro_home_container {
  width: 100%;
  padding: 0 0 20px 0;
}

div#muro_home_container div.muro_items_line {
  padding-top: 20px;
  border-top: 5px solid #000;
  margin-top: 20px;
}
div#muro_home_container div.muro_items_line.first {
  border-top: 0 none;
  margin-top: 0px;
}
div#muro_home_container div.muro_items_line.first_etcetera {
  margin-top: 10px;
}

div#muro_home_container a.muro_item_wrapper {
  display: block;
  position: relative;
  float: left;
  width: 100%;
  padding: 10px;
  margin-right: 20px;
  background-color: #e9e9e9;
}
div#muro_home_container a.muro_item_wrapper.last {
  margin-right: 0px;
}
div#muro_home_container a.muro_item_wrapper div.muro_item_mask {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  filter: alpha(opacity=80); /* For IE8 and earlier */
  background-color: #0458b7;
  text-align: center;
}
div#muro_home_container a.muro_item_wrapper div.muro_item_mask div {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia,
    serif;
  font-size: 2.8rem;
  color: #fff;
}

div#muro_home_container a.muro_item_wrapper div.muro_home_date_creator {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter",
    "Lucida Typewriter", monospace;
  font-size: 1rem;
  line-height: 1.3rem;
  text-align: center;
}
div#muro_home_container a.muro_item_wrapper div.muro_home_title {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia,
    serif;
  font-size: 2.8rem;
  line-height: 3.2rem;
  text-align: center;
  margin-top: 30px;
}
div#muro_home_container a.muro_item_wrapper img {
  display: block;
  width: 100%;
  margin-top: 30px;
}
div#muro_home_container a.muro_item_wrapper div.muro_home_media_legend {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter",
    "Lucida Typewriter", monospace;
  font-size: 1rem;
  line-height: 1.2rem;
  margin-top: 5px;
}
div#muro_home_container a.muro_item_wrapper div.muro_home_text {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia,
    serif;
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin-top: 30px;
}

/* ************ Il Muro - Page ************ */
div#muro_page_container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
div#muro_page_content {
  display: inline-block;
  width: 460px;
  margin-top: 60px;
}

div#muro_page_container div.muro_page_date_creator {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter",
    "Lucida Typewriter", monospace;
  font-size: 1rem;
  line-height: 1.3rem;
  text-align: center;
}
div#muro_page_container div.muro_page_title {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia,
    serif;
  font-size: 3.8rem;
  line-height: 42rem;
  text-align: center;
  margin-top: 50px;
}
div#muro_page_container img {
  display: block;
  width: 100%;
  margin-top: 50px;
}

div#muro_page_container div.iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Pour les vidéo 16:9 => (9 / 16) * 100 = 56.25 => il faudrait donc adapter dynamiquement dans le php s'il y avait aussi des vidéos 4:3 !!! */
  overflow: hidden;
  margin-top: 50px;
}
div#muro_page_container div.iframe iframe,
div#muro_page_container div.iframe object,
div#muro_page_container div.iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

div#muro_page_container div.muro_page_media_legend {
  display: block;
  width: 100%;
  font-family: "Courier New", Courier, "Lucida Sans Typewriter",
    "Lucida Typewriter", monospace;
  font-size: 1rem;
  line-height: 1.2rem;
  text-align: left;
}
div#muro_page_container div.muro_page_text {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia,
    serif;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-top: 50px;
  text-align: left;
}

/* ************ Etcetera ************ */
a.etcetera_home_green_links {
  color: #03b953;
  font-size: 1.2rem;
  line-height: 1rem;
  text-transform: uppercase;
}
a.etcetera_green_links {
  color: #03b953;
}
div#etcetera_home_hr {
  width: 100%;
  height: 5px;
  background-color: #000000;
  margin: 5px 0 0 0;
}
a.etcetera_inscription_button {
  display: inline-block;
  color: #03b953;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-transform: uppercase;
  border: 1px solid #03b953;
  padding: 11px 11px 9px 11px;
  margin: 25px 0 0 0;
}

/* ************ Une colonne ************ */
#top_container h2 {
  font-size: 2.8rem;
  line-height: 2.8rem;
  margin: 20px 0 18px 0;
  text-transform: uppercase;
}
#top_container h3 {
  font-size: 2rem;
  line-height: 2rem;
  margin: 20px 0 18px 0;
  text-transform: uppercase;
}

/* ************ Deux colonnes ************ */
div#two_cols_top_container {
  display: flex;
  width: 100%;
  padding-bottom: 10px;
}
div#two_cols_container,
div.two_cols_container {
  width: 100%;
  max-width: 1400px;
  /*margin-top: 20px;*/
}
div#two_cols_container.ou {
  position: relative;
  padding-top: 40px;
}
div#two_cols_top_container p {
  margin-bottom: 15px;
}
div#two_cols_container div#two_cols_title_for_both {
  width: 100%;
  font-size: 2.8rem;
  line-height: 2.8rem;
  margin: 8px 0 20px 0;
  text-transform: uppercase;
}
div#two_cols_container div#two_cols_title_for_both.up_line {
  border-top: 5px solid #000000;
  margin-top: 0;
  padding-top: 8px;
}

div#two_cols_container div.two_cols_title {
  font-size: 2.8rem;
  line-height: 2.8rem;
  margin: 20px 0 18px 0;
  text-transform: uppercase;
}

div#two_cols_container div#two_cols_left,
div#two_cols_container
  div#two_cols_title_for_both
  div#two_cols_title_for_both_title {
  float: left;
  width: 50%;
  padding-right: 12px;
}
div#two_cols_container
  div#two_cols_title_for_both
  div#two_cols_title_for_both_txt {
  clear: left;
  float: left;
  width: 50%;
  font-size: 1.4rem;
  line-height: 1.9rem;
  text-transform: none;
  padding-right: 12px;
  margin: 10px 0 10px 0;
}
div#two_cols_container
  div#two_cols_title_for_both
  div#two_cols_title_for_both_txt
  a {
  clear: left;
  float: left;
  width: 50%;
  font-size: 1.4rem;
  line-height: 1.9rem;
  margin: 3px 0 0 0;
  color: #03b953;
}
div#two_cols_container div#two_cols_right {
  float: right;
  width: 50%;
  padding-left: 12px;
}

div#two_cols_container div#two_cols_right div#col_a,
div#two_cols_container div#two_cols_left div#col_a,
div#two_cols_container div#two_cols_right div#col_b {
  position: relative;
  float: left;
  width: calc((100% - 5px) / 2);
  margin-right: 5px;
}
div#two_cols_container div#two_cols_left div#col_a {
  margin-top: 68px;
}
div#two_cols_container div#two_cols_right div#col_b {
  margin-right: 0;
}
div#two_cols_container div#two_cols_right div#col_a img,
div#two_cols_container div#two_cols_left div#col_a img,
div#two_cols_container div#two_cols_right div#col_b img {
  width: 72%;
  border: 1px solid #000;
}
div#two_cols_container div#two_cols_right div#col_a img.download,
div#two_cols_container div#two_cols_left div#col_a img.download {
  display: block;
  position: absolute;
  top: calc(50% - 22px);
  left: calc(36% - 22px);
  width: 44px;
  height: 44px;
  border: 0;
  z-index: 10;
}
div#two_cols_container div#two_cols_left div#col_a div {
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.1rem;
}
div#two_cols_container div#two_cols_left div#col_a div span {
  font-size: 1.6rem;
  line-height: 1.8rem;
}

div#two_cols_container div#addr_choix_title_left {
  float: left;
  width: 50%;
  height: 42px;
  border-top: 5px solid #000;
  border-right: 2px solid #000;
  padding: 7px 10px 0 0;
  margin-bottom: 10px;
  font-size: 2.8rem;
  line-height: 2.8rem;
  color: #0458b7;
}
div#two_cols_container div#addr_choix_title_right {
  float: left;
  width: 50%;
  height: 42px;
  border-top: 5px solid #000;
  border-left: 3px solid #000;
  padding: 7px 0 0 9px;
  margin-bottom: 10px;
  font-size: 2.8rem;
  line-height: 2.8rem;
  color: #f95d80;
  text-align: right;
}
div#two_cols_top_container a.link-strong {
  text-transform: uppercase;
  font-weight: bold;
}
div#two_cols_top_container a.link-strong:hover {
  color: #03b953;
}
.date_bottom {
  margin-bottom: 15px;
}
.date_space {
  display: inline-block;
  width: 35px;
}
.indent_35 {
  margin-left: 35px;
}

/* ************ Deux colonnes STYLE 2 ************ */
.grid-container {
  font-size: 1.5rem;
  text-align: left;
  color: #333333;
}

.grid-container .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.grid-container .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1 1 0;
  min-width: 0; /* allows photos to resize with the column */
}

.grid-container .subtitle {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.grid-container p {
  margin-bottom: 20px;
}

div.style2 p {
  margin-bottom: 20px;
}

div.style2 .box {
  background: #ffffff;
  border: 1px solid #000000;
  margin: 40px 40px;
  padding: 25px 25px;
}

div.style2 .title {
  font-size: 2.8rem;
  line-height: 2.8rem;
  margin: 20px 0 18px 0;
  text-transform: uppercase;
}

div.style2 .intro {
  margin-bottom: 15px;
}

div.style2 .video-full-with {
  width: calc(100% + 50px);
  margin-left: -25px;
}

div.style2 .box img.full-width {
  width: 100%;
}

div.style2 a.link {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ************ Deux colonnes " T " ************ */
div#two_cols_top_container_t {
  width: 100%;
}

div#two_cols_container_t {
  display: table;
  margin: auto; /* pour centrer le tableau */
  width: 100%;
  max-width: 1400px;
  font-size: 1.4rem;
}
div#two_cols_container_t.addr_top_barre {
  margin-top: 5px;
  border-top: 5px solid #000;
}

div#two_cols_container_t div#two_cols_right_t {
  display: table-cell;
  vertical-align: top;
  width: 50%;
  padding-top: 20px;
  padding-left: 9px;
  border-left: 3px solid #000;
}
div#two_cols_container_t div#two_cols_left_t {
  display: table-cell;
  vertical-align: top;
  width: 50%;
  padding-top: 20px;
  padding-right: 10px;
  border-right: 2px solid #000;
}

div#two_cols_container_t.addr_top_barre div#two_cols_right_t,
div#two_cols_container_t.addr_top_barre div#two_cols_left_t {
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
}

div#two_cols_container_t.addr_top_barre
  div#two_cols_right_t
  div.addr_top_barre_title,
div#two_cols_container_t.addr_top_barre
  div#two_cols_left_t
  div.addr_top_barre_title {
  text-transform: uppercase;
  padding-bottom: 19px;
  padding-right: 0;
}
div#two_cols_container_t.addr_top_barre
  div#two_cols_right_t
  div.addr_top_barre_title {
  padding-left: 18px;
}
div#two_cols_container_t.addr_top_barre
  div#two_cols_left_t
  div.addr_top_barre_title {
  padding-right: 20px;
}

div#two_cols_container_t.addr_top_barre div#two_cols_right_t div.art_title {
  padding-left: 18px;
  margin-bottom: 15px;
}
div#two_cols_container_t.addr_top_barre div#two_cols_left_t div.art_title {
  padding-right: 20px;
  margin-bottom: 15px;
}

div#two_cols_container_t.addr_top_barre div#two_cols_right_t div.bloc_text,
div#two_cols_container_t.addr_top_barre div#two_cols_left_t div.bloc_text {
  line-height: 1.9rem;
  margin: 0 0 17px 0;
}
div#two_cols_container_t.addr_top_barre div#two_cols_right_t div.bloc_text {
  padding-left: 18px;
}
div#two_cols_container_t.addr_top_barre div#two_cols_left_t div.bloc_text {
  padding-right: 20px;
}

div#two_cols_container_t.addr_top_barre div#two_cols_right_t div.bloc_media {
  padding-left: 18px;
  margin-bottom: 17px;
}
div#two_cols_container_t.addr_top_barre div#two_cols_left_t div.bloc_media {
  padding-right: 20px;
  margin-bottom: 17px;
}
div#two_cols_container_t.addr_top_barre div#two_cols_right_t div.bloc_media img,
div#two_cols_container_t.addr_top_barre div#two_cols_left_t div.bloc_media img {
  display: block;
  width: 100%;
}
div#two_cols_container_t.addr_top_barre
  div#two_cols_right_t
  div.bloc_media
  div.media_legend,
div#two_cols_container_t.addr_top_barre
  div#two_cols_left_t
  div.bloc_media
  div.media_legend {
  font-size: 1rem;
  line-height: 1.3rem;
  padding-top: 6px;
}

/* Pour les deux règles CSS suivantes : https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */
/* Tous les site ajoute un padding-top: 25px : il ne fait qu'ajouter des bandes noires en haut et en bas !!! Je l'ai donc supprimé. */
/* Cf. IDEM, plus haut : div#main_container div.art_media div.slide_container div.media_item div.video_container */
div#two_cols_container_t.addr_top_barre div.bloc_media div.video_container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* Pour les vidéo 16:9 => (9 / 16) * 100 = 56.25 => il faudrait donc adapter dynamiquement dans le php s'il y avait aussi des vidéos 4:3 !!! */
  overflow: hidden;
}
div#two_cols_container_t.addr_top_barre
  div.bloc_media
  div.video_container
  iframe,
div#two_cols_container_t.addr_top_barre
  div.bloc_media
  div.video_container
  object,
div#two_cols_container_t.addr_top_barre
  div.bloc_media
  div.video_container
  embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ************ Pros ************ */
div#main_container div#pros_infos {
  width: 100%;
  padding-bottom: 20px;
}
div#main_container div#pros_infos div.pros_infos_col {
  float: left;
  margin-right: 5px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  word-wrap: break-word;
}
div#main_container div#pros_infos div#pros_infos_col_5 {
  margin-right: 0;
}
div#main_container div#pros_infos div#pros_infos_col_5 a {
  position: relative;
  display: block;
  width: 100%;
}
div#main_container div#pros_infos div#pros_infos_col_5 a img#guide_img {
  display: block;
  width: 72%;
  border: 1px solid #000;
}
div#main_container div#pros_infos div#pros_infos_col_5 a img#guide_download {
  display: block;
  position: absolute;
  top: calc(50% - 22px - 29px);
  left: calc(36% - 22px);
  width: 44px;
  height: 44px;
  z-index: 10;
}
div#main_container div#pros_infos div#pros_infos_col_5 a div {
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.1rem;
}
div#main_container div#pros_infos div#pros_infos_col_5 a div span {
  font-size: 1.6rem;
  line-height: 1.8rem;
}

/* ************ Press  ************ */

.communiques_de_presse {
  font-size: 1.4rem;
}
.communiques_de_presse .titre {
  font-size: 1.6rem;
  font-weight: bold;
}
.communiques_de_presse .elt {
}
.communiques_de_presse span.elt {
  color: #888;
}

/* ************ Press Login Popup ************ */
div#press_login_popin {
  position: relative;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 240px;
  margin-left: -230px;
  margin-top: -120px;
  padding: 20px;
  background-color: #fff;
  z-index: 910;
  border: 1px solid #aaa;
}
div#press_login_popin a#close_press_popin {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 23px;
  background: url(../img/croix.png) no-repeat 5px 5px;
}
div#press_login_popin div.title {
  font-size: 2.4rem;
  line-height: 2.8rem;
  text-transform: uppercase;
}
div#press_login_popin input#login {
  float: left;
  width: 330px;
  height: 33px;
  line-height: 3.3rem;
  border: 1px solid #000;
  padding: 0 5px;
  margin: 7px 0 15px 0;
}
div#press_login_popin input#submit_press_login {
  width: 80px;
  height: 33px;
  line-height: 3.3rem;
  border: 1px solid #000;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  margin: 7px 0 15px -1px;
}

/* ************ Ailleurs ************ */
div#main_container div#artist_container.ailleurs div.item_container {
  margin-top: 10px;
  border-top: 5px solid #000;
  padding-top: 20px;
}
div#main_container div#artist_container.ailleurs div.item_container.first {
  margin-top: 0px;
  border-top: 0 none;
  padding-top: 0px;
}
div#main_container
  div#artist_container.ailleurs
  div.item_container
  div#two_cols_title_for_both {
  width: 100%;
  font-size: 2.8rem;
  line-height: 2.8rem;
  margin: 8px 0 14px 0;
  text-transform: uppercase;
}
div#main_container
  div#artist_container.ailleurs
  div.item_container
  div#two_cols_title_for_both
  div#two_cols_title_for_both_title {
  float: left;
  width: 50%;
  padding-right: 12px;
}

/* ==========================================================================
	 EQUIPE
   ========================================================================== */
.board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-gap: 30px 10px;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 30px 50px;
}
.team-member,
.board-member {
  text-align: center;
}
.team-member img {
  width: 19vw;
  height: 19vw;
  border-radius: 50%;
  object-fit: cover;
}
@media screen and (min-width: 1500px) {
  .team-member img {
    width: 14vw;
    height: 14vw;
  }
}

/* ==========================================================================
   A T T E N T I O N   N O U B L I E Z   P E R S O N N E
   ========================================================================== */
.attention-noubliez-personne {
  background-image: url("/img/bg-attention-noubliez-personne.png");
  background-size: 2000px auto;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.attention-np-galerie .photo-icon img {
  width: 113px;
  margin: auto;
}
.attention-np-galerie .photo-icon {
  flex: 0 1 30%;
}
.attention-np-galerie .photo-text {
  flex: 1 1 30%;
  padding-left: 15px;
}

/* ==========================================================================
   P H O T O    G A L L E R Y
	 ========================================================================== */
.photos-gallery {
  display: flex;
  flex-wrap: wrap;
}
.photos-gallery::after {
  content: "";
  flex-grow: 999999999;
}
.photo-gallery__wrapper {
  margin: 4px;
  position: relative;
}
.photo-gallery__wrapper--attention {
  margin: 1px;
}
.photo-gallery__wrapper-mask {
  display: block;
}
.photos-gallery .photo-gallery__wrapper:nth-last-child(1) {
  flex-grow: 0;
}
.photo-gallery__wrapper img {
  position: absolute;
  top: 0;
  width: 100%;
  vertical-align: bottom;
}
.photo-gallery__wrapper:hover img {
  opacity: 95%;
}
.photo-gallery__wrapper--attention.photo-gallery__wrapper:hover img {
  opacity: 75%;
}
.photo-gallery__text {
  position: absolute;
  bottom: 0;
  padding: 10px;
  font-size: 2rem;
  line-height: 3rem;
  color: white;
  z-index: 1000;
  opacity: 0;
}
.photo-gallery__wrapper:hover .photo-gallery__text {
  opacity: 1;
}
.photo-gallery__text_date {
}
.photo-gallery__text_label {
}

div.featherlight button.featherlight-close-icon {
  line-height: 45px;
  width: 45px;
  font-size: 25px;
  color: white;
}
div.featherlight div.featherlight-content {
  padding: 0;
  border-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  max-height: auto;
}

/* ==========================================================================
   F O O T E R
   ========================================================================== */

footer {
  width: 100%;
  margin-top: 50px;
}
footer .footer-bloc {
  width: 100%;
  padding: 50px;
  border-top: 1px solid #ccc;
}
footer .footer-bloc .footer-wrapper {
  display: flex;
  justify-content: space-between;
  margin: auto;
}
footer .footer-bloc .col {
  width: 220px;
  padding-right: 15px;
}

/* FOOTER FOLLOW */

footer .footer-follow {
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
}
footer .footer-follow .title {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer .footer-follow .content {
  margin-bottom: 15px;
}
footer .footer-follow .link a {
  text-transform: uppercase;
}
footer .footer-follow .social .picto {
  font-size: 28px;
  margin-right: 10px;
}
footer .footer-follow .sitemap-small .content a {
  display: block;
  margin-bottom: 2px;
}

/* FOOTER SITEMAP */

footer .footer-sitemap {
  background-color: #000;
  color: #fff;
  border-top: 1px solid #fff;
  text-transform: uppercase;
}
footer .footer-sitemap .lvl1 {
  font-size: 1.4rem;
  font-weight: bold;
  padding-bottom: 10px;
}
footer .footer-sitemap .lvl2 {
  font-size: 1.2rem;
  line-height: 1.2rem;
}
footer .footer-sitemap .lvl2 ul {
  list-style-type: none;
}
footer .footer-sitemap .lvl2 li {
  padding-bottom: 10px;
}

/* FOOTER SITEMAP */
footer .footer-brand {
  font-size: 2rem;
  text-transform: uppercase;
}

/* FOOTER LOGOS */

footer .footer-logos {
  display: flex;
  flex-wrap: wrap;
  opacity: 0.6;
  justify-content: center;
  margin-bottom: 20px;
}
footer .footer-logos a {
  /* width: 25%; */
}
footer .footer-logos img {
  width: 100%;
  max-height: 100px;
  max-width: 240px;
  padding: 10px;
  object-fit: contain;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

/* ==========================================================================
   R S V P
   ========================================================================== */

header div#header_rsvp {
  clear: left;
  width: 100%;
  padding: 19px 0 17px 0;
  border-bottom: 5px solid #000000;
}

div#rsvp_wrapper {
  position: relative;
  width: 100%;
  padding: 0 20px 10px 20px;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_title_for_both {
  width: 100%;
  font-size: 2.8rem;
  line-height: 2.8rem;
  padding: 16px 0 16px 0;
  text-transform: uppercase;
  color: #f95d80;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_title_for_both.title_date {
  padding: 17px 0 17px 0;
  margin-top: 20px;
  border-top: 5px solid #000;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_title_for_both.title_date.first {
  margin-top: 0;
  border: 0;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_title_for_both.valider {
  text-align: center;
  margin: 24px 0 4px 0;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_title_for_both.valider
  input {
  display: inline-block;
  width: 80px;
  height: 34px;
  line-height: 3.4rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #03b953;
  background-color: #fff;
  border: 1px solid #03b953;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_title_for_both.valider
  div#rsvp_wrapper
  span#msg {
  display: none;
  color: orange;
  font-size: 1.4rem;
  line-height: 1.9rem;
  text-transform: none;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_title_for_both.merci {
  font-size: 1.8rem;
  line-height: 2.3rem;
  text-align: center;
  text-transform: none;
  color: #000;
  margin-bottom: 88px;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_title_for_both.merci img {
  display: inline-block;
  margin: 67px 0 19px 0;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_title_for_both.merci div {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 2.8rem;
  color: #0458b7;
  margin-bottom: 35px;
}

div#rsvp_wrapper div.two_cols_container div.two_cols_left {
  float: left;
  width: 50%;
  padding: 0 19px 20px 15px;
  border-left: 5px solid #000;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_left div.detail_handler {
  height: 33px;
  line-height: 2.9rem;
  border-top: 2px solid #8d8c8a;
  border-bottom: 2px solid #8d8c8a;
  margin-top: 19px;
  background: url("../img/fleche_b.png") no-repeat center right;
  cursor: pointer;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_left div.detail_content {
  margin-top: -2px;
  padding: 10px 0 10px 0;
  border-bottom: 2px solid #8d8c8a;
  background-color: #fff;
}

div#rsvp_wrapper div.two_cols_container div.two_cols_right {
  position: relative;
  float: right;
  width: 50%;
  padding: 0;
  border-left: 0;
}
div#rsvp_wrapper div.two_cols_container div.two_cols_right.rsvp {
  border-left: 2px solid #8d8c8a;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container {
  position: absolute;
  bottom: 20px;
  left: 0;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container
  div.rsvp_wrapper
  div {
  float: left;
  height: 27px;
  margin-top: 5px;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container
  div.escorted_wrapper {
  margin-top: 20px;
  padding-left: 41px;
}

div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container
  input[type="radio"]:not(old) {
  width: 27px;
  height: 27px;
  margin: 0 0 0 20px;
  padding: 0;
  opacity: 0;
  vertical-align: bottom;
  cursor: pointer;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container
  input[type="radio"]:not(old)
  + label {
  display: inline-block;
  height: 27px;
  line-height: 27px;
  margin-left: -27px;
  padding-left: 33px;
  background: url("../img/radio_off.png") no-repeat 0 0;
  cursor: pointer;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container
  input[type="radio"]:not(old):checked
  + label {
  background: url("../img/radio_on.png") no-repeat 0 0;
}

div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container
  input[type="checkbox"]:not(old) {
  width: 15px;
  height: 15px;
  margin: 0 0 0 -21px;
  padding: 0;
  opacity: 0;
  vertical-align: bottom;
  cursor: pointer;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container
  input[type="checkbox"]:not(old)
  + label {
  margin-left: -15px;
  padding-left: 21px;
  background: url("../img/checkbox_off.png") no-repeat 0 0;
  cursor: pointer;
}
div#rsvp_wrapper
  div.two_cols_container
  div.two_cols_right.rsvp
  div.rsvp_container
  input[type="checkbox"]:not(old):checked
  + label {
  background: url("../img/checkbox_on.png") no-repeat 0 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-top: 40px;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Buttions
	 ========================================================================== */

.btn {
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #000;
  padding: 11px 15px 9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
  transition: 1s;
}

.btn:hover {
  color: #02873d;
  transition: 0.2s;
  border-color: #02873d;
}

.btn-blue,
a.btn-blue {
  color: #0458b7;
  border: 2px solid #0458b7;
}

.btn i {
  margin-right: 10px;
  font-size: 1.3em;
  vertical-align: text-bottom;
  /* transition: 0.5s; */
}

.btn:hover i {
  /* color: #03b953; */
}

/* ==========================================================================
   Forms
   ========================================================================== */

.formulaire label {
  display: inline-block;
  width: 100px;
}
.formulaire .form-align {
  padding-left: 100px;
}
.formulaire input[type="text"],
.formulaire input[type="email"],
.formulaire input[type="tel"],
.formulaire input[type="file"],
.formulaire select {
  width: 250px;
  margin-bottom: 8px;
}
.formulaire input[type="text"],
.formulaire input[type="email"],
.formulaire input[type="tel"],
.formulaire select {
  background-color: #eee;
  border: 1px solid #ddd;
  padding: 0 5px;
  height: 35px;
}

.formulaire input[type="file"] {
  font-size: 1.2rem;
  height: 15px;
}

.formulaire .checkbox {
  display: flex;
  margin-bottom: 15px;
}
.formulaire .checkbox input[type="checkbox"] {
  margin-left: 3px;
  margin-right: 10px;
}
.formulaire .checkbox .checkbox-label {
  font-size: 1.2rem;
  color: #666;
  width: 80%;
  margin-top: -3px;
}
.formulaire .checkbox .checkbox-label a {
  color: #000;
  text-decoration: underline;
}

.formulaire hr {
  margin: 20px 0;
  height: 1px;
  border: 0;
  color: #ddd;
  background-color: #ddd;
}

/* ==========================================================================
   Tooltip
	 ========================================================================== */

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  font-size: 1.2rem;
}
.tooltip img {
  vertical-align: middle;
  margin-bottom: 2px;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* ==========================================================================
	 Pretty Dropdown
	 https://codepen.io/aaroniker/pen/XxBjKN
   ========================================================================== */

.pretty-dropdown {
  --text: #000;
  --border: #000;
  --borderActive: #000;
  --background: #fff;
  --arrow: #000;
  --arrowActive: #000;
  --listText: #000;
  --listBackground: #fff;
  --listActive: #eee;
  --listTextActive: #03b953;
  --listBorder: #000;
  --textFilled: #000;
  width: 270px;
  position: relative;
}
.pretty-dropdown select {
  display: none;
}
.pretty-dropdown > span {
  cursor: pointer;
  padding: 9px 16px;
  display: block;
  position: relative;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--background);
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.pretty-dropdown > span:before,
.pretty-dropdown > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  right: 15px;
  background: var(--arrow);
  transition: all 0.3s ease;
}
.pretty-dropdown > span:before {
  margin-right: 4px;
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
  transform: scale(0.96, 0.8) rotate(50deg);
}
.pretty-dropdown > span:after {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.pretty-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: calc(var(--max-scroll) * 38px);
  top: 38px;
  left: 0;
  z-index: 1;
  right: 0;
  background: var(--listBackground);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid var(--listBorder);
  text-transform: uppercase;
}
.pretty-dropdown ul li {
  opacity: 0;
  -webkit-transform: translate(6px, 0);
  transform: translate(6px, 0);
  transition: all 0.3s ease;
}
.pretty-dropdown ul li a {
  cursor: pointer;
  display: block;
  padding: 10px 16px;
  color: var(--listText);
  text-decoration: none;
  outline: none;
  position: relative;
  transition: all 0.3s ease;
}
.pretty-dropdown ul li a:hover {
  color: var(--listTextActive);
}
.pretty-dropdown ul li.active a {
  color: var(--listTextActive);
  background: var(--listActive);
}
/* the 3 class below display a cross icon on the active state */
.pretty-dropdown ul li.active a:before,
.pretty-dropdown ul li.active a:after {
  /* --scale: 0.6;
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  right: 17px;
  top: 50%;
  opacity: 0;
  background: var(--listText);
  transition: all 0.2s ease; */
}
.pretty-dropdown ul li.active a:before {
  /* -webkit-transform: rotate(45deg) scale(var(--scale));
          transform: rotate(45deg) scale(var(--scale)); */
}
.pretty-dropdown ul li.active a:after {
  /* -webkit-transform: rotate(-45deg) scale(var(--scale));
          transform: rotate(-45deg) scale(var(--scale)); */
}
.pretty-dropdown ul li.active a:hover:before,
.pretty-dropdown ul li.active a:hover:after {
  --scale: 0.9;
  opacity: 1;
}
.pretty-dropdown.filled > span {
  color: var(--textFilled);
}
.pretty-dropdown.open > span {
  border-color: var(--borderActive);
}
.pretty-dropdown.open > span:before,
.pretty-dropdown.open > span:after {
  background: var(--arrowActive);
}
.pretty-dropdown.open > span:before {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.pretty-dropdown.open > span:after {
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
  transform: scale(0.96, 0.8) rotate(50deg);
}
.pretty-dropdown.open ul {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease,
    -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}
.pretty-dropdown.open ul li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.pretty-dropdown.open ul li:nth-child(1) {
  transition-delay: 80ms;
}
.pretty-dropdown.open ul li:nth-child(2) {
  transition-delay: 160ms;
}
.pretty-dropdown.open ul li:nth-child(3) {
  transition-delay: 240ms;
}
.pretty-dropdown.open ul li:nth-child(4) {
  transition-delay: 320ms;
}
.pretty-dropdown.open ul li:nth-child(5) {
  transition-delay: 400ms;
}
.pretty-dropdown.open ul li:nth-child(6) {
  transition-delay: 480ms;
}
.pretty-dropdown.open ul li:nth-child(7) {
  transition-delay: 560ms;
}
.pretty-dropdown.open ul li:nth-child(8) {
  transition-delay: 640ms;
}
.pretty-dropdown.open ul li:nth-child(9) {
  transition-delay: 720ms;
}
.pretty-dropdown.open ul li:nth-child(10) {
  transition-delay: 800ms;
}

select.pretty-dropdown {
  --text: #3f4656;
  --border: #2f3545;
  --background: #151924;
}
select.pretty-dropdown {
  padding: 9px 16px;
  border-radius: 6px;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--background);
  line-height: 2.2rem;
  font-size: 1.5rem;
  font-family: inherit;
  -webkit-appearance: none;
}
