@charset "utf-8";

#dialogOverlay {
	padding: 0;
	margin: 0;
	border: none;
	display: none;
	position: fixed;
	z-index: 300;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	justify-content: center;
	align-items: center;
}
#dialogOverlay.dialog--active{
	display: flex;
}
#dialogWrapper {
	width: fit-content;
	height: fit-content;
	box-shadow: 0px 10px 50px 25px rgba(150, 150, 150, 0.15);
}
#dialog_exit_holder{
	height: 0;
	width: 0;
	position: relative;
    top: -2rem;
    left: calc(100% + 1rem);
	cursor: pointer;
}
#dialog_exit{
	width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue);
    border-radius: 100px;
    color: white;
    padding: .5rem;
}
@media only screen and (max-width: 900px) {
	#dialogOverlay{
	}
	#dialogWrapper{
		overflow: auto;
		max-height: 100vh;
	}

}
