/*--------------------------------------------------------------
Misc
--------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

a,
button {
  text-decoration: none;
  outline: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0.8, 0.74, 1);
}

a:link {
  -webkit-tap-highlight-color: transparent;
}

.transition {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.transition2 {
  -webkit-transition: visibility 0s 1s, -webkit-transform 1s cubic-bezier(0.75, 0, 0.25, 1);
  transition: visibility 0s 1s, -webkit-transform 1s cubic-bezier(0.75, 0, 0.25, 1);
  transition: transform 1s cubic-bezier(0.75, 0, 0.25, 1), visibility 0s 1s;
  transition: transform 1s cubic-bezier(0.75, 0, 0.25, 1), visibility 0s 1s, -webkit-transform 1s cubic-bezier(0.75, 0, 0.25, 1);
  will-change: transform;
}

/*--------------------------------------------------------------
Fonts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Structure
--------------------------------------------------------------*/

:root {
  --color1: #fc6b39;
  --color2: #31302b;
}

body {
  color: #ffffff;
  background-color: #0c96ba;
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-attachment: fixed;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  cursor: default;
  min-height: 100%;
  width: 100vw;
  height: 100vh;
}

html {
  height: 100%;
  font-size: 62.5%;
  /*font-size: calc(1em * 0.625); IE */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

strong {
  font-weight: 600;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  /*padding-top: 100vh;*/
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

img.artist {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  display: block;
}

section {
  position: relative;
  /*min-height: 100vh;*/
  padding: 15px 0;
}

section#home {
  /*background-color: #fff;*/
  z-index: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  /*height: 100vh;*/
  min-height: auto;
  padding: 0 0 0 0;
}

img.visuel {
  position: relative;
  width: 100%;
  height: auto;
  display: inline-block;
}

img.visuel_xs {
  display: none;
}

.container {
  position: relative;
  margin: auto;
  z-index: 1;
  width: 80%;
  max-width: 1000px;
  text-align: center;
}

.container.header {
  /*width: 100%;
    max-width: 100%;*/
  /*background-color: #fff;*/
}

@media screen and (max-width: 960px) {
  img.visuel {
    /*display: none;*/
  }
  /*img.visuel_xs {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
    }*/
}

/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/

h1 {
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: inherit;
  display: block;
  text-align: center;
  position: relative;
  color: #fff;
  margin: 0 0 30px 0;
  background-color: #012330;
  cursor: default;
  padding: 12px 20px !important;
}

h2 {
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  color: inherit;
  /* text-align: center; */
  display: inline-block;
  position: relative;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

h3 {
  font-size: 1.8vw;
  line-height: 2vw;
  font-weight: 600;
  color: inherit;
  text-align: left;
  margin: 0 0 25px 0;
}

h4 {
  font-size: 1em;
}

input,
select,
th,
td {
  font-size: 1em;
}

p {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 2.2vh;
  line-height: 1.3;
  margin: 3.5vh 0 0 0;
  font-weight: 700;
  text-transform: uppercase;
}

p:last-child {
  /*margin: 0;*/
}

p span.color {
  color: #4c8c2b;
}

p b,
p strong {
  font-weight: 600;
}

p a {
  text-decoration: underline;
}

.mobile {
  display: none;
}

@media screen and (max-width: 960px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: inline-block;
  }
  .container {
    width: 100%;
    max-width: 500px;
  }
  .container.header {
    max-width: 100%;
  }
  section#home {
    /*background-color: #fff;*/
    padding: 20px 20px 0 20px;
  }
  section {
    min-width: auto;
  }
  h1 {
    margin: 0 20px;
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
Nav
--------------------------------------------------------------*/

nav {
}

ul.main-nav-list {
  text-align: center;
}

ul.main-nav-list li {
  display: inline-block;
  padding: 0 30px;
}

ul.main-nav-list li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

ul.main-nav-list li a:hover {
  font-weight: 600;
}

/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 30px 40px;
  display: block;
  text-align: left;
}

header.bg {
  background-color: transparent;
}

#social-nav {
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.social-nav-item {
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
}

.social-nav-item a {
  display: block;
  position: relative;
}

.social-nav-item a svg {
  fill: #000000;
}

.social-nav-item a:hover svg {
  fill: #666;
}

.menu-button {
  cursor: pointer;
  border: none;
  background: transparent;
  display: inline-block;
  /*-webkit-transition: -webkit-transform cubic-bezier(.7,0,.3,1) .3s;
    transition: -webkit-transform cubic-bezier(.7,0,.3,1) .3s;
    transition: transform cubic-bezier(.7,0,.3,1) .3s;
    transition: transform cubic-bezier(.7,0,.3,1) .3s,-webkit-transform cubic-bezier(.7,0,.3,1) .3s;*/
  position: relative;
  z-index: 100;
  border: 1px solid #fff;
  padding: 5px 7px 10px 7px;
}

.menu-button .line {
  width: 25px;
  height: 2px;
  background: #fff;
  display: block;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.75, 0, 0.25, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.75, 0, 0.25, 1);
  transition: transform 0.5s cubic-bezier(0.75, 0, 0.25, 1);
  transition: transform 0.5s cubic-bezier(0.75, 0, 0.25, 1), -webkit-transform 0.5s cubic-bezier(0.75, 0, 0.25, 1);
  will-change: transform;
}

