.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(238,238,238, 0.9);
    padding: 10px 15px;
    z-index: 9999;
    color: black;
    box-shadow: 0 0 10px;
}
.cookie-consent.disruptive{
    display: flex;
    z-index: 1000;
    align-items: flex-end;
}
.cookie-consent p{
    margin-bottom: 5px;
}

.cookie-consent-buttons{
    display: flex;
    gap: 4px;
    text-align: left;
    color: black;
}

.cookie-consent-buttons .btn{
    font-size: 18px;
    padding: 3px 10px;
}

.cookie-consent-modal-bg{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0, 0.75);
}

.cookie-consent-modal{
    display: none;
    z-index: 1010;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}

.cookie-consent-modal-content{
    width: 500px;
    max-width: 100%;
    transform: translate(-50%);
    left: 50%;
    background: white;
    padding: 25px;
    border-radius: 5px;
    position: fixed;
}

.cookie-consent-close{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    cursor: pointer;
    padding: 0 10px;
}

.nopadding {
    padding: 0 !important;
}

@media screen and (max-width: 425px){
    .cookie-consent{
        padding: 5px 10px;
        font-size: 12px;
    }
    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent-buttons .btn{
        font-size: 12px;
        width: 100%;
        margin-bottom: 5px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .cookie-consent-buttons {
        flex-direction: column;
    }
    .cookie-consent-buttons .btn{
        font-size: 16px;
    }
}