.backgroundM{
position: fixed;
width: 100vw;
height: 100vh;
background-color: rgba(0,0,0,0.5);
top:0;
left: 0;
z-index: 10000;
backdrop-filter: blur(5px);
display: flex;
align-items: center;
justify-content: center;
}
.backgroundM .consentM{
background-color: #FFFFFF;
}
.backgroundM .consentM .content{
font-size: 15px;
line-height: 1.7em;
padding: 40px;
box-sizing: border-box;
}
.backgroundM .consentM .footDiv{
padding: 20px;
border-top: 1px solid #E4E4E4;
text-align: right;
}
.backgroundM .consentM .footDiv button{
background-color: transparent;
border: none;
font-size: 14px;
font-weight: 700;
padding: 20px;
line-height: 1;
cursor: pointer;
margin-left: 10px;
transition: all 0.5s ease-out 0s;
}
.backgroundM .consentM .footDiv button.buttonOk{
border: 1px solid #00a99d;
background-color: #00a99d;
color: #FFFFFF;
}
.backgroundM .consentM .footDiv button.buttonOk:hover{
color: #00a99d;
background-color: #FFFFFF;
}

.backgroundM .consentM .footDiv button.buttonCancel{
border: 1px solid #E4E4E4;
color: #484A47;
}