.account__level-info {
	background: #fff;
	padding: 24px 16px;
	border-radius: 6px;
	width: 100%;
	display: flex;
}

.wccr-progress {
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	padding: 0px 16px;
}
.wccr-progress__headline {
	text-align: center;
	font-size: 16px;
	margin-bottom: 32px;
}

.wccr-progress__bar {
	position: relative;
	height: 80px;
}
.wccr-progress__track {
	position: absolute;
	left: 0;
	right: 0;
	top: 36px;
	height: 4px;;
	background: #FBF3F1;
	border-radius: 10px;
}
.wccr-progress__fill {
	position: absolute;
	left: 0;
	top: 36px;
	height: 4px;
	background: #ECC8CA;
	border-radius: 10px;
}

.wccr-progress__stop {
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	text-align: center;
	width: 120px;
	pointer-events: none;
}
.wccr-progress__icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin: 6px auto 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ECC8CA;
}
.wccr-progress__icon svg {
	height: 10px;
	width: auto;
}
.wccr-progress__icon-placeholder {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e9ecf5;
	display: inline-block;
}


.wccr-progress__level {
	font-size: 14px;
    height: 20px;
	font-weight: 500;
	color: #261313;
	white-space: nowrap;
}

.wccr-progress__amount {
	font-size: 12px;
	font-weight: 400;
}
.wccr-progress__current {
	position: absolute;
	top: 56px;
	transform: translateX(-50%);
	text-align: center;
	pointer-events: none;
}

.wccr-progress__current-amount {
	font-size: 11px;
	color: #fff;
	font-weight: 400;
	background: #261313;
	padding: 1px 6px;
	height: 18px;
	display: flex;
	align-items: center;
	border-radius: 4px;
	position: relative;
	line-height: 1;
	white-space: nowrap;

	&:before {
		content: "";
		position: absolute;
		top: -14px;
		left: 50%;
		transform: translateX(-50%);
		border-width: 8px;
		border-style: solid;
		border-bottom-color: #261313;
		width: 0px;
		height: 0px;
		border-top-color: transparent;
		border-right-color: transparent;
		border-left-color: transparent;
	}
}
.wccr-progress__stop.is-next .wccr-progress__icon {
	background: #FBF3F1;
	
	svg path {
		fill: #fff;
	}
}
.wccr-progress__stop.is-achieved .wccr-progress__amount {
	display: none;
}

@media (max-width: 720px) {
	.wccr-progress__stop {
		width: 90px;
	}
	.wccr-progress__label {
		font-size: 12px;
	}
}
@media (max-width: 540px) {
	.wccr-progress__stop.start .wccr-progress__level {
		visibility: hidden;
	}
}