@media (max-width: 991px) {
    .wizard {
        display:none!important;
    }           
} 
@media (min-width: 992px) {
    .nowizard {
        display:none!important;
    }           
}

.wizard span {
    padding-left: 60px;
    padding-top: 20px;
    padding-right: 40px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    xxx-min-width: 24.75%;
    margin-left: 0.25%;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    xxx-cursor: pointer;
    height: 80px;
    width:33.33%;
}

.wizard span:first-child {
    margin-left: 0;
    padding-left: 30px;

}
.wizard span:before {
    width: 0;
    height: 0;
    border-top: 40px inset transparent;
    border-bottom: 40px inset transparent;
    border-left: 40px solid white;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

.wizard-item {
    background-color:#ebebeb;
    color:707070;
}

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

.wizard-active {
    background-color:#22a8e2;
    color:white;
}

.wizard-active:after {
    width: 0;
    height: 0;
    border-top: 40px inset transparent;
    border-bottom: 40px inset transparent;
    border-left: 40px solid #22a8e2;
    position: absolute;
    content: "";
    top: 0;
    right: -40px;
    z-index: 2;
}
