#mpc-cookie-banner{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: rgb(255 255 255 / 85%);
    border-radius: 8px;
    border: solid 1px #dfdfdf;
    padding: 15px;
    max-width: 240px;
    box-shadow: 1px 6px 8px hsl(0deg 0% 0% / 0.15);
    mix-blend-mode: normal;
    animation: fadeIn 1s ease-in-out;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    p{
        display: block;
        font-weight: 400;
        font-size: 12px;
        line-height: 1.3em;
        margin-bottom: 15px;
        color: #000;
    }

    a{
        display: block;
        font-weight: 400;
        font-size: 12px;
        line-height: 1.3em;
        color: #0d6efd;
        text-decoration: none;
    }

    .content-buttons{
        margin-top: 15px;
    }

    button{
        display: block;
        font-size: 12px;
        border: solid 1px #dfdfdf;
        background: #fff;
        border-radius: 4px;
        margin-bottom: 5px;
        padding: 4px;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease-in-out;
        color: #000;
        cursor: pointer;
        &:hover{
            background: #000000;
            color: #fff;
        }
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}