/**************************\
Basic Modal Styles
\**************************/

.modal__overlay {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	/* right: 0; */
	/* bottom: 0; */
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	justify-content: center;
	align-items: flex-end;
	z-index: 9999;
	overflow: hidden;
}

.modal__container {
	position: absolute;
	top: calc(50% - 9vh);
	left: 4%;
	/* margin-bottom: 4.5vh; */
	background-color: #fff;
	padding: 20px 6.4%;
	width: 92%;
	/* height: 18vh; */
	height: auto;
	border-radius: 16px;
	box-sizing: border-box;
	font-size: 1.67em;
	color: #000;
}

.modal__content {
	display: flex;
	justify-content: left;
	align-items: center;
	height: 59%;
	line-height: 1.5;
	font-weight: 400;
}

.modal__content2 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 59%;
	line-height: 1.5;
	font-weight: 400;
}

.modal__footer {
	display: flex;
	height: 41%;
	padding-top:20px;
}

.modal__footer button {
	width: 50%;
	font-weight: 600;
	color: #000;
}

.modal__btn {}

.modal__footer button.modal__btn2 {
	width: 100%;
}

.modal__btn-primary {
	position: relative;
}

.modal__btn-primary::after {
	position: absolute;
	top: calc(50% - 1vh);
	right: 0;
	width: 1px;
	height: 2vh;
	background: rgba(0,0,0,0.3);
	content: "";
}



/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes mmfadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes mmslideIn {
	from { transform: translateY(15%); }
	to { transform: translateY(0); }
}

@keyframes mmslideOut {
	from { transform: translateY(0); }
	to { transform: translateY(-10%); }
}

.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);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}