/* ==========================================================================
   Page Builder Stylesheet
   ========================================================================== */

/* --- Why Choose Us / What We Offer Section --- */
.why-section {
	position: relative;
	padding: 80px 0;
	background-color: transparent;
	overflow: hidden;
}

.why-section::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	bottom: -150px;
	right: -150px;
	opacity: 0.8;
}

.why-section .gohard-container {
	position: relative;
	z-index: 2;
}

.why-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
}

.why-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

.why-title span {
	color: var(--color-red);
}

.why-subtitle {
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

.why-grid {
	display: grid;
	grid-template-columns: 522px 1fr;
	gap: 20px;
	align-items: center;
}

.why-image-wrapper {
	position: relative;
	width: 522px;
	height: 100%;
	overflow: hidden;
}

.why-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.why-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 12px;
	width: 100%;
	height: 100%;
}

.why-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	min-height: 253px;
	box-sizing: border-box;
}

.why-card-index-1,
.why-card-index-2 {
	min-height: 272px;
}

.why-card-red {
	background-color: var(--color-red);
}

.why-card-grey {
	background-color: rgba(125, 125, 125, 0.15);
}

.why-card-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: 100%;
	justify-content: flex-start;
}

.why-card-icon-wrapper {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}

.why-card-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.why-card-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.why-card-title {
	font-family: var(--font-main);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-white);
	margin: 0;
}

.why-card-desc {
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 0;
}

/* --- Page Builder Why Us Gallery / Carousel --- */
.builder-why-gallery-container {
	position: relative;
	height: 100%;
	min-height: 560px;
	align-self: stretch;
	overflow: hidden;
}

.builder-why-gallery-container>img.why-image {
	position: absolute;
	top: 0;
	left: 0;
}

.builder-why-carousel {
	width: 100%;
	height: 100%;
}

.builder-why-carousel::after {
	content: 'flickity';
	display: none;
}

.builder-why-carousel-cell {
	width: 100%;
	height: 100%;
}

.builder-why-carousel-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Flickity overrides for viewport */
.builder-why-carousel .flickity-viewport {
	height: 100% !important;
}

.builder-why-carousel .flickity-slider {
	height: 100% !important;
}

/* Custom Navigation Buttons (positioned inside the image/carousel) */
.builder-why-carousel-nav {
	position: absolute;
	left: 20px;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.builder-why-carousel-prev,
.builder-why-carousel-next {
	width: 36px;
	height: 36px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: var(--transition);
	color: var(--color-white);
	background-color: var(--color-red);

	padding: 0;
	border-radius: 0;
}

.builder-why-carousel-prev:hover:not(.disabled),
.builder-why-carousel-next:hover:not(.disabled) {
	background-color: #a00000;
}

.builder-why-carousel-prev.disabled,
.builder-why-carousel-next.disabled {
	background-color: #7D7D7D;
	color: rgba(255, 255, 255, 0.6);
	cursor: not-allowed;
	pointer-events: none;
}

.builder-why-carousel-prev svg,
.builder-why-carousel-next svg {
	width: 21px;
	height: 25px;
	fill: none;
	stroke: currentColor;
}

/* --- Mobile Responsive overrides --- */
@media (max-width: 768px) {
	.why-section {
		padding: 40px 0;
	}

	.why-section::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		bottom: -100px;
		right: -100px;
	}

	.why-title {
		font-size: 32px;
	}

	.why-subtitle {
		font-size: 16px;
	}

	.why-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.why-image-wrapper {
		width: 100%;
		height: 360px;
	}

	.builder-why-gallery-container {
		width: 100%;
		height: 360px;
		min-height: auto;
	}

	.why-cards-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.why-card {
		height: auto;
		min-height: 240px;
		padding: 24px;
	}

	.why-card-title {
		font-size: 20px;
	}

	.why-card-desc {
		font-size: 16px;
	}

	.why-card-content {
		gap: 16px;
	}
}

/* ==========================================================================
   Content Columns Layout Block Styles
   ========================================================================== */

.cols-section {
	position: relative;
	padding: 80px 0;
	background-color: transparent;
	overflow: hidden;
}

/* Glow positions */
.cols-section.cols-glow-bottom-left::before {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	bottom: -150px;
	left: -150px;
	opacity: 0.8;
}

.cols-section.cols-glow-top-right::after {
	content: '';
	position: absolute;
	pointer-events: none;
	z-index: 0;
	width: 615px;
	height: 588px;
	border-radius: 50%;
	background: #BC0000;
	filter: blur(400px);
	top: -150px;
	right: -150px;
	opacity: 0.8;
}

