.hidden { display: none; }

.notice * {
    box-sizing: border-box;
}

.notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index:100000;
    line-height: 2px;
}

.notice > .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: black;
    opacity: .85;
    line-height: 2px;
}

.notice > .content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.notice > .content p,
.notice > .content a.close {
    font-family: Arial;
    font-size: 11px;
    line-height: 1em;
    color: white;
}

.notice > .content a.link_activar_cookie{
    color: #F0F0F0;
    text-decoration: underline;
}
.notice > .content a.close {
    display: block;
    float: right;
    padding: 6px 10px;
    margin: 0 0 0 1em;
    #border: 1px solid white;
    text-decoration: none;
}

.notice > .content a.close:hover {
    background-color: white;
    color: black;
}