/*Cookie bar*/
.cookie-bar{
    height: 40px;
    background-color: rgba(40,40,40,0.85);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    font-size: 14px;
    z-index: 10000002;
}
.cookie-content{
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cookie-bar a{
    color:white;
    text-decoration: underline;
}
.cookie-bar button{
    margin: 0px;
    margin-left: 10px;
    padding: 5px 20px 5px 20px;
    border: 1px solid #666;
    font-size: 14px;
}
.cookie-buttons{
    margin-left:10px;
}
@media (max-width:1200px) {
    .cookie-bar{
        height:60px;
        font-size: 12px;
        display:block;
        text-align: center;
    }
    .cookie-bar button{
        font-size: 12px;
    }

    .cookie-content{
        height: 60px;
    }
}

@media (max-width:820px) {
    .cookie-bar{
        font-size: 10px;
    }
    .cookie-bar button{
        font-size: 10px;
        margin-top: 5px;
    }
    .cookie-buttons{
        margin-left:0px;
        margin-right:10px;
    }
}