form label {
  display: block;
  position: relative;
  margin: 40px 0px;
}

.btn, .btn-lg {
  border-radius: 0px;
}

.label-txt {
  position: absolute;
  top: -1.6em;
  padding: 10px;
  font-family: sans-serif;
  font-size: 0.8em;
  letter-spacing: 1px;
  color: #787878;
  transition: ease 0.3s;
}

.input {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  outline: none;
}

.line-box {
  position: relative;
  width: 100%;
  height: 2px;
  background: #BCBCBC;
}

.line {
  position: absolute;
  width: 0%;
  height: 2px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #8BC34A;
  transition: ease 0.6s;
}

.input:focus + .line-box .line {
  width: 100%;
}

.label-active {
  top: -3em;
}

.ticket {
  box-shadow: 0 0.25rem 1.5rem 0.3125rem rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
}

.ticket .ticket-header {
  border-bottom: 0.1rem dashed #666;
  border-top: 0.1rem dashed #666;
  padding: 5px 0px;
  text-align: center;
}

.ticket .ticket-header div {
  padding: 5px 0px;
}

.ticket .ticket-body {
  border-bottom: 0.1rem dashed #666;
  text-align: center;
}

.selectedItem {
  background-color: #fff3cd;
  font-weight: 600;
  border: 1px solid #de0000;
  border-radius: 2px;
}

.animationload {
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.osahanloading {
  animation: 1.5s linear 0s normal none infinite running osahanloading;
  background: #fed37f none repeat scroll 0 0;
  border-radius: 50px;
  height: 50px;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  width: 50px;
}

.osahanloading::after {
  animation: 1.5s linear 0s normal none infinite running osahanloading_after;
  border-color: #85d6de transparent;
  border-radius: 80px;
  border-style: solid;
  border-width: 10px;
  content: "";
  height: 80px;
  left: -15px;
  position: absolute;
  top: -15px;
  width: 80px;
}

@keyframes osahanloading {
  0% {
    transform: rotate(0deg);
  }
  50% {
    background: #85d6de none repeat scroll 0 0;
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}