/*sem order*/
.so--wrapper{
    width: 100%;
    height: 150px;
}

#soWrapper {
    position: fixed;
    width: 100%;
    height: 150px;
    bottom: 0;
    left: 0;
    background-color: #5493ff;
    color: #5493ff;
    opacity: 0;
    -webkit-transform: translate(0,120px);
    -moz-transform: translate(0,120px);
    -ms-transform: translate(0,120px);
    -o-transform: translate(0,120px);
    transform: translate(0,120px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 101;
}

.so--wrapper.dark #soWrapper{
    background-color: rgba(0, 0, 0, 0.7);
    color: #ff7385;
}

.so--wrapper.dark .so--submit-btn{
    background-color: #ff7385;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.so--wrapper.dark .so--submit-btn:hover {
    background-color: #ff7385;
    color: #fff;
}


.so--wrapper-inner{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.so--step{
    position: relative;
    padding: 18px 15px;
    float: left;
    height: 100%;
}

.so--step-1{
    width: 32%;
}

.so--step-2{
    width: 17%;
}

.so--step-3{
    width: 18%;
}

.so--step-4{
    width: 15%;
    padding-top: 30px;
}

.so--step:after{
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    width: 1px;
    height: 90%;
    background: rgba(219,219,219,0);
    background: -moz-linear-gradient(top, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(219,219,219,0)), color-stop(33%, rgba(255,255,255,0.5)), color-stop(50%, rgba(255,255,255,0.5)), color-stop(69%, rgba(255,255,255,0.5)), color-stop(100%, rgba(226,226,226,0)));
    background: -webkit-linear-gradient(top, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
    background: -o-linear-gradient(top, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
    background: -ms-linear-gradient(top, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
    background: linear-gradient(to bottom, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
}

.so--step.last:after{
    width: 0;
}

.so--step-title{
    font-size: 18px;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.so--step-main{

}

.so--step-tag{
    display: inline-block;
    width: 80px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    border:1px solid #fff;
    border:1px solid rgba(255,255,255,0.6);
    font-size: 12px;
    margin-bottom: 5px;
    cursor: pointer;
}

.so--step-tag:hover{
    background-color: #fff;
    color: currentColor;
}

.so--step-tag.active{
    background-color: #fff;
    color: currentColor;
}

.so--step-input{
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 3px;
    padding: 0 10px;
    display: block;
    height: 30px;
    width: 130px;
}

.so--submit-btn{
    padding:10px 20px;
    background-color: #fdf8a0;
    color: #333;
    text-align: center;
    margin-bottom: 5px;
}

.so--submit-text{
    display: inline-block;
    width: 100%;
    font-size: 12px;
    color: #fff;
    margin-left: 25px
}

@media screen and (max-width: 1200px){
    .so--step-title {
        font-size: 16px;
    }

    .so--wrapper{
        height: 175px;
    }
    #soWrapper {
        height: 175px;
    }

    .so--step-1 {
        width: 24%;
    }

    .so--step-2 {
        width: 17%;
    }

    .so--step-3 {
        width: 13%;
    }

    .so--step-4{
        width: 15%;
    }

}

@media screen and (max-width: 800px){
    .so--step-title {
        font-size: 14px;
    }

    .so--wrapper {
        width: 100%;
        height: 270px;
    }

    .so--wrapper-inner {
        width: 100%;
    }

    .so--step {
        padding: 20px 10px;
    }

    .so--step-1 {
        width: 30%;
    }

    .so--step-2 {
        width: 17%;
    }

    .so--step-3 {
        width: 18%;
    }

    .so--step-4 {
        width: 18%;
    }

    .so--step-input {
        width: 120px;
    }
    .so--step-tag {
        width: 100px;
        height: 30px;
        line-height: 30px;
    }

}