#botpress-consent-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

#botpress-consent-button {
    animation: heartbeat 2s ease-in-out 4;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#botpress-consent-button:hover {
    transform: scale(1.1);
}

.botpress-consent-modal.sharer {
    width: 500px;
    margin-left: -250px;
    z-index: 100;
}

@media (max-width: 780px) {
    .botpress-consent-modal.sharer {
        left: 5vw;
        width: 90vw;
        right: 5vw;
        margin-left: 0;
        top: 50%;
        transform: translate(0, -50%);
    }
}

.botpress-consent-modal .copy p {
    font-size: 18px;
}

.botpress-consent-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.botpress-consent-actions .button {
    margin-bottom: 0;
}
