/*!
 * Bootstrap Steps v1.0.1 (https://github.com/ycs77/bootstrap-steps)
 * Copyright 2019 Lucas Yang <yangchenshin77@gmail.com>
 * Licensed under MIT (https://github.com/ycs77/bootstrap-steps/blob/master/LICENSE)
 */.steps {
 padding:0;
 margin:0;
 list-style:none;
 display:flex;
 overflow-x:auto;
 flex-wrap: nowrap;
}
.steps .step:first-child {
 margin-left:auto
}
.steps .step:last-child {
 margin-right:auto
}
.step .nav-link {
	width:100%;
	height:100%;
}
.step:first-of-type .step-circle::before {
 display:none
}
.step:last-of-type .step-content {
 padding-right:0
}
.step-content {
 box-sizing:content-box;
 display:flex;
 align-items:center;
 flex-direction:column;
 width:10rem;
 min-width:10rem;
 max-width:10rem;
}
.step-circle {
 position:relative;
 display:flex;
 justify-content:center;
 align-items:center;
 width:3.5rem;
 height:3.5rem;
 color:#adb5bd;
 border:2px solid #adb5bd;
 border-radius:100%;
 background-color:#fff
}
.step-circle::before {
 content:'';
 display:block;
 position:absolute;
 top:50%;
 left:-2px;
 width:6.5rem;
 height:2px;
 transform:translate(-100%,-50%);
 color:#adb5bd;
 background-color:currentColor
}
.step-text {
 color:#adb5bd;
 margin-top:.25em;
 text-align:center;
}
.step-active .step-circle {
 color:#fff;
 background-color:#0c7ce6;
 border-color:#0c7ce6;
}
.step-active .step-circle::before {
 color:#007bff
}
.step-active .step-text {
 color:#0c7ce6;
}
.step-error .step-circle {
 color:#fff;
 background-color:#dc3545;
 border-color:#dc3545
}
.step-error .step-circle::before {
 color:#dc3545
}
.step-error .step-text {
 color:#dc3545
}
.step-success .step-circle {
 color:#28a745;
 background-color:#fff;
 border-color:#28a745
}
.step-success .step-circle::before {
 color:#28a745
}
.step-success .step-text {
 color:#28a745
}
.step-current .step-circle {
 color:#fff;
 background-color:#1cbfd0;
 border-color:#1cbfd0
}
.step-current .step-circle::before {
 color:#1cbfd0
}
.step-current .step-text {
 color:#1cbfd0
}
.step {
	cursor: pointer;
}
.step:hover {
	background: rgba(0, 0, 0, 0.1);
}
/*# sourceMappingURL=bootstrap-steps.min.css.map */