.cookie-popup {
    position: fixed;
    bottom: 0;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 360px;
    margin: 0 10px 10px 10px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, .3);
    border-radius: 8px;
    transform: translateY(150%);
    transition: transform .2s ease;
}

.cookie-popup--show {
    transform: translateY(0);
}

.cookie-popup__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-popup__text {
    font-size: 13px;
}

.cookie-popup__text h5 {
    margin-bottom: 5px;
}

.cookie-popup__text p {
    margin-bottom: 0;
    white-space: nowrap;
}

.cookie-popup__text a {
    color: #1D8C9C;
    text-decoration: underline;
}

.cookie-popup__text a:hover {
    text-decoration: none;
}

.cookie-popup__btn {
    width: fit-content;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
}