

/* Interactive Showcase */

.wdt-showcase-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	--inter-gap: 30px;
	gap: var(--inter-gap);
}

.wdt-showcase-container > .wdt-showcase-list-wrapper ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	position: sticky;
	top: 50px;
}

.wdt-showcase-container > .wdt-showcase-list-wrapper ul > li:first-child {
	border-top: 1px solid var(--wdtBorderColor);
}

.wdt-showcase-container > .wdt-showcase-list-wrapper ul > li {
	margin: 0px;
	padding: 35px 20px;
	border-bottom: 1px solid var(--wdtBorderColor);
	line-height: var(--wdtLineHeight_Base);
	cursor: pointer;
	background-color: transparent;
	transition: var(--wdt-Ad-Transition);
	-webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-showcase-container > .wdt-showcase-list-wrapper ul > li.wdt-active {
	background-color: rgba(var(--wdtHeadAltColorRgb), 0.1);
}

.wdt-dark-bg .wdt-showcase-container > .wdt-showcase-list-wrapper ul > li.wdt-active {
    background-color: rgba(var(--wdtHeadAltColorRgb), 0.25);
}

.wdt-dark-bg .wdt-showcase-container > .wdt-showcase-list-wrapper ul > li:first-child,
.wdt-dark-bg .wdt-showcase-container > .wdt-showcase-list-wrapper ul > li {
	border-color: var(--wdtHeadAltColor);
}

.wdt-showcase-container > .wdt-showcase-content-wrapper {
	position: relative;
}

.wdt-showcase-container > .wdt-showcase-content-wrapper > div[id*="wdt-showcase-"]:first-child {
	position: relative;
}

.wdt-showcase-container > .wdt-showcase-content-wrapper > div[id*="wdt-showcase-"] {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--wdt-Ad-Transition);
	-webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-showcase-container > .wdt-showcase-content-wrapper > div[id*="wdt-showcase-"] {
	opacity: 0;
	height: 100%;
	width: 100%;
	transition: var(--wdt-Ad-Transition);
	transform-origin: right;
}

.wdt-showcase-container > .wdt-showcase-content-wrapper > div[id*="wdt-showcase-"].wdt-active {
	opacity: 1;
	z-index: 2;
	visibility: visible;
}

.wdt-showcase-container > .wdt-showcase-content-wrapper > div[id*="wdt-showcase-"] > .elementor,
.wdt-showcase-container > .wdt-showcase-content-wrapper > div[id*="wdt-showcase-"] > .elementor > .elementor-element {
	height: 100%;
}


/* Showcase Content Group */

.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-showcase-content-group {
	display: grid;
	grid-template-columns: 80px 2.2fr 1fr;
	gap: 15px 40px;
}

.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-subtitle {
	font-size: var(--wdtFontSize_Base);
    font-weight: var(--wdtFontWeight_Alt);
    font-family: var(--wdtFontTypo_Alt);
    line-height: var(--wdtLineHeight_Alt);
    text-transform: capitalize;
    margin: 6px 0 0;
    color: rgba(var(--wdtHeadAltColorRgb), 0.65);
}

.wdt-dark-bg .wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-subtitle {
	color: rgba(var(--wdtAccentTxtColorRgb),0.65);
}

.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-title {
	font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem); /* Min-20 & Max-24 */
	margin: 0 0 20px;
	max-width: 350px;
}

.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-icon {
	align-self: center;
}

.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-icon span {
	font-size: calc(var(--wdtFontSize_H3) + 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Template */

.wdt-showcase-container .wdt-showcase-content-wrapper .elementor .elementor-widget-wdt-heading {
	background: rgba(var(--wdtAccentTxtColorRgb), 0.4);
    backdrop-filter: blur(20px);
}


@media only screen and (min-width:1025px) and (max-width:1280px) {
	.wdt-showcase-container {
		grid-template-columns: 0.8fr 1fr;
	}
	.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-showcase-content-group {
		grid-template-columns: 1fr;
	}
	.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-title {
		margin-bottom: 15px;
	}
	.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-icon span {
		justify-content: start;
	}
}

@media only screen and (max-width:1024px) {
	.wdt-showcase-container {
		grid-template-columns: 1fr;
	}
	.wdt-showcase-container > .wdt-showcase-list-wrapper ul > li {
		padding: 25px 20px;
	}
}

@media only screen and (max-width:767px) {
	.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-showcase-content-group {
		grid-template-columns: 1fr;
	}
	.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-title {
		margin-bottom: 15px;
		max-width: 100%;
	}
	.wdt-showcase-container .wdt-showcase-list-wrapper .wdt-content-icon span {
		justify-content: start;
	}
}



