#gdpr {
    background-color: #f1f1f1;
    bottom: 0;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.3);
    box-sizing: border-box;
    display: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.1em;
    margin: 1em 1em 2em 1em;
    max-width: calc(100% - 2em);
    padding: 1em;
    position: fixed;
    right: 0;
    width: 300px;
    z-index: 10000;

    & h3 {
        font-family: Arial, sans-serif;
        font-size: 20px;
        margin-top: 0;
    }

    & dt {
        font-weight: bold;
    }

    & dd {
        color: #000000a0;
        font-size: 0.75em;
        line-height: 1.1em;
        margin: 0.5em 0 0 2em;

        & ul {
            padding-left: 1.5em;
        }

        & li {
            margin: 0 0 0.5em 0;
        }
    }

    & .btn {
        background-color: #1bb134;
        border-radius: 0;
        border: 1px solid #1bb134;
        color: white;
        cursor: pointer;
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: normal;
        margin-right: 10px;
        padding: 10px 15px;
        text-decoration: none;
        text-transform: none;
    }

    & .outlined {
        background-color: transparent;
        border: 1px solid black;
        color: black;
    }
    
    & input[type="checkbox"] {
        cursor: pointer;
        margin-right: 5px;
    }

    & #gdpr-select-cookies {
        display: none;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 0.3s cubic-bezier(0, 0, .32, 1.275);
}