﻿.navbar .navbar-nav {
  display: inline-block;
  float: none;
}
.navbar {
  text-align: center;
}
.wizard-nav {
  background-color: #aa0056;
  border-color: #910049;
  /*padding: 0 25px;*/
  overflow: hidden;
  font-weight: bold;
}
.wizard-nav a {
  color: white;
}
.wizard-nav a:hover,
.wizard-nav a:focus {
  background-color: transparent;
}
.wizard-nav .navbar-center > li {
  padding-top: 0;
  padding-bottom: 0;
  float: left;
  padding: 0 45px 0 20px;
}
.wizard-nav .navbar-center > li.active > a,
.wizard-nav .navbar-center > li.active > a:hover,
.wizard-nav .navbar-center > li a:hover,
.wizard-nav .navbar-center > li.active > a:focus,
.wizard-nav .navbar-center > li a:focus {
  line-height: 36px;
  /*color: rgb(200, 200, 200)*/
  color: white;
  background-color: transparent;
}
.wizard-nav .navbar-center > li.active:after {
  -webkit-box-shadow: 3px -3px 0 2px rgba(45, 95, 138, 1), 3px -3px 0 2px rgba(45, 95, 138, 1);
  box-shadow: 3px -3px 0 2px rgba(45, 95, 138, 1), 3px -3px 0 2px rgba(45, 95, 138, 1);
}
.wizard-nav .navbar-center > li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  /*half of square's length*/
  /*same dimension as the line-height of .breadcrumb-core a */
  width: 71px;
  height: 71px;
  /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	                length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	                if diagonal required = 1; length = 1/1.414 = 0.707*/
  -webkit-transform: scale(0.707) rotate(45deg);
  -ms-transform: scale(0.707) rotate(45deg);
  -moz-transform: scale(0.707) rotate(45deg);
  -o-transform: scale(0.707) rotate(45deg);
  transform: scale(0.707) rotate(45deg);
  /*we need to prevent the arrows from getting buried under the next link*/
  z-index: 1;
  /*background same as links but the gradient will be rotated to compensate with the transform applied*/
  background: #aa0056;
  /*stylish arrow design using box shadow*/
  -webkit-box-shadow: 3px -3px 0 2px rgba(58, 121, 176, 1), 3px -3px 0 2px rgba(58, 121, 176, 1);
  box-shadow: 3px -3px 0 2px rgba(58, 121, 176, 1), 3px -3px 0 2px rgba(58, 121, 176, 1);
  /*
		            5px - for rounded arrows and 
		            50px - to prevent hover glitches on the border created using shadows*/
  border-radius: 0 5px 0 50px;
}
.wizard-nav .navbar-right {
  margin-right: 0;
}
.wizard-nav .navbar-right.active > a,
.wizard-nav .navbar-right.active > a:hover,
.wizard-nav .navbar-right a:hover,
.wizard-nav .navbar-right.active > a:focus,
.wizard-nav .navbar-right a:focus {
  line-height: 36px;
  /*color: rgb(200, 200, 200)*/
  color: white;
  background-color: transparent;
}
.wizard-nav .navbar-left.active > a,
.wizard-nav .navbar-left.active > a:hover,
.wizard-nav .navbar-left a:hover,
.wizard-nav .navbar-left.active > a:focus,
.wizard-nav .navbar-left a:focus {
  line-height: 36px;
  /*color: rgb(200, 200, 200)*/
  color: white;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .wizard-nav ul {
    display: inline-block;
  }
  .wizard-nav .navbar-left {
    width: 50%;
    margin-left: 0;
    text-align: left;
    float: left;
  }
  .wizard-nav .navbar-left.active > a,
  .wizard-nav .navbar-left.active > a:hover,
  .wizard-nav .navbar-left a:hover,
  .wizard-nav .navbar-left.active > a:focus,
  .wizard-nav .navbar-left a:focus {
    line-height: 36px;
    /*color: rgb(200, 200, 200)*/
    color: white;
    background-color: transparent;
  }
  .wizard-nav .navbar-right {
    width: 50%;
    text-align: right;
    float: right;
  }
  .wizard-nav .navbar-right.active > a,
  .wizard-nav .navbar-right.active > a:hover,
  .wizard-nav .navbar-right a:hover,
  .wizard-nav .navbar-right.active > a:focus,
  .wizard-nav .navbar-right a:focus {
    line-height: 36px;
    /*color: rgb(200, 200, 200)*/
    color: white;
    background-color: transparent;
  }
  .wizard-nav .navbar-center {
    display: none;
  }
}
.thumbnail > img {
  min-height: 200px;
  min-width: 158px;
  max-height: 200px;
  max-width: 158px;
}
.thumbnail > h4 {
  overflow-wrap: break-word;
  max-width: 250px;
}
.wizard .modal-header {
  padding: 0 15px;
}
.wizard .modal-footer {
  padding: 0;
}
.wizard .modal-footer .navbar {
  margin-bottom: 0;
}
/*# sourceMappingURL=wizard.css.map */