/*
reset
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    /*display: inline;*/
    margin:0;
    padding:0;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

img {
    max-width: 100%;
}

/*
globalrules
*/

html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    background: #000;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    min-height: 100vh;
    position: relative;
    font-size: 0;
    padding: 0;
    margin: auto;
    max-width: 750px;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

.loading_temp,
.loading {
  display: flex;
  justify-content: center;
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
}

.loading img,
.loading_temp img {
    width: 20%;
}

.loading {
    animation-name: loadcircle;
    animation-duration: 1s;
    animation-timing-function: linear;
}

@keyframes loadcircle {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 18%;
    }
}

/* HEADER */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.label_cobrand {
    display: block;
    text-align: center;
}

.coobranding {
    font-size: 10px;
    display: inline-block;
}

.logo p {
    font-size: 2.4rem;
    font-weight: 400;
}

.logo p span {
    font-weight: 900;
    color: #e82150;
}

/* CTA */

.cta{
  padding: 0 10px;
}

p.title{
  text-transform: uppercase;
  font-weight: 700;
}

.cta img{
  width: 100%;
  margin-top: 10px;
  animation: bg 1.5s;
}

@keyframes bg {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e82150;
  width: 95%;
  margin: 10px auto 0;
  font-size: 30px;
  text-shadow: #000 0 0 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  animation: button .8s infinite;
}

@keyframes button {
  0% {
    color: rgba(255,255,255,0);
    text-shadow: rgba(0, 0, 0, 0) 0 0 10px;
  }
  50% {
    color: rgba(255,255,255,1);
    text-shadow: rgba(0, 0, 0, 1) 0 0 10px;
  }
  100% {
    color: rgba(255,255,255,0);
    text-shadow: rgba(0, 0, 0, 0) 0 0 10px;
  }
}

.mentions-tarif {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 12px !important;
}

.text-tarif {
  font-size: 12px !important;
  color: #757575;
  font-weight: 700;
}

.player{
  position: relative;
  top: -40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  animation: player .5s;
  margin: 10px;
}

@keyframes player {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.player #pause{
  width: 4%;
}

.player .bar{
  width: 75%;
  height: 5px;
  background: #fff;
}

.player #fullscreen{
  width: 5%;
}

/* DESCRIPTIF */

.descriptif{
  display: flex;
  text-align: center;
  color: #757575;
  font-weight: 700;
  flex-direction: column;
  align-items: center;
}

.descriptif p{
  line-height: 1.5;
}

/* BOX */

.billingbox{
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 30vh;
}

.box{
  background: #000;
  width: 95%;
  text-align: center;
}

.launch p{
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

/* FOOTER */

footer {
    width: 100%;
    text-align: center;
    margin: 10vh 0 20px;
}

.sub-footer {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
}

.site-footer img {
    padding: 10px;
    width: 40%;
}

.site-footer ul li {
    display: inline-block;
    font-size: 10px;
    color: #757575;
    margin: 0 4vw;
}

.site-footer ul li a {
    color: #757575;
    text-decoration: none;
}

.site-footer ul li:last-child {
    display: none;
}

.show {
    display: flex !important;
    visibility:	visible;
}









/* MEDIA */

@media (max-height:500px) {
  header {
    padding: 15px 0;
  }

  p.title {
    font-size: 14px;
  }

  .loading_temp,
  .loading {
    top: 20vh;
  }

  .billingbox {
    top: 35vh;
  }

  .box {
    padding: 5px;
  }

  .launch p {
    font-size: 15px;
  }

  .button a {
    height: 50px;
    font-size: 20px;
  }

  .descriptif p {
    font-size: 12px;
  }

  .descriptif img {
    margin-top: 20px;
    width: 40%;
  }
}

@media (min-height:500px) and (max-height:600px) {
  header {
    padding: 15px 0;
  }

  p.title {
    font-size: 14px;
  }

  .loading_temp,
  .loading {
    top: 20vh;
  }

  .billingbox {
    top: 35vh;
  }

  .box {
    padding: 5px;
  }

  .launch p {
    font-size: 18px;
  }

  .button a {
    height: 80px;
    font-size: 30px;
  }

  .descriptif {
    margin-top: 15vh;
  }

  .descriptif p {
    font-size: 14px;
  }

  .descriptif img {
    width: 50%;
    margin-top: 20px;
  }
}

@media (min-height:600px) and (max-height:700px) {
  header {
    padding: 15px 0;
  }

  p.title {
    font-size: 14px;
  }

  .loading_temp,
  .loading {
    top: 20vh;
  }

  .billingbox {
    top: 40vh;
  }

  .box {
    padding: 5px;
  }

  .launch p {
    font-size: 18px;
  }

  .button a {
    height: 80px;
    font-size: 30px;
  }

  .descriptif {
    margin-top: 15vh;
  }

  .descriptif p {
    font-size: 14px;
  }

  .descriptif img {
    width: 50%;
    margin-top: 25px;
  }
}

@media (min-height:700px) and (max-height:800px) {
  header {
    padding: 15px 0;
  }

  p.title {
    font-size: 20px;
  }

  .loading_temp,
  .loading {
    top: 20vh;
  }

  .billingbox {
    top: 35vh;
  }

  .box {
    padding: 5px;
  }

  .launch p {
    font-size: 25px;
  }

  .button a {
    height: 100px;
    font-size: 30px;
  }

  .descriptif {
    margin-top: 20vh;
  }

  .descriptif p {
    font-size: 14px;
  }

  .descriptif img {
    width: 50%;
    margin-top: 25px;
  }

  .site-footer {
    margin-top: 10vh;
  }
}

@media (min-height:800px) and (max-height:1000px) {
  header {
    padding: 15px 0;
  }

  p.title {
    font-size: 20px;
  }

  .loading_temp,
  .loading {
    top: 15vh;
  }

  .billingbox {
    top: 35vh;
  }

  .box {
    padding: 5px;
  }

  .launch p {
    font-size: 25px;
  }

  .button a {
    height: 100px;
    font-size: 30px;
  }

  .descriptif {
    margin-top: 20vh;
  }

  .descriptif p {
    font-size: 14px;
  }

  .descriptif img {
    width: 50%;
    margin-top: 30px;
  }

  .site-footer {
    margin-top: 20vh;
  }
}
