/* MESSAGE D'ERREUR */
#errorMess {
    margin-top: 10px;
    font-size: 12px;
}

/* LISTE D'ICONES APPLE, GOOGLE et WEB */
.lienAppStore {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

.lienAppStore span {
    background-color: #fff;
    height: 100%;
    display: inline-block;
    border-radius:15px;
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
    -ms-border-radius:15px;
    -o-border-radius:15px;
    cursor: pointer;
}

.lienAppStore img {
    width: 80px;
    height: 80px;
    border: 1px solid rbs(255, 255, 255, 0.3);
    border-radius:15px;
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
    -ms-border-radius:15px;
    -o-border-radius:15px;
}

.lienAppStore div {
    margin-top: 10px;
    color : #FFF;
    margin-bottom: 10px;
}

#container-icon {
    background-color: #000;
}

.appIcon div{
    margin-bottom : 5px;
}

#appGoogle img, #appApple img {
    border: 1px solid #fff;
    box-shadow: 0 0 2px 1px blanchedalmond;
}

#appWeb img, #appWebMobile img {
    border: 4px solid #000;
    box-shadow: 0 0 2px 2px #FFFFFF;
}


/* RESPONSIVE */

@media only screen and (max-width: 768px) {
    #appWeb {
        display: none;
    }

    #appWebMobile {
        display: block;
    }

    #appWebMobile, #appGoogle, #appApple {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) {
    #appWeb {
        display: block;
    }

    #appWebMobile {
        display: none;
    }
}