.cookie-popup {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100000;
    display: none;
    width: 100%;
    padding: 20px 0;
    background: rgb(13 55 59);
    font-family: Poppins, sans-serif;
    box-shadow: 0 -6px 18px rgb(0 0 0 / 18%);
}

.cookie-popup__content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 1310px;
    width: 100%;
    margin: 0 auto;
    padding: 8px 15px;
    box-sizing: border-box;
    line-height: 20px;
}

.cookie-popup__info {
    flex: 1 1 auto;
}

.cookie-popup__action {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.cookie-popup__title {
    margin: 0 0 8px;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.cookie-popup__text {
    color: #fff;
    font-size: 16px;
}

.cookie-popup__text a {
    color: #fff !important;
    text-decoration: underline;
}

#btn-accept-cookies {
    display: inline-block;
    padding: .375rem .75rem;
    border: 1px solid #6c757d;
    border-radius: .25rem;
    background-color: #6c757d !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#btn-accept-cookies:hover,
#btn-accept-cookies:focus {
    background-color: #5a6268 !important;
    border-color: #545b62;
    color: #fff !important;
}

@media (max-width: 767px) {
    .cookie-popup {
        padding: 16px 0;
    }

    .cookie-popup__content {
        flex-direction: column;
        gap: 16px;
    }

    .cookie-popup__title {
        font-size: 16px;
    }

    .cookie-popup__text {
        font-size: 13px;
    }

    .cookie-popup__action {
        width: 100%;
    }

    #btn-accept-cookies {
        width: 100%;
    }
}
