.wc-banner[hidden],
.wc-manage[hidden] {
    display: none !important;
}

.wc-banner {
    position: fixed;
    z-index: 999999;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px;
    color: #fff;
    background: #194898;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.22);
}

.wc-container {
    display: flex;
    width: min(1180px, 100%);
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wc-content {
    flex: 1 1 650px;
}

.wc-title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.wc-description {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.55;
}

.wc-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-button,
.wc-link {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 6px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.wc-button {
    border: 1px solid #fff;
}

.wc-button--accept {
    color: #194898;
    background: #fff;
}

.wc-button--refuse {
    color: #fff;
    background: transparent;
}

.wc-link {
    display: inline-flex;
    color: #fff;
    align-items: center;
    text-decoration: underline;
}

.wc-manage {
    position: fixed;
    z-index: 999998;
    right: 16px;
    bottom: 16px;
    padding: 9px 13px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: #194898;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
    font-size: 13px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .wc-banner {
        padding: 14px;
    }

    .wc-container {
        display: block;
    }

    .wc-actions {
        margin-top: 14px;
    }

    .wc-button {
        flex: 1 1 135px;
    }

    .wc-link {
        width: 100%;
        justify-content: center;
    }

    .wc-manage {
        right: 10px;
        bottom: 72px;
    }
}