/* assets/css/cookie-popup.css */
.cookie-popup {
    position: fixed;
    bottom: 20rem;
    left: 20rem;
    right: 20px;
    background: #fff;
    padding: 20rem;
    border: 1rem solid #ddd;
    box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.cookie-popup__content {
    max-width: 960rem;
    margin: 0 auto;
    text-align: center;
}

.cookie-popup__text {
    font-size: 14rem;
    margin-bottom: 15rem;
    color: #333;
}

.cookie-popup__link {
    color: #0073aa;
    text-decoration: underline;
}

.cookie-popup__btn {
    padding: 10rem 20rem;
    background: #0073aa;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14rem;
    transition: background 0.3s;
	border-radius: 3rem;
}

.cookie-popup__btn:hover {
    background: #005177;
}
