#cookie-notice .cookie-notice-container{
/*    background-color: rgba(0, 0, 0, 0.85) !important;
    color: #fff;*/
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #000;
    padding: 15px;
    z-index: 100000;
}

#cookie-notice {
    display: block;
    /*visibility: hidden;*/
    position: fixed;
    /*min-width: 100%;*/
    height: auto;
    z-index: 100000;
    font-size: .9rem;
    /*line-height: 20px;*/
    color: #fff;
    left: 0;
    /*text-align: center;*/
    bottom: 0;
    /*min-width: auto;*/
    width: 100%;
    padding: 15px;
}
@media (min-width: 576px) {
    #cookie-notice {
        width: 450px;
        min-width: auto;
        padding: 3rem;
    }
}
#cookie-notice .h4{
    margin-top: .5em;
    display: block;
}
#cookie-notice p{
   line-height: 1.5em;
   margin-top: .5em;
}
#cookie-notice .cookie-notice-container{
    /*text-align: center;*/
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: start;
    border: 1px solid #000;
    border-radius: 5px;
}

body.dark #cookie-notice .cookie-notice-container{
    background-color: rgba(0, 0, 0, 0.9) !important;
    color: #fff;
    border: 1px solid #fff;
}
#cookie-notice #cn-ico{
    font-size: 2.2rem;
    display: inline-block;
    margin-right: 10px;
}   
.dark #cookie-notice #cn-ico .ico-color{
    fill: #fff;
}
#cn-notice-text a{
    /*margin-top: 2rem;*/
    display: block;
}
#cookie-notice .cn-button {
    display: block;
    width: 100%;
}
#cookie-notice #cn-accept-cookie-extended{
    margin-bottom: 10px;
}
#cookie-notice .cn-button.btn-light{
    border-color: var(--custom-color);
    color:  var(--blue-color);
}