#ms-cookie-banner {

    position: fixed;
    bottom:0;
    left:0;
    width:100%;

    background:#ffffff;

    border-top:1px solid #ddd;

    padding:20px;

    display:none;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    z-index:99999;

    box-shadow:0 -3px 15px rgba(0,0,0,.15);

    font-size:15px;

}


#ms-cookie-banner a {

    color:#8b4513;

    text-decoration:underline;

}


#ms-cookie-accept {

    background:#8b4513;

    color:white;

    border:none;

    padding:12px 30px;

    cursor:pointer;

    border-radius:5px;

}


#ms-cookie-accept:hover {

    opacity:.85;

}


@media(max-width:768px){

    #ms-cookie-banner{

        flex-direction:column;

        text-align:center;

    }

}