#msr-slidein {
    position: fixed;
    bottom: 20px;
    right: -350px; /* Escondido al inicio */
    width: 300px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: right 0.5s ease-in-out;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

#msr-slidein.visible {
    right: 20px; /* Se desliza hacia adentro */
}

#msr-slidein img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    background: #F2F2F2;
}

#msr-slidein h4 {
    margin: 10px 0 5px;
    font-size: 16px;
    color: #1758a8;
    transition: all ease .25s;
}
#msr-slidein h4:hover {
    color: #0b3971
}

#msr-slidein p {
    font-size: 13px;
    color: #555;
}

.msr-close {
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    text-align: center;
    line-height: 13px;
    transition: all ease .25s;
    background: #f65a5a;
    color: #FFF
}

.msr-close:hover {
    background: #d10707;
    color: #FFF
}

#msr-content a {
    text-decoration: none;
}

#msr-no-show {
    font-size: 11px;
    color: #adadad;
    text-decoration: none;
}

#msr-no-show:hover {
    transition: all ease .25s;
    color: #525252;
}