body {
  background-image: url("/images/frontend/background.jpg");
  background-attachment: fixed;
  height: 100vh;
  width: 100vw;
  background-size: cover;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

body.default {
  background-image: none;
  background-color: black;
}

h3 {
  margin-top: 35px;
  margin-bottom: 35px;
  font-size: 18px;
  text-transform: uppercase;
}

span {
  font-weight: 600;
  line-height: 1.5;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  display: inline-block;
}

footer {
  margin: auto;
  margin-top: 30px;
  width: 90vw;
  max-width: 1000px;
  bottom: 0;
  height: 6vh;
}

footer p {
  text-align: center;
  color: #FFF;
  font-size: 12px;
  font-weight: 100;
}

@media screen and (max-width: 414px) {
  footer p {
    font-size: 10px;
    margin-top: 0;
  }
}

footer img.logo_scope {
  width: 100px;
  float: left;
}

@media screen and (max-width: 414px) {
  footer img.logo_scope {
    display: none;
  }
}

footer ul {
  margin: 0;
  width: 10%;
  float: right;
  text-align: right;
}

footer ul li {
  margin-left: 30px;
}

footer ul li img {
  height: 15px;
}

@media screen and (max-width: 414px) {
  footer ul li img {
    height: 12px;
  }
}

@media screen and (max-width: 414px) {
  footer ul {
    width: 100%;
    right: 5%;
    position: absolute;
    left: inherit;
    top: 16%;
    text-align: center;
  }
}

.fallback-ipad {
  display: none;
  height: 100vh;
  width: 100vw;
  background-image: url("/images/frontend/tablet-rotate.svg");
  background-repeat: no-repeat;
  background-color: #fff;
  position: absolute;
  z-index: 10;
  background-size: 150px;
  background-position: 50%;
  z-index: 10000;
}

@media screen and (max-width: 768px) and (min-height: 1024px) {
  .fallback-ipad {
    display: block;
  }
}

@media screen and (max-width: 1024px) and (min-height: 1366px) {
  .fallback-ipad {
    display: block;
  }
}

form.register {
  overflow: hidden;
  margin: 35px 0px;
}

form.register input {
  border: none;
  border-bottom: 1px solid black;
  width: 50%;
  margin-bottom: 50px;
  padding: 0 20px 10px 10px;
  margin-right: 20px;
  font-size: 15px;
  font-family: Raleway, sans-serif;
  outline: none;
}

@media screen and (max-width: 414px) {
  form.register input {
    margin-bottom: 20px;
  }
}

form.register input[type=checkbox] {
  float: left;
  clear: both;
  padding: 10px;
  width: 20px;
  margin-top: 20px;
}

form.register .inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

form.register .inputs input[type=text],
form.register .inputs input[type=email] {
  width: 40%;
  display: inline-block;
  margin-right: 0;
}

form.register .inputs input[type=email] {
  width: 100%;
}

form.register label {
  display: block;
  float: left;
  width: calc(100% - 50px);
  font-size: 12px;
  margin-top: 20px;
}

form.register .buttons {
  display: flex;
}

form.register .buttons button,
form.register .buttons .button {
  padding: 10px 20px;
  display: inline-block;
  margin-top: 35px;
  text-decoration: none;
  color: #FFF;
  font-weight: 300;
  background: linear-gradient(135deg, #eb3349, #f45c43);
  position: relative;
  border: none;
  cursor: pointer;
  background-position: 0 0;
  background-size: 200% 100%;
  transition: 0.3s ease;
  font-size: 1.1em;
  margin-right: 35px;
  width: 50%;
}

@media screen and (max-width: 414px) {
  form.register .buttons button,
  form.register .buttons .button {
    margin-right: 20px;
    width: 100%;
  }
}

form.register .buttons button:last-child,
form.register .buttons .button:last-child {
  margin-right: 0;
}

@media screen and (max-width: 414px) {
  form.register .buttons button:last-child,
  form.register .buttons .button:last-child {
    margin-top: 15px;
  }
}

form.register .buttons button:hover,
form.register .buttons .button:hover {
  background-position: 100% 0;
}

form.register .buttons button span,
form.register .buttons .button span {
  position: relative;
  color: #FFF;
  font-weight: 400;
  font-size: inherit;
}

form.register div.limit_place p {
  float: left;
  margin-top: 35px;
  margin-right: 30px;
  margin-bottom: 0;
}

form.register div.limit_place label {
  display: block;
  height: 30px;
  width: 30px;
  border: 4px solid #000;
  position: relative;
  float: none;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}

@media screen and (max-width: 411px) {
  form.register div.limit_place label {
    margin-right: 15px;
  }
}

form.register div.limit_place label:hover {
  background-color: #000;
}

form.register div.limit_place label:hover span {
  color: #FFF;
}

form.register div.limit_place label span {
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: 0.3s ease-in;
}

form.register div.limit_place input[type=radio] {
  opacity: 0.5;
  position: absolute;
  float: none;
  width: 36px;
  height: 36px;
  visibility: hidden;
  top: 23px;
  margin: 0;
}

form.register div.limit_place input[type=radio] + label {
  opacity: 0.3;
}

form.register div.limit_place input[type=radio]:checked + label {
  background-color: #000;
  opacity: 1;
}

form.register div.limit_place input[type=radio]:checked + label span {
  color: #FFF;
}

.home {
  min-height: 100vh;
  min-width: 100%;
  display: flex;
}

.home img {
  margin: auto;
  width: 30%;
}

header {
  position: relative;
  height: 8vh;
}

header img {
  width: 8%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
}

@media screen and (max-width: 414px) {
  header img {
    width: 28%;
  }
}

section.std {
  width: 90vw;
  max-width: 1000px;
  background-color: #FFF;
  margin: auto;
}

section.std img.fit {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

section.std span.arrow_scroll {
  cursor: pointer;
  height: 30px;
  width: 30px;
  border: 4px solid #CCC;
  content: "";
  right: 3%;
  bottom: 3%;
  position: fixed;
}

@media screen and (max-width: 414px) {
  section.std span.arrow_scroll {
    display: none;
  }
}

section.std span.arrow_scroll:before {
  border-left: 4px solid #CCC;
  border-bottom: 4px solid #CCC;
  position: absolute;
  right: 50%;
  bottom: 50%;
  content: "";
  height: 10px;
  width: 10px;
  -webkit-transform: translate(50%, 30%) rotate(-45deg);
          transform: translate(50%, 30%) rotate(-45deg);
}

@media screen and (max-width: 1240px) {
  section.std span.arrow_scroll {
    border-color: #CCC;
    right: 10%;
  }

  section.std span.arrow_scroll:before {
    border-color: #CCC;
  }
}

section.std .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 60px;
}

section.std .container.full-space {
  padding: 60px;
}

section.std .container.full-space .information {
  width: 100%;
  padding-left: 0;
}

@media screen and (max-width: 414px) {
  section.std .container {
    display: inherit;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-top: 0;
    height: 85vh;
  }
}

section.std .container .last-confirmed {
  margin-bottom: 4em;
}

.bloc_poster {
  min-width: 30%;
  max-width: 40%;
  position: relative;
  max-height: 65vh;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 414px) {
  .bloc_poster {
    display: none;
    min-width: 100%;
    max-height: 45vh;
    min-height: 50vh;
    margin-top: 3em;
  }
}

@media screen and (max-width: 375px) and (min-height: 812px) {
  .bloc_poster {
    max-height: 44vh;
    min-height: 44vh;
  }
}

.bloc_poster img {
  max-width: 50%;
  min-width: 230px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 1366px) and (min-height: 1024px) {
  .bloc_poster img {
    min-width: 350px;
  }
}

@media screen and (max-width: 1280px) {
  .bloc_poster img {
    max-width: 55%;
    min-width: 170px;
  }
}

@media screen and (max-width: 414px) {
  .bloc_poster img {
    max-width: 55%;
    min-width: 200px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: 0;
  }
}

.bloc_poster a {
  text-transform: none;
  color: #000;
  position: relative;
  padding: 5px 20px;
  text-decoration: none;
  border: 3px solid #EB3549;
  padding-left: 10%;
  text-align: center;
  width: 150px;
  margin: 4em auto;
  /*@media screen and (max-width: 1366px) and (min-height: 1024px){
      bottom: 13%;
  }

     @media screen and (max-width: 1280px){
     width: 40%;
  }

  @media screen and (max-width: 1024px){
     	bottom: 28%;
  }

  @media screen and (max-width: 414px){
   	width:50%;
  	    bottom: 0;
  	    left: 0;
     	transform: translateX(0);
  }*/
}

.bloc_poster a span {
  position: relative;
  z-index: 1;
}

.bloc_poster a:before {
  content: "";
  height: 110%;
  width: 1%;
  position: absolute;
  background-color: #EB3549;
  left: 1px;
  top: -1px;
  transition: 0.4s ease-in-out;
}

.bloc_poster a:after {
  height: 110%;
  width: 15%;
  background: url("/images/frontend/play.svg") no-repeat;
  background-color: #EB3549;
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  background-position: 50%;
  transition: 0.4s ease-in-out;
}

.bloc_poster a:hover {
  color: #FFF;
}

.bloc_poster a:hover span {
  color: inherit;
}

.bloc_poster a:hover:before {
  width: 100%;
}

.information {
  width: 60%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0 100px 0 0;
}

@media screen and (max-width: 414px) {
  .information {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    margin-top: 50px;
    overflow-y: initial;
    overflow-x: initial;
  }
}

.information .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.5);
}

