.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}
#cookieConsentModal a{
    text-decoration: underline;
}
.cookie-consent-banner button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.cookie-consent-banner button:hover {
    background-color: #218838;
}
.cookie-consent-banner .btn-primary {
    background-color: #0ab285;
    border-color: #0ab285;
}
.cookie-consent-content {
    text-align: center;
    display: flex;
    justify-content: center;
    text-align: start;
    align-items: center;
    gap: 35px;
    font-size: 20px;
    line-height: 31px;
    color: #000;
}
.cookie-consent-title {
    margin: 0 0 10px 0;
    font-size: 22px;
    line-height: 1.2;
}
.cookie-consent-footer {
    margin: 0;
}
.cookie-consent-btn {
    background: #fff;
    border: 1px solid #000;
    padding: 8px 25px;
    border-radius: 0;
    color: #000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: #00ADDC !important;
    width: 152px;
    height: 48px;
    color: #fff;
    font-size: 20px !important;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-consent-btn:hover {
    background: #eee;
}

@media(max-width: 768px){
    .cookie-consent-content {
        flex-flow: column;
        padding-top: 0;
    }
}