

@media (min-width: 1280px) and (max-width: 1359px) {
    .cq-mnav {

        display: block;

        position: fixed;

        top: 0;

        right: 0;

        bottom: 0;

        left: 0;

        z-index: 1200;

        visibility: hidden;

        pointer-events: none;

        overflow: hidden;    }

    .cq-mnav.is-open {

        visibility: visible;

        pointer-events: auto;
    }

    .cq-mnav__backdrop {

        position: absolute;

        top: 0;

        right: 0;

        bottom: 0;

        left: 0;

        background: rgba(15, 25, 35, .35);
    }

    .cq-mnav__panel {

        position: absolute;

        top: 0;

        right: 0;

        bottom: 0;

        width: 360px;

        padding: 0 var(--cq-4) var(--cq-5);
        background: var(--cq-surface);
        box-shadow: -6px 0 24px rgba(20, 33, 46, .16);

        overflow-y: auto;

        transform: translateX(100%);

        transition: transform .24s ease;
    }

    .cq-mnav.is-open .cq-mnav__panel {

        transform: translateX(0);
    }

}

.cq-bottom-nav,
.cq-mnav {
    display: none;
}

.cq-fab {
    --cq-fab-size: 78px;
    display: block;
    position: fixed;
    --cq-fab-le: calc(var(--cq-gutter) - var(--cq-fab-size) / 2);
    right: var(--cq-fab-le);
    bottom: var(--cq-fab-le);
    z-index: 1000;
}
.cq-fab__backdrop {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: rgba(15, 25, 35, .20);
}
.cq-fab.is-open .cq-fab__backdrop {
    display: block;
}
.cq-fab__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--cq-fab-size);
    height: var(--cq-fab-size);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--cq-accent);
    box-shadow: 0 6px 18px rgba(20, 33, 46, .24);
    color: var(--cq-on-accent);
    font-size: calc(var(--cq-fab-size) * 0.56);
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease;
}
.cq-fab__btn i {
    line-height: 1;
    transition: transform .25s ease;
}
.cq-fab.is-open .cq-fab__btn {
    background: var(--cq-accent-ink);
}
.cq-fab.is-open .cq-fab__btn i {
    transform: rotate(45deg);
}
.cq-fab__menu {
    display: none;
    position: absolute;
    right: 0;
    bottom: 64px;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--cq-2);
}
.cq-fab.is-open .cq-fab__menu {
    display: flex;
}
.cq-fab__item {
    display: flex;
    align-items: center;
    gap: var(--cq-2);
    padding: 10px var(--cq-4);
    border: 1px solid var(--cq-hairline);
    border-radius: var(--cq-r-pill);
    background: var(--cq-surface);
    box-shadow: 0 4px 14px rgba(20, 33, 46, .14);
    color: var(--cq-text);
    font-family: 'LA3D Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}
.cq-fab__item i {
    width: 16px;
    color: var(--cq-accent);
    font-size: 14px;
    text-align: center;
}

