.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.modal.is-open {
    display: block;
}
	.modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    height: auto;
    max-width: 800px;
    width: 100%;
	}
	button.modal__close {
		background: transparent;
    color: var(--e-global-color-84585a8);
    padding: 0 .5rem;
    text-align: right;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
	}
	.modal__title {
		text-align: center;
	}
	.modal__content {
		margin: 0;
	}