﻿body {
  background-color: #FFFFFF;
}

.bwizard {
  position: relative;
  margin: 10px 10px;
  overflow: hidden;
}

.bwizard .well {
  margin: 7px 0;
  height: 280px; /* calc(100vh - 111px); */
  overflow: auto;
  padding: 0px 19px;
}

.bwizard-steps {
  font-size: 13px;
  margin:0;
  padding: 0;
  display: inline-block;
  background: transparent;
}

.bwizard-steps li {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  line-height: 18px;
  list-style: none;
  padding: 6px 17px 8px 30px;
  background: #efefef;
  zoom: 1;
  *display: inline;
  *padding-left: 17px;
}

.bwizard-steps li:first-child {
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  padding-left: 12px;
}

.bwizard-steps li:first-child:before {
  border: none;
}

.bwizard-steps li:last-child {
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  margin-right: 0;
}

.bwizard-steps li:last-child:after {
  border: none;
}

.bwizard-steps li:before {
  position: absolute;
  left: 0; top: 0;
  height: 0; width: 0;
  border-bottom: 16px inset transparent;
  border-left: 20px solid #FFFFFF;
  border-top: 16px inset transparent;
  content: "";
}

.bwizard-steps li:after {
  position: absolute;
  right: -20px; top: 0;
  height: 0; width: 0;
  border-bottom: 16px inset transparent;
  border-left: 20px solid #efefef;
  border-top: 16px inset transparent;
  content: "";
  z-index: 2;
}

.bwizard-steps .label {
  color: #000000;
  border: 1px solid #000000;
  border-radius: 50%;
  padding: 3px 5px;
  background-color: transparent;
  margin-right: 5px;
  float: left;
}

.bwizard-steps .active .label {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.bwizard-steps .active {
  color: #FFFFFF;
  background: #007ACC;
}

.bwizard-steps .active:after {
  border-left-color: #007ACC;
}


.bwizard-steps a {
  color: #333;
}

.bwizard-steps .active a {
  color: #FFFFFF;
  cursor: default;
}

.bwizard-steps a:hover {
  text-decoration: none;
}

.bwizard-steps.clickable li:not(.active) {
  cursor: pointer;
}

.bwizard-steps.clickable li:hover:not(.active) {
  background: #ccc;
}

.bwizard-steps.clickable li:hover:not(.active) a {
  color: #08c;
}

.bwizard-steps.clickable li:hover:not(.active):after {
  border-left-color: #ccc;
}

@media (max-width: 480px) {
  /*badges only on small screens*/
  .bwizard-steps li,
  .bwizard-steps li.active,
  .bwizard-steps li:first-child,
  .bwizard-steps li:last-child {
  background-color: transparent;
  padding: 0;
  margin-right: 0;}

  .bwizard-steps li:after,
  .bwizard-steps li:before {
  border: none;
  }
}

.pager {
  margin: 10px 0;
}