/* Contenedor del menú banderita */
.et_social_sidebar_networks {
    position: fixed;
    left: 0;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Contenedor de los íconos banderita */
.et_social_icons_container {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.et_social_icons_container li {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.et_social_icons_container li a {
    display: inline-block;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    background: none;
}

.et_social_icons_container li img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.et_social_icons_container li:hover a {
    transform: scale(1.1);
    background: none;
}

.et_social_icons_container li:hover img {
    transform: scale(1.2);
}

@media only screen and (max-width: 992px) {
    .et_social_sidebar_networks {
        left: auto; 
        right: 0;
    }
}
