.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.modal__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

.modal__container {
  background-color: #fff;
  padding: 1rem;
  border-radius: 4px;
  min-width: 50%;
  min-height: 50%;
  padding-top: 25px;
}
.modal__content
{
	margin-top: 15px;
}
.modal__title {
	display: inline;
}
.modal__close {
	float: right;
	margin-left: 20px;
	font-size: 26px;
	color: #b9b9b9 !important;
}
.modal__close:hover {
  color: #333 !important;
}
.modal-actions-button-container
{
	margin-top: 50px;
	display: block;
}