
/********************************************************************************************************************/
/******** HOME ******************************************************************************************************/
/********************************************************************************************************************/

@media screen and (max-width: 767px) {

.homeTop h1 {
    text-align: center !important;   
}

a.artist {
    margin: 20px 0 !important;
    width: 100% !important;   
}

}

.wrapper.home {
    background-color: #c42c41;
}

.homeTop {
    padding: 20px;
    background-color: #000;
    width: 100%;
    position: relative;
    height: 35%;
}

.homeBottom {
    padding: 20px;
    background-color: #c42c41;
    width: 100%;
    position: relative;
    height: 65%;    
}


.homeTop img {
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: middle;    
}

.homeTop h1 {
    font-size: 2.3em;
    line-height: 1.1em;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}


a.artist {
    display: inline-block;
    margin: 10px 10px;
    width: 20%;

    -moz-transform: skewX(-3deg);
    -webkit-transform: skewX(-3deg);
    -o-transform: skewX(-3deg);
    -ms-transform: skewX(-3deg);
    transform: skewX(-3deg);    
}

a.artist img {
    border: 2px solid #fff;
    width: 100%;
}

.artistDesc {
    background-color: #000;
    text-align: center;
    padding: 5px 0;
    margin: 0;
}
.artistDesc1 {
    line-height: 1.1em; 
    font-size: 1.2em;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;    
}
.artistDesc2 {
    margin-top: 2px;
    color: #c42c41;
    line-height: 1.2em; 
    font-size: 1.0em;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;    
}

/********************************************************************************************************************/


#loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    /*background-color: var(--white-70pc);*/
    z-index: 10000;
}

#loading .ripple1 {
    /*background-color: #fecf33;*/
    background-color: rgba(255,255,255,0.1);
    /*background-color: var(--yellow);*/
}

#loading .ripple2 {
    animation-delay: -250ms;
    /*background-color: #fdbd39;*/
    background-color: rgba(255,255,255,0.3);
    /*background-color: var(--light-orange);*/
}

#loading .ripple3 {
    animation-delay: -500ms;
    /*background-color: #f69833;*/
    background-color: rgba(255,255,255,0.5);
    /*background-color: var(--orange);*/
}

#loading .ripple4 {
    animation-delay: -750ms;
    /*background-color: #ee6723;*/
    background-color: rgba(255,255,255,0.7);
    /*background-color: var(--peach);*/
}

#loading .ripple {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    animation-name: ripple;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-direction: alternate-reverse;
    animation-iteration-count: infinite;
    transform: scale(0);
    opacity: 0.6;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(.01);
            transform: scale(.01);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }    
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(.01);
            transform: scale(.01);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }     
}

/********************************************************************************************************************/
/******** Browse Happy prompt ***************************************************************************************/
/********************************************************************************************************************/

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/********************************************************************************************************************/
/******** PAGE PRELOAD **********************************************************************************************/
/********************************************************************************************************************/


.preload {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: fixed;
}

