#cookie-popup {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgb(69, 121, 164);
    color: white;
    position: fixed;
    z-index: 15;
    font-size: 14px;
    line-height: 20px;
    padding: 50px;
    border-radius: 15px;
}

#cookie-popup.hidden {
    display: none;
}

.cookiebtn {
    text-decoration: none;
    display: inline-block;
    outline: 0;
    cursor: pointer;
    border: none;
    padding: 0 56px;
    height: 45px;
    line-height: 45px;
    border-radius: 7px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-size: 16px;
    box-shadow: 0 4px 14px 0 rgb(0 118 255 / 39%);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cookiebtn:hover {
    color: white;
    background: rgba(71, 186, 130, 0.9);
    box-shadow: 0 6px 20px rgba(71, 186, 130, 0.9);
}

#cookiebackground {
    height: 10000px;
    width: 100%;
    position: fixed;
    z-index: 100;
    background-color: rgba(130, 129, 129, 0.609)
}

#cookiebackground.hidden {
    display: none;
}

.btn1 {
    margin-top: 10px;
    display: inline-block;
    outline: 0;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    font-size: 13px;
    background-color: #0000003e;
    color: #0e0e10;
    padding: 10px;
    text-decoration: none;
    color: white;
    margin-left: 5px;
}

.btn1:hover {
    background-color: #0000001a;
}