#cookie-modal-surface {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

#cookie-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 7px solid white;
    width: 40%;
    min-width: 400px;
    min-height: 115px;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 5px #333F48 inset;
    font-size: 15px;
}

#cookie-modal-accept-button {
    bottom: 10px;
    left: 30px;
    padding: 10px;
    background-color:#333F48;
    color: white;

}