.spinner {
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 70px;
  height: 18px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #efefef;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}


/********************************************************************************************************************/
/******** MISC ******************************************************************************************************/
/********************************************************************************************************************/

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

audio,
canvas,
img,
svg,
video {
    vertical-align: middle;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


.clear {
    clear: both;
    padding: 0;
    margin: 0; 
}

/* slightly enhanced, universal clearfix hack */
.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
     }
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */


:focus {outline:none;}

::-moz-focus-inner {border:0;}

* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

input[type="text"]:focus {
  outline: none;
}

ul, ol, li {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

img {
    vertical-align: middle;
}

a {
    color: #000000;
    text-decoration: none;         
}

a:hover,
a:active {
    text-decoration: none;
}

.transition {
    -webkit-transition: all .1s ease-in;
       -moz-transition: all .1s ease-in;
        -ms-transition: all .1s ease-in;
         -o-transition: all .1s ease-in;
            transition: all .1s ease-in;
}

.radius {
    -webkit-border-radius: 3px;  
    -moz-border-radius: 3px;  
    -o-border-radius: 3px;  
    border-radius: 3px; 
}

.hidden { display: none !important; }

img {image-rendering:optimizeQuality; -ms-interpolation-mode:bicubic;}

img.scale-with-grid {
    display: block;
    height: auto !important;
    width: 100% !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;    
    -moz-osx-font-smoothing: grayscale;
}

/***************************************************************************************************/
/****** FONTS **********************************************************************/
/***************************************************************************************************/

@font-face {
    font-family: 'Ogg';
    src: local('Ogg Roman'),
            url('../fonts/OggRoman.eot');
    src: url('../fonts/OggRoman.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OggRoman.woff2') format('woff2'),
         url('../fonts/OggRoman.woff') format('woff'),
         url('../fonts/OggRoman.ttf') format('truetype'),
         url('../fonts/OggRoman.svg#houschka_alt_promedium') format('svg');
    font-weight: 400;
    font-style: normal;
}

/*
@font-face {
  font-family: "FuturaStd-Book";
  src: url("../fonts/FuturaStd-Book.eot");
  src: url("../fonts/FuturaStd-Book.eot#iefix") format("embedded-opentype"),
  url("../fonts/FuturaStd-Book.woff") format("woff"),
  url("../fonts/FuturaStd-Book.ttf") format("truetype"),
  url("../fonts/FuturaStd-Book.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FuturaStd-Heavy";
  src: url("../fonts/FuturaStd-Heavy.eot");
  src: url("../fonts/FuturaStd-Heavy.eot#iefix") format("embedded-opentype"),
  url("../fonts/FuturaStd-Heavy.woff") format("woff"),
  url("../fonts/FuturaStd-Heavy.ttf") format("truetype"),
  url("../fonts/FuturaStd-Heavy.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FuturaStd-Medium";
  src: url("../fonts/FuturaStd-Medium.eot");
  src: url("../fonts/FuturaStd-Medium.eot#iefix") format("embedded-opentype"),
  url("../fonts/FuturaStd-Medium.woff") format("woff"),
  url("../fonts/FuturaStd-Medium.ttf") format("truetype"),
  url("../fonts/FuturaStd-Medium.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FuturaStd-Bold";
  src: url("../fonts/FuturaStd-Bold.eot");
  src: url("../fonts/FuturaStd-Bold.eot#iefix") format("embedded-opentype"),
  url("../fonts/FuturaStd-Bold.woff") format("woff"),
  url("../fonts/FuturaStd-Bold.ttf") format("truetype"),
  url("../fonts/FuturaStd-Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}*/

/***************************************************************************************************/
/****** General Media Queries **********************************************************************/
/***************************************************************************************************/

/* Smartphones (portrait) ----------- */  
/*@media only screen and (max-width : 320px) {  */
@media only screen and (max-width : 320px) {  
  /* Styles */ 

        
}  

/* Smartphones (portrait) ----------- */  
/*@media only screen and (max-width : 320px) {  */
@media only screen and (min-width : 321px) and (max-width : 568px) {  
  /* Styles */ 


} 

/*
@media only screen and (max-device-width : 480px) {  
    .grid-sizer,
    #items .item {
        width: 50% !important;
    }
}
@media only screen and (min-device-width : 480px) and (max-device-width : 600px) {  
    .grid-sizer,
    #items .item {
        width: 33% !important;
    }
}
*/

/* Smartphones (portrait and landscape) ----------- */  
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {  
  /* Styles */  

}  
  
/* Smartphones (landscape) ----------- */  
@media only screen and (min-width : 321px) {  
  /* Styles */    
}  
  
/* Smartphones (portrait) ----------- */  
/*@media only screen and (max-width : 320px) {  */
@media only screen and (max-width : 480px) {  
  /* Styles */ 
}  
  
/* iPads (portrait and landscape) ----------- */  
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {  
  /* Styles */  
}  
  
/* iPads (landscape) ----------- */  
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {  
  /* Styles */  
}  
  
/* iPads (portrait) ----------- */  
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {  
  /* Styles */  
}  
  
/* Desktops and laptops ----------- */  
@media only screen and (min-width : 1224px) {  
  /* Styles */  
}  
  
/* Large screens ----------- */  
@media only screen and (min-width : 1824px) {  
  /* Styles */  
}  
  
/* iPhone 4 ----------- */  
@media only screen and (-webkit-min-device-pixel-ratio:1.5), only screen and (min-device-pixel-ratio:1.5) {  
  /* Styles */  
}  

@media screen and (max-width: 767px) {
    body {
        font-size:72% !important;
    }
    .left {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: 310px !important;
    }    
    .right {
        height: auto !important;
        position: relative !important;
        width: 100% !important;
        right: auto !important;
        background-color: #fff !important;

    }    
    .page.playground {
        /*padding: 85px 20px 20px 20px !important;*/
    }    
    .page {
        padding: 20px 20px 20px 20px !important;
        position: relative !important;
        width: 100% !important;
        left: auto !important;
        top: auto !important;
        -ms-transform: translate(0%,0%) !important;
        -webkit-transform: translate(0%,0%) !important;
        transform: translate(0%,0%) !important;        
    }
    .bg {
        display: none;
    }
    footer {
        position: relative !important;
    }

    .actionLeft, .actionRight {
        float: none !important;
        width: 100% !important;
    }

    .scoreWrapper {   
    font-size: 1.35em !important; 
/*        right: auto !important;
        display: inline-block !important;
        top: -20px !important;
*/
        width: 100%;
/*        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        text-align: center !important;
        -moz-transform: skewX(0deg)!important;
        -webkit-transform: skewX(0deg)!important;
        -o-transform: skewX(0deg)!important;
        -ms-transform: skewX(0deg)!important;
        transform: skewX(0deg)!important;
*/
    }

    .scoreRow {
        display: inline-block;
    }

    .action.vote .voteImg {
        float: none !important;
        height: auto !important;
        width: 20% !important;
        margin: auto;
    }

    .action {
        width: 100% !important;
        padding: 10px !important;
    }

    .voteText {
        float: none !important;
        text-align: center !important;
        height: auto !important;
        width: 100% !important;
            margin-top: 5px;
    }

    .voteText span {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        -ms-transform: translate(0%,0%) !important;
        -webkit-transform: translate(0%,0%) !important;
        transform: translate(0%,0%) !important;
    }

    .action.vote img {
        height: auto !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .voteWrapper {
        padding: 10px !important;
        display: inline-block !important;
        height: auto !important;
    }

    .action.vote {
        height: auto !important;
        font-size: 1.5em !important;
        line-height: 1.1em;
    }

}
 
@media screen and (max-width: 320px) {
    body {
        font-size:62% !important;
    }
}


/********************************************************************************************************************/
/******** FONTS  ****************************************************************************************************/
/********************************************************************************************************************/





/********************************************************************************************************************/
/******** STRUCTURE *************************************************************************************************/
/********************************************************************************************************************/

body {
    color: #000000;
    background-color: #FFFFFF;
    font-family: 'Ogg',Helvetica,Arial,sans-serif;
    /*font-family: "FuturaStd-Bold",sans-serif;*/
    font-weight:600;
    /*font-size:62.5%;*/
    font-size:100%;
    min-height: 660px;
    cursor: default;
}

h1 {
font-size: 1.8em;
    color: #000;
    text-transform: none;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    line-height: 1.5em;
}

h1 span {
    font-size: 125%;
}

h2 {
    font-size: 1.25em;
    line-height: 1.2em;
    color: #0c0c0c;
    text-transform: none;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    padding: 0 5vw;
}

h2 span {
    color: #5705aa;
    font-size: 110%;
}

h3 {
    font-size: 1.2em;
    line-height: 1.2em;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 800;
    margin: 0 0 30px 0;
    text-decoration: underline;
}

h4 {
  font-size: 1.4em;
    line-height: 1.3em;
    color: #fff;
    text-transform: none;
    font-style: normal;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

h4:after {
    content: '';
    position: relative;
    width: 100%;
    height: 12px;
    display: inline-block;
    background:url('../images/sep.png') no-repeat center center transparent;
}

a.switch {
  color: #fff;
    font-size: 14px;
    text-transform: lowercase;
    display: block;
    font-weight: 100;
    font-style: normal;
    font-family: Helvetica, sans-serif;
    text-decoration: underline;
}

a.switch:hover {
    text-decoration: underline;
}



input, select, th, td {font-size:1em;}

body.fbiframe {
    overflow: hidden;
}

body, html {
    height: 100%;
}

.wrapper {
    margin:auto;
    position: relative;
    text-align: center;
    padding:0;
    width:100%;
    /*height: 100%;*/
    overflow-x: hidden;
}

.videoWrapper {
  margin: 10px 0 0px 0;
  width: 100%;
  -moz-transform: skewX(-3deg);
  -webkit-transform: skewX(-3deg);
  -o-transform: skewX(-3deg);
  -ms-transform: skewX(-3deg);
  transform: skewX(-3deg);  
}

.videoWrapper input {
    -webkit-appearance: none;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    display: inline-block;
    border: 0;
    background-color: rgba(87,5,170,.1);
    border: 1px solid #FFF;
    margin-left: 0;
    border-radius: 0;
    height: 40px;
    line-height: 40px;
    color: #000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: 60%;
    vertical-align: middle;
    text-align: left;
    /* font-family: 'Oswald',sans-serif; */
    font-size: 14px;
    margin: 10px 5px;
    padding: 0 10px;
    text-transform: none;
    font-weight: 600;
    font-style: italic;
}

.videoWrapper .YoutubeUrlBtn {
    border: 0px solid #fff;
    color: #fff;
    text-align: center;
    font-family: "FuturaStd-Bold";
    text-transform: uppercase;
    border-radius: 0;
    height: 40px;
    width: 30%;
    font-weight: 500;
    background-color: rgba(87,5,170,1);
    padding: 0;
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    font-weight: 800;
    margin: 10px 5px;
}

@media screen and (max-width: 767px) {
  .videoWrapper input, .videoWrapper .YoutubeUrlBtn {
    width: 100%;
    margin: 5px 0px;
  }
}

header {
    position: relative;
    height: 150px;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
}

.left {
    position: fixed;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background-attachment: fixed;    
    background:url('../images/alainsouchon.jpg') center 0% #000;
    background-size: cover;    
}

.left.lennikim {
    background:url('../images/lennikim.jpg') center 0% #000;
    background-size: cover;    
}

.left.edsheeran, .left.edsheerandemo {
    background:url('../images/edsheeran.jpg') center 0% #000;
    background-size: cover;    
}

.left.avamax, .left.avamaxdemo {
    background:url('../images/avamax.jpg') center 0% #000;
    background-size: cover;    
}

.left.amir {
    background:url('../images/amir.jpg') center 70% #000;
    background-size: cover;    
}

.left.soprano, .left.sopranodemo {
    background:url('../images/soprano.jpg') center top #000;
    background-size: cover;    
}

.left.ayanakamura, .left.ayanakamurademo {
    background:url('../images/ayanakamura.jpg') right top #000;
    background-size: cover;    
}

.left.ofenbach, .left.onmadev {
    background:url('../images/ofenbach.jpg') center top #000;
    background-size: cover;    
}

.left.dualipa, .left.dnmadev {
    background:url('../images/dualipa.jpg') center top #000;
    background-size: cover;    
}

.left.davidguetta, .left.davidguettademo {
    background:url('../images/davidguetta.jpg') center top #000;
    background-size: cover;    
}

.right .bg {
background-color: #fff;
    -moz-transform: skewX(-3deg);
    -webkit-transform: skewX(-3deg);
    -o-transform: skewX(-3deg);
    -ms-transform: skewX(-3deg);
    transform: skewX(-3deg);
    width: 60%;
    height: 100%;
    position: fixed;
    right: -3%;
    top: 0;
    /* left: -5%; */
    z-index: 0;
}

.right {

    min-height: 100%;
    position: relative;
    width: 55%;
    right: 0;
    z-index: 100;
    /* overflow: hidden; */
    float: right;
/*
    height: 100%;
    position: absolute;
    width: 50%;
    right: 0;
    z-index: 100;
*/

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: center;
    -ms-flex-align: center;
    align-content: center;
    align-items: center;
}

.page.home {
/*    z-index: 100;
    position: absolute;
    width: 90%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);*/

    z-index: 100;
    position: relative;
    width: 90%;
    max-width: 650px;
    padding: 25px 0;

}

.page.playground {
    display: none;
    z-index: 100;
/*    position: absolute;
    width: 90%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);    
*/

    z-index: 100;
    position: relative;
    width: 90%;
    padding: 25px 0;
}

.title {

}

img.victoires {
    display: inline-block;
    margin-bottom: 20px;
    width: 50%;
    max-width: 300px;
}

h1 {
    margin-bottom: 0px;
}

.sep {
    background-color: #000;
    width: 50px;
    height: 1px;
    display: inline-block;
    margin: 20px 0 10px;
}

a.actionBtn {
    border: 0px solid #fff;
    color: #fff;
    text-align: center;
    text-transform: none;
    border-radius: 0;
    font-weight: 600;
    background-color: #000;
    padding: .8em 3em;
    vertical-align: -webkit-baseline-middle;
    display: inline-block;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
}
a.actionBtn:hover {
  background-color: #333;
}

.actionBtn__text {
  display: table-cell;
    font-size: 1.50em;
    font-weight: 400;
    vertical-align: baseline;
    font-style: normal;
    z-index: 100;
    position: relative;
    letter-spacing: .05em;
}

.overlay.open {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.overlay {
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.5s,visibility 0s 0.5s;
    transition: transform 0.5s,visibility 0s 0.5s;
}

.overlay {
    top: 0;
    left: 0;
    -webkit-overflow-scrolling: touch;
    display: block;
    /* position: fixed; */
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    background-color: rgba(0,0,0,0.9);
    width: 100%;
    height: 100%;
    z-index: 800;
    text-align: center;
}

.overlay-content-center {
    text-align: center;
    color: #fff;
    /* position: absolute; */
    width: 100%;
    padding: 0 5%;
    z-index: 100;
    position: absolute;
    width: 90%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);

}

.overlay-content {
    text-align: center;
    color: #fff;
    /* position: absolute; */
    width: 100%;
    padding: 0 5%;
    z-index: 100;
/*    position: absolute;
    width: 90%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);*/

}

.overlay-close {
background-color: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    font-size: 25px;
    line-height: 37px;
    position: relative;
    /* top: 10px; */
    /* right: 10px; */
    border-radius: 0;
    display: inline-block;
    margin: 20px auto;
}

a.registered:hover {
    text-decoration: underline;
}

a.registered {
    color: #5705aa;
    font-size: 0.75em;
    text-transform: uppercase;
    display: block;
    font-weight: 800;
    font-style: italic;
    text-decoration: underline;
    display: inline-block;
}

#authentication_form, #authentication_form2 {
    max-width: 450px;
    display: inline-block;
    margin-bottom: 30px;
      font-family: Helvetica, sans-serif;
    font-weight: 400;
}

#authentication_form p {
    text-align: left;
    line-height: 1.4em;
    font-size: 1em;
}

#authentication_form p a {
    color: #fff;
}

.facebookBtn {
    background-color: #3b5998;
    color: #fff;
}

.facebookBtn {
    display: block;
    box-sizing: border-box;
    line-height: 40px;
    margin: auto auto 15px auto;
    padding: 0;
}

.loginBtn {
    max-width: 450px;
  border: 0px solid #fff;
    color: #fff;
    text-align: center;
    /* font-family: 'Oswald',sans-serif; */
    text-transform: uppercase;
    border-radius: 0;
    height: 40px;
    /* font-weight: 300; */
    margin-left: 0;
    vertical-align: -webkit-baseline-middle;
    background-color: transparent;
    width: 100%;
    font-size: 1.3em;
    padding: 0 1.70em;
    font-weight: 600;
    font-style: normal;
}

.loginBtn__icon {
    font-size: 1em;
    display: inline-block;
    margin: auto;
    vertical-align: middle;
    height: 40px;
    padding: 0;
    line-height: 40px;
    margin-right: 5px;
}

.loginBtn__text {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 600;
    font-family: Helvetica, sans-serif;
}


#authentication_form input, #authentication_form2 input {
      font-family: Helvetica, sans-serif;
    -webkit-appearance: none;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    display: inline-block;
    border: 0;
    background-color: #FFF;
    border: 1px solid #FFF;
    margin-left: 0;
    border-radius: 0;
    height: 35px;
    line-height: 35px;
    color: #000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    vertical-align: bottom;
    text-align: left;
    /* font-family: 'Oswald',sans-serif; */
    font-size: 19px;
    margin: 10px auto;
    padding: 0 10px;
    text-transform: none;
    font-weight: 400;
    font-style: normal;
}

