.fixedmenu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fixedmenu .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    transition: all .3s ease;
}

.fixedmenu .menu-item i {
    font-size: 22px;
    min-width: 52px;
    text-align: center;
}

.fixedmenu .menu-item span {
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .35s ease;
    font-size: 15px;
    font-weight: 600;
}

.fixedmenu .menu-item:hover {
    width: 220px;
    justify-content: flex-start;
}

.fixedmenu .menu-item:hover span {
    max-width: 160px;
    opacity: 1;
    margin-left: 8px;
}

/* Colors */
.fixedmenu .whatsapp {
    background: #25D366;
}

.fixedmenu .search {
    background: #0d6efd;
}

.fixedmenu .phone {
    background: #ff6b00;
}

.fixedmenu .menu-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
}

/* Mobile */
@media(max-width:768px) {
    .fixedmenu .menu-item {
        width: 48px;
        height: 48px;
    }

    .fixedmenu .menu-item:hover {
        width: 180px;
    }

    .fixedmenu .menu-item i {
        min-width: 48px;
        font-size: 20px;
    }

    .fixedmenu .menu-item span {
        font-size: 14px;
    }
}