.gst-timeline{
    position:relative;
    margin-top:30px;
    margin-left:25px;
    border-left:4px solid #ff9800;
    padding-left:35px;
}

.gst-event{
    position:relative;
    margin-bottom:40px;
}

.gst-circle{
    position:absolute;
    left:-47px;
    top:5px;
    width:18px;
    height:18px;
    background:#ff9800;
    border-radius:50%;
    border:4px solid #fff;
    box-shadow:0 0 0 3px #ff9800;
}

.gst-content{
    background:#fff;
    border-radius:10px;
    padding:20px;
    box-shadow:0 5px 18px rgba(0,0,0,.10);
}

.gst-content h4{
    margin:0;
    color:#ff9800;
    font-size:22px;
    font-weight:700;
}

.gst-content small{
    display:block;
    margin:10px 0;
    color:#666;
    font-size:14px;
}

.gst-content p{
    margin:0;
    font-size:16px;
    color:#444;
}

/*=====================================
BARRA DE PROGRESO
=====================================*/

.gst-progress{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    margin:50px 0;
    padding:0 20px;
}

.gst-progress::before{
    content:"";
    position:absolute;
    top:25px;
    left:8%;
    right:8%;
    height:4px;
    background:#dcdcdc;
    z-index:1;
}

.gst-step{
    position:relative;
    z-index:2;
    flex:1;
    text-align:center;
}

.gst-icon{
    width:50px;
    height:50px;
    margin:0 auto;
    border-radius:50%;
    background:#dcdcdc;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    border:4px solid #fff;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
    transition:.3s;
}

.gst-step.done .gst-icon{
    background:#28a745;
    color:#fff;
}

.gst-step.active .gst-icon{
    background:#ff9800;
    color:#fff;
    transform:scale(1.15);
}

.gst-step span{
    display:block;
    margin-top:12px;
    font-size:14px;
    font-weight:600;
    color:#333;
}

.gst-progress{
    background:transparent !important;
}

.gst-progress::before{
    background:#dcdcdc !important;
}
