.cs-floating-panel {
    position: fixed;
    top: 20%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    background: red;
    padding: 15px 0;
    border-radius: 15px 0 0 15px;
}

.cs-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s;
    position: relative;
}

.cs-item-2 {
    position: relative;
}

.cs-item-2::before,
.cs-item-2::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 60%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
}

.cs-item-2::before {
    top: 0;
}

.cs-item-2::after {
    bottom: 0;
}

.cs-item img {
    width: 30px;
    height: 30px;
}

.cs-item img:hover {
    transform: scale(1.1);
}

/*
@media (max-width: 768px) {
    .cs-floating-panel {
        display: none;
    }
}
*/

.cs-item a::after {
    content: attr(data-title);
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

/* Mostrar al hover */
.cs-item:hover a::after {
    opacity: 1;
}