#authentication_form .okBtn, #authentication_form2 .ok2Btn, #authentication_form .codeBtn, .acceptBtn {
    border: 0px solid #fff;
    color: #222;
    text-align: center;
    font-family: Helvetica, sans-serif;
    text-transform: none;
    border-radius: 0;
    height: 40px;
    width: 100%;
    font-weight: 400;
    background-color: rgba(255,255,255,1);
    padding: 0;
    display: inline-block;
    font-size: 22px;
    margin: 10px 0 0 0;
}

input.error, select.error {
    border: 1px solid #ff0000 !important;
}

.checkbox-custom.error {
    border: 1px solid #ff0000 !important;
}

.checkbox-txt {
    cursor: default;
    color: #fff;
    display: inline-block;
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    text-align: left;
    margin: 10px auto;
    font-weight: 400;
    width: 100%;
    position: relative;
}

.checkbox-custom {
    background-color: rgba(255,255,255,1);
    border: 1px solid rgba(255,255,255,0.2);
    width: 25px;
    height: 25px;
    /* float: left; */
    /* margin-right: 10px; */
    display: block;
    border-radius: 100%;
    position: absolute;
    z-index: 10;
    text-align: center;
    line-height: 22px;
    font-size:18px;
}

.checkbox-custom .fa {
    display: none;
}

