.normal-button-shake {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.normal-button-shake svg {
    width: 70%;
    height: 70%;
    z-index: 1;
    position: relative;
    fill: currentColor;
    color: #950937;
}

.normal-button-shake:hover svg {
    color: #eb3a34;
}

.normal-button-shake .label {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    transform-origin: right center;
    translate: calc(-50% - 4em) 0;
    font-size: 0.9em;
    font-weight: 600;
    white-space: nowrap;
    color: #111;
    padding: 0.5em 1.2em;
    border-radius: 5em;
    opacity: 0;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.normal-button-shake:hover .label {
    opacity: 1;
}