
.cookie-bar {
    -moz-box-sizing:border-box; /* Firefox 28 and earlier*/
    box-sizing:border-box;
}

.full-wrapper {
    display: none;
    height: 92px;
    position: fixed;
    z-index: 100000;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.cookie-bar {  
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 21px 42px;
    background: rgba(241,242,242,0.9);
    color: #000;
    font-size: 12px;
    width: 100%;
    overflow: hidden;
    text-align: justify;

    display: flex;
    align-items: center;
    justify-content: center;
}

.content-cookie {
    width: 88%;
    float:left;
    line-height: 20px;
    font-size:13px;
}

.cookie-bar p a {
    transition: .3s;
    font-style: italic;
    text-decoration: none;
}

.cookie-bar p a:hover {
    color: #006AB1;
    text-decoration: none;
}

.cookie-bar.remove {
    display: none;
}

.cookie-accept {
    width: 12%;
    float: left;
    line-height: 20px;
    text-align: center;
}

.close-cookie {
    cursor: pointer;
    width: 80px;
    background-color: #006AB1;
    border: 1px solid transparent;
    text-align: center;
    padding: 10px;
    float: right;
    transition: .3s;
}

.close-cookie:hover {
    background-color: #00528a;

}

.close-cookie a{
    color: white;
    display: block;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
        letter-spacing: 2px;
}

.close-cookie:hover a{
    color: white;
}

.cookie-law{

    font-style:italic;
    font-size:12px;

}

/* -------- RESPONDIVE DESIGN ------- */
@media (max-width: 960px){
    .full-wrapper{
        height: 143px;
    }

    .cookie-bar {    
        width: 100%;
        padding: 18px 32px 0;
    }
    
    .content-cookie{
        width: 100%;
    }
    
    .cookie-accept {
        width: 100%;
    }
    
    .close-cookie{
        display: inline-block;
        float: none;
    }
}

@media (max-width: 600px){
    .full-wrapper{
        height: 225px;
    }
}