.consent-bar {
    position: fixed;
    bottom: 0;
    background-color: #f7f7f7;
    padding: 20px 24px;
    z-index: 9999;
    width: 100%;
}

.consent-bar__group {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 10px;
    gap: 30px;
}

.consent-bar__description p {
    color: inherit;
    font-size: 22px !important;
    font-weight: 300;
}

.consent-bar__buttons {
    display: flex;
    align-items: flex-end;
    gap: 10px
}

.consent-bar__buttons .btn {
    font-size: 22px;
    line-height: 24px;
    padding: 10px 29px;
    font-weight: 400;
}

.btn-reject {
    color: #ffffff;
    background: #f43232;
}

.btn-reject:hover {
    background: #b70000;
}

.btn-accept {
    background: #ffc05c;
    color: #ffffff;
}

.btn-accept:hover {
    background: #ff9c00;
}

@media (max-width: 768px) {
    .consent-bar__group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;    
    }

    .consent-bar__buttons {  
        margin: 0;
        justify-content: space-between;
        width: 100%;
    }

    .consent-bar__buttons .btn {
        white-space: nowrap;
        margin: 0;
        min-width: 100px;
        width: calc(50% - 10px);
    }
}