.cookie-popup {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    left: 0;
    padding: 20px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    z-index: 9999;
}

.cookie-popup.bottom {
    bottom: 85px;
}
.cookie-popup.center {
    top: 50%;
    transform: translate(-50%, -50%);
}

.cookie-popup-inner {
	display:flex;
	flex-wrap:no-wrap;
    align-items:center;
    gap:10px;
}

.cookie-popup-inner p {
	margin-bottom:0;
}
#cookie-popup a {
    color: inherit;
    text-decoration: underline;
    font-size: inherit;
    font-weight: inherit;
}
#cookie-popup button {
    width: max-content;
    font-family: inherit;
}