.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;
}

.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;
}


@media(min-width: 1024px){
    #cookieConsentModal .modal-dialog {
        top: auto;
        bottom: 0;
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 80%;
    }

    #cookieConsentModal .modal-dialog .modal-header{
        padding: 0.2rem 1rem;

    }

    #cookieConsentModal .modal-dialog .modal-body {
        padding: 0.2rem 1rem;
    }

    #cookieConsentModal .modal-dialog .modal-body p{
        margin: 0;
    }

    #cookieConsentModal .modal-dialog .modal-footer {
        padding: .2rem 1rem;
    }
}