.cookie_notification {
    position: fixed;
    width: 100%;
    padding: 3px 1rem 3px 5px;
    box-shadow: 0px 2px 2px rgba(127, 127, 127, 0.5);
    background: linear-gradient(to bottom, #ffffff 0%,#f3f3f3 50%,#ededed 51%,#ffffff 100%);
    text-align: center;
    vertical-align: middle;
    z-index: 10;
    font-size: 14.4px;
}
.cookie_notification.mobile {
    top: 0;
    min-width: initial;
    display: flex;
}
.cookie_notification + div {
    background-color: #40affa;
    padding: 3px;
}
.cookie_notification span {
    color: #333;
    padding-top: 5px;
    display: inline-block;
    padding: 0.5rem 3rem 0.5rem 1.5rem;
}
.cookie_notification a {
    font-weight: normal;
}
.cookie_notification.mobile span {
    max-width: 80%;
}
.close_notification {
    float: right;
    position: fixed;
    top: 0.7rem;
    right: 1.5rem;
}
.close_notification a:not(:first-child) {
    margin-left: 5px;   
}
.close_notification a {
    color:  #fff; 
    padding: 0.15rem 0.5rem;
    border-radius: 5px;    
}
.close_notification a[data-accept="true"] {
    color:  #fff; 
    padding: 0.15rem 0.5rem;
    background: green;
    border-radius: 5px;    
}
.close_notification a[data-accept="false"] {
    color:  #fff; 
    padding: 0.15rem 0.5rem;
    background: red;
    border-radius: 5px;    
}
.close_notification a:hover{
    cursor: pointer;
    text-decoration: none;
    background-color: #333;
    -webkit-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
    color: #fff;
}
.close_notification:active{background: #fff; color:#e45857;}
@media handheld {
    .cookie_notification {
        bottom: 0px;
        min-width: auto;
    }
    .cookie_notification span {
        font-size: 12px;
        font-weight: normal;
    }
}
@media handheld and (max-width: 80em) {
    .cookie_notification,
    .cookie_notification + div {
        width: 100%;
        height: 76px;
    }
}
