#progress-bar{
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.progress-circles{
	align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem;
}

.circle-content{
	width: 10rem;
    text-align: center;
}

.circle-content img{
	position: absolute;
}

.circle{
	border-radius: 35px;
    height: 35px;
    width: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
}

#progress-bar .progress-circles:not(:last-child):after {
    content: "";
    display: block;
    border-top: 3px solid #9F9F9F;
	width: 100%;
	top: 15px;
    position: absolute;
    left: calc(50% + 18px);
}

.completed-circle:after{
    border-top: 3px solid #18209C !important;
}

.current-circle .circle:after{
	content:"";
	position: absolute;
	border-radius: 10px;
    height: 10px;
    width: 10px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #18209C;
}

.circle:before {
    content: "";
    background-color: #9F9F9F;
    display: inline-block;
    height:35px;
    width: 35px;
    min-width: 35px;
    border-radius: 35px;
    border: 3px solid rgba(0,0,0,0);
}

.circle-text{
	color: #18209C;
	font-size: 14px;
	font-weight: 800;
}

.completed-circle .circle:before{
	background-color: #18209C;
	display: inline-block;
}

.current-circle .circle:before{
	background-color: #fff;
	border: 3px solid #18209C;
}


.package-container{
	border-radius: 12px;
	border: 2px solid #3D249F;
	margin: 20px 0px;
	padding: 30px;
	position: relative;
}

.package-name{
	font-size: 22px;
	font-weight: bold;
	color: #3D249F;
}

.truncate{
	max-width: 70%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: no-wrap;
}

.less-border-radius{
	border-radius: 12px;
}

.package-container .alert-success, .package-container .alert-danger{
	display: inline-block;
}

.add-user{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.assigned-user {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #3D249F;
    font-size: 18px;
    font-weight: bold;
}

.course-container{
	padding: 10px;
    transition: all 200ms ease-out;
	background: #3D249F0F 0% 0% no-repeat;
	box-shadow: 0px 2px 12px #3D249F40;
    border-radius: 20px;
}

.course-box{
	display: flex;
	vertical-align: middle;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border-radius: 16px;
	transition: all 200ms ease-out;
	background: #3D249F14 0% 0% no-repeat padding-box;
	color: #3D249F;
	border: 2px solid rgba(0,0,0,0);
	cursor: pointer;
	font-size: 20px;
	text-align: center;
	font-weight: 800;
	margin: 15px 0px;
    min-height: 150px;
    line-height: 1.1;
}

.course-box[activated="true"]{
	background: #efefef;
	cursor: not-allowed;
	color: #aaa;
}

.course-box.selected-course-box{
	border: 2px solid #3D249F;
}

.activation-text{
	font-size: 12px;
}


#activation-table th, #activation-table td{
	font-size: 18px;
	color: #3D249F;
}

#check-icon-container{
	width: 45px;
	height: 45px;
	border-radius: 45px;
	background-color: #27C795;
	display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
}

#error-icon-container{
	width: 45px;
	height: 45px;
	border-radius: 45px;
	background-color: #f8d7da;
	display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
}

#check-icon-container img, #error-icon-container img{
	width: 40px;
	height: 40px;
}

.hidden{
	display: none !important;
}
