#cookie-consent {
    background: #FFF;
    padding: 5px;
    border-radius: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

#cookie-consent.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

::selection {
    color: #fff;
    background: #229a0f;
}

#cookie-consent a:hover{
    opacity: .7;
}
#cookie-consent a{
    color: rgb(13 66 131);
    font-family: 'SM';
}
#cookie-consent p {
    color: rgb(17 24 39);
    margin: 0;
    text-align: left;
}

#cookie-consent button {
    padding: 7px 15px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    font-family: 'SM';
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgb(4 86 164);
}

#cookie-consent button {
    background: rgb(4 86 164);
    margin-right: 0;
}

#cookie-consent button.rejectButton {
    color: #FFF;
    background: transparent;
    border: 2px solid #d62922;
    text-decoration: none;
}

#cookie-consent img {
    max-width: 90px;
}

#consentHeader {
    font-size: .8rem;
    color: #FFF;
    font-weight: 600;
    margin-top: 10px;
}