.result {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.result-content {
position:relative;
background-color: white;
padding: 32px;
border-radius: 20px;
text-align: center;
max-width: 343px;
box-sizing: border-box;
}
.result-content-m {margin: 20px 0 10px;}
.close {
position:absolute;
top:20px;
right:20px;
padding: 5px 10px;
border: none;
cursor: pointer;
}
.close:hover svg path {
fill: var(--text-blue);
}