.create-button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.create-button-group .btn {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.create-button-group .btn i {
    font-size: 24px;
    margin-bottom: 12px;
}

.blinkable {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 10%;
    }
}
