.sidebar__user {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-left: 10px;
}

.sidebar__img img {
    width: 40px;
    height: auto;
    animation: flipSmooth 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes flipSmooth {
    0% {
        transform: rotateY(0deg);
        animation-timing-function: ease-out;
        /* Melambat saat menghadap depan */
    }

    50% {
        transform: rotateY(90deg);
        animation-timing-function: linear;
        /* Mulai mempercepat */
    }

    100% {
        transform: rotateY(180deg);
        animation-timing-function: ease-in;
        /* Mempercepat saat membalik */
    }
}

.sidebar__info .a {
    font-size: 17px;
    font-weight: 500;
    color: #313131;
    
}

.sidebar__info .b {
    font-size: 16px;
    font-weight: 700;
    color: #2d9906;
}


/* Tampilan HP */
@media (max-width: 768px) {
    .sidebar__img img {
        width: 30px;
        height: auto;
        animation: flipSmooth 3s ease-in-out infinite;
        transform-style: preserve-3d;
    }

        .sidebar__info .a {
            font-size: 11px;
            font-weight: 500;
            color: #313131;
    
        }
    
        .sidebar__info .b {
            font-size: 10px;
            font-weight: 700;
            color: #2d9906;
        }
        
      
}

