@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
#dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#dialog_fixed {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.bg-overlay-option {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    padding: 0;
    overflow-y: scroll;
    z-index: 10;
    background-color: #6637e93d;
}
#ToastSuccess {
    position: fixed;
    left: 50%;
    top: 8%;
    transform: translate(-50%, -50%);
}
.open {
    display: block;
}
.hidden-toast {
    display: none;
}
#test {
    background: rgba(190, 186, 189, 0.74);
}
.bg-overlay-quaternary-onion {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    padding: 0;
    overflow-y: scroll;
    z-index: 10;
    background-color: #25182169;
}