.login-background {
  padding-top: 62px;
  background-image: url("../img/login-background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.animated-logo {
  display: inline-block;
  margin: 0 0.5rem;
  animation: slideInUp;
  animation-duration: 1.3s;
}

.avatar-circle {
  width: 25px;
  height: 25px;
  text-align: center;
  background: rgb(238, 238, 238);
  -moz-border-radius: 70px;
  -webkit-border-radius: 70px;
  border-radius: 70px;
}

.initials {
  position: relative;
}

.page-body {
  margin-top: 80px;
  margin-left: 10px;
  margin-right: 10px;
  background-image: url("../img/main-background-faded.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #fff;
}

.page-header {
  color: #c45e5a;
  font-size: 2.0rem;
  margin-bottom: 20px;
}

.page-actions-wrapper {
  margin-bottom: 10px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: var(--white);
  overflow-x: hidden;
  /*transition: 0.1s;*/
  padding-top: 80px;
  border-color: var(--red);
}

.sidenav-header {
  color: #c45e5a;
  font-size: 1.5rem;
}

.modal-title {
  color: #c45e5a;
  font-size: 1.5rem;
}

.book-seat-note {
  color: #fff; 
  background-color: #3baa3a; 
  border-color: #3baa3a; 
  border-radius: 4px; 
  border-width: 1px; 
  padding: 5px 10px 5px 10px;
}

.seat-label {
  background-color: #f3f6f8; 
  border-color: #f3f6f8; 
  border-radius: 4px; 
  border-width: 1px; 
  padding: 5px 10px 5px 10px;
  font-weight: bold;
  width: 100px;
}

.wizard-wrapper {
  width: 100%;
  margin: 100px auto; 
}

.wizard {
  counter-reset: step;
}

.wizard li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 14px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
}

.wizard li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  border: 2px solid #d4d4d4;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}

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

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

.wizard li.active {
  color: var(--red);

}

.wizard li.active:before {
  border-color: var(--red);
  color: var(--white);
  background-color: var(--red);
}

.wizard li.active + li:after {
  background-color: #d4d4d4;
}
