.popup-cookies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

.popup-cookies-content {
    background-color: #fff;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.popup-cookies.show {
    visibility: visible;
    opacity: 1;
}

.popup-cookies button {
    background-color: #3a3a3a;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.popup-cookies button:hover {
    background-color: #555;
}

.popup-cookies-content p{
			color:#000;
		}