.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 9999;
    box-shadow: 0 -1px 10px 0 rgba(172, 171, 171, 0.3);
}

.cookie-consent--hidden {
    display: none !important;
}

.cookie-consent__container {
    max-width: 1440px;
    margin: auto;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
}

.cookie-consent__text {
    max-width: 800px;
    padding: 0 5px;
}

.cookie-consent__buttons {
    white-space: nowrap;
}

.cookie-consent__btn-accept,
.cookie-consent__btn-decline {
    cursor: pointer;
    border: none;
    outline: none;
    padding: 10px;
    font-weight: 600;
}

.cookie-consent__btn-accept:hover {
    opacity: 0.9;
}

.cookie-consent__btn-decline:hover {
    opacity: 0.9;
}

.cookie-consent .cookie-consent__btn-accept {
    color: #fff;
    background-color: #f58220;
    border: 1px solid #f58220;
}

.cookie-consent__btn-decline {
    color: #f58220;
    border: 1px solid #f58220;
}

@media (max-width: 900px) {
    .cookie-consent__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-consent__buttons {
        margin-top: 5px;
    }
}