@charset 'utf-8';

#retoolBanner {
    position: fixed;
    bottom: 10px;
    right: 24px;
    z-index: 1;
    width: 285px;
    height: 177px;
    transition: bottom .2s;
}

#retoolBanner a {
    display: block;
    width: 100%;
    height: 100%;
}

#retoolBanner a:hover {
    opacity: 1;
}

#retoolBanner img {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: opacity .3s;
}

#retoolBanner .-on {
    opacity: 0;
    transition: 0s;
}

#retoolBanner .-off {
    opacity: 1;
    transition: 0s;
}

#retoolBanner:hover .-on {
    opacity: 1;
}

#retoolBanner:hover .-off {
    opacity: 0;
}


@media (max-width: 767px) {
    #retoolBanner {
        position: fixed;
        right: 0;
        width: 100%;
        height: auto;
        transform: translateY(10px);
    }

    #retoolBanner img {
        position: static;
    }
}
