.col-centered{
    margin: 0 auto;
    float: none;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    background-color: #2B3E50;;
    text-align: right;
    z-index: 2;
}

.wizard-sticky {
    width: 100%;
    height: 120px;
    line-height: 60px;
    background-color: #868e96;

}

.card-header {
    background-color: #DEE3EB;
}

.card-body {
    background-color: #618DB4;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image{
    position:relative;
    overflow:hidden;
    height: 24px;
    width: 24px;
}
.image img{
      position: absolute;
      max-width: 100%;
      max-height: 100%;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
}

.circle {
    background: #e47f3c;
    border-radius: 200px;
    color: white;
    font-weight: bold;
    display: table;
    /* margin: 20px auto; */
    text-align:center;
    height: 4em;
    width: 4em;
    z-index: 999;
    box-shadow:none;
    transition: box-shadow 0.1s linear;
}

.circle.active {
    background: #DF691A;
}

.circle h2 {
    vertical-align: middle;
    display: table-cell;
}

.line {
    height: 4em;
    position: relative;
    width: 30%;
    margin: 0 -20 0 -20;
}

.line div {
    background: #e47f3c;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 1.5em;
}

.line.disabled div {
    transition: width 0.1s linear;
    background: #2b3e50;
}

.line.disabled.current div > span {
    display: block;
    height: 100%;
    background-color: #DF691A;
    border-bottom-right-radius: 9px;
    border-top-right-radius: 9px;
    position: relative;
    overflow: hidden;

    transition: 0.4s linear;
    transition-property: width, background-color;
  }

.line div > span {
    width: 0px;
}

.circle.disabled {
    background: #2b3e50;
    border-radius: 200px;
    color: white;
    font-weight: bold;
    display: table;
    /* margin: 20px auto; */
    text-align:center;
    height: 4em;
    width: 4em;
}

.circle:hover, .active div.circle {
    box-shadow: #fdd692 0px 0px 0px 7px;
    box-sizing: border-box;
}

.text-center {
    z-index: 999;
}

#home_link {
    position:absolute; 
    width:100%;
    height:100%;
    top:0;
    left: 0;

    z-index: 1;

    /* fixes overlap error in IE7/8, 
        make sure you have an empty gif */
    /* background-image: url('empty.gif'); */
}

#home_link:hover {
    box-shadow: #fdd692 0px 0px 0px 7px;
    box-sizing: border-box;
}

/* spinner styling */

.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid #DF691A;
    border-radius: 50%;
    border-top-color: #fdd692;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
  }

  .tiny-loader {
    position: relative;
    display: inline;
    text-align: right;
    margin: 4px 0px 0px 4px;
    z-index: 9999;
    display: block;
    width: 15px;
    height: 15px;
    border: 2px solid #DF691A;
    border-radius: 50%;
    border-top-color: #fdd692;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @-webkit-keyframes spin {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

  .navbar {
      background-color: #003162 !important;
  }

  #embeddedReportURL {
      width: 100%;
      height: 100%;
      margin:0px;
      padding:0px;
      overflow:hidden;
  }

#createProjLColumn {
    border-right: 1px solid rgba(0,0,0,0.1)
}