
.ucc-popup {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 95%);
    font-size: 16px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 10000;
}

.ucc-popup-content p,
.ucc-popup-content h2,
.ucc-popup-content legend,
.ucc-popup-content label {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}

.ucc-popup-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    gap: 10px;
    width: 800px;
    max-width: 100%;
}

.ucc-popup-content form {
    width: 800px;
    max-width: 100%;
}

.ucc-popup-content fieldset {
    margin: 0 0 20px;
}
.ucc_button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    width: auto;
    padding: 8px 12px;
    border: 2px solid #7e0926;
    background: #7e0926;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ucc_button:hover {
    text-decoration: none;
}

.ucc_button:focus-visible {
    outline: 3px solid #ffcc00;
    outline-offset: 2px;
}

.cookie-popup-title {
    color: #fff;
}

.ucc_buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.ucc_buttons button,
.ucc_buttons a {
    width: auto;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    color: #fff;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#cookie-consent-popup.hidden {
    display: none;
}

.ucc_change_settings_button {
    position: absolute;
    display: inline-flex;
    bottom: 0;
    right: 0;
    width: auto;
}

@media only screen and (max-width: 992px) {
    .ucc_buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        width: 100%;
    }

    .ucc_buttons button,
    .ucc_buttons a {
        width: 100%;
    }

}