body {
    background: none;
}
.cookies-notice {
	display: none;
    position: fixed;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    padding: 16px 0;
    width: 100%;
    justify-content: center;
    z-index: 9999;
}
.cookies-notice a {
	color: #fff;
}
.cookies-notice > i.icon-close {
    position: absolute;
    right: 16px;
    top: 12px;
    transform: translate(0, -50%);
    cursor: pointer;
}
.cookies-notice > i.icon-close:before {
    content: "x";
    font-size: 12px;
}
.cookies-notice p {
    padding: 0 50px;
    width: 100%;
    font-size: 10px;
    margin: 0;
    line-height: 1.8;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    .cookies-notice p {
        padding: 0 20px;
     
    }

}
@media only screen and (max-width: 480px) {
    .cookies-notice {
        position: relative;
        background-color: rgba(0, 0, 0, 1);
    }
}
@media only screen and (max-width: 450px) {
    .cookies-notice {
        padding: 10px 0;
    }
}  
