.cookie-popup {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    position: fixed;
    bottom: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;

    z-index: 1000;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-popup .popupContentContainer {
    width: 100%;
    max-width: 1010px;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    margin: 0 auto;
    padding: 15px 20px;
}

.cookie-popup p {
    margin: 0;
}

.cookie-popup a {
    color: #ff7f00;
    text-decoration: underline;
    overflow-wrap: anywhere;
}

.cookie-popup button,
.cookie-popup .cookieAcceptBtn {
    flex: 0 0 auto;

    background: #ff7f00;
    border: none;
    padding: 7px 12px;

    cursor: pointer;
    font-weight: bold;
    line-height: 1.2;

    border-radius: 4px;
}

.cookie-popup button:hover,
.cookie-popup button:focus,
.cookie-popup .cookieAcceptBtn:hover,
.cookie-popup .cookieAcceptBtn:focus {
    opacity: 0.9;
}

@media screen and (max-width: 640px) {
    .cookie-popup .popupContentContainer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 14px 16px;
    }

    .cookie-popup button,
    .cookie-popup .cookieAcceptBtn {
        width: 100%;
    }
}