.checkbox-custom.check .fa {
    color: #000;
    display: inline-block;
}

.checkbox-txt a {
    color: #fff;
    text-decoration: underline;
}

.checkbox-txt p {
position: relative;
    top: 0;
    right: 0;
    left: 0;
    /* float: left; */
    /* width: 250px; */
    vertical-align: top;
    padding-top: 0.2em;
    margin: 0;
    line-height: 1.4em;
    text-align: left;
    padding-left: 35px;
}

.actionsWrapper {
    
}

.action {
    width: 50%;
    padding: 15px 10px;
    float: left;
    display: inline-block;   
    position: relative;
}

.action.vote.disabled {
    opacity: 0.2;
}

.voteWrapper {
    width: 100%;
    padding: 5px 10px;
    position: relative;
    height: 80px;
    margin-bottom: 10px;
}

.action.vote {
    width: 100%;
    background-color: #000;
    font-size: 1.0em;
    line-height: 1.35em;
    color: #fff;
    text-transform: none;
    font-style: normal;
    font-weight: 600;
    padding: 10px 0;
    letter-spacing: 0.06em;
}

.action.vote .voteImg {
    float: left;
    height: 100%;
    width: 10%;
}

.action.vote img {
    height: 100%;
    padding: 20%;
}

.voteText {
text-align: center;
}

