/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 07 2026 | 13:57:24 */
.hst-fab-nav-wrap {
    display: none;
}

@media (max-width: 991px) {
    .hst-fab-nav-wrap {
        display: block;
        position: fixed;
        bottom: 24px;
        left: 0;
        z-index: 9999;
    }

.hst-fab-nav {
    width: 64px;
    height: 64px;
    border-radius: 0 32px 32px 0;
    background: #5c8da8;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: width 0.35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}

    .hst-fab-nav.is-open {
        width: 320px;
    }

.hst-fab-toggle {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hst-fab-items {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0 12px 0 0;
        gap: 4px;
        opacity: 0;
        white-space: nowrap;
        transition: opacity 0.25s ease 0.1s;
    }

    .hst-fab-nav.is-open .hst-fab-items {
        opacity: 1;
    }

    .hst-fab-items li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 9px;
        gap: 2px;
        padding: 4px 6px;
    }

    .hst-fab-items li a i {
        font-size: 20px;
    }
}