.information .modal .content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 1.6em;
  background: #FFFFFF;
  font-size: 20px;
  line-height: 1.3em;
  text-align: center;
}

.information .movie p {
  line-height: 1.5;
}

.information .bloc_poster {
  display: none;
}

@media screen and (max-width: 414px) {
  .information .bloc_poster {
    display: block;
  }
}

.information h2 {
  margin: 0;
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
  font-size: 26px;
  font-style: italic;
}

.information h2:after {
  background-color: #EB3549;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}

.information .information_movie {
  padding-bottom: 25px;
  position: relative;
}

.information .information_movie ul li {
  display: list-item;
}

.information .information_movie div {
  margin-top: 30px;
  position: relative;
  padding-left: 30px;
}

.information .information_movie div p {
  font-weight: 100;
  margin: 10px 0;
}

.information .information_movie div:before {
  content: url("/images/frontend/genre_icon.svg");
  height: 25px;
  width: 25px;
  position: absolute;
  left: 0;
  top: -5px;
}

.information .information_movie div:nth-child(2):before {
  content: url("/images/frontend/director-chair.svg");
}

.information .information_movie div:nth-child(3):before {
  content: url("/images/frontend/avatar.svg");
}

.information .information_movie:after {
  background-color: #EB3549;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}

.information .event_information div {
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
}

.information .event_information div:before {
  content: url("/images/frontend/calendar.svg");
  height: 25px;
  width: 25px;
  position: absolute;
  left: 0;
  top: -3px;
}

.information .event_information div:nth-child(2):before {
  content: url("/images/frontend/clock.svg");
}

.information .event_information div:nth-child(3):before {
  content: url("/images/frontend/map.svg");
}

.information .event_information ul li {
  display: block;
  line-height: 1.5;
}

.information .event_information .adress {
  margin-bottom: 35px;
}

.information .event_information .adress p {
  margin: 0;
  font-weight: 100;
  line-height: 1.5;
}

.information .event_information .limit_day {
  margin: 35px 0;
  position: relative;
  padding-bottom: 35px;
}

.information .event_information .limit_day:after {
  background-color: #EB3549;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}

