* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

/* body {
    margin: 0;
    font-family: sans-serif;
} */

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    /* font-family: sans-serif; */

}

.modal-container.is-active {
    display: flex;
}

.success-modal {
    background-color: #fff;
    padding: 2em 3em;
    text-align: center;
    border-radius: .5em;
    width: fit-content;
    height: fit-content;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.modal-image {
    width: 40px;
    height: 40px;
    margin: 0 auto 2em;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #48DB71;
    padding: 11px 10px 2px;
}

h1 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: .5em;
}

p {
    margin-bottom: 2em;
    color: #666;
}

.m-button {
    font-size: 1.25em;
    font-weight: bold;
    background-color: #000;
    border: none;
    padding: .5em 1em;
    color: #fff;
    border-radius: .25em;
    cursor: pointer;
    margin: 0 .1em;
}

.m-button--primary {
    background-color: green;
}

.m-button--outline-danger {
    background-color: transparent;
    color: red;
    border: 1px solid red;
}