.divider-line {
    border-right: 2px solid #dee2e6;
}
.content-block {
	margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
    .divider-line {
        border-right: none;
    }
    .content-block {
        margin-bottom: 2.5rem;
    }
}
.col-img div:first-child {
    padding-top: 10px;
}
.col-img div:nth-child(2) {
	padding-top: 30px;
}
.col-img div:nth-child(3),
.col-img div:last-child {
    padding-top: 40px;
}

.img-container {
    margin-bottom: 20px;
}
.img-container img {
    width: 100px;
}

@keyframes checkmark-hover-color {
    from {
        border-color:silver
    }
    to {
        border-color:#3e97eb
    }
}
.container-checkbox {
    display:block;
    position:relative;
    padding-left:25px;
    margin-bottom:0;
    cursor:pointer;
    font-size:13px;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}
.container-checkbox input {
    position:absolute;
    opacity:0;
    cursor:pointer;
    height:0;
    width:0
}
.checkmark {
    position:absolute;
    top:0;
    left:0;
    height:20px;
    width:20px;
    border:1px solid silver;
    border-radius:3px
}
.container-checkbox:hover input:not(:disabled)~.checkmark {
    animation-duration:.4s;
    animation-fill-mode:both;
    animation-name:checkmark-hover-color
}
.container-checkbox input:checked~.checkmark {
    background-color:#2196f3
}
.container-checkbox input:disabled ~ .checkmark {
    background-color: #cfcfcf;
}
.checkmark:after {
    content:"";
    position:absolute;
    display:none
}
.container-checkbox input:checked~.checkmark:after {
    display:block
}
.container-checkbox .checkmark:after {
    left:5px;
    top:2px;
    width:7px;
    height:12px;
    border:solid #fff;
    border-width:0 3px 3px 0;
    -webkit-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    transform:rotate(45deg)
}
a.step-tab.disabled {
    background-color: #f5f5f5;
    color: #9e9e9e;
}