/*Content*/
*{
    font-family: 'Muli', sans-serif !important;
}
html{
    margin:0;
    border:0;
    width:100%;
    height:100%;
}
body{
    background: #1789ce;
    margin:0;
    border:0;
    width:100%;
    height:100%;
}
/*DIV PARTNER*/
#div-partner{
    position: fixed;
    top:0px;
    left:0px;
    /*background: #303030;*/
    background: white;
    margin:  0px;
    display: block;
    width:100%;
    text-align: center;
    padding:0px;
    height:100px;
    z-index:999;
}
#div-partner img.sef{
    height: 80%;
    width: auto;
    margin-top: 0px;
    float: left;
}
#div-partner img.iurban{
    height: 40%;
    width: auto;
    right: 20px;
    margin-top: 40px;
    margin-right: 30px;
    float: right;
}


/*DIV THANKS*/
#div-thanks{
    /*background: white;*/
    margin: 250px auto 0px;
    display: none;
    text-align: center;
    padding:0px 30px;
    position: absolute;
    top:0px;
    left:0px;
}
#div-thanks h1{
    color:white;
    width:100%;
    display:block;
    text-align: center;
    margin: 30px auto;
}
#div-thanks img{
    -webkit-filter: brightness(400%);
    filter: brightness(400%);
}
#div-questions{
    background: white;
    width: 80%;
    margin: 150px auto 50px;
    padding: 50px;
}
#div-questions h1{
    margin:0px;
    color:#1789ce;
}
.div-question{
    margin:0px auto 80px;
}
.div-question .div-answer{
    width:100%;
    text-align:center;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 20px;
}
.div-question .div-answer input[type=button]{
    background: #1789ce;
    color:white;
    border:none;
    outline:none;
    padding:10px 20px;
    font-size:1em;
    outline:none;
    cursor:pointer;
}



/*Radio images*/
label > input{ /* HIDE RADIO */
    visibility: hidden; /* Makes input not-clickable */
    position: absolute; /* Remove input from document flow */
}
label > input + img{ /* IMAGE STYLES */
    cursor:pointer;
    border:2px solid transparent;
    max-width:120px;
    width:95px;
    height:auto;
}
label > input.answered + img{ /* (RADIO CHECKED) IMAGE STYLES */
    opacity:0.4;
    -webkit-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    transition: all linear 0.4s;
}
label > input:checked + img{ /* (RADIO CHECKED) IMAGE STYLES */
    -webkit-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    transition: all linear 0.4s;
    opacity:1;
}

/*Animate CSS*/
img{
    -webkit-animation-duration: 1s !important;
    animation-duration: 1s !important;
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
}

input:focus{
    outline: none !important;
    outline-style: none !important;
}
input[type=radio] {
    outline-color: transparent !important;
}
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*IE9*/
*::-moz-selection{
    background-color:transparent;
}
*::selection{
    background-color:transparent;
}
*::-moz-selection{
    background-color:transparent;
}
*{
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    /*IE10*/
    -ms-user-select: none;
    user-select: none;

    /*You just need this if you are only concerned with android and not desktop browsers.*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}





/*DIV STANDBY*/
body.standby{
    overflow:hidden;
}
body.standby #div-standby{
    display: block;
    left:0;
}
#div-standby{
    margin: 0px;
    height:100%;
    width:200%;
    position: absolute;
    top:0px;
    left:0px;
    z-index: 1000;
    display: none;
}
#div-standby img{
    margin: 0px;
    height:100%;
    width:50%;
    float: left;
    opacity:1;
}

body.standby #div-standby{
    display: block;
    left:0;
    -webkit-animation-name: standby_move;
    animation-name: standby_move;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes standby_move {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    49% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    50% {

        -webkit-transform: translate3d(-50%,0,0);
        transform: translate3d(-50%,0,0);
    }
    99% {
        -webkit-transform: translate3d(-50%,0,0);
        transform: translate3d(-50%,0,0);
    }
    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes standby_move {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    49% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    50% {

        -webkit-transform: translate3d(-50%,0,0);
        transform: translate3d(-50%,0,0);
    }
    99% {
        -webkit-transform: translate3d(-50%,0,0);
        transform: translate3d(-50%,0,0);
    }
    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}