.micromodal-slide {
	display: none;
}
.micromodal-slide.is-open {
	display: block;
	position: relative;
	z-index: 99999999;
}
.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal__container {
	background-color: #fff;
	overflow-y: auto;
	padding: 20px;
	max-height: calc(100vh - 120px);
	margin: 0 12px;
}
.modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.modal__title {
	margin: 0;
}
.modal__close {
	background: 0 0;
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	padding: 0;
}
.modal__close:before {
	content: "\2715";
	font-weight: 600;
	font-size: 20px;
}
@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[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}
.modal__container {
	color: #fff;
	background: #000;
	font-weight: 900;
	line-height: 1.4;
}
.modal a,
.modal__close {
	color: #fff;
}
.modal a {
	text-decoration: underline;
}
.modal a:hover {
	text-decoration: none;
}
.modal__title {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 34px;
	letter-spacing: 0.05em;
	line-height: 1;
}
.modal input[type="submit"],
.modal__btn {
	width: 100%;
}
.modal__content button,
.modal__content input {
	font-weight: 900;
	letter-spacing: 0.025em;
	font-size: 19px;
	text-align: center;
}
.modal__content ::-webkit-input-placeholder {
	text-transform: capitalize;
}
.modal__content ::-moz-placeholder {
	text-transform: capitalize;
}
.modal__content :-ms-input-placeholder {
	text-transform: capitalize;
}
.modal__content :-moz-placeholder {
	text-transform: capitalize;
}
.modal__content button,
.modal__content input[type="submit"] {
	color: #000;
}
.modal__footer .modal__btn {
	letter-spacing: 0.025em;
	font-size: 15px;
	background: 0 0;
	border: 2px solid #fff;
}
.modal__footer .modal__btn:hover {
	color: #fff;
	border-color: #fff;
}
.modal__container {
	text-align: center;
	padding: 56px 16px 36px;
	max-width: 576px;
}
@media screen and (min-width: 600px) {
	.modal__container {
		padding: 60px 60px 40px;
	}
}
.modal__header {
	margin-bottom: 20px;
}
.modal__close {
	right: 8px;
}
.modal__content input:not([type="checkbox"]):not([type="radio"]) {
	min-height: 42px;
}
.modal__footer {
	margin-top: 12px;
}
.modal__footer .modal__btn {
	min-height: 42px;
}
