/* ==========================================
   VARIABLES
   ========================================== */
:root {
  --orange: #ff7000;
  --white: #fff;
}
/* ==========================================
   FONTS
   ========================================== */
@font-face {
  font-family: 'Logo';
  src: url('../fonts/logo.eot') format('embedded-opentype'),
  url('../fonts/logo.woff') format('woff'),
  url('../fonts/logo.ttf') format('truetype'),
  url('../fonts/logo.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: 'Glyphter';
  src: url('../fonts/Glyphter.eot') format('embedded-opentype'),
  url('../fonts/Glyphter.woff') format('woff'),
  url('../fonts/Glyphter.ttf') format('truetype'),
  url('../fonts/Glyphter.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
/* ==========================================
   BASE & RESET
   ========================================== */
html {
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
}

body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.body {
  border-color: var(--orange);
  border-style: solid;
  border-width: 0 30px 30px;
  font-family: 'Open Sans', sans-serif;
}

.body-2 {
  margin-left: 30px;
}

@media screen and (max-width: 991px) {
  .body-2 {
    margin-left: 0;
  }
}

.body-3 {
  font-family: Montserrat, sans-serif;
}

/* ==========================================
   TYPOGRAPHIE GÉNÉRALE
   ========================================== */
h1 {
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
  margin-bottom: 10px;
  margin-top: 20px;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 10px;
  margin-top: 20px;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
  margin-top: 20px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: #333;
}

ul {
  margin-bottom: 10px;
  margin-top: 0;
  padding-left: 20px;
}

ol {
  margin-bottom: 10px;
  margin-top: 0;
  padding-left: 20px;
}

.link {
  cursor: pointer;
}

/* ==========================================
   HEADINGS GÉNÉRAUX
   ========================================== */
.heading {
  color: var(--white);
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  top: 50%;
  transform: translate(0px, -100%);
}

.heading-1 {
  background-color: transparent;
  color: var(--white);
  display: inline-block;
  float: left;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.17;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 20px;
  padding-right: 30px;
  padding-top: 20px;
}

.heading-1.popup-brand {
  color: var(--orange);
  display: none;
}

@media screen and (max-width: 767px) {
  .heading-1 {
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .heading-1 {
    font-size: 22px;
    line-height: 25px;
    padding-right: 0;
  }
}

.heading-2 {
  color: var(--orange);
  font-family: 'Open Sans', sans-serif;
  font-size: 5vw;
  font-weight: 800;
  line-height: 5.5vw;
  display: block;
}

.heading-2.editions {
  font-size: 45px;
  line-height: 45px;
  margin-bottom: 30px;
  margin-top: 0;
}

.heading-2.editions.expo {
  padding-left: 10px;
}

@media screen and (max-width: 991px) {
  .heading-2 {
    font-size: 6vw;
    line-height: 6vw;
  }

  .heading-2.editions {
    font-size: 5vh;
    line-height: 5vh;
  }
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 7vw;
    line-height: 7vw;
  }
}

@media screen and (max-width: 479px) {
  .heading-2 {
    font-size: 5vh;
    line-height: 5.5vh;
  }
}

/* ==========================================
   LOGO & BRAND
   ========================================== */
.logo {
  color: var(--orange);
  display: block;
  float: none;
  font-family: Logo, sans-serif;
  font-size: 6em;
  line-height: 1;
  margin-bottom: -10px;
  margin-left: -1px;
  margin-right: -1px;
  position: relative;
}

.logo.popup-brand {
  color: var(--white);
  flex: 1;
  height: 100%;
  line-height: 100%;
  padding-top: 0;
}

@media screen and (max-width: 479px) {
  .logo {
    font-size: 5em;
    margin-top: -2px;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .logo {
    margin-top: 4px;
  }
}

.brand {
  background-color: var(--orange);
  clear: both;
  display: inline-block;
  float: left;
  margin-left: -2px;
  margin-top: -2px;
  position: relative;
}

.brand.popup-brand {
  background-color: var(--white);
  color: var(--white);
  margin-top: 10px;
  overflow: hidden;
}

.fond-logo {
  background-color: var(--white);
  clear: both;
  display: inline-block;
  float: left;
  height: 100%;
  position: relative;
}

.fond-logo.popup-brand {
  background-color: var(--orange);
  color: var(--white);
  margin-bottom: -10px;
  overflow: hidden;
}

/* ==========================================
   NAVBAR & NAVIGATION
   ========================================== */
.navbar {
  background-color: var(--white);
  display: inline-block;
  margin-left: 30px;
  margin-top: 30px;
}

.navbar-2 {
  background-color: var(--orange);
  display: block;
  margin-left: -10px;
  margin-top: -30px;
  padding-left: 20px;
  padding-right: 30px;
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .navbar-2 {
    margin-left: -30px;
    padding-left: 35px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-2 {
    padding-left: 25px;
  }
}

@media screen and (max-width: 479px) {
  .navbar-2 {
    padding-left: 0;
  }
}

.nav {
  color: var(--white);
  cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  padding-top: 35px;
  text-transform: uppercase;
  transition: transform 200ms cubic-bezier(.175, .885, .32, 1.275);
  z-index: 2000;
}

.nav:hover {
  color: var(--white);
  transform: scale(1.15);
}

@media screen and (max-width: 991px) {
  .nav {
    background-color: var(--orange);
    text-align: center;
    font-size: 3vw;
  }
}

.nav-menu {
  float: right;
  margin-right: 10px;
  position: relative;
  z-index: 2000;
}

@media screen and (max-width: 991px) {
  .nav-menu {
    background-color: var(--orange);
    bottom: 0;
    display: block;
    float: right;
    height: calc(100% - 10em);
    left: 0;
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  [data-nav-menu-open] {
    display: flex !important;
  }
}

@media screen and (max-width: 991px) {
  .menu-button {
    color: var(--white);
    display: inline-block;
    font-size: 3em;
    margin-right: -10px;
    padding-top: 20px;
  }

  .menu-button.w--open {
    background-color: var(--orange);
    display: inline-block;
    float: right;
  }
}

@media screen and (max-width: 767px) {
  .menu-button {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 479px) {
  .menu-button {
    font-size: 2em;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ==========================================
   BORDERS & BARRE
   ========================================== */
.border {
  border-color: var(--orange);
  border-style: solid;
  border-width: 0 30px 30px;
  display: block;
  height: 100%;
  margin-left: -30px;
  margin-top: -30px;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.border.new {
  display: none;
}

.barre {
  background-color: var(--orange);
  bottom: 0;
  display: block;
  height: 30px;
  left: 0;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 1200;
}

.barre.droite {
  bottom: 0;
  height: 100%;
  left: auto;
  right: 0;
  top: 0;
  width: 30px;
}

/* ==========================================
   CLOSE BUTTON
   ========================================== */
.close {
  background-color: transparent;
  display: none;
  float: right;
  height: 36px;
  position: fixed;
  right: 30px;
  top: 30px;
  width: 36px;
}

.close.out {
  background-color: transparent;
  display: block;
  position: fixed;
  right: 10px;
  top: 20px;
}

.close.text-expo {
  display: none;
  position: fixed;
  right: 40px;
  top: 90px;
  z-index: 1000;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .close {
    margin-right: 30px;
    margin-top: 30px;
  }
}

.croix {
  background-color: var(--orange);
  display: block;
  height: 40px;
  position: absolute;
  transform: rotate(45deg) translate(12px, -12px);
  width: 2px;
}

.croix.autre {
  display: block;
  float: left;
  position: absolute;
  transform: rotate(-45deg) translate(12px, 12px);
  width: 2px;
}

/* ==========================================
   ICONS
   ========================================== */
.icon {
  color: var(--orange);
}

.icon-2 {
  color: var(--orange);
}

@media screen and (max-width: 991px) {
  .icon-3 {
    color: var(--white);
  }
}

/* ==========================================
   IMAGES GÉNÉRALES
   ========================================== */
img {
  display: inline-block;
  max-width: 100%;
}

figure {
  bottom: 0;
  display: block;
  left: 0;
  margin-bottom: 10px;
  min-width: 100%;
  right: 0;
  top: 0;
}

.w-richtext figure {
  margin-top: 20px;
  max-width: 100%;
  width: 100%;
}

figcaption {
  font-size: 11px;
  font-weight: 300;
  line-height: 12px;
  margin-top: 5px;
  text-align: left;
}

.image {
  bottom: 0;
  left: 0;
  position: relative;
  right: 0;
  top: 0;
}

.image-2 {
  display: inline-block;
  float: left;
  width: 100px;
}

.image-4 {
  color: transparent;
  width: 100px;
}

.image-5 {
  bottom: 0;
  left: 0;
  overflow: visible;
  position: fixed;
  right: 0;
  top: 0;
  transform: scale(1);
}

.image-6 {
  border: 30px solid var(--orange);
  position: static;
}

/* ==========================================
   LAYOUT GÉNÉRAL
   ========================================== */
.container {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.wrapper {
  clear: both;
  display: block;
  position: relative;
}

.row {
  position: relative;
}

.column {
  height: 510px;
  overflow: visible;
  padding-left: 15px;
}

.column.scrollbar-outer {
  overflow: auto;
}
@media screen and (max-width: 991px) {
  .column {
    height: auto;
    padding-left: 10px;
  }

}
@media screen and (max-width: 767px) {
  .column {
    height: auto;
    padding-left: 10px;
    padding-top: 10px;
  }

  .column.scrollbar-outer {
    overflow: visible;
    padding-left: 10px;
  }
}

.column-2 {
  padding-right: 15px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .column-2 {
    margin-bottom: 30px;
  }
}

/* ==========================================
   COLLECTIONS (SYSTÈME GÉNÉRAL)
   ========================================== */
/* À VÉRIFIER - utilisé dans plusieurs contextes */
.collection-item {
  border: 30px solid var(--orange);
  position: relative;
}

.collection-item-2 {
  column-count: 2;
}

.collection-date {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}

.collection-list-2 {
  padding-right: 15px;
}

.collection-list-wrapper-2 {
  height: 100%;
}

.collection-list-wrapper-4 {
  height: 100%;
}

/* ==========================================
   UTILITY PAGES
   ========================================== */
.utility-page-wrap {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  max-height: 100%;
  max-width: 100%;
  width: 100vw;
}

.utility-page-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 260px;
}

.utility-page-form {
  align-items: stretch;
  display: flex;
  flex-direction: column;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
.scroll-element.scroll-x {
  display: none !important;
}

/* ==========================================

   PAGE HOME

   ========================================== */

/* À VÉRIFIER - Éléments possiblement liés à la home */
.section {
  margin-left: 50px;
  margin-top: 50px;
  width: 300px;
}

.section-2 {
  position: relative;
}

.top {
  background-color: var(--white);
  display: inline-block;
  left: 0;
  position: fixed;
  top: 0;
}

.fond {
  background-color: var(--orange);
  display: block;
  height: 90%;
  padding-left: 60px;
  position: relative;
  z-index: 900;
}

/* À VÉRIFIER - Exemples ou démo ? */
.div-block {
  background-color: #0098ff;
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 50px;
  margin-right: 50px;
  transform: scale(0.61);
  transition: all 200ms ease;
  width: 100px;
}

.div-block:hover {
  transform: translate(-46px, 0);
}

.div-block-2 {
  background-color: #000;
  display: inline-block;
  height: 100px;
  opacity: 1;
  position: static;
  z-index: 50;
}

.div-block-3 {
  background-color: transparent;
  border: 30px solid var(--orange);
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  overflow: visible;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 50;
}

.div-block-4 {
  margin: 30px 30px -10px;
  padding-left: 30px;
  padding-top: 30px;
  position: absolute;
  width: 190px;
  z-index: 900;
}

.div-block-5 {
  position: relative;
}

.div-block-6 {
  border: 30px solid var(--white);
  bottom: 0;
  height: 100%;
  left: 0;
  margin-left: 30px;
  padding-left: 56px;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.div-block-8 {
  display: block;
  position: relative;
}

.div-block-9 {
  background-color: var(--white);
  border-color: var(--orange);
  border-style: solid;
  border-width: 30px 0 30px 30px;
  display: block;
  margin-bottom: -90px;
  min-height: 100vh;
  padding: 90px 60px 60px 30px;
  width: 100%;
}

.div-block-10 {
  background-color: var(--white);
  padding-right: 40px;
  padding-top: 90px;
  position: fixed;
  right: 0;
  top: 0;
  width: 45vw;
}

.image-test {
  border: 30px solid var(--orange);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 1;
  overflow: visible;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: 1;
}

.image-test.simple {
  display: block;
}

.image-container {
  border: 30px none var(--orange);
  height: 95vh;
  margin-left: 0;
  position: fixed;
  width: 100vw;
}

.content-image {
  display: block;
  height: 100px;
  overflow: hidden;
  position: relative;
  transform: scale(100);
  width: 100px;
  z-index: 900;
}

.rond {
  background-color: var(--orange);
  border-radius: 20px;
  float: left;
  height: 40px;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 40px;
  width: 40px;
}

.rond.image {
  background-attachment: fixed;
  background-image: url('../images/P1010620.JPG');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.rond.noir {
  background-color: #000;
}

/* À VÉRIFIER - Slider général ou home ? */
.slider {
  background-color: var(--white);
  border: 30px solid var(--orange);
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.slide {
  align-items: center;
  display: flex;
  justify-content: center;
}

.slide-2 {
  align-items: center;
  display: flex;
  justify-content: center;
}

.slide-3 {
  display: block;
}

.slide-cms {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.mask {
  height: 100%;
}

.right-arrow {
  display: none;
}

.left-arrow {
  display: none;
}

.right-arrow-2 {
  display: none;
}

.slide-nav {
  display: none;
}

/* ==========================================

   PAGE EXPOSITION (DÉTAIL)

   ========================================== */

.titre {
  bottom: 0;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" viewBox="0 0 64 64" fill="white"><path d="M24,14H14v10h-4V14H0v-4h10V0h4v10h10V14z"/></svg>'), default;
  left: 0;
  margin-bottom: 60px;
  margin-left: 30px;
  margin-right: 0;
  padding-left: 30px;
  padding-right: 30px;
  position: fixed;
  right: 0;
  width: 49vw;
  z-index: 500;
}

.titre.tablet {
  display: none;
}

@media screen and (max-width: 991px) {
  .titre {
    width: 90vw;
  }

  .titre.tablet {
    margin-left: 0;
    padding-left: 0;
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .titre {
    width: 80vw;
  }
}

.titre-expo {
  color: var(--orange);
  font-size: 4vw;
  font-style: italic;
  line-height: 4vw;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .titre-expo {
    font-size: 5vh;
    line-height: 5.5vh;
  }
}

@media screen and (max-width: 767px) {
  .titre-expo {
    font-size: 6vw;
    line-height: 6.5vw;
  }
}

.dates-expo {
  color: var(--orange);
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  line-height: 3vw;
  margin-bottom: 26px;
}

.dates-expo.jour {
  display: inline-block;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .dates-expo.jour {
    font-size: 4vw;
    line-height: 3vw;
  }
}

@media screen and (max-width: 767px) {
  .dates-expo.jour {
    font-size: 5vw;
    line-height: 4vw;
  }
}

@media screen and (max-width: 479px) {
  .dates-expo {
    font-size: 3vh;
    line-height: 3vh;
  }

  .dates-expo.jour {
    font-size: 3vh;
  }
}

.slider-container {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}

.slider-container.new {
  border: 30px solid var(--orange);
}

.slider-halles {
  align-items: stretch;
  background-color: var(--white);
  display: none;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.slider-halles.new {
  display: block;
  height: 100%;
}

.slider-halles.edition {
  display: block;
}

.slide-halles {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-halles.new {
  align-items: stretch;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  display: inline-block;
  height: 96vh;
  position: relative;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .slide-halles.new {
    align-items: stretch;
    display: inline-block;
    flex-direction: column;
    height: 94vh;
    object-fit: cover;
  }
}

.image-slide {
  position: relative;
  top: 50%;
  transform: translate(0px, -50%);
}

@media screen and (max-width: 991px) {
  .image-slide {
    display: block;
    height: 100%;
    left: 50%;
    max-width: none;
    transform: translate(0px, -50%) translate(-50%, 0);
  }
}

.image-slide-new {
  display: block;
  flex: 0 auto;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .image-slide-new {
    height: 100%;
    max-width: none;
    min-height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    position: static;
    width: 100%;
  }
}

.text {
  background-color: var(--white);
  bottom: 0;
  display: none;
  float: right;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 30px;
  padding-right: 0;
  position: relative;
  right: 0;
  top: 0;
  width: 45vw;
}

@media screen and (max-width: 991px) {
  .text {
    float: none;
    left: 0;
    margin-left: -30px;
    padding-right: 30px;
    position: relative;
    width: 100vw;
    z-index: 501;
  }
}

.text-block {
  column-count: 2;
}

.text-wrapper {
  display: block;
  position: relative;
  z-index: 500;
}

.rich-text-test {
  display: inline-block;
  position: relative;
  z-index: 999;
}

.rich-text-test p {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  margin-right: 20px;
}

.rich-text-block {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  z-index: 999;
}

.bloc-text {
  background-color: var(--white);
  border-left: 15px solid var(--orange);
  border-top: 15px solid var(--orange);
  display: block;
  float: right;
  margin-top: 60px;
  opacity: 1;
  padding: 90px 20px 30px;
  position: relative;
  transform: translate(50vw, 0) translate(0px, 0);
  width: 40vw;
  z-index: 999;
}

@media screen and (max-width: 991px) {
  .bloc-text {
    display: none;
  }
}

.artistes {
  background-color: var(--white);
  border: 30px solid var(--orange);
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 120px;
  position: absolute;
  right: 0;
  top: 0;
  transform: none;
  width: 100%;
  z-index: 999;
}

.rich-text-expo {
  background-color: var(--white);
  margin-bottom: 20px;
}

.rich-text-expo img {
  display: block;
}

.rich-text-expo figure,
.rich-text-expo .w-richtext-align-center {
  width: 100%;
}

.rich-text-expo figure > div {
  margin: 0;
  width: 100%;
}

.rich-text-expo figure.w-richtext-align-floatleft,
.rich-text-expo figure.w-richtext-align-floatright,
.rich-text-expo figure.w-richtext-align-center {
  text-align: center;
  width: 100%;
}

.img-text-expo {
  display: block;
  margin-bottom: 20px;
}

.img-text-expo.logo-text {
  display: inline-block;
  margin-right: 20px;
  max-height: 60px;
}

/* ==========================================

   PAGE EDITION (DÉTAIL)

   ========================================== */

.edition {
  left: 0;
  margin: 100px 20px 20px;
  min-height: 100%;
  position: absolute;
  right: 0;
  z-index: 800;
}

@media screen and (max-width: 991px) {
  .edition {
    padding-bottom: 50px;
  }
}

.text-edition {
  margin-top: 40px;
}

.text-edition p {
  margin-bottom: 0;
}

.image-edition {
  max-height: 100%;
}

.img-edition {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 70vh;
}
@media screen and (max-width: 991px) {
  .img-edition {
    margin-left: 0;
    margin-right: 0;
    max-height: 50vh;
  }
}

.slider-edition {
  max-height: 100%;
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .slider-edition {
    margin-top: 2em;
  }
  .slider-edition.tablet {
    margin-top: 40px;
  }
}

.slider-nav {
  color: var(--orange);
  font-size: 12px;
}

/* ==========================================

   POPUPS - SYSTÈME GÉNÉRAL

   ========================================== */

.popup {
  background-color: var(--white);
  border: 30px solid var(--orange);
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  padding-left: 12px;
  padding-top: 2px;
  position: fixed;
  right: 0;
  top: 0;
  transform: none;
  width: 100%;
  z-index: 1000;
}

.popup.editions {
  display: none;
}

.popup.expositions {
  display: none;
}

.popup.contact {
  display: block;
  min-height: 100vh;
  overflow: visible;
  transform: translate(100vw, 0);
}

.popup.eac {
  display: none;
}

.popup.eac .collection-presentation .w-row {
  overflow: auto;
}

/* ==========================================

   POPUP EAC

   ========================================== */

.presentation {
  height: 460px;
  padding-right: 15px;
  column-fill: auto;
}

.introduction {
  margin-left: 10px;
  margin-right: 10px;
}

.column-presentation {
  padding-left: 0;
  padding-right: 15px;
}

.collection-presentation {
  height: 460px;
}

/* ==========================================

   POPUP LISTE EXPOSITIONS

   ========================================== */

.expo-list {
  align-items: baseline;
  column-count: 2;
  display: block;
  flex-direction: column;
  flex-wrap: nowrap;
  padding-left: 10px;
}

@media screen and (max-width: 991px) {
  .expo-list {
    column-count: 1;
  }
}

.nom-expo {
  border-bottom: 2px solid transparent;
  flex: 1;
}

.collection-expo {
  height: 460px;
  overflow: auto;
}

/* ==========================================

   POPUP LISTE EDITIONS

   ========================================== */

.list-editions {
  bottom: 0;
  height: 76%;
  left: 0;
  margin: 0 20px 20px;
  overflow: visible;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 767px) {
  .list-editions {
    margin-left: 30px;
    overflow: auto;
  }
}

.edition-date {
  color: var(--orange);
  display: block;
  flex: 0 0 auto;
  font-weight: 700;
  margin-right: 18px;
  width: 8%;
}

.edition-list {
  display: block;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .edition-list {
    width: 100%;
  }
}

.link-editions {
  border-bottom: 2px solid transparent;
  color: #333;
  display: block;
  flex: 0 auto;
  text-decoration: none;
}

.link-editions:hover {
  border-bottom-color: var(--orange);
}

.link-editions.w--current {
  border-bottom-color: var(--orange);
}

.link-block {
  background-color: var(--orange);
  display: none;
  height: 30px;
  margin-left: 71px;
  margin-top: 62px;
  position: absolute;
  width: 30px;
  z-index: 2200;
}

.collection-list-wrapper-editions {
  height: 100%;
  overflow: auto;
  position: relative;
  width: 100%;
}

.collection-list-wrapper-editions.contact {
  height: auto;
}

@media screen and (max-width: 767px) {
  .collection-list-wrapper-editions.contact {
    height: auto;
  }
}

.presse {
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ==========================================

   POPUP CONTACT

   ========================================== */

.submit-button {
  background-color: var(--orange);
  transition: background-color 200ms ease;
}

.submit-button:hover {
  background-color: #000;
}

.form:focus {
  border: 1px solid var(--orange);
}

.honeypot {
  left: -9999px;
  position: absolute;
}

.alert {
  animation: slideDown 0.3s ease;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 15px;
}

.alert.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.map {
  height: 40vh;
  width: 43vw;
}

@media screen and (max-width: 767px) {
  .map {
    width: auto;
  }
}
