/**
 * modal
 */

.app-modal {
	display: none;
	align-items: flex-start;
	justify-content: center;
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	z-index: 4000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.app-modal__backdrop {
	display: flex;
	align-items: center;
	justify-content: center;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(56, 68, 74, .85);
}
