.caseBlanche-box {
    width: 120px;
    height: 155px;
    position: fixed;
    top: 75%;
    right: 10px;
    z-index: 10;
}
.caseBlanche-box #caseBlanche3 {
    height: 90px;
    width: 90px;
    position: absolute;
    top: 40px;
    left: -18px;
}
.caseBlanche-box #caseBlanche3 #rond {
    height: 90px;
    width: 90px;
    border: 1px solid #5eb1f3;
    opacity: 0.9;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 25px;
    animation: rond 3s infinite;
}
.caseBlanche-box #caseBlanche3 #test {
    height: 5px;
    width: 4px;
    position: absolute;
    background-color: #5eb1f3;
    opacity: 0.9;
    border-radius: 50%;
    top: -3px;
    left: 42px;
}
.caseBlanche-box #caseBlanche3 #load {
    color: #fff;
    font-family: calibri;
    text-align: center;
    position: absolute;
    top: 40px;
    left: 36px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: url(../images/pic_pc.png) no-repeat #5eb1f3;
    opacity: 0.9;
    background-size: 50px 50px;
    background-position: center center;
}
@keyframes rond {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}