
.unmodal {
	border-radius: 2.5px;
	box-sizing: border-box;
	display: none;
	height: 100%;
	max-height: 700px;
	max-width: 1000px;
	overflow: hidden;
	overflow: visible;
	position: fixed;
	width: 100%;
	z-index: 2200;
	padding: 36px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

@media (max-width: 569px) {
	.unmodal {
		height: 100% !important;
	}
}

@media (min-width: 570px) {
	.unmodal {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		right: auto;
		bottom: auto;
	}
}

.unmodal .unmodal-content-wrapper {
	box-shadow: 0 50px 50px -30px rgba(0, 0, 0, .2), 0 30px 50px 0 rgba(0, 0, 0, .15);
	height: 100%;
	position: relative;
	background: #fff;
	border-radius: 2px;
	opacity: 0;
}

.unmodal.show-unmodal-with-animation .unmodal-content-wrapper {
	opacity: 1;
	animation-duration: .2s;
	backface-visibility: hidden;
	animation-name: unmodalfadeIn;
	animation-timing-function: ease-in-out;
}

.unmodal .unmodal-content {
	height: 100%;
	overflow-y: auto;
}

@keyframes unmodalfadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

.unmodal-overlay {
	background: rgba(20, 22, 24, .6);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2199;
}

.unmodal-overlay.loading:before {
	background-repeat: no-repeat;
	background-position: center;
	position: fixed;
	top: 36px;
	left: 36px;
	right: 36px;
	bottom: 36px;
	content: "";
	z-index: 2201;
	background-image: url("https://cdn-backk.nitrocdn.com/RCVGTHvAZEbkEPkwnaSIvIdssZIAflst/assets/images/source/rev-3f66cf1/kaiser-brauerei.de/wp-content/themes/uncode/library/img/oval-anim-dark.svg");
}

.unmodal-close {
	color: #fff;
	cursor: pointer;
	line-height: 0;
	position: absolute;
	right: -27px;
	top: 0;
	z-index: 2200;
}

body.rtl .unmodal-close {
	right: auto;
	left: -27px;
}

.unmodal-close:before {
	content: "";
	font-family: uncodeicon !important;
	font-size: 18px;
	transition: all 400ms cubic-bezier(.785, .135, .15, .86);
	display: inline-block;
}

.unmodal-close:hover:before {
	transform: rotate(180deg);
}

.uncode-unmodal-overlay-visible .main-container {
	z-index: auto !important;
}

.uncode-unmodal-body-disable-scroll {
	overflow-y: hidden !important;
}
