.dialog-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000069;
    z-index: 999;
}

.dialog-window {
    background: black;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    min-height: 200px;
    width: 100%;
    animation-name: dialog-appear;
    animation-timing-function: ease-in-out;
    animation-duration: .2s;
    border-color: white;
    border-style: solid none solid none;
    border-width: 1px;
}

@keyframes dialog-appear {
	from {
		width: 0%;
	}

	to {
		width: 100%;
	}
}