.optional {
  background-color: green;
}

.sub_total {
  background-color: rosybrown;
}

.total {
  background-color: lightblue;
}

.totalwithoutfeat {
  background-color: gold;
}

/*Sidebar */
#wrapper {
  overflow-x: hidden;
}

#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
  width: 15rem;
}

#page-content-wrapper {
  min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }
  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }
  #wrapper.toggled #sidebar-wrapper {
    margin-left: -15rem;
  }
}

/* offer */
.cf:before, .bar:before,
.cf:after,
.bar:after {
  content: " ";
  display: table;
}


.cf:after,
.bar:after {
  clear: both;
}

.card {
  max-width: 100%;
  width: 90%;
  background: white;
  padding: 20px 30px;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  border: none;
}

.card__title {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.card__text {
  margin: 25px 0 40px 0;
}

.card:not(:first-of-type) {
  display: none;
}

.actions {
  text-align: center;
}

.bar {
  counter-reset: step;
  margin: 0;
  padding: 0;
}

.bar li {
  list-style-type: none;
  float: left;
  width: 10%;
  position: relative;
  text-align: center;
  font-size: 9px;
  padding-left: 5px;
}

@media all and (min-width: 500px) {
  .bar li {
    text-transform: uppercase;
    font-size: 10px;
  }
}

.bar li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border: 1px solid #ddd;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
  color: #333;
}

.bar li:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ddd;
  top: 15px;
  left: -50%;
  z-index: -1;
}

.bar li:first-child:after {
  content: none;
}

.bar li.active:before {
  background: blue;
  border: 1px solid #9999ff;
  color: white;
}

.bar li.active + li.active:after {
  background: blue;
}

.bar li.active:first-child + li:after:not(.active) {
  background: white;
}
/*# sourceMappingURL=style.css.map */