.menu-button .line:nth-child(2) {
  /*  -webkit-transform: scale(0.9);
    transform: scale(0.9);*/
}

.menu-button .line {
  margin-top: 5px;
}

.menu-open .menu-button .line:nth-child(1) {
  /*-webkit-transform: rotate(-45deg) translate(-1px,2px);
    transform: rotate(-45deg) translate(-1px,2px);*/
  -webkit-transform: rotate(-45deg) translate(-5px, 4px);
  transform: rotate(-45deg) translate(-5px, 4px);
}

.menu-open .menu-button .line:nth-child(2) {
  /*    -webkit-transform: scale(1) rotate(45deg) translate(-3px,-3px);
    transform: scale(1) rotate(45deg) translate(-3px,-3px);*/
  -webkit-transform: scale(1) rotate(45deg) translate(-1px, 0px);
  transform: scale(1) rotate(45deg) translate(-1px, 0px);
}

.menu-open .menu-button .line:nth-child(3) {
  -webkit-transform: scale(0);
  transform: scale(0);
}

@-webkit-keyframes fadeHeaderBG {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeHeaderBG {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

#main-nav-container {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: visibility 0s 1s, -webkit-transform 1s cubic-bezier(0.75, 0, 0.25, 1);
  transition: visibility 0s 1s, -webkit-transform 1s cubic-bezier(0.75, 0, 0.25, 1);
  transition: transform 1s cubic-bezier(0.75, 0, 0.25, 1), visibility 0s 1s;
  transition: transform 1s cubic-bezier(0.75, 0, 0.25, 1), visibility 0s 1s, -webkit-transform 1s cubic-bezier(0.75, 0, 0.25, 1);
  will-change: transform;
}

.menu-open #main-nav-container {
  /*top: 0;*/
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}

#social-nav {
  position: absolute;
  bottom: 40px;
  right: 0;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  left: 0;
  text-align: center;
  top: auto;
}

@media screen and (max-width: 960px) {
  header {
    padding: 28px 20px !important;
  }
  header .brand {
    width: calc(100% - 10px);
  }
  header .brand img {
    width: 70px;
    height: auto;
    display: inline-block;
    margin: 0 6px;
  }
  header .brand img.coeur {
    width: 11px;
  }
}

/*--------------------------------------------------------------
Main Nav
--------------------------------------------------------------*/

.social-nav {
  position: absolute;
  left: 50%;
  bottom: 12vh;
  transform: translateX(-50%);
  text-align: center;
  /*width: 100%;*/
}

.social-nav li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}

.social-nav li a {
  display: block;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.social-nav li a:hover {
  opacity: 0.8;
}

.social-nav li a svg {
  width: 19px;
  height: auto;
  display: block;
}

#main-nav-container {
}

ul#main-nav-list li {
  margin: 25px 0;
  display: block;
}

