.pop-opened--html {
	overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1500px){
	.pop-opened--html {
		margin-right: 15px;
	}
}

.pop-wrapper {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
    background: rgba(0, 0, 0, 0.85);
	transition: all 0.3s;
	opacity: 0;
	z-index: 100000000;
}
.pop-wrapper--opened {
	visibility: visible;
	opacity: 1;
}
.pop-aligner {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	height: 100%;
}
.pop-closer {
	border: none;
	border-radius: 0;
	line-height: 1;
	font-weight: 500;
	font-size: 28px;
	/* background: rgba(255,255,255, 0.3); */
	background: none;
	color: #fff;
	position: absolute;
	top: 1%;
	right: 1%;

    background: #404040;
    border-radius: 4px;
    transition: all 0.2s;
    width: 50px;
    height: 50px;
    top: 50px;
    right: 50px;
    font-weight: 600;
    font-size: 40px;
}
.pop-closer:hover {
    color: var(--bg-secondary);
    transition: all 0.2s;
}

.pop-closer--outer {
	/* top: -5%; */
	top: 0;
	/* right: -10%; */
	right: -40px;
}
.pop-closer--inner {
	/* top: -5%; */
	top: 5%;
	right: 5%;
}


/* TEMP */
.pop {
	transform: scale(0.2);
	transition: all 0.3s;
	border-radius: 10px;
	/* overflow: hidden; */
	/* min-width: 570px; */
	position: relative;
	background-color: #fff;
}
.pop--opened {
	transform: scale(1);
}
