#infinite-grid-menu-canvas {
    cursor: grab;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    outline: none
}

#infinite-grid-menu-canvas:active {
    cursor: grabbing
}

.action-button {
    position: absolute;
    left: 50%;
    z-index: 10;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: #A32033;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    border: 5px solid #A32033;
}

.face-title {
    -webkit-user-select: none;
    user-select: none;
    position: absolute;
    font-weight: 900;
    font-size: 3rem;
    left: 1.6em;
    top: 50%;
    color: #FFF !important;
}

.action-button-icon {
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    color: #fff;
    top: -2px;
    font-size: 26px
}

.face-title {
    position: absolute;
    top: 90%;
    font-style: italic;
    font-weight: 700;
    transform: translate(-50%, -50%);
    max-width: 100%;
    font-size: 2vw;
    left: 50%;
    line-height: 1.2em;
    font-family: 'Inter Tight', sans-serif;
    text-align: center;
}

.face-title.active {
    opacity: 1;
    pointer-events: auto;
    transition: .5s ease
}

.face-title.inactive {
    pointer-events: none;
    opacity: 0;
    transition: .1s ease
}

.face-description {
    -webkit-user-select: none;
    user-select: none;
    position: absolute;
    max-width: 10ch;
    top: 50%;
    font-size: 1.2rem;
    right: 1%;
    transform: translateY(-50%);
    display: none !important;
}

.face-description.active {
    opacity: 1;
    transform: translate(-90%, -50%);
    pointer-events: auto;
    transition: .5s ease;
    opacity: 1;
    transform: translate(-20%, -50%);
    pointer-events: auto;
    transition: .5s ease;
    min-width: 22vw;
}

.face-description.inactive {
    pointer-events: none;
    transform: translate(-60%, -50%);
    opacity: 0;
    transition: .1s ease
}

.action-button {
    position: absolute;
    left: 50%
}

.action-button.active {
    bottom: 22%;
    transform: translate(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    transition: .5s ease
}

.action-button.inactive {
    bottom: -80px;
    transform: translate(-50%) scale(0);
    opacity: 0;
    pointer-events: none;
    transition: .1s ease
}

@media (max-width: 1500px) {

.face-description {
        display: none
    }
}

@media (max-width: 768px) {

    .face-title {
        position: absolute;
        top: 12% !important;
        transform: none;
        max-width: 100%;
        font-size: 20px !important;
        left: 0;
        line-height: 1.2em !important;
        font-family: 'Inter Tight', sans-serif;
        text-align: center;
        width: 100%;
    }

    .face-title.active {
        display: inline-block !important;
    }

    .action-button {
    position: absolute;
    left: 50%;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #FFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    border: 0px solid #FFF;
    }

    .action-button-icon {
        font-size: 16px;
        color: #A32033;
    }

    #infinite-grid-menu-canvas {
        cursor: grab;
        width: 170%;
        height: 100%;
        overflow: hidden;
        position: relative;
        outline: none;
        min-height: 400px;
        left: -35%;
    }
    .infinite-menu-shortcode {
        height: 400px !important;
    }

}