.hidden {
display: none;
}
[role="dialog"] {
box-sizing: border-box;
padding: 16px;
border: 1px solid #000;
background-color: #fff; }
[role="dialog"] *:first-child {
margin-top: 0;
}
@media screen and (min-width: 640px) {
[role="dialog"] {
min-height: auto;
max-width: 600px;
box-shadow: 0 19px 38px rgb(0 0 0 / 12%), 0 16px 12px rgb(0 0 0 / 22%);
}
}
.dialog_label {
text-align: center;
}
.dialog_close_button {
float: right;
position: absolute;
top: 10px;
left: 92%;
height: 25px;
}
.dialog_close_button img {
border: 0;
}
.dialog_desc {
padding: 10px 20px;
}  .dialog-backdrop {
display: none;
position: fixed;
overflow-y: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
background: rgb(0 0 0 / 55%);
}
@media screen and (min-width: 640px) {
.dialog-backdrop.active {
padding: 0;
}
}
.dialog-backdrop.active {
z-index: 99999;
display: flex !important;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 16px;
}
.no-scroll {
overflow-y: auto !important;
} .has-dialog {
overflow: hidden;
}