.overlay {
    display: none;
    color: black;
    font-family: "Helvetica Neue", SegoeUI,  Helvetica, Roboto, sans-serif;
    font-size: 1.5em;
}
.overlay .flex.horizontalCenter{
    align-items: center;
}
.overlay .flex{
    display: flex;
}

.overlay.open {
    display: flex;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    animation-name: appear;
    animation-duration: 1s;
}
.overlay .loadingContainer{
    width: 10vw;
    height: 10vw;
    margin: auto;
}
.overlay .flex.center{
    justify-content: center;
}
.loading {
    width: 100%;
    height: 100%;
    animation-name: rotation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.check {
    width: 3em;
    height: 3em;
    background-image: url("../icon/feather/check.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.close{
    background: maroon;
    border-radius: 100%;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
}
.overlay .center {
    text-align: center;
    margin: auto;
}
.overlay .flex {
    display: flex;
}

.overlay .flex.between {
    justify-content: space-between;
}

.overlay .flex.left {
    justify-content: left;
}

.overlay .flex.center {
    align-items: center;
    justify-content: center;
}

.overlay .flex.column {
    flex-direction: column;
    display:inline-block;
    padding: 10px;
    background-color: white;
    box-shadow: 1px 1px 10px black;
    border-radius: 3px;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}