﻿/* Logo ISO 26000 sticky + animé */
#rse-iso26000-logo-container {
    position: fixed;
    z-index: 50;
    bottom: 25px;
    right: 25px;
    cursor: pointer;
    animation: beat 1s infinite alternate;
    transform-origin: center;
}

#rse-logo-desktop {
    width: 85px;
    height: auto;
    display: block;
}

#rse-logo-mobile {
    display: none;
}

@media only screen and (max-width: 600px) {
    #rse-logo-mobile {
        width: 60px;
        height: auto;
        display: block;
    }

    #rse-logo-desktop {
        display: none;
    }
}

/* Heart beat animation */
@keyframes beat {
    to {
        transform: scale(1.2);
    }
}

#rse-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    z-index: 102;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
