
.cookie-consent-modal{
    height: auto;
    width: 100%;
   /* background-color: rgba(0,0,0,0.5);*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    margin: auto 0;
    align-items: flex-end;

    
}
.cookie-consent-modal.active{
    display: flex;
}
.cookiecontent{
    background-color: #fff;
    padding: 3pt;
    border-radius: 0px;
    border: 1px solid #ccc;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;


}
.btns1{
    display: flex;
    justify-content: flex-end;
    margin-top: 2em;

}
.btn1{
    border: 2px;
    outline: none;
    padding: .8em 1.5em;
    width: 100px;
    margin-right: 1em;
    border-radius: 15px;
    text-transform: uppercase;
    color: rgb(255,255,255);
    background-color: #255050;
}
.btn1-accept{
    background-color: rgb(0,185,124);
    color: #fff;
    
}