.progress-main {
    width: 100%;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
}

.progress-ul {
    display: flex;
}

.progress-li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}

.progress-icons {
    font-size: 25px;
    color: #1b761b;
    margin: 0 60px;
}

.progress-label {
    font-family: sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: bold;
    color: #1b761b;
}

.progress-step {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #d7d7c3;
    margin: 16px 0 10px;
    display: grid;
    place-items: center;
    color: ghostwhite;
    position: relative;
    cursor: pointer;
}
.progress-step::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 3px;
    background-color: #d7d7c3;
    right: 30px;
}

.progress-step::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 3px;
    background-color: #d7d7c3;
    left: 30px;
}

.progress-step-first::after {
    width: 0;
    height: 0;
}

.progress-step-last::before {
    width: 0;
    height: 0;
}

.progress-step p {
    font-size: 18px;
}

.progress-li .current {
    background-color: #f6993f;
}

.progress-li .error {
    background-color: #e3342f;
}

.progress-li .active {
    background-color: #1b761b;
}

.progress-li .active::after {
    background-color: #1b761b;
}

.progress-li .active::before {
    background-color: #1b761b;
}

.progress-li .active p {
    display: none;
}

input[readonly] {
    background-color: lightgray;
}

.btn-primary {
    background-color: #0074e7 !important;
    border: none !important;
    padding: 10px !important;
    color: white !important;
}
.btn-primary:hover {
    background-color: #045cb4 !important;
    border: none !important;
}

.link-success {
    text-decoration: none !important;
    color: #0074e7 !important;
    cursor: pointer;
}
.link-success:hover {
    text-decoration: underline !important;
    color: #045cb4 !important;
}

.min-vh-80 {
    min-height: 80vh !important;
}

.navbar {
    background-color: #072e64;
}

@media only screen and (max-width: 600px) {
    .navbar {
        display: block;
        text-align: center;
    }
	
	.progress-li {
		margin: 0 10px;
	}

	.progress-icons {
		font-size: 20px;
		margin: 0 50px;
	}

	.progress-step::before {
		width: 50px;
		left: 30px;
	}

}

