body {
    position: relative;
}

#amx-agente-img {
    position: fixed;
    bottom: 88px;
    right: 7px;
    z-index: 1000;
}

#amx-agente-img img {
    width: 60px;
    height: 60px;
    border: 4px solid #0a6d75;
    border-radius: 50%;
    object-fit: contain;
}

#amx-agente-label {
    position: fixed;
    padding: 4px 8px;
    background-color: #0a6d75;
    color: #fff;
    font-size: .6rem;
    bottom: 106px;
    right: 69px;
    border-radius: 4px;
    z-index: 1000;
    pointer-events: none;
    transition: opacity 300ms ease-in-out;
}

.amx-agente-label-hidden {
    opacity: 0;
}

#amx-agente-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .9);
    z-index: 999;
    transition: opacity 300ms ease-in-out;
}

.amx-agente-overlay-hidden {
    display: none;
}

#amx-agente-close {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    color: #fff;
    z-index: 1001;
}

.amx-agente-content {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amx-agente-frame {
    width: 90%;
    height: 80vh;
    background-color: #fff;
}

@media(min-width: 991px) {
    #amx-agente-img {
        bottom: 110px;
    }

    #amx-agente-img img {
        width: 80px;
        height: 80px;
    }

    #amx-agente-label {
        bottom: 137px;
        right: 90px;
    }

    #amx-agente-close {
        top: 28px;
        right: 28px;
        width: 60px;
        height: 60px;
    }
}