.cookie-link {
    background-color: rgb(0, 0, 0);
    color: white;
    margin-top: 2%;
}

.cookie-link>a {
    border-color: white !important;
    border-bottom-width: 1px !important;
    box-shadow: inset 0px 0px 0px 0px white !important;
}

.cookie-link>a:hover {
    color: gray !important;
    border-color: gray !important;
    border-bottom-width: 1px !important;
    box-shadow: none !important;
}

#cookiealert {
    position: fixed;
    background-color: rgb(207, 207, 207);
    text-align: center;
    height: 80px;
    width: 700px;
    z-index: 1000;
    margin-left: calc(50vw - 350px);
    bottom: 1vh;
    border-radius: 5px;
}

@media screen and (max-width: 600px) {
    #cookiealert {
        height: 120px;
        width: 400px;
        margin-left: calc(50vw - 200px);
    }
}

#cookiealert>a {
    border-color: black !important;
    border-bottom-width: 1px !important;
    box-shadow: none !important;
}

#cookiealert>a:hover {
    color: rgb(71, 71, 92) !important;
    border-color: rgb(71, 71, 92) !important;
    border-bottom-width: 1px !important;
    box-shadow: none !important;
}

#btnalert {
    margin-top: 1vh;
    border-radius: 5px;
    border-width: 0px;
    background-color: rgb(71, 71, 92);
    color: aliceblue;
}

#btnalert:hover {
    background-color: grey;
}