@charset "UTF-8";
.animated {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.ui-helper-hidden-accessible{
    display: none;
}

body {
    margin: 0;
    background-color: #fff;
    overflow: none;
}

.game {
    background-color: #f8f3ea;
    border: 1px solid #d3ded3;
    width: calc(100% - 2px);
    margin: auto;
    min-width: 300px;
    max-width: 1600px;
    overflow: none;
    position: relative;
}

.header {
    background-color: #16212c;
    height: 54px;
    width: 100%;
}

.header .btns {
    height: 100%;
    margin-left: 15px;
    display: inline-block;
    float: left;
    width: 140px;
}

.header .social {
    height: 100%;
    margin-right: 15px;
    display: inline-block;
    float: right;
    width: 90px;
}

.header .btns div,
.header .social div {
    height: 32px;
    width: 32px;
    background-color: #2e3942;
    display: inline-block;
    margin-top: 11px;
    border: 1px solid #464f57;
    color: white;
    font-family: sans-serif;
    font-size: 1em;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.header .btns div {
    float: left;
    margin-right: 5px;
}

.header .social div {
    float: right;
    margin-left: 5px;
}

.header .btns div:hover,
.header .social div:hover {
    background-color: #464f57;
    cursor: pointer;
}

#home svg {
    margin: 9px;
    width: 100%;
}

#info svg {
    margin: 5px;
    width: 100%;
}

#lang {
    background: url(../img2/arrow.png) no-repeat right #2e3942;
    overflow: hidden;
    width: 50px;
    font-size: 13px;
    line-height: 10px;
}

#lang:hover {
    background: url(../img2/arrow.png) no-repeat right #464f57;
}

#lang select {
    height: 35px;
    padding-left: 9px;
    position: relative;
    background: transparent;
    width: 70px;
    color: #fff;
    border: 0;
    font-size: 13px;
    font-weight: bold;
    -webkit-appearance: none;
    cursor: pointer;
}

#lang option{
    color:black;
}

#lang select:focus {
    outline: none!important;
}

.header .title {
    margin-left: calc(50% - 265px);
    display: inline-block;
    margin-top: 20px;
    opacity: 0;
}

.header #facebook:hover {
    background-color: #3d5a95;
}

.header #twitter:hover {
    background-color: #3AAAE1;
}

.main {
    font-family: "Helvetica", sans-serif;
    line-height: 1.3em;
    color: #16212C;
    background-color: #f8f3ea;
    display: block;
    padding : 0px;
    height:calc(100vh - 86px);
    overflow-y:scroll;
}

.main:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.choices {
    position: relative;
}

.choices .title {
    padding-top: 40px;
}

.intro {
    padding: 4% 12% 3% 12%;
    text-align: center;
}


.intro h4 {
    margin-top: 10px;
}

.choice_holder {
    display: block;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    /*padding-right: 5%;*/
}

.choice {
    width: 32%;
    margin: auto;
    display: inline-block;
    cursor: pointer;
}

.choice img {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#persoColor1 {
    color: #465041;
}

#persoColor2 {
    color: #95483B;
}

#persoColor3 {
    color: #644964;
}

.choice .name {
    display: block;
    margin-top: 12px;
    font-size: 0.9em;
    text-align: center;
    line-height: 1.3em;
    z-index: 10;
}

#info_main {
    width: 38%;
    min-width: 418px;
    display: none;
    position: absolute;
    left: 0px;
    top: 54px;
    z-index: 1000;
    color: white;
    background-color: #2e3942;
    opacity: 0.98;
    height: calc(100% - 54px);
    text-align: justify;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.8em;
    border-left: 0px solid #e5e7ea;
    border-right: 1px solid #e5e7ea;
    overflow-y: scroll;
}

#info_main .info_main_inside {
    padding: 3%;
    height: calc(100% - 75px);
    /*overflow-y: auto;*/
    clear: left;
    width: 94%;
}

#info_main .explain {
    margin-top: 10px;
    display: block;
}

#info_main h4{
    background-color: rgba(255,255,255,0.2);
    display: block;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 10px;
    padding:1px;
}

.close {
    font-weight: normal;
    float: right;
    display: inline-block;
    padding: 1px 5px 0px 5px;
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
    border: 1px solid #464f57;
    color: white;
    font-family: sans-serif;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    opacity: 1;
}

#info_main .close:hover {
    background-color: #464f57;
}

#info_main::-webkit-scrollbar {
    width: 5px;
}

#info_main::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
}

#info_main::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.2);
}

#info_main::-webkit-scrollbar-corner {
    display: none;
}

#info_main .logo{
    border-right: 1px solid white;
    max-width:50%;
}

#content {
    width: 50%;
    float: left;
    text-align: left;
    font-style: normal;
    font-variant: normal;
    display: none;
}

#img img {
    max-width: 96%;
    height: auto;
    margin: auto;
    display: block;
}

#img {
    width: 50%;
    margin: 10px auto;
    float: left;
    display: none;
    opacity: 1;
}

#text {
    width: 95%;
    padding: 1em 0em;
}

#text p {
    line-height: 1.4em;
}

.text_header p {
    background-color: #e0d8c9;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 1em;
    font-weight: bold;
}

.btn {
    padding: 0.6em 1em;
    font-family: sans-serif;
    color: #fff;
    font-weight: normal;
    background-color: #3F5780;
    font-size: 16px;
    border: 1px solid #324668;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 15px;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.btn:hover {
    opacity: 0.8;
}

#btn0 {
    display: none;
}

[rel="tooltip"] {
    cursor: pointer;
    border-bottom: 1px dotted #333;
}