.cols-section .gohard-container {
	position: relative;
	z-index: 2;
}

.cols-title {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0 0 32px 0;
	letter-spacing: -1.68px;
}

.cols-title.cols-title-align-left {
	text-align: left;
}

.cols-title.cols-title-align-center {
	text-align: center;
}

.cols-title.cols-title-align-right {
	text-align: right;
}

.cols-title span {
	color: var(--color-red);
}

/* Columns Grid */
.cols-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.cols-order-image-left .cols-image-col {
	order: 1;
}

.cols-order-image-left .cols-text-col {
	order: 2;
}

.cols-order-image-right .cols-image-col {
	order: 2;
}

.cols-order-image-right .cols-text-col {
	order: 1;
}

/* Image and Carousel Wrapper */
.cols-image-col {
	align-self: stretch;
	height: 100%;
	min-height: 530px;
}

.builder-cols-gallery-container {
	position: relative;
	height: 100%;
	min-height: 530px;
	overflow: hidden;
}

.cols-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.builder-cols-gallery-container>img.cols-image {
	position: absolute;
	top: 0;
	left: 0;
}

.builder-cols-carousel {
	width: 100%;
	height: 100%;
}

.builder-cols-carousel::after {
	content: 'flickity';
	display: none;
}

.builder-cols-carousel-cell {
	width: 100%;
	height: 100%;
}

/* Flickity overrides for viewport */
.builder-cols-carousel .flickity-viewport {
	height: 100% !important;
}

.builder-cols-carousel .flickity-slider {
	height: 100% !important;
}

/* Custom Navigation Buttons (centered on left/right edges for desktop) */
.builder-cols-carousel-nav {
	position: absolute;
	left: 20px;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.builder-cols-carousel-prev,
.builder-cols-carousel-next {
	width: 36px;
	height: 36px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: var(--transition);
	color: var(--color-white);
	background-color: var(--color-red);
	padding: 0;
	border-radius: 0;
}

.builder-cols-carousel-prev:hover:not(.disabled),
.builder-cols-carousel-next:hover:not(.disabled) {
	background-color: #a00000;
}

.builder-cols-carousel-prev.disabled,
.builder-cols-carousel-next.disabled {
	background-color: #7D7D7D;
	color: rgba(255, 255, 255, 0.6);
	cursor: not-allowed;
	pointer-events: none;
}

.builder-cols-carousel-prev svg,
.builder-cols-carousel-next svg {
	width: 21px;
	height: 25px;
	fill: none;
	stroke: currentColor;
}

/* Text & WYSIWYG Styles */
.cols-text-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
	height: 100%;
}

.cols-wysiwyg-content h1,
.cols-wysiwyg-content h2,
.cols-wysiwyg-content h3,
.cols-wysiwyg-content h4,
.cols-wysiwyg-content h5,
.cols-wysiwyg-content h6 {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	margin: 0 0 24px 0;
	color: var(--color-white);
}

.cols-wysiwyg-content p {
	font-family: var(--font-main);
	font-size: 18px;
	line-height: 1.5;
	color: var(--color-white);
	margin: 0 0 20px 0;
}

.cols-wysiwyg-content i,
.cols-wysiwyg-content em {
	font-style: normal;
	color: var(--color-red);
}

/* Visual Editor custom list styling */
.cols-wysiwyg-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.cols-wysiwyg-content li {
	position: relative;
	padding-left: 23px;
	font-family: var(--font-main);
	font-size: 18px;
	line-height: 1.2;
	color: var(--color-white);
}