.main-nav-item a {
  display: block;
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  color: #fff;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.main-nav-item a:hover,
.main-nav-item.active a {
  color: #fff;
  opacity: 0.5;
}

#main-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

@media screen and (max-width: 960px) {
  #main-nav {
    padding: 0 10%;
  }
  .main-nav-item a {
    font-size: 2.3rem;
    line-height: 3.4rem;
  }
  ul#main-nav-list li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
Buttons
--------------------------------------------------------------*/

.btn__wrapper {
  /* width: 33.3333%; */
  margin-top: 80px;
}

.btn,
.btn__form {
  position: relative;
  padding: 12px 25px;
  margin: 0;
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  width: auto;
  border: 0;
  background: #fff;
  cursor: pointer;
  outline: 0;
  border-radius: 3px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.btnShop {
  padding: 12px 15px;
  width: 44vh;
  font-size: 2vh;
}

.btn_icon {
  padding-left: 15px;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.btn_icon svg {
  width: 0.7vh;
  height: auto;
  display: block;
}

.btn:hover {
  /*background: #cfcfcf;*/
  padding-right: 10px;
}

.btn:hover .btn_icon {
  padding-left: 20px;
}

.btn_full {
  width: 100%;
  margin: 30px auto 0;
}

.btn span {
  position: relative;
  z-index: 10;
}

/*
.btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #dc092f;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    transition: 0.5s transform cubic-bezier(.75,0,.25,1);    
}

.btn:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.btn:hover, .btn__form:hover {
}
*/

@media screen and (max-width: 960px) {
  .btn,
  .btn__form {
    font-size: 2rem;
    text-align: center;
    line-height: 1.4;
  }
  .btnShop {
    padding: 12px 20px;
    width: 66%;
    font-size: 1.5rem;
  }
  .btn_icon svg {
    width: 8px;
  }
}

/*--------------------------------------------------------------
Overlay
--------------------------------------------------------------*/

.noscroll {
  overflow: hidden;
}

.overlay {
  /*display: none;*/
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1000;
  overflow: hidden;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

body.overlay__open__share .overlay-share,
body.overlay__open__links .overlay-links {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

body.overlay__open__share .wrapper,
body.overlay__open__links .wrapper {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  /*-webkit-transition: .25s -webkit-filter linear .1s;*/
  opacity: 0.75;
  -webkit-filter: blur(12px);
  filter: blur(12px);
}

.overlay__content__wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-y: scroll;
  width: 100vw;
  height: 100%;
}

.overlay__content {
  width: 100%;
  max-width: 900px;
  padding: 5vw 8vw;
  text-align: center;
  position: relative;
  margin: auto;
}

.overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #333;
  opacity: 0.6;
  z-index: -1;
}

.overlay__nav {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  text-align: center;
  padding: 20px;
  z-index: 300;
}

.btn__close {
  border: 0;
  cursor: pointer;
  border-radius: 100%;
  color: #333;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #333;
  -webkit-transition: transform 0.25s ease-in-out;
  -moz-transition: transform 0.25s ease-in-out;
  -ms-transition: transform 0.25s ease-in-out;
  -o-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
}

.btn__close:hover {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn__close:before {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 0;
  border-top: 2px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.btn__close:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 0;
  border-top: 2px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.overlay__content ul li {
  display: block;
  margin: 20px 0;
}

body.desktop .only-mobile {
  display: none !important;
}

.overlay__content ul li {
  opacity: 0;
}

.overlay__content ul li.visible {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.overlay__content ul li:nth-child(1) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.overlay__content ul li:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.overlay__content ul li:nth-child(3) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.overlay__content ul li:nth-child(4) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.overlay__content ul li:nth-child(5) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.overlay__content ul li:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.overlay__content ul li:nth-child(7) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.overlay__content ul li:nth-child(8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.social-link {
  /*height: 50px;*/
  display: inline-block;
}

.social-icon {
  position: relative;
  margin-right: 10px;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 100%;
  /*padding: 5px;*/
}

.social-icon img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  padding: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}

.social-icon.facebookBtn img {
  padding: 10px;
}

.social-title {
  color: #333;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: -0.01rem;
  font-size: 1.7rem;
  font-weight: 600;
  padding-left: 0px;
  margin-right: 5px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 960px) {
  .overlay__nav {
    bottom: 0;
    top: auto;
  }
}

/*--------------------------------------------------------------
Nav
--------------------------------------------------------------*/

/*
nav {
    color: #333;
}
nav ul {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    width: 50vw;
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;    
}
nav ul li {
    padding: 10px 5px;
    display: inline-block;
}
nav ul li a {
    display: block;
    padding: 10px;
    text-align: center;
}
nav ul li a svg {
    width: 20px;
    height: auto;
    display: inline-block;
    fill: currentColor;
}
nav ul li a span {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: normal;
    padding-top: 3px;
}

@media screen and (max-width: 960px) {

    nav ul {
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        margin-top: 0;
        margin-bottom: 30px;
        width: 100vw;
        justify-content: center;
        flex-direction: row-reverse;
    }

}
*/

/*--------------------------------------------------------------
Billeterie
--------------------------------------------------------------*/

ul.shows {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

ul.shows li {
  /*color: var(--color1);*/
  text-transform: uppercase;
  text-align: left;
  width: 100%;
  display: flex;
  margin: 0;
}

.date-item {
  display: flex;
  align-content: center;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 20px;
}

.date-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.date {
  width: 14%;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
}

.date-inner {
  color: #fff;
  width: 120px;
  padding-right: 30px;
  border-right: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-end;
}

.date-day {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.date-year {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  /*opacity: .5;*/
}

.date-infos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.date-resa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.date-town {
  color: #fff;
  /*font-family: 'Tusker Grotesk 3600';*/
  font-size: 3rem;
  font-weight: 700;
  /*line-height: 1;*/
  margin-bottom: 5px;
}

.date-salle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: initial;
}

.date-report {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  background-color: var(--color1);
  color: #fff;
  padding: 5px 10px;
  margin-top: 5px;
}

.date-link {
  border-radius: 0;
  position: relative;
  background-color: #fff;
  color: #012330;
  font-weight: 700;
  font-size: 2rem;
  cursor: default;
  padding: 12px 20px !important;
  display: flex;
  flex-direction: column;
}

a.date-link {
}

.date-link.complet {
  background-color: #012330 !important;
  color: #fff !important;
  cursor: default !important;
}

.date-link span {
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 40%;
  color: #fff;
  background-color: #000;
  font-weight: 600;
  z-index: 10;
  transform: rotate(-10deg);
  padding: 5px 10px;
}

.date-link:hover {
  padding: 12px 15px;
}

a.date-link:hover {
  cursor: pointer;
  opacity: 0.9;
}

@media screen and (max-width: 960px) {
  ul.shows li {
    width: 100%;
    justify-content: center !important;
    margin-bottom: 0px;
  }
  .date-item {
    flex-wrap: wrap;
  }
  .date {
    width: 40%;
  }
  .date-infos {
    width: 60%;
    height: auto;
  }
  .date-resa {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .date-link-hidden {
    display: none !important;
  }
  .date-link span {
    font-size: 60%;
  }
  .date-day {
    font-size: 3.2rem;
  }
  .date-inner {
    width: auto;
  }
  .date-town {
    font-size: 2.8rem;
  }
  .date-salle {
    font-size: 2.2rem;
  }
}

/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/

footer {
  margin-top: auto;
  padding: 30px 0px 20px 0px;
  background-color: rgba(1, 35, 48, 0.5);
  backdrop-filter: blur(8px); /* blur effect */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  color: #fff;
  position: relative;
  width: 100%;
  text-align: center;
}

footer .container {
  max-width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
}

footer ul#footer-nav-list li {
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
}

footer ul#footer-nav-list li:last-child {
  display: none;
}

footer .footer-nav-item a {
  display: block;
  color: #fff;
  position: relative;
  font-size: 1.1rem;
  font-weight: 100;
  line-height: 1;
  text-transform: none;
}

.legals a {
  margin-top: 20px;
  text-decoration: underline;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin: 5px 8px;
}

footer ul.share_list {
  display: inline-block;
  vertical-align: middle;
}

footer .social-nav {
  position: relative;
  left: auto;
  transform: none;
  bottom: auto;
  margin-bottom: 25px;
}

footer .social-nav li a svg {
  width: 25px;
  fill: #ffffff;
}

footer .social-nav li {
  margin: 0 12px;
}

@media screen and (max-width: 960px) {
  footer .container {
    width: 80%;
  }
  footer .social-nav {
    display: inline-block;
  }
  footer .social-nav li {
    margin: 12px;
  }
  .legals {
  }
  .legals a {
    display: inline-block;
    margin: 0 0 15px 0;
  }
  h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
Loading
--------------------------------------------------------------*/

body.loading {
  height: 100%;
  overflow: hidden;
}

body.loading-page:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 100000000000000000;
}

body.loading-page.loading-page-close:before {
  opacity: 0;
  -webkit-transition: all 0.65s ease-in-out;
  -moz-transition: all 0.65s ease-in-out;
  -ms-transition: all 0.65s ease-in-out;
  -o-transition: all 0.65s ease-in-out;
  transition: all 0.65s ease-in-out;
  /*
    -webkit-transition: visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    transition: visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    transition: transform 1s cubic-bezier(.75,0,.25,1),visibility 0s 1s;
    transition: transform 1s cubic-bezier(.75,0,.25,1),visibility 0s 1s,-webkit-transform 1s cubic-bezier(.75,0,.25,1);
    will-change: transform;

    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);   */
}

#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
}

.reveal-animate {
  opacity: 0;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 100px, 0);
    transform: translate3d(-100px, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 200px, 0);
    transform: translate3d(-100px, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 200px, 0);
    transform: translate3d(100px, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 200px, 0);
    transform: translate3d(100px, 200px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.visible {
  /*    -webkit-transition: -webkit-transform .5s cubic-bezier(.75,0,.25,1);
    transition: -webkit-transform .5s cubic-bezier(.75,0,.25,1);
    transition: transform .5s cubic-bezier(.75,0,.25,1);
    transition: transform .5s cubic-bezier(.75,0,.25,1),-webkit-transform .5s cubic-bezier(.75,0,.25,1);
    will-change: transform;    */
  /*animation-timing-function: cubic-bezier(.75,0,.25,1);
    -webkit-animation-timing-function: cubic-bezier(.75,0,.25,1);*/
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.visible.up {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.visible.left {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.visible.right {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@media screen and (max-width: 960px) {
  .visible.left {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  .visible.right {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
}

@media screen and (max-width: 960px) {
  section#home {
    height: auto;
  }
  .home__content {
    margin: 60px 0;
  }
  .cover__wrapper {
    display: none;
  }
  .logo__wrapper img {
    width: 66%;
    min-width: 200px;
    height: auto;
  }
  .logo__wrapper2 {
    display: none;
  }
  .hashtagLeft {
    display: none;
  }
  .hashtagRight {
    top: auto;
    bottom: 8vh;
    right: 0;
    width: 100%;
    height: auto;
    text-align: center;
    transform: none;
    font-size: 1.6rem;
  }
  .social-nav {
    display: none;
  }
  .home__content__row1 {
    margin-bottom: 50px;
  }
  ul.main-nav-list {
    display: flex;
    justify-content: space-between;
  }
  ul.main-nav-list li {
    padding: 0;
  }
}

/*--------------------------------------------------------------
Tarteaucitron
--------------------------------------------------------------*/

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  display: none !important;
}

#tarteaucitronAlertBig {
  background: #fff !important;
  color: #000 !important;
  position: fixed !important;
  z-index: 99999;
  bottom: 0;
  right: 0;
  font-size: 15px !important;
  left: auto !important;
  padding: 30px !important;
  text-align: center !important;
  width: 450px !important;
  box-sizing: border-box;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert b {
  font-size: 16px !important;
  color: #000 !important;
  font-family: Arial, sans-serif !important;
  font-weight: 400 !important;
  display: block;
  margin-bottom: 5px;
  padding: 0px !important;
  text-align: center !important;
}

#tarteaucitronAlertBig #tarteaucitronPersonalize,
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
#tarteaucitronAlertBig .tarteaucitronDeny,
#tarteaucitronAlertBig #tarteaucitronCloseAlert {
  background: #000 !important;
  color: #fff !important;
  cursor: pointer !important;
  display: inline-block !important;
  font-size: 15px !important;
  padding: 8px 15px !important;
  text-decoration: none !important;
  margin: 5px auto !important;
}

/*
#tarteaucitronAlertBig #tarteaucitronCloseAlert {
background: transparent !important;
    color: #000 !important;
    cursor: pointer !important;
    display: inline-block !important;
    font-size: 13px !important;
    padding: 5px 0px !important;
    text-decoration: none !important;
    margin-left: 0 !important;
}
*/

#tarteaucitronPercentage {
  display: none !important;
}

@media screen and (max-width: 1000px) {
  #tarteaucitronAlertBig {
    background: #fff !important;
    color: #000 !important;
    position: fixed !important;
    z-index: 99999;
    bottom: 0;
    right: auto !important;
    font-size: 14px !important;
    left: auto !important;
    padding: 15px 5% !important;
    text-align: center !important;
    width: 90% !important;
  }
}