.tooltipdecodeurs {
    padding: 12px 18px!important;
    color: #D2D6DB!important;
    background-color: #16212C!important;
    -webkit-border-radius: 2px!important;
    -moz-border-radius: 2px!important;
    border-radius: 2px!important;
    border-width: 0px!important;
    font: normal 13px "Helvetica Neue", Sans-Serif!important;
    line-height: 18px!important;
    -moz-box-shadow: 1px 1px 10px 0px #656565;
    -webkit-box-shadow: 1px 1px 10px 0px #656565;
    -o-box-shadow: 1px 1px 10px 0px #656565;
    box-shadow: 1px 1px 10px 0px #656565;
    filter: progid: DXImageTransform.Microsoft.Shadow(color=#656565, Direction=134, Strength=10);
    max-width: 250px!important;
    text-align: justify;
    z-index: 999;
    position: absolute;
}

.qmark:after {
    content: url(../img2/qmark.png);
}

.win {
    color: #548240;
    font-size: 2em;
    font-weight: bold;
}

.lose {
    color: #c23716;
    font-size: 2em;
    font-weight: bold;
}

.introduced {
    font-size: 2em;
    font-weight: bold;
    line-height: 1.3em;
}

#social_action {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
}

.social_ingame {
    display: none;
    margin-top: 25px;
}

.ingame_soc {
    display: inline-block;
    margin-top: 10px;
    min-width:10px;
}
.ingame_soc #fb{
   margin-top: 11px; 
}

#ingame_social {
    position: relative;
    width: 80%;
    padding: 6px 11px;
    background: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: #e4e6e9 solid 1px;
    font-style: italic;
    color: #5d666d;
    font-size: 0.9em;
}

#ingame_social:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 8px 7px 0;
    border-color: #fff transparent;
    display: block;
    width: 0;
    z-index: 1;
    margin-left: -7px;
    bottom: -8px;
    left: 10%;
}

#ingame_social:before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 8px 7px 0;
    border-color: #e4e6e9 transparent;
    display: block;
    width: 0;
    z-index: 0;
    margin-left: -7px;
    bottom: -9px;
    left: 10%;
}

.disclaim {
    margin: 2% auto 0% auto;
    display: block;
    font-size: 0.7em;
    line-height: 1.2em;
    color: rgba(137, 128, 111, 0.6);
    border-top: 1px solid #e3ded3;
    font-family: sans-serif;
    background-color: #e0d8c9;
    padding: 1% 3%;
}

.pluginButton {
    /* background: #4c69ba; */
    position: relative;
    top: -6px;
    background: linear-gradient(#4c69ba, #3b55a0);
    border: none;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    padding: 0;
    text-shadow: 0 -1px 0 #354c8c;
    white-space: nowrap;
    font-family: helvetica, arial, sans-serif;
    text-align: left;
    font-size: 11px;
    border-collapse: collapse;
}

.pluginButton a {
    text-decoration: none;
}

.pluginButton a:hover {
    text-decoration: none;
}

.pluginButton:hover {
    background: linear-gradient(#5b7bd5, #4864b1);
    border-color: #5874c3 #4961a8 #41599f;
    box-shadow: inset 0 0 1px #607fd6;
}

.pluginButtonContainer {
    -webkit-font-smoothing: antialiased;
}

.pluginButtonImage {
    display: inline-block;
}

.pluginButton button {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: bold;
    margin: 0;
    outline: none;
    padding: 0;
    text-shadow: 0 -1px 0 #354c8c;
}

.pluginButtonIcon {
    height: 14px;
    left: 0;
    margin: 0 4px 0 4px;
    position: relative;
    top: 3px;
    /*vertical-align: top;*/
    width: 14px;
}

.pluginButtonIconSVG {
    height: 14px;
    width: 14px;
}

.pluginButton .pluginButtonLabel {
    padding: 0 5px 0 0;
    position: relative;
    vertical-align: top;
    color: white;
}

@media (max-width: 550px) {
    .choices {
        width: 100%;
    }
    .game {
        width: 100%;
        border: none;
        height: 100%;
    }
    .main {
        width: 100%;
        top: 88px;
        height: calc(100% - 66px);
        padding: 0%;
        overflow-y: scroll;
        margin: auto;
    }
    .header .title {
        display: none;
    }
    .header .btns,
    .header .social {
        width: 45%;
    }
    .intro {
        margin-bottom: 20px;
    }
    .choice {
        display: block;
        width: 45%;
        min-width: 230px;
        margin: auto;
        cursor: pointer;
        float: none;
        margin-bottom: 52px;
        /* max-height: 130px;*/
    }
    .choice img {
        display: block;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .choice .name {
        display: block;
        margin-top: 7px;
        font-size: 0.8em;
        text-align: center;
        line-height: 1.2em;
        z-index: 10;
    }
    #info_main {
        width: 94%;
        height: 100%;
        padding: 3%;
        border-left: none;
        border-right: none;
        overflow-y: scroll;
        min-width: 300px;
    }
    #info_main .close {
        margin-right: auto;
        margin-top: auto;
    }
    .info_main_header{
        color: blue;
    }

    #img,
    #content {
        width: 96%;
        float: none;
        position: relative;
        padding-left: 4%;
        margin-bottom: 20px;
    }
    #img img {
        max-width: 300px;
        height: auto;
        display: block;
        margin: auto;
    }
    #text {
        font-size: 0.8em;
        padding: 0.3em 0em;
    }
    .qmark:after {
        content: url(../img2/qmark.png);
    }
}