
.dt-dot-chart {
	--dt-title-col: 240px;
	--dt-price-col: 50px;
	--dt-col-gap: 24px;
}

.dt-dot-chart .elementor-price-list {
	position: relative;
	margin: 0 0 15px;
	padding: 30px 0 1px;
	list-style: none;
}

.dt-dot-chart .elementor-price-list-item {
	position: relative;
	margin: 0 0 30px;
	padding: 0;
}

.dt-dot-chart .elementor-price-list-item:last-child {
	margin-bottom: 0;
}

.dt-dot-chart .elementor-price-list-item::before {
	content: none;
}

.dt-dot-chart .elementor-price-list-text {
	width: 100%;
}

.dt-dot-chart .elementor-price-list-header {
	display: grid;
	grid-template-columns: var(--dt-title-col) 1fr var(--dt-price-col);
	align-items: center;
	column-gap: var(--dt-col-gap);
	margin: 0;
}

.dt-dot-chart .elementor-price-list-title {
	font-size: 15px;
	grid-column: 1;
	text-align: right;
	font-weight: 500;
	line-height: 1.3;
	color: #2b2d42;
	transition: color .25s ease;
	max-width: 100% !important;
}

.dt-dot-chart .elementor-price-list-separator {
	display: none;
}

.dt-dot-chart .elementor-price-list-price {
	grid-column: 3;
	text-align: right;
	font-weight: 700;
	font-size: 20px;
	color: #1c1d33;
	white-space: nowrap;
}

.dt-dot-chart .dt-track {
	grid-column: 2;
	position: relative;
	height: 6px;
	border-radius: 3px;
	background: #e9eaee;
}

.dt-dot-chart .dt-dot {
	position: absolute;
	top: 50%;
	left: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 4px solid #2b2d6e;
	background: #fff;
	box-sizing: border-box;
	transform: translate(-50%, -50%);
	opacity: 0;
	z-index: 2;
	transition: left .9s cubic-bezier(.22, .61, .36, 1) calc(var(--i, 0) * .08s), opacity .5s ease calc(var(--i, 0) * .08s), transform .25s ease, border-color .25s ease, box-shadow .25s ease;
	will-change: left, opacity, transform;
}

.dt-dot-chart.dt-dot-chart--1 .elementor-price-list-item:nth-of-type(1) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--2 .elementor-price-list-item:nth-of-type(2) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--3 .elementor-price-list-item:nth-of-type(3) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--4 .elementor-price-list-item:nth-of-type(4) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--5 .elementor-price-list-item:nth-of-type(5) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--6 .elementor-price-list-item:nth-of-type(6) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--7 .elementor-price-list-item:nth-of-type(7) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--8 .elementor-price-list-item:nth-of-type(8) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--9 .elementor-price-list-item:nth-of-type(9) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--10 .elementor-price-list-item:nth-of-type(10) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--11 .elementor-price-list-item:nth-of-type(11) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-dot-chart--12 .elementor-price-list-item:nth-of-type(12) .dt-dot {
	background: #2b2d6e;
}

.dt-dot-chart.dt-in .dt-dot {
	left: calc(var(--pct, 0) * 1%);
	opacity: 1;
}

.dt-dot-chart .elementor-price-list-item:hover .dt-dot {
	transform: translate(-50%, -50%) scale(1.14);
	border-color: #29abe2;
	box-shadow: 0 0 0 6px rgba(41, 171, 226, .12);
}

.dt-dot-chart .elementor-price-list-item:hover .elementor-price-list-title {
	color: #2b2d6e;
}

.dt-dot-chart .dt-line {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	width: 3px;
	margin-left: -1.5px;
	pointer-events: none;
	opacity: 0;
	transition: opacity .6s ease .35s;
	left: calc(var(--dt-title-col) + var(--dt-col-gap) + ( 100% - var(--dt-title-col) - var(--dt-col-gap) - var(--dt-price-col) - var(--dt-col-gap) ) * var(--dt-line, 0) / 100);
	background-image: radial-gradient(circle, #29abe2 40%, transparent 42%);
	background-size: 3px 11px;
	background-repeat: repeat-y;
	background-position: center top;
}

.dt-dot-chart.dt-in .dt-line {
	opacity: 1;
}

@media only screen and (max-width:833px) {
	.dt-dot-chart {
		--dt-title-col: 120px;
		--dt-price-col: 52px;
		--dt-col-gap: 12px;
	}
	
	.dt-dot-chart .elementor-price-list-title {
		font-size: .85em;
	}
	
	.dt-dot-chart .elementor-price-list-price {
		font-size: 1.1em;
	}
	
	.dt-dot-chart .dt-dot {
		width: 22px;
		height: 22px;
		border-width: 3px;
	}
}

@media (prefers-reduced-motion:reduce) {
	.dt-dot-chart .dt-dot, .dt-dot-chart .dt-line {
		transition-duration: .01ms;
		transition-delay: 0s;
	}
}