.voteText span {
    position: relative;
}

.actionLeft {
    background-color: #000;
    color: #fff;
    /*float: left;*/
    width: 100%;
    padding: 0;
    height: 50px;
    position: relative;
}

.actionLeft span {
font-size: 1em;
    line-height: 1.3em;
    color: #fff;
    text-transform: none;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    position: absolute;
    width: 90%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    letter-spacing: 0.05em; 
}

.actionRight {
    background-color: rgba(0,0,0,.15);
    float: left;
    width: 100%;
    padding: 0;
    height: 50px;    
    position: relative;
}

.actionRight span {
    position: absolute;
    width: 90%;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%); 
}

.shareBtn2 {
    color: #fff;
    text-align: center;
    border-radius: 0;
    background-color: #3b5998;
    padding: 0;
    vertical-align: -webkit-baseline-middle;
    display: inline-block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    position: relative;
    font-size: 20px;
    margin-right: 60px;
}

.songkick {
    color: #fff;
    text-align: center;
    border-radius: 0;
    background-color: #F70046;
    padding: 0;
    vertical-align: -webkit-baseline-middle;
    display: inline-block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    position: relative;
    font-size: 20px;
    margin-right: 60px;
}
.songkick img { 
width: 100%;
    height: auto;  
}

.shareBtn2.disabled {
    background-color: #bcbcbc !important;
    opacity: 0.25;
    cursor: default;
}
.shareBtn2.disabled:after {
    content: '+5 points';
    color: #bcbcbc !important;
}

