fj-progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: var(--fj-items-spacing, 14px) auto 0;
	width: 90%;
	padding-left: 10%;
}

fj-progress-bar::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	right: 0;
	height: 9px;
	background-color: var(--fj-banner-progress-bar-color);
	z-index: 1;
	border-radius: 60px;
}

fj-progress-bar::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 1px;
	right: 0;
	transition: .3s;
	width: var(--fj-progress-bar-width, 0);
	height: 7px;
	background-color: var(--fj-banner-completed-progress-bar-color);
	z-index: 1;
	border-radius: 60px;
}
.fj-tier {
	position: relative;
	z-index: 2;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.fj-tier:last-child {
	transform: translateX(calc(50% - 12px));
}

.fj-tier--selected .fj-icon-container {
	background-color: var(--fj-banner-completed-icon-bg);
}
.fj-icon-container {
	width: 26px;
	height: 26px;
	background-color: var(--fj-banner-icon-bg);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.icon-container img {
	display: block;
	width: 100%;
	height: 100%;
}
.default-icon {
	width: 16px;
	height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.default-icon img {
	width: 100%;
	height: 100%;
}

.fj-tier__heading {
	font-size: var(--fj-banner-tier-text-size);
	margin: 0;
}

.fj-tier__icon--hidden {
	display: none;
}


@media screen and (max-width: 767px) {
	fj-progress-bar {
		width: 100%;
	}
}


.fj-tier:not(.fj-tier--selected) .fj-tier__icon-completed {
	display: none;
}

.fj-tier.fj-tier--selected .fj-tier__icon-locked {
	display: none;
}

.fj-tiers--scroll {
	overflow: auto;
    width: max-content;
	scrollbar-width: none; /* Firefox */
  	-ms-overflow-style: none; /* IE и Edge */
}

.fj-tiers--scroll::-webkit-scrollbar {
	display: none; /* Chrome, Safari */
}

.fj-tiers--scroll .fj-tier{
	min-width: 25%;
    flex: 1;
}

.fj-tiers--scroll::before {
	width: 110%;
}
.fj-hidden {
	display: none;
}