/*
 ######  ##     ## ########  ######  ##    ## ##       ####  ######  ######## 
##    ## ##     ## ##       ##    ## ##   ##  ##        ##  ##    ##    ##    
##       ##     ## ##       ##       ##  ##   ##        ##  ##          ##    
##       ######### ######   ##       #####    ##        ##   ######     ##    
##       ##     ## ##       ##       ##  ##   ##        ##        ##    ##    
##    ## ##     ## ##       ##    ## ##   ##  ##        ##  ##    ##    ##    
 ######  ##     ## ########  ######  ##    ## ######## ####  ######     ##    
 */

.checklist{
	display: table;
	table-layout: fixed;
	font-weight: bold;
	cursor: default;
}

/* ELEMENT ********************************************************************************************************************************
 ******************************************************************************************************************************************/

.checklist__element{
	display: table-cell;
	position: relative;
	text-align: center;
	vertical-align: top;
}

/* CONTENT AND SVG ************************************************************************************************************************
 ******************************************************************************************************************************************/

.checklist__element__content{
	position: relative;
	z-index: 2;
	border-radius: 100%;
	margin-left: auto;
	margin-right: auto;
}
.checklist__element__content,
.checklist__element__content .svg{
	display: block;
	box-sizing: border-box;
}
.checklist__element--locked .checklist__element__content{
	background-color: #fff;
	color: #82685b;
	font-size: 13px;
	height: 24px;
	line-height: 24px;
	margin-bottom: 4px;
	margin-top: 4px;
	width: 24px;
}
.checklist__element--active .checklist__element__content,
.checklist__element--completed .checklist__element__content{
	background-color: #AF9C8C;
	color: #fff;
	font-size: 16px;
	height: 32px;
	line-height: 32px;
	width: 32px;
}

/* SVG INSIDE CONTENT *********************************************************************************************************************
 ******************************************************************************************************************************************/

.checklist__element--locked .checklist__element__content .svg{

}
.checklist__element--active .checklist__element__content .svg,
.checklist__element--completed .checklist__element__content .svg{
	width: 18px;
    height: 18px;
    margin: 0 auto;
    padding-top: 4px;
}

/* TEXT ***********************************************************************************************************************************
 ******************************************************************************************************************************************/

.checklist__element__text{
	text-transform: uppercase;
	display: block;
	padding-top: 10px;
}
.checklist__element--locked .checklist__element__text,
.checklist__element--completed .checklist__element__text{
	color: #82685b;
}

/* AFTER ***********************************************************************************************************************************
 ******************************************************************************************************************************************/

.checklist__element + .checklist__element::after{
    content: "";
    display: block;
    height: 6px;
    left: -50%;
    position: absolute;
    top: 13px;
    width: 100%;
    z-index: 1;
}
.checklist__element--locked::after{
	background-color: #fff;
}
.checklist__element--active::after,
.checklist__element--completed::after{
	background-color: #AF9C8C;
}