/* 
    Created on : 08/12/2014, 16:07:45
    Author     : Jhonnatan Ricardo Semler
*/
body, html{
    background-color: #285e8e;
    height: 100%;
}
form{
    margin: 0px 1px;
    padding: 0px;
}
.currentStep{
    font-weight: bolder;
    font-size: 14pt;
    color: #000000;
}
.previousStep{
    font-weight: normal;
    color: #c0c0c0;
}
.nextStep{
    font-weight: normal;
    color: #c0c0c0;
}
.requiredSymbol{
    color: #CC0000;
    font-size: 14pt;
}
.container{
    background-color: #FFFFFF;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 100%;
}
.uppercase-fields input{
    text-transform: uppercase;
}

.help-color{
    color: #3278b3;
}
.listaSorteavel {
    border: 1px solid #eee;
    min-height: 30px;
    list-style-type: none;
    margin: 0;
    padding: 5px 0 0 0;
    float: left;
    margin-right: 10px;
    width: 100%;
}
.listaSorteavel li{
    margin: 0 5px 5px 5px;
    padding: 5px;
}

.sim{
    font-weight: bolder;
    display: block;
    background-color: #CAFF70;
    color: #6E8B3D;
}

.timeline {
    overflow-x: hidden;
    padding: 20px 0;
  }
  
  .timeline ol {
    width: 100%;
    margin:0;
    padding:0;
    display:flex;
    justify-content: space-between;
  }
  
  .timeline ol li {
    list-style:none;
    position: relative;
    text-align:center;
    flex-grow: 1;
    flex-basis: 0;
    padding: 0 5px;
  }
  
  .timeline ol li:before {
    content:"";
    width:15px;
    height:15px;
    display:block;
    border-radius:50%;
    background: #ddd;
    margin:0 auto 5px auto;
  }
  .timeline ol li:not(:last-child)::after {
      content: "";
      width: calc(100% - 30px);
      height: 4px;
      display: block;
      background: #ddd;
      margin: 0;
      position: absolute;
      top: 5px;
      left: calc(50% + 15px);
  }

  .timeline ol li i{
    color: #DDD;
  }

  .timelineCurrentItem:before{
    background-color: #285e8e !important;
  }
  .timelineCurrentItem i {
    color: #285e8e !important;
  }

  .timelineDoneItem:before{
    background-color: #6E8B3D !important;
  }

  .timelineDoneItem i {
    color: #6E8B3D !important;
  }

  .timelineDoneItem:not(:last-child)::after {
    background: #6E8B3D !important;
  }

  .timelineCurrentItemText{
    font-weight: bold;
    color: #285e8e;
  }

  .list-unstyled li i{
    color: orange;
  }

  .listSpacedItems li {
    margin-top: 10px;
    text-align: justify;
  }