.cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    padding: 16px 20px;
    color: #fff;
    background: rgba(44, 51, 24, .96);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .2);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-consent__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.cookie-consent__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 16px;
}

.cookie-consent__link {
    color: #fff;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-consent__link:hover {
    color: #dce8a8;
}

.cookie-consent__accept {
    display: inline-block;
    padding: 10px 22px;
    color: #fff;
    background: #789314;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-consent__accept:hover {
    color: #fff;
    background: #4b5a18;
    text-decoration: none;
}

.legal-consent {
    margin-bottom: 0;
}

.legal-consent label,
.legal-consent__label {
    display: inline;
    font-weight: normal;
}

.legal-consent__label a {
    text-decoration: underline;
}

.activation-code .activation-code-form__input--consent {
    margin-bottom: 16px;
}

.activation-code .legal-consent input[type=checkbox] {
    width: auto;
    height: auto;
    margin-right: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
}

@media (max-width: 767px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .cookie-consent__actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
