.shortcuts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 10px;
    transition: all 0.25s;
}

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

@media (hover: hover) {
    .shortcut > * {
        transition:  0.25s ease-in-out;
    }
    .shortcut:hover > .delimiter {
        opacity: 0;
    }
    .shortcut:hover > .icon {
        opacity: 0;
    }
    .shortcut:hover > .text {
        transform: translate(-65px, 0)
    }
}
