#sws-badge {
    position: fixed;
    right: -20px;
    top: 100px;
    z-index: 9999;
    width: 160px; /* Adjust as needed */
    height: auto;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.2); 
    background-color: #fff;
    padding: 6px 12px 26px 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transform-origin: bottom right;
    transform: translateX(100%) rotate(-90deg);
    transition: transform .3s ease-out, opacity .3s ease-out;
    opacity: 0;
}

#sws-badge.show {
    opacity: 1;
    transform: translateX(0) rotate(-90deg);
}

#sws-badge:hover {
    transform: translateX(-20px) rotate(-90deg);
}

#sws-badge img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

#sws-badge .sws-badge-title {
    font-size: .8rem;
    margin-bottom: 8px;
    display: inline-block;
    line-height: 1;
    color: #5C68FF !important;
}
