/* Shared fixed navigation used by every frontend theme. */
.smallDeviceShow {
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    background: rgba(20, 20, 20, 0.75);
    border-radius: 16px;
    bottom: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    justify-content: space-around;
    left: 50%;
    margin: 0;
    max-width: 700px;
    padding: 8px 12px;
    position: fixed;
    text-align: center;
    transform: translateX(-50%);
    user-select: none;
    width: calc(100% - 32px);
    z-index: 999;
}

.smallDeviceShow li {
    list-style: none;
}

.smallDeviceShow li a {
    align-items: center;
    background: transparent;
    border: 0;
    color: #ddd;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    min-width: 56px;
    padding: 6px 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.smallDeviceShow li a:hover,
.smallDeviceShow li a:focus-visible {
    color: #fff;
}

.smallDeviceShow li a i {
    font-size: 18px;
    line-height: 1;
}

@media (min-width: 992px) {
    .smallDeviceShow {
        display: none;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-bottom: 82px !important;
    }

    .smallDeviceShow {
        width: calc(100% - 20px);
    }

    .smallDeviceShow li a {
        font-size: 12px;
        min-width: 48px;
    }
}