.cols-wysiwyg-content li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 14px;
	height: 10px;
	background-image: url('../img/sync/cosmetology_bullet.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Button style */
.cols-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	background-color: var(--color-red);
	color: var(--color-white);
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.cols-btn:hover {
	background-color: #a00000;
}

/* --- Mobile overrides for cols-section --- */
@media (max-width: 768px) {
	.cols-section {
		padding: 40px 0px;
	}

	.cols-section.cols-glow-bottom-left::before {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		bottom: -85px;
		left: -150px;
	}

	.cols-section.cols-glow-top-right::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		top: -85px;
		right: -150px;
	}

	.cols-title {
		font-size: 32px;
		text-align: center;
		margin-bottom: 24px;
	}

	.cols-grid {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.cols-image-col {
		height: auto;
		min-height: auto;
		order: 1;
	}

	.cols-text-col {
		order: 2;
	}

	/* Mobile navigation above the image container */
	.builder-cols-gallery-container {
		width: 100%;
		height: 320px;
		min-height: auto;
		padding-top: 56px;
	}

	.builder-cols-carousel-nav {
		top: 0;
		transform: none;
		left: auto;
		right: 0;
		width: auto;
		display: flex;
		gap: 16px;
	}

	.builder-cols-carousel-prev,
	.builder-cols-carousel-next {
		width: 40px;
		height: 40px;
	}

	.builder-cols-carousel-prev svg,
	.builder-cols-carousel-next svg {
		width: 24px;
		height: 24px;
	}

	.cols-text-col {
		gap: 24px;
	}

	.cols-wysiwyg-content h1,
	.cols-wysiwyg-content h2,
	.cols-wysiwyg-content h3,
	.cols-wysiwyg-content h4,
	.cols-wysiwyg-content h5,
	.cols-wysiwyg-content h6 {
		font-size: 24px;
	}

	.cols-wysiwyg-content p,
	.cols-wysiwyg-content li {
		font-size: 16px;
	}

	.cols-btn {
		width: 100%;
	}
}

/* ==========================================================================
   Page Builder: Cards Grid Layout Block (e.g. Massages, Procedures)
   ========================================================================= */

.cards-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

/* Glow circles */
.cards-section::before,
.cards-section::after {
	content: '';
	position: absolute;
	width: 468px;
	height: 463px;
	border-radius: 50%;
	background: #BC0000;
	opacity: 0.15;
	filter: blur(350px);
	pointer-events: none;
	z-index: 1;
}

.cards-section.cards-glow-bottom-left::before {
	bottom: -150px;
	left: -200px;
}

.cards-section.cards-glow-bottom-left::after {
	display: none;
}

.cards-section.cards-glow-top-right::after {
	top: -150px;
	right: -200px;
}

.cards-section.cards-glow-top-right::before {
	display: none;
}

.cards-grid-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 20px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.cards-grid-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	background: none;
	border: none;
	padding: 0;
	transition: var(--transition);
	width: 100%;
}

.cards-grid-card-image {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.cards-grid-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.cards-grid-card:hover .cards-grid-card-image img {
	transform: scale(1.03);
}

.cards-grid-card-content {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cards-grid-card-title {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--color-red);
	margin: 0;
}

.cards-grid-card-desc {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-white);
	text-transform: uppercase;
	margin: 0;
	opacity: 1;
}

.cards-grid-card-btn-wrapper {
	margin-top: auto;
	display: flex;
	justify-content: flex-start;
}

.cards-grid-card-btn-wrapper .cols-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	background-color: var(--color-red);
	color: var(--color-white);
	padding: 16px 24px;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.cards-grid-card-btn-wrapper .cols-btn:hover {
	background-color: #a00000;
}

.builder-cards-carousel-nav {
	display: none;
}

/* Mobile Media Query Overrides for Cards Grid layout */
@media (max-width: 768px) {
	.cards-section {
		padding: 40px 0;
	}

	.cards-section.cards-glow-bottom-left::before {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		bottom: -85px;
		left: -150px;
	}

	.cards-section.cards-glow-top-right::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		top: -85px;
		right: -150px;
	}

	/* Trigger Flickity Mobile Carousel via watchCSS */
	.builder-cards-carousel::after {
		content: 'flickity';
		display: none;
	}

	.cards-grid-list.builder-cards-carousel {
		display: block;
		width: 100%;
	}

	/* Carousel slides */
	.cards-grid-card {
		width: 320px;
		margin-right: 20px;
		flex-shrink: 0;
	}

	.cards-grid-card-image {
		height: 320px;
	}

	/* Mobile navigation arrows positioning */
	.builder-cards-gallery-container {
		position: relative;
	}

	.builder-cards-carousel-nav {
		display: flex;
		justify-content: flex-end;
		gap: 16px;
		position: static;
		margin-bottom: 24px;
		width: 100%;
	}

	.builder-cards-carousel-prev,
	.builder-cards-carousel-next {
		width: 40px;
		height: 40px;
		border: none;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: var(--transition);
		color: var(--color-white);
		background-color: var(--color-red);
		padding: 0;
		border-radius: 0;
	}

	.builder-cards-carousel-prev:hover:not(.disabled),
	.builder-cards-carousel-next:hover:not(.disabled) {
		background-color: #a00000;
	}

	.builder-cards-carousel-prev.disabled,
	.builder-cards-carousel-next.disabled {
		background-color: #7D7D7D;
		color: rgba(255, 255, 255, 0.6);
		cursor: not-allowed;
		pointer-events: none;
	}

	.builder-cards-carousel-prev svg,
	.builder-cards-carousel-next svg {
		width: 24px;
		height: 24px;
		fill: none;
		stroke: currentColor;
	}

	.cards-grid-card-btn-wrapper {
		width: 100%;
	}

	.cards-grid-card-btn-wrapper .cols-btn {
		width: 100%;
	}
}

