.micromodal {
	display: none;
}

.micromodal.is-open {
	display: block;	
	position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
	background: rgba(0, 0, 0, 0.85);
}

.micromodal__overlay {
  	position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.micromodal__container {
  	width: 100%;
	height: 100%;
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.micromodal iframe {
	position: absolute;
	display: block;
	border: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.micromodal[aria-hidden="false"] .micromodal__overlay {
	animation: microModalFadeIn .2s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal[aria-hidden="true"] .micromodal__overlay {
  animation: microModalfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal .micromodal__container {
	max-width: 100%;
}

.micromodal .micromodal__container,
.micromodal .micromodal__overlay {
	will-change: transform;
}

@keyframes microModalFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes microModalfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

/* MODAL HEADER */
header.modal__header {
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
  	justify-content: center;
  	align-items: center;
	z-index: 9999;
	pointer-events: none;
}

header.modal__header h2 {
	color: #0000001A;
    font-family: var(--wp--preset--font-family--bebas-neue-pro-semiexpanded);
	font-size: 4.5rem;
	font-weight: 800;
	letter-spacing: 3.75px;
    line-height: 1;
    text-align: center;
    -webkit-text-stroke: 2px #FBAA19;
    text-stroke: 2px #FBAA19;
	text-shadow: 0px 0px 35px rgba(251,170,25,0.25);
	text-transform: uppercase;
	margin: 0;
	z-index: 9999;
}

header.modal__header button {
	position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
	background: #0E1E1A;
	color: #fff;
	border: 0;
	padding: 0;
	margin: 0;
    font-size: 24px;
	width: 24px;
    height: 24px;
	z-index: 99999;
	line-height: 1;
	transition: .3s all;
	pointer-events: auto;
}

.modal__header .modal__close:before { content: "\2715"; }

header.modal__header button:hover {
	background: #EA5337;
	cursor: pointer;
}

@media (min-width: 600px) {
	header.modal__header h2 {
		font-size: 5rem;
	}
}

@media (min-width: 800px) {
	header.modal__header h2 {
		font-size: 6rem;
	}
	
	header.modal__header button {
		font-size: 32px;
		width: 32px;
    	height: 32px;
	}
}

@media (min-width: 1000px) {
	header.modal__header h2 {
		font-size: 7rem;
	}
}

@media (min-width: 1200px) {
	header.modal__header h2 {
		font-size: 8rem;
	}
	
	header.modal__header button {
		font-size: 48px;
		width: 93px;
    	height: 93px;
		padding: 20px;
	}
}

@media (min-width: 1400px) {
	header.modal__header h2 {
		font-size: 8.5rem;
	}
}

@media (min-width: 1600px) {
	header.modal__header h2 {
		font-size: 9.375rem;
	}
}