.AlertDialogOverlay{background-color:rgba(0,0,0,.5);position:fixed;inset:0;animation:overlayShow .15s cubic-bezier(.16,1,.3,1)}.AlertDialogContent{background-color:#fcfcfd;border-radius:6px;box-shadow:0 2px 10px rgba(0,0,0,.12);position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:90vw;max-width:500px;max-height:85vh;padding:25px;animation:contentShow .15s cubic-bezier(.16,1,.3,1)}.AlertDialogContent:focus{outline:none}.AlertDialogTitle{margin:0;color:#1a1523;font-size:17px;font-weight:500}.AlertDialogDescription{margin-bottom:20px;color:#6f6e77;font-size:15px;line-height:1.5}@keyframes overlayShow{0%{opacity:0}to{opacity:1}}@keyframes contentShow{0%{opacity:0;transform:translate(-50%,-48%) scale(.96)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}