.shareBtn2.twitter {
    background-color: #1da1f2;
    /*margin-left: 100px;*/
}

.shareBtn2:after {
    content: '+5 points';
    text-transform: none;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    position: absolute;
    width: 70px;
    left: 40px;
    bottom: 0;
    line-height: normal;
    font-style: normal;
    text-align: left;
}

.scoreRow {
    display: inline-block;
    padding: 5px 10px;
}

.scoreWrapper {
    margin-top: 10px;
    font-size: 1.5em;
    padding: 0px 20px;
    line-height: 1.2em;
    color: #fff;
    text-transform: none;
    font-style: normal;
    font-weight: 600;
    background-color: #000;
    display: inline-block;
    position: relative;
}

.score, .classement {
    font-size: 160%;
    padding-top: 5px;
    padding-left: 10px;
    /*padding-right: 10px;*/
    /*text-decoration: underline;*/
    color: #fff;
    display: inline-block;
}

a.rankBtn {
color: #fff;
    background-color: #000;
    display: block;
    position: relative;
    /*left: 0;*/
    text-align: center;
    font-size: 70%;
    width: 100%;
    padding: 3px 0;
    /*bottom: -28px;*/
}

@media screen and (max-width: 769px) {
    .rank {
        display: inline-block;
        width: 100% !important;
        margin: 20px 0;
    }
}


.rank {
    color: #fff;
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 35%;
    margin: 20px 0;
}

.rank.top .rank-num, .rank.top .rank-icon {
    color: #fff !important;
    background-color: #C52C42 !important;
}

.rank-num {
    background-color: #fff;
    color: #000;
    width: 60px;
    height: 60px;
    float: left;
    /*border-radius: 100%;*/
    line-height: 60px;
    font-size: 28px;
    margin-top: 10px;
    -moz-transform: skewX(-3deg);
    -webkit-transform: skewX(-3deg);
    -o-transform: skewX(-3deg);
    -ms-transform: skewX(-3deg);
    transform: skewX(-3deg);    
}

.rank-icon {
    background-color: #fff;
    width: 80px;
    height: 80px;
    float: left;
    border-radius: 100%;
    line-height: 70px;
    margin-left: -5px;
}

.rank-desc-wrapper {
    
    position: absolute;
    left: 75px;
    top: 50%;
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);

    font-size: 1.1em;
    line-height: 1.0em;
    text-align: left;

}

.rankWrapper {
    width: 50%;
    margin: auto;
}

.rank-desc {


/*    float: left;
    color: #fff;
    font-size: 1.1em;
    text-align: left;
    line-height: 1.0em;
    padding-left: 10px;
    height: 80px;*/
}

.rank-desc-wrapper span {
    color: #999999;
    font-size: 70%;
}

/********************************************************************************************************************/
/******** TIMELINE ************************************************************************************************/
/********************************************************************************************************************/

.timelineWrapper {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    padding-top: 35px;
    text-align: center;

    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: flex-start;
    align-items: stretch;    
}

.timelineWrapper {
  display: none !important;
}

.time {
    display: inline-block;
    position: relative;
    width: 15vw;
    /* width: 50%; */
    padding: 0 1vw;
    margin-left: -6px;
    vertical-align: top;
}
.time.xs {
    width: 10vw;
    padding: 0 .45vw;
}

.time.unlock:not(.active) .gift {
    opacity: 0.15;
}



.time:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #000;
    top: -30px;
    left: 0;
}

.time:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #000;
    top: -38px;

    left: 50%;
    -ms-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);    
}

.line {
    width: 15px;
    height: 1px;
    display: block;
    margin: 4px auto;
    background-color: #fff;
    opacity: 0.7;
}

.active .line {
    background-color: #fff;
}

.time.active .gift {
    cursor: pointer !important;
}

.time.active .gift {
    background-color: #000;
    color: #fff;
}

.time.active .gift:before {
    border-color: transparent transparent #000 transparent;
}

.time.active:after {
  -webkit-animation: bounce 1.4s infinite ease-in-out;
  animation: bounce 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
margin-left: -10px;
cursor: pointer !important;
}

@-webkit-keyframes bounce {
  0%, 80%, 100% { 
    -webkit-transform: scale(0.7) 
    -webkit-transform-origin: center center;
   }
  40% { 
    -webkit-transform: scale(1.0);
    -webkit-transform-origin: center center;
    }
}

