/*Tower Sticky - lado izquierdo */

.banner-lateral {
    position: fixed;
    overflow: hidden;
    width: 240px;
    height: 500px;
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.3);
    top: 50%;
    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: 25px;
    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;
}

.banner-lateral.derecho img.logo {
    border-radius: 0 30px 30px 0;
    left: 0;
}

.btn-cerrar-pauta {
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #ff6600;
    color: white;
    font-size: 16px;
    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: 5%;
        width: 50%;
        height: fit-content;
    }
}
/*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;
    }

}


/*----------------------------------------*/

/*Tower Sticky - lado derecho*/


