.cookie-popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.cookie-popup-content {
    background-color: #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.cookie-popup-button {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    border-color: rgba(3, 37, 126, 1);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    background: linear-gradient(rgba(3, 37, 126, 1), rgba(3, 37, 126, 1));
}

.cookie-popup-button:hover {
    color: black;
}


.cookie-popup-decline-button {
    font-size: 15px;
    font-family: Arial Black;
    width: auto;
    height: auto;
    border-width: 1px;
    color: rgba(3, 37, 126, 1);
    border-color: rgba(3, 37, 126, 1);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
}

.cookie-popup-decline-button:hover {
    color: black;
}

@media screen and (min-width: 600px) {
    .cookie-popup-decline-button {
        width: 140px;
        height: 50px;
    }
}