@keyframes bounce {
  0%, 80%, 100% { 
    transform: scale(0.7);
    transform-origin: center center;
    -webkit-transform: scale(0.7);
    -webkit-transform-origin: center center;
  } 40% { 
    transform: scale(1.0);
    transform-origin: center center;
    -webkit-transform: scale(1.0);
    -webkit-transform-origin: center center;
  }
}

.time .gift .fa {
    font-size: 3em;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); 
}

.time.unlock .fa {
    display: none;
}

.time.lock .gift {
    opacity: 0.15;
}

.time.lock .desc {
    display: none;
}

.desc {
    /*cursor: default;*/
}

.gift:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 26.0px 15px;
    border-color: transparent transparent #000000 transparent;    
    -ms-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);      
}

.time .gift {
    width: 100%;
    background-color: #000;
    color: #fff;
    font-family: "FuturaStd-Medium",sans-serif;
    text-transform: none;
    font-size: 1.2vw;
    line-height: 1.4vw;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 0.5em 0.4em; 
}
.time.xs .gift {
    font-size: 1vw;
    line-height: 1.3vw;
    font-weight: 600;
}

@media screen and (max-width: 810px) {
    .time {
        width: 100% !important;
        padding: 10px 0;
        /*height: 130px;*/
    }
    .gift {
      font-size: 1.4em !important;
      line-height: 1.2em !important;
      width: 50% !important;
      font-weight: 400 !important;
    }    

    .time:before {
        content: "";
        position: absolute;
        width: 5px;
        height: 100%;
        background-color: #5705aa;
        top: -30px;
        left: 12%;
    }    

    .time:after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        background-color: #5705aa;
        top: 40%;
        left: 13%;
        -ms-transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }

    .gift:before {
        content: "";
        position: absolute;
        top: 50%;
        left: -20px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 15px 26.0px 15px;
        border-color: transparent transparent #000000 transparent;
        -ms-transform: translate(0%, -50%) rotate(-90deg);
        -webkit-transform: translate(0%, -50%) rotate(-90deg);
        transform: translate(0%, -50%) rotate(-90deg);
    }

}


/********************************************************************************************************************/
/******** SHARE THIS ************************************************************************************************/
/********************************************************************************************************************/

ul.share {
    float: right;
}

ul.share li {
    margin: 0;
    display: inline-block;
    vertical-align: top;
    zoom: 1; /* Fix for IE7 */
    *display: inline; /* Fix for IE7 */
}

ul.share li:first-child { 
    /*font-family: Helvetica, sans-serif;*/
    /*font-size: 12px;*/
    line-height: 25px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    cursor: default;    
}

ul.share a {
    font-size: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border: 0;
    margin: 0 0 0 1px;
    background-color: #fff;
    display: block;
}

ul.share a.facebook {
    background-color: #3B5998;
    color: #fff;
}

ul.share a.twitter {
    background-color: #4099FF;
    color: #fff;
}

ul.share a.pinterest {
    background-color: #cb2027;
    color: #fff;
}

ul.share a.google {
    background-color: #d50f25;
    color: #fff;
}

ul.share a.facebook:hover {
    background-color: #3B5998;
    color: #fff;
}

ul.share a.twitter:hover {
    background-color: #4099FF;
    color: #fff;
}

ul.share a.google:hover {
    background-color: #d50f25;
    color: #fff;
}

ul.share a:hover {
    text-decoration: none;
}



/********************************************************************************************************************/
/******** FORM ******************************************************************************************************/
/********************************************************************************************************************/

@media screen and (max-width: 628px) {
    .basic_app #registration_container {
        width: 90% !important;
    }
    #cp, #town {
        width: 100% !important;
        float: none !important;
    }    
}


