.quick-menu {
    display: none;

    @media screen and (min-width: 1000px) {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        margin: 0;
        padding: 0;
        list-style: none;
        background: rgba(0, 0, 0, 0.78);
        border-radius: 50px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(6px);
        transition: all 0.35s ease;
        align-items: center;
    }

    ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;

        li {
            margin: 0;
            padding: 0;
            list-style: none;
            position: relative;
            display: flex;

            &:hover {
                background: rgba(255, 255, 255, 0.15);
                border-radius: 999px;
            }

            a[href*="teamviewer"]:hover {
                background: rgba(0, 119, 204, 0.3);
            }

            a[href^="tel:"]:hover {
                background: rgba(46, 204, 113, 0.3);
            }

            a[href^="mailto:"]:hover {
                background: rgba(231, 76, 60, 0.3);
            }

            a[href*="maps"]:hover {
                background: rgba(52, 152, 219, 0.3);
            }

            a {
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                text-decoration: none;
                min-width: 48px;
                height: 48px;
                padding: 0 8px;
                transition: all 0.28s ease;


                &:hover {
                    background: rgba(255, 255, 255, 0.15);
                    border-radius: 999px;

                    span {
                        opacity: 1;
                        visibility: visible;
                        max-width: 180px;
                        padding-left: 12px;
                        padding-right: 16px;
                    }
                }

                i.fa {
                    font-size: 22px;
                    width: 48px;
                    height: 48px;
                    line-height: 48px;
                    text-align: center;
                    flex-shrink: 0;
                }

                span {
                    opacity: 0;
                    visibility: hidden;
                    max-width: 0;
                    overflow: hidden;
                    white-space: nowrap;
                    padding-left: 0;
                    transition: all 0.35s ease;
                    font-size: 15px;
                    font-weight: 500;
                }
            }

            &.content {
                transition: all 0.3s ease;
            }
        }
    }

}
