.div_page_steps {
    background: white;
    width: 100%;
	margin-bottom: 20px;
}

.div_page_steps::-webkit-scrollbar
{
	height: 3px;
}

.div_page_steps::-webkit-scrollbar-track
{
  background: white;
}

.div_page_steps::-webkit-scrollbar-thumb
{
    border-radius: 5px;
}

.page_steps {
	margin:0;
	padding:0;
    display: flex;
}

.page_steps .step {
	text-align: center;
	color: #333;
	cursor: pointer;
	margin: 0 1px;
	width: 100%;
	float: left;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none; 
	transition: background-color 0.2s ease;
	justify-content: center;
	align-items: center;
}

.page_steps .step:before {
    z-index: 1;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    font-size: 0;
    overflow: hidden;
    border-top: 4px solid var(--content-border-color);
    position: relative;
    top: 17px;
    right: 0;
}

.page_steps .step:not(.step_center):before {
    right: 100%;
}

.page_steps .step.current:before{
    border-top: 4px solid var(--accent-color);
}

.page_steps > .step:first-child:not(.step_center):before {
	border: none;
	width: 10%;
}

.page_steps > .step_center:last-child:before {
	border: none;
}

.page_steps > .step_center:last-child {
	max-width: 75px;
}

.page_steps:has(.step_center) {
	margin-left: 40px;
}

.page_steps .step span {
	position: relative;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
}

.page_steps .step span:before {
	opacity: 0;
	content: " ";
	position: absolute;
	top: -2px;
}

.page_steps .step.done span:before {
	opacity: 1;
	-webkit-transition: opacity 0.3s ease 0.5s;
	-moz-transition: opacity 0.3s ease 0.5s;
	-ms-transition: opacity 0.3s ease 0.5s;
	transition: opacity 0.3s ease 0.5s;
}

.page_steps .step.current {
	color: var(--text-color);
}

.div_page_steps.disabled>.page_steps::before {
    width: 100%;
    height: 100%;
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
}

.step .button-page-step {
	height: 34px;
	width: 34px;
	border-radius: 34px;
	background: #fff;
	color: var(--main-color);
	border: 1px solid var(--content-border-color);
	z-index: 2;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
}

.step.current .button-page-step {
	background: var(--accent-color);
	color: #fff;
	border: none;
}

.step .label-page-step {
    right: calc(50% - 17px);
    position: relative;
	color: var(--text-color-off);
	font-size: 14px;
}

.page_steps .step:first-child .label-page-step {
    right: 0;
	float: left;
}