.wheelContainer{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -50%;
}

.center{
    position: relative;
    width: 1px;
    height: 1px;
    transform: rotate(0deg);
    transition: transform 1s;
    background-color: aquamarine;
}

.circleBg {
    position: absolute;
    background-color: #EEF8F7;
    border-radius: 50%;
    background-image: url("../../../img/menu/4/4-1/icon-switch.svg");
    background-position: right 35% bottom 50%;
    background-repeat: no-repeat;
}

.circle{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -70px;
    margin-left: -70px;
    background-color: #4AC8C1;
    border-radius: 50%;
    transition: transform 1s, opacity 1s;
}

.circle.current {
    background-color: #2B7A77;
    margin-top: -75px;
    margin-left: -75px;
}

.circle.hidden {
    opacity: 0;
}

.circle:hover {
    background-color: #2B7A77;
    margin-top: -75px;
    margin-left: -75px;
}

.circleImg {
    width: 50%;
    margin: 15px auto 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.circleTitle {
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
}

.circleView {
    width: 100%;
    height: 100%;
    cursor: pointer;
}