.consent-bar {
    position: fixed;
    bottom: 0;
    background-color: #e2f0fe;
    border: 1px solid #e5e5e5;
    padding: 16.5px 24px;
    z-index: 9999;
    box-shadow: 0 -1px 10px 0 #acabab4d;
    width: 100%;
}

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

.consent-bar__description p {
    color: inherit;
    font-size: 14px !important;
    margin: 0 !important;
}

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

.consent-bar__buttons .btn {
    font-size: 14px;
    line-height: 24px;
    padding: 8px 27px;
    font-weight: 500;
    margin: 0 !important;
}

.btn-reject {
    color: #3e6be0;
    background: transparent;
    border: 2px solid #3e6be0;
}

.btn-reject:hover {
    color: #3e6be0;
    background: transparent;
}

.btn-accept {
    background: #3e6be0;
    color: #ffffff;
    border: 2px solid #3e6be0;
}

@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);
    }
}