﻿



.stepper {
    /*width: 24px;
    height: 24px;
    font-size: 13px;
    padding: 3px;*/
    display: flex;
    padding: 20px;
    padding-top:10px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: none;
    border-radius: .25rem;
    transition: background-color .15s ease-out,color .15s ease-out;
    width: 100%;
}
    .stepper .step-trigger {
        border: 0px;
        background: none;
        color: #009ca6;
    }
    .stepper .step-trigger:not(:disabled):not(.disabled) {
        cursor: pointer;
        
    }

    .stepper .step-trigger.disabled, .stepper .step-trigger:disabled {
        pointer-events: none;
        opacity: .65
    }

    .stepper .step-trigger:focus {
        outline: 0
    }

    .stepper .step-trigger:hover {
        text-decoration: none;
        background-color: rgba(0,0,0,.06)
    }

.stepper-label {
    display: inline-block;
    margin: .25rem;
    font-weight: 300;
    color: #636e72;
}
.stepper .stepper-label.active, .stepper .stepper-label:active {
    font-weight: bold;
    color: #009ca6;
}
.stepper-content {
    width: auto;
    display: none;
    padding: 20px;
    padding-left: 8px;
    padding-right: 8px;
}
.stepper-circle {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    padding: .5em 0;
    margin: .25rem;
    line-height: 1em;
    color: #fff;
    background-color: #6c757d;
    border-radius: 1em;
    background-color: #009ca6;
}
.stepper .stepper-circle.active, .stepper stepper-circle :active {
    font-weight: bold;
}
.stepper .line, .stepper-line {
    margin: auto;
    flex-grow: 100;
    min-width: 1px;
    min-height: 1px;
    background-color: rgba(0,0,0,.12);
}
@media (max-width:520px) {
    .stepper .step-trigger {
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 10px
    }
}

@media (max-width:400px) {
    .stepper .line, .stepper-line {
        -ms-flex-preferred-size: 20px;
        flex-basis: 20px
    }
}
.step.active {
    border: 2px solid #009CA6;
    box-shadow: 3px 3px grey;
    border-radius:30px;
}