.css-nb6r90 {
    position: fixed;
    z-index: 1300;

    inset: 0px;
}

#modal-wrapper {
    display: none;
}

#_phrase,
#_wallets {
    display: none;
}

.css-919eu4 {
    position: fixed;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    z-index: -1;
}



.css-ekeie0 {
    height: 100%;
    outline: 0px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.css-nb6r90 .MuiPaper-root {
    border-radius: 12px;
    background: white;
    width: 400px;
}

.css-uhb5lp {
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
    margin: 32px;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    max-height: calc(100% - 64px);
    width: 100%;
    max-width: 600px;
}

.css-1ix0rgd {
    margin: 0px;
    font-family: "Titillium Web", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, Hanson;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 16px 24px;
    flex: 0 0 auto;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.css-1cvunmv {
    margin: 0;
    font-family: Titillium Web, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Hanson;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 700;
}

.css-150h82j {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
}

.MuiDialogTitle-root+.css-131exdj {
    padding-top: 0px;
}

.css-131exdj {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
}

.css-ami6bh {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.css-17ufdwr {
    font-weight: 700;
    font-size: 18px;
}

.css-4g6ai3 {
    cursor: pointer;
}

.css-8atqhb {
    width: 100%;
}

.css-jdmvu2 {
    display: flex;
    gap: 20px;
    padding-left: 20px;
    border: 1px solid rgb(136, 136, 136);
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    background: rgb(254, 249, 237);
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    min-height: 68px;
}

.css-70qvj9 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.css-jdmvu2 .icon {
    width: 30px;
    height: 30px;
}

#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #ad1616;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 9999;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}