.clock {
    border-radius: 100%;
    background: #ffffff;
    font-family: "Bevan";
    border: 7px solid gray;
    box-shadow: inset 2px 3px 8px 0 rgba(0, 0, 0, 0.1);
}

.wrap {
    overflow: hidden;
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 100%;
}

.second {
    position: absolute;
    height: 50px;
    width: 2px;
    margin: auto;
    top: -58px;
    left: -16px;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background: lightpink;
    transform-origin: bottom center;
    transform: rotate(0deg);
    z-index: 1;
}

.E, .S, .W, .N, .NE, .SE, .SW, .NW{
    position: absolute;
    font-size: 60%;
    top: 0;
    left: 63px;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 15px;
    color: blue;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}
.E, .W{
    top: 63px;
    left: 125px;
}
.S{
    top: 125px;
}
.W{
    left: 3px;
}
.NE, .NW{
    top: 23px;
    left: 13px;
}
.NE, .SE{
    left: 105px;
}
.SE, .SW{
    top: 103px;
}
.SW{
    left: 15px;
}
.dot {
    position: absolute;
    top: -9px;
    left: -14px;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: white;
    border: 1px solid #1b1b1b;
    margin: auto;
    z-index: 1;
}

.happyTrail, .happyTrail2  {
    position: absolute;
    width: 3px;
    height: 1px;
    background: #00f;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    /* filter: blur(1px);*/

    animation-duration: 0.5s;
    animation-name: rainbowFade;
    animation-timing-function: ease;
    z-index: -10;
}
.happyTrail2  {
    top: 50px;

}
@keyframes rainbowFade {
    0% {
        background: #000;
    }

    20% {
        background: #00f;
    }

    40% {
        background: #0af;
    }

    60% {
        background: #0ff;
    }

    80% {
        background: #0f0;
        opacity: 0.8;
    }

    100% {
        background: #00f;
        opacity: 0;
    }
}

.boussole {
    border-radius: 100%;
    background-image: url("../../img/rycw/cockpit/boussole2.png");
    background-size: contain;
    font-family: "Bevan";
    color: white;
    transform: rotate(0deg);
    transition: transform 1s ease-out 50ms;
}
.aiguille_wrap {
    background: transparent;
    z-index: 1;
}
.aiguille {
    position: absolute;
    height: 50px;
    width: 2px;
    margin: auto;
    top: -58px;
    left: -16px;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    background: lightpink;
    z-index: 1;
}

.reflect {
    position: absolute;
    height: 20px;
    width: 5px;
    margin: auto;
    margin-bottom: 50px;
    top: -8px;
    left: -16px;
    bottom: 0;
    right: 0;
    border-radius: 1px 4px 4px 1px;
    background: rgba(180, 180, 200, 0.8);
    transform-origin: bottom center;
    transform: rotate(90deg);
    transition: transform 1s ease-out 50ms;
    z-index: 1;
}

.texte {
    position: absolute;
    height: 15px;
    width: 20px;
    margin: auto;
    text-align: center;
    top: 12px;
    left: -18px;
    bottom: 0;
    right: 0;
    background: transparent;
    z-index: 1;
    color: white;

}

