/*Tower Sticky - lado izquierdo */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=close");

.banner-lateral {
    position: fixed;
    overflow: hidden;
    width: 240px;
    height: 500px;
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.3);
    top: 60%;
    transform: translateY(-50%);
    z-index: 20;
}

.banner-lateral.derecho {
    border-radius: 15px 0 0 15px;
    right: -240px;
    animation: inicio-tower-izq 3s ease 5s 1 normal forwards;
}

.banner-lateral.izquierdo {
    border-radius: 0 15px 15px 0;
    left: -240px;
    animation: inicio-tower-der 3s ease 5s 1 normal forwards;
}

.banner-lateral img.logo {
    position: absolute;
    top: 20px;
    padding: 0 5px;
    background-color: white;
    width: 120px;
    height: 40px;
}

.banner-lateral picture {
    display: flex;
}

.banner-lateral.izquierdo img.logo {
    border-radius: 30px 0 0 30px;
    right: 0;
    padding: 6px 7px 6px 10px;
}

.banner-lateral.derecho img.logo {
    border-radius: 0 30px 30px 0;
    left: 0;
    padding: 6px 10px 6px 7px;
}

.btn-cerrar-pauta {
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #ff6600;
    color: white;
    font-size: 24px;
    box-shadow: 0 2px 7px 3px rgba(0, 0, 0, 0.2);
    top: 0;
    right: 0;
    cursor: pointer;
}

.banner-lateral.izquierdo .btn-cerrar-pauta {
    left: 0;
}

.btn-cerrar-pauta:hover {
    background-color: #3f3f3f;
}

@keyframes inicio-tower-izq {

    0% {
        opacity: 0;
        right: -240px;
    }

    100% {
        opacity: 1;
        right: 0px;
    }

}

@keyframes inicio-tower-der {

    0% {
        opacity: 0;
        left:-240px;
    }

    100% {
        opacity: 1;
        left: 0px;
    }

}
/*Desktop*/
@media (max-width:1540px) {
.banner-lateral {
        width: 180px;
        height: auto;
    }

    .banner-lateral img {
        width: 100%;
        height: fit-content;
    }

    .banner-lateral img.logo {
        top: 3%;
        width: 50%;
        height: fit-content;
        object-fit: contain; 
    }
}
/*Mobile*/
@media (max-width: 500px) {
    .banner-lateral {
        width: 45%;
        height: fit-content;
        top: auto;
        transform: translateY(0);
        bottom: 10px;
    }

    .banner-lateral img.logo {
        top: 5%;
        width: 55%;
        height: fit-content;
    }

    .banner-lateral img {
        width: 100%;
        height: auto;
    }

    .banner-lateral.izquierdo  img.logo,  .banner-lateral.derecho  img.logo {
       padding: 3px;
        height: 23px;
    }

}


/*----------------------------------------*/

/*Tower Sticky - lado derecho*/


