.wizard-btn {
    float: left;
    width: 95%;
    margin-top: 5px;
    margin-left: 2.5%;
    margin-right: 2.5%;
    position: relative;
    height: 4em;
    border-radius: 0.4em;
    background-color: #435f6f;
    color: #fff;
}

.wizard-btn:focus,
.wizard-btn:hover,
.wizard-btn:active,
.wizard-btn:link,
.wizard-btn:visited {
    color: #fff;
    background-color: #39515f;
}

.wizard-btn-end {
    position: relative;
    max-width: 100%;
    height: auto;
}

@media (min-width: 400px) {
    .wizard-btn {
        width: 45%;
    }
    .wizard-btn-active {
        width: 45%;
    }
}

@media (min-width: 800px) {
    .wizard-btn {
        width: 20%;
        margin-top: 0;
    }
    .wizard-btn-active {
        width: 20%;
        margin-top: 0;
    }
}

.wizard-btn-left::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1.5em;
    border-style: solid;
    top: 0;
    left: 1.25em;
    transform: translateX(-80%);
    border-top-left-radius: 0.4em;
    border-bottom-left-radius: 0.4em;
    border-width: 2em;
    border-right-color: #435f6f;
    border-top-color: #435f6f;
    border-bottom-color: #435f6f;
    border-left-color: transparent;
}

.wizard-btn-right::after {
    content: '';
    position: absolute;
    top: 0.5em;
    right: -1.2em;
    border-color: transparent;
    border-style: solid;
    border-radius: 0.4em;
    border-width: 1.5em;
    border-right-color: #435f6f;
    border-top-color: #435f6f;
    transform: rotate(45deg);
}

.wizard-btn-left:hover::before {
    border-right-color: #39515f;
    border-top-color: #39515f;
    border-bottom-color: #39515f;
}

.wizard-btn-right:hover::after {
    border-right-color: #39515f;
    border-top-color: #39515f;
}

.wizard-active {
    color: #fff;
    background-color: #21A1B3;
}

.wizard-active::before,
.wizard-active::after {
    border-color: #21A1B3;
    border-left-color: transparent;
}

.wizard-active:focus,
.wizard-active:hover,
.wizard-active:active,
.wizard-active:link,
.wizard-active:visited {
    color: #fff;
    background-color: #21A1B3;
    border-color: #21A1B3;
    border-left-color: transparent;
}

.wizard-active:hover::before,
.wizard-active:hover::after {
    border-color: #21A1B3;
    border-left-color: transparent;
}

.wizard-btn-ctl-left::after {
    content: '';
    position: absolute;
    top: 0.3em;
    left: -0.85em;
    border-color: transparent;
    border-style: solid;
    border-radius: 0.4em;
    border-width: 1.0em;
    border-left-color: #435f6f;
    border-top-color: #435f6f;
    transform: rotate(-45deg);
}

.wizard-btn-ctl-left:hover::after {
    border-left-color: #39515f;
    border-top-color: #39515f;
}

.wizard-btn-ctl-right::after {
    content: '';
    position: absolute;
    top: 0.3em;
    right: -0.85em;
    border-color: transparent;
    border-style: solid;
    border-radius: 0.4em;
    border-width: 1.0em;
    border-right-color: #435f6f;
    border-top-color: #435f6f;
    transform: rotate(45deg);
}

.wizard-btn-ctl-right:hover::after {
    border-right-color: #39515f;
    border-top-color: #39515f;
}