/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ===== Google Font Import - Prompt ===== */
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@200;300;400;500;600;700;800;900&display=swap");

/* Global */
:root {
	--text-primary-color: #41240f;
	--primary--color: #41240f;
	--primary: rgb(255, 152, 79);
	--black--color: rgb(0, 0, 0);
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: "Prompt", sans-serif;
	/* transition: all 0.4s ease; */
}

/* Loading page animation */
.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 100vh;
	min-width: 100vw;
	background-color: #f2ead3;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
	opacity: 1;
	position: fixed;
}
.wrapper[data-loading="0"] {
	opacity: 0;
}
.wrapper[data-loading="0"] .cardq {
	display: none;
}
.wrapper .cardq {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 24px;
	border-radius: 5px;
	min-height: 300px;
	min-width: 400px;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader {
	border-radius: 50%;
	position: relative;
	margin: 50px;
	display: inline-block;
	height: 0px;
	width: 0px;
}

.loader span {
	position: absolute;
	display: block;
	background: #ddd;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	top: -20px;
	-webkit-perspective: 100000px;
	        perspective: 100000px;
}
.loader span:nth-child(1) {
	left: 60px;
	-webkit-animation: bounce2 1s cubic-bezier(0.04, 0.35, 0, 1) infinite;
	        animation: bounce2 1s cubic-bezier(0.04, 0.35, 0, 1) infinite;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	background: #41240f;
}
.loader span:nth-child(2) {
	left: 20px;
	-webkit-animation: bounce2 1s cubic-bezier(0.04, 0.35, 0, 1) infinite;
	        animation: bounce2 1s cubic-bezier(0.04, 0.35, 0, 1) infinite;
	-webkit-animation-delay: 0.2s;
	        animation-delay: 0.2s;
	background: #a0855b;
}
.loader span:nth-child(3) {
	left: -20px;
	-webkit-animation: bounce2 1s cubic-bezier(0.04, 0.35, 0, 1) infinite;
	        animation: bounce2 1s cubic-bezier(0.04, 0.35, 0, 1) infinite;
	-webkit-animation-delay: 0.4s;
	        animation-delay: 0.4s;
	background: #e5890a;
}
.loader span:nth-child(4) {
	left: -60px;
	-webkit-animation: bounce2 1s cubic-bezier(0.04, 0.35, 0, 1) infinite;
	        animation: bounce2 1s cubic-bezier(0.04, 0.35, 0, 1) infinite;
	-webkit-animation-delay: 0.6s;
	        animation-delay: 0.6s;
	background: #9d5c0d;
}

@-webkit-keyframes bounce2 {
	0%,
	56%,
	100% {
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
	25% {
		-webkit-transform: translateY(-30px);
		        transform: translateY(-30px);
	}
}

@keyframes bounce2 {
	0%,
	56%,
	100% {
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
	25% {
		-webkit-transform: translateY(-30px);
		        transform: translateY(-30px);
	}
}

/* End Loading page animation */

/* Navbar Content */
.navbar-logo {
	width: 10%;
	height: auto;
	cursor: pointer;
}
.nav-item {
	padding: 20px 15px 7px 15px;
	cursor: pointer;
}
.nav-item::after {
	display: block;
	content: "";
	border-bottom: solid 3px var(--primary--color);
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	transition: -webkit-transform 0.2s ease-in-out;
	-o-transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.nav-item:hover::after,
.nav-item.active::after {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
}
/* End Navbar Content */

/* Button */
.button {
	background: none;
	border: none;
	margin: 0;
	border-radius: 7px;
	padding: 7px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--primary--color);
}
.button-primary {
	border: 2px solid var(--primary--color);
	border-radius: 7px;
	background-color: white;
	color: var(--primary--color);
	padding: 7px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.button-primary-sm {
	border: 2px solid var(--primary--color);
	border-radius: 7px;
	background-color: white;
	color: var(--primary--color);
	padding: 3px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: small;
}
.button-primary:hover,
.button-primary-sm:hover {
	color: #fff;
	background-color: var(--primary--color);
}
/* End Button */

/* Fade Animation */
.section-fade {
	position: relative;
	-webkit-transform: translateY(150px);
	    -ms-transform: translateY(150px);
	        transform: translateY(150px);
	opacity: 0;
	top: 0;
	-webkit-transition: 0.7s all ease;
	-o-transition: 0.7s all ease;
	transition: 0.7s all ease;
}
.section-fade.active {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
}
/* End Fade Animation */

/* Section */
.section {
	position: relative;
	padding-bottom: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
/* EndSection */

/* Register Section */
.register {
	background-color: rgb(255, 238, 212);
}

/* Input form */
.form-group.input-material {
	position: relative;
	margin-top: 45px;
}
.form-group.input-material label {
	color: var(--primary--color);
	font-size: 16px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	bottom: 1px;
	-o-transition: 0.2s ease all;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}
.form-group.input-material textarea.form-control ~ label {
	bottom: 90%;
	bottom: calc(100% - 38px);
}
.form-group.input-material .form-control,
.form-group.input-material .form-select {
	border: none;
	border-bottom: 2px solid var(--primary--color);
	border-radius: 0px;
	background-color: transparent;
	padding-left: 0px;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.form-group.input-material .form-control:required ~ label::after,
.form-group.input-material .form-select:required ~ label::after {
	content: "*";
	color: #dc3545;
	padding-left: 2px;
	font-size: 0.8em;
}
.form-group.input-material .form-control:focus,
.form-group.input-material .form-select:focus,
.form-group.input-material .form-control[value]:not([value=""]),
.form-group.input-material .form-select[value]:not([value=""]) {
	border-bottom-color: var(--primary--color);
	color: #000;
}
.form-group.input-material .form-control:focus ~ label,
.form-group.input-material .form-select:focus ~ label,
.form-group.input-material .form-control[value]:not([value=""]) ~ label,
.form-group.input-material .form-select[value]:not([value=""]) ~ label {
	top: unset;
	bottom: 100%;
	bottom: calc(100% - 5px);
	font-size: 14px;
	color: var(--primary--color);
	font-weight: 500;
}
.form-group.input-material .form-control:focus.invalid,
.form-group.input-material .form-select:focus.invalid,
.form-group.input-material .form-control.invalid,
.form-group.input-material .form-select.invalid,
.form-group.input-material .form-control:focus.parsley-error,
.form-group.input-material .form-select:focus.parsley-error,
.form-group.input-material .form-control[value]:not([value=""]).parsley-error,
.form-group.input-material .form-select[value]:not([value=""]).parsley-error {
	border-bottom-color: #dc3545;
}
.form-group.input-material .form-control:focus.invalid ~ label,
.form-group.input-material .form-select:focus.invalid ~ label,
.form-group.input-material .form-control.invalid ~ label,
.form-group.input-material .form-select.invalid ~ label,
.form-group.input-material .form-control:focus.parsley-error ~ label,
.form-group.input-material .form-select:focus.parsley-error ~ label,
.form-group.input-material .form-control[value]:not([value=""]).parsley-error ~ label,
.form-group.input-material .form-select[value]:not([value=""]).parsley-error ~ label {
	color: #dc3545;
}
.form-group.input-material .form-select {
	background-position: right 0 center;
	padding-left: 0;
}
.form-group.input-material .parsley-errors-list {
	color: #dc3545;
	list-style: none;
	font-size: 0.7em;
	padding-left: 5px;
	position: absolute;
	top: 107%;
}

@media (min-width: 200px) {
	.animate {
		animation-duration: 0.3s;
		-webkit-animation-duration: 0.3s;
		animation-fill-mode: both;
		-webkit-animation-fill-mode: both;
	}
}
@keyframes slideIn {
	0% {
		-webkit-transform: translateY(1rem);
		        transform: translateY(1rem);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0rem);
		        transform: translateY(0rem);
		opacity: 1;
	}
	0% {
		-webkit-transform: translateY(1rem);
		        transform: translateY(1rem);
		opacity: 0;
	}
}

@-webkit-keyframes slideIn {
	0% {
		-webkit-transform: transform;
		-webkit-opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		-webkit-opacity: 1;
	}
	0% {
		-webkit-transform: translateY(1rem);
		-webkit-opacity: 0;
	}
}
/* End Input form */

.checkbox.style-b {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.checkbox.style-b input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkbox.style-b input:checked ~ .checkbox__checkmark {
	background-color: #fff;
}
.checkbox.style-b input:checked ~ .checkbox__checkmark:after {
	opacity: 1;
}
.checkbox.style-b:hover input ~ .checkbox__checkmark {
	background-color: #eee;
}
.checkbox.style-b:hover input:checked ~ .checkbox__checkmark {
	background-color: #fff;
}
.checkbox.style-b .checkbox__checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: #fff;
	border: 2px solid #333;
	-webkit-transition: background-color 0.25s ease;
	-o-transition: background-color 0.25s ease;
	transition: background-color 0.25s ease;
	border-radius: 4px;
}
.checkbox.style-b .checkbox__checkmark:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #333;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	opacity: 0;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}
.checkbox.style-b .checkbox__body {
	color: #333;
	line-height: 1.4;
	font-size: 16px;
}

/* End Register Section */

/* Concept */

/* End Concept */

/* Details Section */
.details {
	/* background-color: #6b4e4b; */
	background-image: url("/assets/image/details/bg_details.jpeg");
	background-size: cover;
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (max-width: 992px) {
	.details {
		/* background-image: none; */
		background-image: url("/assets/image/details/bg_details-mb.jpeg");
		-webkit-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;

		/* background-color: #482b1b; */
	}
}
/* End Details Section */

/* Facilities Section */
.facilities {
	color: var(--primary--color);
	--i: 1;
	--j: calc(((var(--i)) * 3) - 5);
	color: var(--text-color);
}
.facilities-carousel {
	overflow: hidden;
	position: relative;
}
.facilities-carousel-rail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
	will-change: transform;
	-webkit-transform: translate(calc((-11.1vw * (var(--j)))));
	    -ms-transform: translate(calc((-11.1vw * (var(--j)))));
	        transform: translate(calc((-11.1vw * (var(--j)))));
	height: 40vw;
}
.facilities-carousel-block {
	width: 33.5vw;
	display: inline-block;
	padding: 0 20px;
	-webkit-transition: width 0.5s;
	-o-transition: width 0.5s;
	transition: width 0.5s;
}
.facilities-carousel-img {
	background-size: cover;
	background-position: center;
	overflow: hidden;
	aspect-ratio: 16/10;
	position: relative;
}
.facilities-carousel-img::before {
	background-color: rgba(0, 0, 0, 0.4);
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
/* On Active */
.facilities-carousel-block.active {
	width: 55vw;
}
.facilities-carousel-block.active .facilities-carousel-tag {
	opacity: 1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.facilities-carousel-block.active .facilities-carousel-img::before {
	background-color: rgba(0, 0, 0, 0);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
/* Switch Image Button */
.facilities-carousel i {
	display: none;
	top: calc(55% - 5rem);
	z-index: 99;
	background-color: #fff;
	font-size: 2rem;
	position: absolute;
	cursor: pointer;
	width: 1.6em;
	text-align: center;
	line-height: 1.6em;
	color: #000;
	border-radius: 0.8em;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.facilities-carousel i.active {
	display: block;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.facilities-carousel i:hover {
	color: #fff;
	background-color: transparent;
}
.facilities-carousel i.r {
	position: absolute;
	right: 178px;
}
.facilities-carousel i.l {
	position: absolute;
	left: 178px;
}
/* Tag */
.facilities-carousel-tag {
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: var(--black--color);
}

.facilities-carousel-rail-mobile {
	overflow: hidden;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.facilities-carousel-img-mobile {
	background-size: cover;
	width: 100vw;
	aspect-ratio: 16/9;
}

/* Tag */
.facilities-carousel-tag-mobile {
	padding: 15px;
}
.swiper-pagination span {
	background: black;
}

/* Facilities utility */
.facilities-utility p {
	color: var(--black--color);
}
.box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 5px;
}
.box i {
	font-size: 1.6em;
	width: 1.6em;
	text-align: center;
	line-height: 1.6em;
	background-color: #000;
	color: #fff;
	border-radius: 0.8em;
}
/* End Facilities Section */

/* Gallery */
.gallery {
	background-image: url("/assets/image/gallery/bg-gallery.jpeg");
	background-size: cover;
	background-position: center;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #fff;
}
@media (max-width: 992px) {
	.gallery {
		background-image: none;
		-webkit-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
		background-color: #ad6847;
	}
}
.gallery-content img {
	background-position: center;
	background-size: cover;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-o-object-fit: fill;
	   object-fit: fill;
	cursor: pointer;
}
.gallery-content img:hover,
.gallery-content img:focus {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.gallery-content-image-wrap {
	overflow: hidden;
	margin: 10px 0px 10px;
}

.next-img-wrap {
	position: relative;
	cursor: pointer;
}
.next-img {
	inset: 0;
	position: absolute;
	background: rgba(57, 57, 57, 0.5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.next-img-wrap:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
/* End Gallery Section */

/* Plan Section */
.plan {
	padding: 30px 0;
}
.floor-header-level-item {
	padding: 20px 15px 7px 15px;
	cursor: pointer;
}
.floor-header-level-item::after {
	display: block;
	content: "";
	border-bottom: solid 3px var(--primary--color);
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	transition: -webkit-transform 0.2s ease-in-out;
	-o-transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.floor-header-level-item:hover::after,
.floor-header-level-item.active::after {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
}
/* End Plan Section */

/* Location Section */
.location {
	background-color: #faeed9;
}
.location-properties-item {
	margin-right: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.location-properties-item i {
	font-size: 1em;
	width: 1.4em;
	line-height: 1.4em;
	text-align: center;
	border-radius: 1em;
	margin-right: 0.5rem;
}
.location-properties-item p::after {
	display: block;
	content: "";
	border-bottom: solid 3px var(--primary--color);
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	transition: -webkit-transform 0.2s ease-in-out;
	-o-transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.location-properties-item p:hover::after,
.location-properties-item p.active::after {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
}
.location-footer {
	background-color: #9f856b;
	color: #fff;
}
/* End Location Section */

/* Our Plan Section */
.our-plan {
	background-color: #f2f2f2;
}
.our-plan-img-wrap {
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}
.our-plan-img-wrap:hover {
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transform: translateY(-15px);
	    -ms-transform: translateY(-15px);
	        transform: translateY(-15px);
}
/* End Our Plan Section */

/* Footer */
footer {
	background-color: #41240f;
	min-height: 60vh;
	color: #fff;
}
.blog-text-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.blog-text-block p,
.blog-text-block a {
	display: inline-block;
	font-size: 14px;
	line-height: 1.7rem;
	margin: 0;
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;

	text-decoration: inherit;
}
.blog-text-block a::after {
	content: "";
	width: 0px;
	height: 2px;
	display: block;
	background: rgb(255, 255, 255);
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}
.blog-text-block a:hover::after {
	width: 100%;
}
footer .footer-divide {
	border-bottom: 3px solid #fff;
	line-height: 66px;
	border-radius: 10px;
}
.footer-copyright p,
.footer-about-our a {
	font-size: 14px;
	color: #fff;
}
/* End Footer */

/* Animation */
.slideIn {
	-webkit-animation-name: slideIn;
	animation-name: slideIn;
}
/* End Animation */

/* 
//
// Privacy
//
*/
#privacy .banner .banner-img {
	background-size: cover;
	background-position: center;
	overflow: hidden;
	aspect-ratio: 16/10;
	position: relative;
	height: calc(100vh - 71px);
	width: 100%;
}
#privacy .banner .banner-title {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	color: #ddd;
}
#privacy .banner .banner-title h4 {
	border-bottom: 3px solid #fff;
	line-height: 65px;
}
#privacy .banner .banner-img::before {
	background-color: rgba(0, 0, 0, 0.5);
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#privacy .banner .banner-img .banner-title {
	background-color: #482b19c4;
	max-width: 375px;
	width: 100%;
	min-height: 340px;
	max-height: 500px;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

/* Util */
.disable-link {
	text-decoration: inherit;
	color: var(--text-primary-color);
}

/* Banner Popup */

/* End Banner Popup */