#cookiesTerms {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: -2px 0px 8px 8px #00000025;
    font-size: 14px;
    z-index: 9999;
}

#cookiesTermsContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#cookiesTermsContent>p {
    line-height: 1.5rem;
    color: #000;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
}

#cookiesTermsContent>p>span {
    font-weight: 800;
    font-size: 14px;
}

#cookiesTermsContent>p>a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

#cookiesTermsContent>p>a:hover {
    color: #0056b3;
    text-decoration: underline;
}

#cookiesBtnAccept,
#cookiesBtnReject {
    all: unset;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#cookiesTermsActions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

#cookiesBtnAccept {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;

    &:hover {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }
}

#cookiesBtnReject {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;

    &:hover {
        color: #fff;
        background-color: #5c636a;
        border-color: #565e64;
    }
}