.opt-discounts {
	height: 100px;
	width: 100%;
	position: relative;
	margin-bottom: 100px;
}

.opt-discounts .points {
	display: flex;
	justify-content: space-between;
	height: 100%;
}

.opt-discounts .points .item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	position: relative;
}

.opt-discounts .points .line {
	height: 100%;
	border: 1px dashed #D8D8D8;
}

.opt-discounts .price,
.opt-discounts .val {
	padding: 5px;
}

.opt-discounts .progres {
	position: absolute;
	width: 100%;
	height: 5px;
	top: calc(50% - 5px);
	background-color: #ECECEC;
}

.opt-discounts .progres .this {
	width: 0%;
	height: 5px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #0066CC;
	transition: .3s width;
}

.opt-discounts .progres .dot {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #0066CC;
}

.opt-discounts .points .remained-wrap {
	position: absolute;
	top: 120%;
	left: 50%;
	width: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
}

.opt-discounts .points .remained {
	min-width: max-content;
	text-align: center;
	background-color: #fff;
	border: 1px solid #ECECEC;
	padding: 15px 20px;
	padding-bottom: 10px;
}

.opt-discounts .points .remained-price {
	font-size: 18px;
	color: #333;
}

.opt-discounts .points .remained-val {
	font-size: 14px;
	color: #5bc702;
	font-weight: 600;
}

.opt-discounts .points .remained-v {
	width: 30px;
	height: 30px;
	transform: rotate(45deg);
	position: absolute;
	top: -15px;
	left: calc(50% - 15px);
	background-color: #ececec;
	z-index: -1;
}

.opt-discounts .points .remained-svg {
	position: absolute;
	top: 0;
	left: calc(50% - 15px);
}

@media screen and (max-width: 768px) {
	.opt-discounts .points {
		flex-direction: column-reverse;
	}

	.opt-discounts .points .item {
		flex-direction: row;
	}

	.opt-discounts {
		max-width: 150px;
		height: unset;
		margin: 40px 0;
	}

	.opt-discounts .progres {
		display: none;
	}

	.opt-discounts .progres--mobile {
		position: absolute;
		bottom: 0;
		left: calc(50% - 5px);
		height: 100%;
		width: 5px;
		background-color: #ECECEC;
	}

	.opt-discounts .points .line {
		width: 100%;
		height: 0;
		min-width: 75px;
	}

	.opt-discounts .points .val {
		min-width: 40px;
		text-align: center;
	}

	.opt-discounts .points .price {
		min-width: 65px;
		text-align: center;
	}

	.opt-discounts .points .remained-wrap {
		left: 150%;
		justify-content: flex-start;
		align-items: center;
		height: 0;
		top: 50%;
	}

	.opt-discounts .points .remained {
		min-width: max-content;
		min-height: max-content;
	}

	.opt-discounts .points .remained-v {
		top: calc(50% - 14px);
	}

	.opt-discounts .progres--mobile .this {
		width: 5px;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 1;
		background-color: #0066CC;
		transition: .3s height;
	}

	.opt-discounts .progres--mobile .dot {
		position: absolute;
		top: -5px;
		left: -5px;
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background-color: #0066CC;
	}
}