.cookie-wrapper{
    position: fixed;
    bottom: 0px;
    width: 100%;
    background: #e8e7e7;
    padding: 20px;
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
    align-items: center;
    justify-content: center;
}
.cookie-btn{
    cursor: pointer;
    margin-left: 10px;
    border: 1px solid #336699;
    padding: 5px 10px;
}
.cookie-wrapper.checked{
    display: none;
}
@media(max-width:600px){
    .cookie-wrapper{
        font-size: 13px;
    }
    .cookie-btn{
        margin-top: 10px;
    }
}