.cookiebox {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 500px;
    height: auto;
    background-color: rgba(0, 72, 131, 0.8); /* #004883E5; */
    color: white;
    padding: 20px;
    z-index: 10;
}

.cookiebox p {
    margin: 10px 0;
    color: white;
}

.cookiebox p:first-child {
    font-weight: bold;
}

.cookiebox p:nth-child(3) {
    margin-bottom: 20px;
}
.cookiebox p:nth-child(4) {
    margin-bottom: 20px;
}

.cookiebox a {
/*
    color: #63B1F0;
    text-decoration: none;
 */
    text-decoration: underline;
    font-weight: bold;
}

.cookiebox label {
    margin-right: 20px;
    color: white;
}

.cookiebox button {
    width: 240px;
    background-color: #4BA2E9;
    padding: 10px 10px;
    box-sizing: border-box;
    border-style: none;
    color: white;
    cursor: pointer;
    font-size:12pt;
}

.cookiebox button:nth-child(even) {
    float:right;
}

.cookiebox .cookieboxerror {
    color: #fd8989;;
    margin-top: -15px;
    margin-bottom: 20px;
}

@media (max-width: 760px) {

    .cookiebox {
        width: 100%;
        right:0;
        bottom: 0;
        box-sizing: border-box;
    }

    .cookiebox button {
        width: 100%;
    }

    .cookiebox p button:first-child {
        margin-bottom: 20px;
    }
}