#cookie-consent-banner {
    position: fixed;
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    bottom: 20px;
    right: 20px;
    width: calc(100% - 40px);
    box-shadow: 0px 3px 30px #00000029;
    border: 1px solid grey;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
    font-weight: normal;
    color: #000000;
    z-index: 40000;

    h3 {
        text-align: center;
        font-size: 30px;
        line-height: 37px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    label {
        font-size: 18px;
        line-height: 26px;

        input {
            margin-right: 7px;
        }
    }

    .cookie-consent-options, .cookie-consent-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 0 auto 20px auto;
        gap: 20px;
    }

    #cookie-consent-btn-reject-all {
        font-size: 13px;
    }
}

@media screen and (width < 600px) {
    #cookie-consent-banner {
        width: calc(100% - 10px);
        right: 5px;
        padding: 15px;

        h3 {
            font-size: 20px;
            line-height: 25px;
        }

        p, label {
            font-size: 14px;
            line-height: 16px;
        }

        .btn {
            font-size: 12px;
        }
    }
}