/* ==========================================================================
   Page Builder: Media Cards (Video / Photo) Layout Block
   ========================================================================= */

.media-cards-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.media-section-desc {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-white);
	text-transform: uppercase;
	margin: -16px 0 40px 0;
	opacity: 1;
	position: relative;
	z-index: 2;
}

.media-section-desc.media-desc-align-left {
	text-align: left;
}

.media-section-desc.media-desc-align-center {
	text-align: center;
}

.media-section-desc.media-desc-align-right {
	text-align: right;
}

.media-btn-wrapper {
	display: flex;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.media-btn-wrapper.media-btn-align-left {
	justify-content: flex-start;
}

.media-btn-wrapper.media-btn-align-center {
	justify-content: center;
}

.media-btn-wrapper.media-btn-align-right {
	justify-content: flex-end;
}

.media-btn-wrapper .cols-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	background-color: var(--color-red);
	color: var(--color-white);
	padding: 16px 24px;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.media-btn-wrapper .cols-btn:hover {
	background-color: #a00000;
}

/* Glow circles */
.media-cards-section::before,
.media-cards-section::after {
	content: '';
	position: absolute;
	width: 468px;
	height: 463px;
	border-radius: 50%;
	background: #BC0000;
	opacity: 0.15;
	filter: blur(350px);
	pointer-events: none;
	z-index: 1;
}

.media-cards-section.media-glow-bottom-left::before {
	bottom: -150px;
	left: -200px;
}

.media-cards-section.media-glow-bottom-left::after {
	display: none;
}

.media-cards-section.media-glow-top-right::after {
	top: -150px;
	right: -200px;
}

.media-cards-section.media-glow-top-right::before {
	display: none;
}

.media-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 20px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.media-card {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
	cursor: pointer;
}

.media-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.media-card:hover .media-card-img {
	transform: scale(1.03);
}

.media-card-play-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s ease;
}

.media-card:hover .media-card-play-overlay {
	background-color: rgba(0, 0, 0, 0.4);
}

.media-card-play-overlay::before {
	content: '';
	position: absolute;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: var(--color-red);
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.media-card:hover .media-card-play-overlay::before {
	transform: scale(1.1);
	background-color: #a00000;
}

.media-card-play-overlay svg {
	position: relative;
	z-index: 2;
	width: 24px;
	height: 28px;
	color: var(--color-white);
	margin-left: 4px;
}

/* Video Popup compatibility for Page Builder */
.video-popup-inner {
	background-color: #000 !important;
	max-width: 900px !important;
	width: 100%;
	padding: 0 !important;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	aspect-ratio: 16 / 9;
	transition: max-width 0.3s ease, aspect-ratio 0.3s ease;
}

.video-popup-inner.is-vertical {
	max-width: 420px !important;
	aspect-ratio: 9 / 16;
}

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

.video-popup-content iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.popup-html5-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background-color: #000;
}

.popup-close-white {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-white);
}

.popup-close-white img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

/* Mobile Media Query Overrides for Media Cards Grid */
@media (max-width: 768px) {
	.media-cards-section {
		padding: 40px 0;
	}

	.media-section-desc {
		margin: -16px 0 24px 0;
	}

	.media-btn-wrapper {
		margin-bottom: 24px;
		width: 100%;
	}

	.media-btn-wrapper .cols-btn {
		width: 100% !important;
	}

	.media-cards-section.media-glow-bottom-left::before {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		bottom: -85px;
		left: -150px;
	}

	.media-cards-section.media-glow-top-right::after {
		width: 244px;
		height: 242px;
		filter: blur(250px);
		top: -85px;
		right: -150px;
	}

	.media-cards-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.media-card {
		height: 320px;
	}

	.media-card-play-overlay::before {
		width: 56px;
		height: 56px;
	}

	.media-card-play-overlay svg {
		width: 18px;
		height: 22px;
		margin-left: 3px;
	}

	.video-popup-inner.is-vertical {
		max-width: 90% !important;
		width: auto;
		max-height: 80vh;
	}
}