/**************************\
	Basic Modal Styles
\**************************/
.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal__container {
	background-color: #000;
	width: 100vw;
	height: 100vh;
	overflow-y: auto;
	box-sizing: border-box;
}

.modal__content {
	width: 100%;
	height: 100%;
}

.modal__close {
	position: absolute;
	z-index: 1;
	top: 56px;
	right: 56px;
	background: #353535;
	display: flex;
	align-items: center;
	border-radius: 9999px;
	gap: 12px;
	padding-left: 20px;
	font-family: "Nib Pro";
	font-size: 18px;
	font-style: normal;
	font-weight: 900;
	line-height: 18px;
}
.modal__close-x {
	display: flex;
	width: 52px;
	height: 52px;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	background: white;
	pointer-events: none;
}


/**************************\
	Demo Animation Style
\**************************/
@keyframes mmfadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		opacity: 0;
		/* transform: translateY(15%); */
	}

	to {
		opacity: 1;
		/* transform: translateY(0); */
	}
}

@keyframes mmslideOut {
	from {
		opacity: 1;
		/* transform: translateY(0); */
	}

	to {
		opacity: 0;
		/* transform: translateY(-10%); */
	}
}

.micromodal-slide {
	display: none;
}

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

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

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

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

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

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}