
.nomargin {
    padding: 0 !important;
    margin: 0 !important;

}

.wizard {
    background-color: white;
    padding: 0.2em 0em 0.2em 0.2em;
    min-width: 100%
}

.wizard li {
    padding: 20px 12px 20px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    /* width: 24.75%; */
    margin-left: 3px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    color: #FFFFFF;
    background: #8BBFE6;
    text-transform: camelcase;
    cursor: pointer;
}

.wizard li:hover {
    text-decoration: none;
}

.wizard li:first-child {
    margin-left: 0;
}

.wizard:not(.left-arrow) li:before {
    width: 0;
    height: 0;
    border-top: 30px inset transparent;
    border-bottom: 30px inset transparent;
    border-left: 30px solid #FFFFFF;
    position: absolute;
    content: "";
    align:center;
    left: 0;
}


.wizard:not(.left-arrow) li:after {
    width: 0;
    height: 0;
    border-top: 30px inset transparent;
    border-bottom: 30px inset transparent;
    border-left: 30px solid #8BBFE6;
    position: absolute;
    content: "";
    right: -30px;
    z-index: 2;
}
.wizard:not(.left-arrow) li:after, .wizard:not(.left-arrow) li:before
 {
    top: 5px;
 }

.wizard.left-arrow li:before {
    width: 0;
    height: 0;
    border-top: 30px inset transparent;
    border-bottom: 30px inset transparent;
    border-right: 30px solid #8BBFE6;
    position: absolute;
    content: "";
    top: 0;
    left: -30px;
    z-index: 2;
}

.wizard.left-arrow li:after {
    width: 0;
    height: 0;
    border-top: 30px inset transparent;
    border-bottom: 30px inset transparent;
    border-right: 30px solid #FFFFFF;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    z-index: 2;
}

.wizard li:first-child:before,
.wizard li:last-child:after {
    border: none;
}

.wizard li:first-child {
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.wizard li:last-child {
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

 
.wizard.left-arrow li:last-child:before,
.wizard.small.left-arrow li:last-child:before {
    border-right-color: #3E95D6;
}

.wizard .badge {
    margin: 0 5px 0 18px;
    position: relative;
    top: -1px;
}

.wizard li:first-child .badge {
    margin-left: 0;
}

/* text color of a tag is white unless it's not activated */
.wizard li a {
    color: #ffffff;
}

/* current */
.wizard .current, .wizard li.progress-current {
    background: #363636;
    color: #fff;
}

.wizard li.current:after, .wizard li.progress-current:after {
    border-left-color: #363636 !important;
}

.wizard.left-arrow li.current:before, .wizard.left-arrow li.progress-current:before,
.wizard.small.left-arrow li.current:before, .wizard.small.left-arrow li.progress-current:before {
    border-right-color: #363636;
}

.wizard li.current .badge, .wizard li.progress-current .badge {
    background-color: #FFFFFF;
    color: #363636;
}

/* activated */
.wizard li.activated {
    /* May want another class and the :before rather than using last-child. */
    background-color: #3E95D6;
}

.wizard .activated, .wizard li.progress-current {
    background: #3E95D6;
    color: #fff;
}

.wizard li.activated:after, .wizard li.progress-current:after {
    border-left-color: #3E95D6 !important;
}

.wizard.left-arrow li.activated:before, .wizard.left-arrow li.progress-current:before,
.wizard.small.left-arrow li.activated:before, .wizard.small.left-arrow li.progress-current:before {
    border-right-color: #3E95D6;
}

.wizard li.activated , .wizard li.progress-current {
    background-color: #3E95D6;
    color: #ffffff;
}

/* activated */

/* in-active */
.wizard .in-active, .wizard li.progress-current {
    background: #eeeeee;
    color: #000;
}
.wizard li.in-active:after, .wizard li.progress-current:after {
    border-left-color: #eeeeee !important;
}

.wizard.left-arrow li.in-active:before, .wizard.left-arrow li.progress-current:before,
.wizard.small.left-arrow li.in-active:before, .wizard.small.left-arrow li.progress-current:before {
    border-right-color: #eeeeee;
}

.wizard li.in-active , .wizard li.progress-current {
    background-color: #eeeeee;
    color: #000;
}

/* in-active */

.wizard.small {
    margin-bottom: 15px;
}

.wizard.small li {
    padding: 5px 12px 5px;
}

.wizard.small:not(.left-arrow) li:before {
    border-top: 15px inset transparent;
    border-bottom: 15px inset transparent;
    border-left: 15px solid #FFFFFF;
}

.wizard.small:not(.left-arrow) li:after {
    border-top: 15px inset transparent;
    border-bottom: 15px inset transparent;
    border-left: 15px solid #8BBFE6;
    right: -15px;
}

.wizard.small.left-arrow li:before {
    border-top: 15px inset transparent;
    border-bottom: 15px inset transparent;
    border-right: 15px solid #8BBFE6;
    left: -15px;
    z-index: 2;
}

.wizard.small.left-arrow li:after {
    width: 0;
    height: 0;
    border-top: 15px inset transparent;
    border-bottom: 15px inset transparent;
    border-right: 15px solid #FFFFFF;
}

.wizard.small li:first-child:before,
.wizard.small li:last-child:after {
    border: none;
}

/* IE11 border bug fixes... hooray! */
_:-ms-fullscreen, :root .wizard.small.left-arrow a:before {
    left: -14px;
}

_:-ms-fullscreen, :root .wizard.small:not(.left-arrow) a:after {
    right: -14px;
}

_:-ms-fullscreen, :root .wizard.left-arrow a:before {
    left: -29px;
}

_:-ms-fullscreen, :root .wizard:not(.left-arrow) a:after {
        right: -29px;
}