::-webkit-input-placeholder { color:#000000; }
:-moz-placeholder { color:#000000; opacity: 1 } /* firefox 19+ */
::-moz-placeholder { color:#000000; opacity: 1 } /* firefox 19+ */
:-ms-input-placeholder { color:#000000; } /* ie */
input:-moz-placeholder { color:#000000; }

.basic_app #formWrapper {
    margin: 0 20px;
}

/*.register {
    font-size: 21px;
    line-height: 25px;
    color: #000;
    font-weight: 400;
    margin-top: 80px;
    display: none;
}*/


.fb-login {
    /*display: none;*/
}




.facebookBtn {
    background-color: #3b5998;
    color: #fff;
}

.facebookBtn:hover {
    background-color: #4264ab;
    text-decoration: none;
    cursor: pointer;
}

.facebookBtn, .spotifyBtn, .deezerBtn {
    display: inline-block;
    box-sizing: border-box;
    line-height: 35px;
}


.inputTitle {
    background-color: transparent;
    height: 35px;
    line-height: 35px;
    color: #888;
    font-size: 18px;
    width: 100%;
    display: inline-block;
    cursor: default;
}

.basic_app #registration_container {
    text-align: center;
    width: 60%;
    background-color: transparent;
    padding-top: 20px;
    margin: 0 auto 5px auto;
}

.basic_app #registration_container .registration_title {
    font-size: 18px;
    font-weight:400;
    color: #000;
    margin-bottom:25px; 
    cursor: default;
}

.basic_app #registration_container input[type="text"], 
.basic_app #registration_container input[type="email"] {

  display: inline-block;;  
  font-size: 17px;
  line-height: 35px;
  font-weight: 200;
  width: 100%;
  background-color: #ffffff;
  border: 0px solid #d7d7d7;
  margin-bottom: 0;
  color: #888;
  vertical-align: middle;
  text-transform: none;
  height: 35px;
  margin: 10px auto 10px;
  padding: 0 5px;;
  border-radius: 0;
  text-align: center;
  box-sizing: border-box;;
}

.basic_app select {
    font-family: Helvetica, sans-serif;
    font-size: 19px;
    line-height: 35px;
    font-weight: 400;
    /* width: 33.333%; */
    background-color: #fff;
    border: 0px;
    border-bottom: 1px solid rgba(255,255,255,1);
    margin-bottom: 0;
    color: #000;
    vertical-align: middle;
    text-transform: none;
    margin: 10px 0;
    padding: 0 10px;
    height: 35px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    -webkit-appearance: none;
    float: left;
    box-sizing: border-box;
    width: 32%;
    font-style: normal;
}

.basic_app #birthday {
  margin: 0px auto 0px;
  width: 100%;
  padding: 0;
  display: inline-block;
}

.basic_app #birthday p {
  
  font-size: 17px;
  font-weight: 400;
  color: #888;
  margin: 0 0 3px;
  display: inline-block;
  padding: 0px;
  vertical-align: middle;
}


.basic_app .boutForm {
    padding: 0px 5px;
    background-color: #000;
    color: #ffffff;
    text-transform: none;
    font-size: 16px;
    line-height: 35px;
    height: 35px;

    cursor: pointer;

    
    font-weight: 400;

    display: inline-block;
    position: relative;

    width: 100%;
    border: 0;

    border-radius: 0;
}

.basic_app .boutForm.close {
    /*display: none;*/
    width: 3%;
}

.basic_app .boutForm:hover {
    background-color: #444;
    text-decoration: none;
}

#formWrapper .error {
    border: 1px solid #b94a48 !important;
}

#formWrapper #cp {
    width: 40%;
    float: left;
    /* margin-right: 20px !important; */
}

#formWrapper #town {
    width: 60%;
    float: right;
}

.checkboxWrapper {
    display: inline-block;
    text-align: left;
    width: 100%;
}


input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

h5 {
    font-size: 1.15em;
    line-height: 1.2em;
    color: #0c0c0c;
    text-transform: none;
    font-style: italic;
    font-weight: 800;
    margin: 20px 0 10px 0;
    opacity: .6;
}


/********************************************************************************************************************/
/******** FOOTER ****************************************************************************************************/
/********************************************************************************************************************/

footer {
    font-family: Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #000;
    cursor: default;
    padding: 0;
    letter-spacing: 0.03em;
    /* background-color: #fff; */
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 100;
    padding-bottom: 5px;
}

footer a {
    color: #000;
    text-decoration: underline;
}

footer a:hover {
    text-decoration: underline;
    color: #000;
}

footer li {
    display: inline-block;
    padding: 2px 0;
    margin: 0 2px;
}

#mentions-nav li:last-child {
    display: none !important;
}

.fbiframe #mentions-fb {
    display: block !important;
}

#mentions-fb {
    font-size: 10px;
    color: #cfcfcf;
    /*display: none;*/
}

#mentions-fb a {
    color: #cfcfcf;
    text-decoration: underline;
}

#mentions-logos {
    clear: both;
    height: 40px;
    list-style: none outside none;
    margin-top: 0;
    padding: 0;
    position: relative;
    text-align: center;
}

#mentions-logos li a {
    display: block;
    opacity: 0.35;
    filter: alpha(opacity=35);
}

#mentions-logos li a img {
    width: 105px;
    height: 26px;
}

#mentions-logos li a:hover {
    opacity: 1.0;
    filter: alpha(opacity=100); 
}

/*--------------------------------------------------------------
TARTE AU CITRON
--------------------------------------------------------------*/

#tarteaucitronAlertBig {
    background: rgba(0,0,0,0.75) !important;
}

#tarteaucitronCloseAlert {
  display: none !important;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert, #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert b {
    display: block !important;
    margin-bottom: 5px !important;
}

#tarteaucitronAlertBig #tarteaucitronPersonalize {
    background: #737373 !important;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert {
    background: #737373 !important;
    color: #b5b5b5 !important;
    font-size: 17px !important;
    padding: 5px 10px !important;
}

#tarteaucitronPercentage {
    /*display: block !important;*/
    display: none !important;
    background: #999999 !important;
    box-shadow: none !important;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert b {
    display: inline-block !important;
    margin-bottom: 0 !important;
}

#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert b {
    font-weight: 400 !important;
}
