﻿/*
Compile-Minify: true
Compile-Area: checkout
Compile-OutputGroup: headtag
Compile-Exports: sb-checkout-progress-ul-css
Compile-Dependencies: bootstrap,checkout-css
*/
.progress-ul-container {
    position:relative;
    z-index:1;
    margin: 10px 0;
}
.progress-ul {
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.progress-ul li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 10px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
}
@media(min-width:768px) {
    .progress-ul li {
        font-size: 12px;
    }
}

.progress-ul li a {
    padding-top:37px;
}
.progress-ul li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  border: 2px solid #ddd;
  display: block;
  text-align: center;
  margin: 0 auto 5px auto;
  border-radius: 50%;
  background-color: white;
}
.progress-ul li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #ddd;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.progress-ul li:first-child:after {
  content: none;
}

/* If complete change step symbol to checkmark. */
.progress-ul li.complete:before,.progress-ul li.next:before{
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e013";
}
.progress-ul li.complete:before {
    content: "\e013";
}

/* If allpreviouscomplete then change colors to green. */
.progress-ul li.allpreviouscomplete {
  color: green;
}
.progress-ul li.allpreviouscomplete:before {
  border-color: #5cb85c;
  color:#5cb85c;
}
.progress-ul li.allpreviouscomplete:after {
  background-color: #5cb85c;
}

/* If next step, change to solid filled circle. */
.progress-ul li.next:before{
    background-color:#5cb85c;
    border-color: #5cb85c;
    color:#fff;
    content: "\e094";
}
.progress-ul li.next {
  color: #337ab7;
}
.progress-ul li.next a {
    padding-top:37px;
    color:#000;
}


#btn-cc-security-info{
    background: url(../images/positivessl-logo.png) no-repeat;
    width:150px;
    height:46px;
    text-indent: -9999px;
    overflow:hidden;
}