﻿.StepsItem {
    display: table-cell;
    height: 100px;
    position: relative;
    width: 100%;
    
    
    
}

.StepsItem:not(:first-child) .StepsItem__Line {
    background-color: #CDCDCD;
    display: block;
    font-size: 28px;
    height: 10px;
    right: 50%;
    position: absolute;
    top: 25px;
    width: 100%;
    z-index: -1;
}

.StepsItem.Active:not(:first-child) .StepsItem__Line {
    background-color: #95D600;    
}

.StepsItem .StepsItem_Info {
    margin: 0 auto;
    position: relative;
    height: 125px;
}

.StepsItem .StepsItem__Title {
    color: #CDCDCD;
    font-size: 16px;
    font-weight: 700;
    height: 36px;
    line-height: 18px;
    position: absolute;
    text-align: center;
    top: 70px;
    width: 100%;
}

.StepsItem .StepsItem__Title > div {
    display: inline-block;
    padding: 0 20px;
}

.StepsItem.Active .StepsItem__Title > div {
    color: #95D600;
    cursor: pointer;
}

.StepsItem.Active.Actual .StepsItem__Title > div {
    color: #00a884;
    font-size: 1.4em;
}

.StepsItem .StepsItem__Step {
      background-color: #CDCDCD;
      color: #C0BFC0;
      display: block;
      font-size: 30px;
      height: 32px;
      left: 50%;
      line-height: 30px;
      position: relative;
      text-align: center;
      -webkit-transform: translateX(-50%) translateY(50%);
      -ms-transform: translateX(-50%) translateY(50%);
      transform: translateX(-50%) translateY(50%);
      width: 60px;
}

.StepsItem.Active .StepsItem__Step {
    background-color: #95D600;
    color: #fff;
    cursor: pointer;
}

.StepsItem.Active.Actual .StepsItem__Step {
    background-color: #00a884;
    color: #fff;
}

.StepsItem .StepsItem__Step:before {
    border-bottom: 15px solid #CDCDCD;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: -15px;
    width: 30px;
}

.StepsItem.Active .StepsItem__Step:before {
    border-bottom: 15px solid #95D600;
}

.StepsItem.Active.Actual .StepsItem__Step:before {
    border-bottom: 15px solid #00a884;
}

.StepsItem .StepsItem__Step:after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #CDCDCD;
    bottom: -15px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 30px;
}

.StepsItem.Active .StepsItem__Step:after {
    border-top: 15px solid #95D600;
}

.StepsItem.Active.Actual .StepsItem__Step:after {
    border-top: 15px solid #00a884;
}

/******************/
/*** RESPONSIVE ***/
/******************/
.tablet .StepsItem:not(:first-child) .StepsItem__Line,
.phone .StepsItem:not(:first-child) .StepsItem__Line {
    height: 5px;
    top: 20px;
}

.tablet .StepsItem .StepsItem__Title,
.phone .StepsItem .StepsItem__Title {
    font-size: 12px;
    font-weight: 700;
    height: 24px;
    line-height: 14px;
    top: 50px;
}

.phone .StepsItem .StepsItem__Title > div {
    display: inline-block;
    padding: 0 5px;
}

.tablet .StepsItem .StepsItem__Step,
.phone .StepsItem .StepsItem__Step {
      font-size: 20px;
      height: 22px;
      line-height: 20px;
      width: 40px;
}

.tablet .StepsItem .StepsItem__Step:before,
.phone .StepsItem .StepsItem__Step:before {
    border-bottom: 10px solid #CDCDCD;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    top: -10px;
    width: 20px;
}

.tablet .StepsItem.Active .StepsItem__Step:before,
.phone .StepsItem.Active .StepsItem__Step:before {
    border-bottom: 10px solid #95D600;
}

.tablet .StepsItem.Active.Actual .StepsItem__Step:before,
.phone .StepsItem.Active.Actual .StepsItem__Step:before {
    border-bottom: 10px solid #00a884;
}

.tablet .StepsItem .StepsItem__Step:after,
.phone .StepsItem .StepsItem__Step:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #CDCDCD;
    bottom: -10px;
    width: 20px;
}

.tablet .StepsItem.Active .StepsItem__Step:after,
.phone .StepsItem.Active .StepsItem__Step:after {
    border-top: 10px solid #95D600;
}

.tablet .StepsItem.Active.Actual .StepsItem__Step:after,
.phone .StepsItem.Active.Actual .StepsItem__Step:after {
    border-top: 10px solid #00a884;
}