.nav-item{
    margin-right: 16px;
}

*:focus {
    box-shadow: none !important;
}


.card-body{
    padding: 6px !important;
}

.card-body h6{
    margin: 0px;
}

.card-text{
    margin: 0px !important;
    font-size: 12px!important;
}

.card-footer{
    padding: 6px 0px !important;
}


.modal-content{
    border-radius: 3px !important;
}

.modal-title {
    line-height: .25rem !important;
    font-size: 1.0rem !important;
}

.btn-close{
    font-size: .60rem !important;
}


  
  .plane {
    margin: 20px auto;
    max-width: 300px;
  }
  
  .cockpit {
    height: 250px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 5px solid #d8d8d8;
  }
  .cockpit:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
    border-radius: 50%;
  /*  border-right: 5px solid #d8d8d8;
    border-left: 5px solid #d8d8d8;*/
  }
  .cockpit h1 {
    width: 60%;
    margin: 100px auto 35px auto;
  }
  
  .exit {
    position: relative;
    height: 50px;
  }
  .exit:before, .exit:after {
    content: "EXIT";
    font-size: 14px;
    line-height: 18px;
    padding: 0px 2px;
    font-family: "Arial Narrow", Arial, sans-serif;
    display: block;
    position: absolute;
    background: green;
    color: white;
    top: 50%;
    transform: translate(0, -50%);
  }
  .exit:before {
    left: 0;
  }
  .exit:after {
    right: 0;
  }
  
  .fuselage {
      border-top: 5px solid #d8d8d8;
  /*  border-right: 5px solid #d8d8d8;
    border-left: 5px solid #d8d8d8;*/
  }
  
  ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .seats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  
  
  .seat {
    display: flex;
    /* flex: 0 0 14.28571428571429%; */
    flex: 0 0 3%;
    padding: 5px;
    position: relative;
  }
  /* .seat:nth-child(5) {
    margin-right: 4%;
  } */
  .seat input[type=checkbox] {
    position: absolute;
    opacity: 0;
  }
  .seat input[type=checkbox]:checked + label {
    background: yellow;
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    animation-duration: 300ms;
    animation-fill-mode: both;
  }
  .seat input[type=checkbox]:disabled + label {
    background: #f28888;
    text-indent: -9999px;
    overflow: hidden;
  }
  .seat input[type=checkbox]:disabled + label:after {
    content: "x";
    text-indent: 0;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  .seat input[type=checkbox]:disabled + label:hover {
    box-shadow: none;
    cursor: not-allowed;
  }
  .seat label {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 10px;
    /* font-weight: bold; */
    line-height: 1.5rem;
    /* padding: 4px 0; */
    /* background: #b7c9ea; */
    /* border-radius: 3px; */
    animation-duration: 300ms;
    animation-fill-mode: both;
    border: thin solid lightgray;
  }
  .seat label:before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    top: 1px;
    left: 50%;
    transform: translate(-50%, 0%);
    /* background: rgba(255, 255, 255, 0.4); */
    border-radius: 3px;
  }
  .seat label:hover {
    cursor: pointer;
    box-shadow: 0 0 0px 2px #5C6AFF;
  }
  
  @-webkit-keyframes rubberBand {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    30% {
      -webkit-transform: scale3d(1.25, 0.75, 1);
      transform: scale3d(1.25, 0.75, 1);
    }
    40% {
      -webkit-transform: scale3d(0.75, 1.25, 1);
      transform: scale3d(0.75, 1.25, 1);
    }
    50% {
      -webkit-transform: scale3d(1.15, 0.85, 1);
      transform: scale3d(1.15, 0.85, 1);
    }
    65% {
      -webkit-transform: scale3d(0.95, 1.05, 1);
      transform: scale3d(0.95, 1.05, 1);
    }
    75% {
      -webkit-transform: scale3d(1.05, 0.95, 1);
      transform: scale3d(1.05, 0.95, 1);
    }
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  @keyframes rubberBand {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
    30% {
      -webkit-transform: scale3d(1.25, 0.75, 1);
      transform: scale3d(1.25, 0.75, 1);
    }
    40% {
      -webkit-transform: scale3d(0.75, 1.25, 1);
      transform: scale3d(0.75, 1.25, 1);
    }
    50% {
      -webkit-transform: scale3d(1.15, 0.85, 1);
      transform: scale3d(1.15, 0.85, 1);
    }
    65% {
      -webkit-transform: scale3d(0.95, 1.05, 1);
      transform: scale3d(0.95, 1.05, 1);
    }
    75% {
      -webkit-transform: scale3d(1.05, 0.95, 1);
      transform: scale3d(1.05, 0.95, 1);
    }
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  .rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
  }
  


  
  .summary-book-seat{
    border: thin solid gray;
    padding: 1px 4px;
    border-radius: 3px;
    margin: 2px;
  }


  #movie-booking-show-list li:hover {
    background-color: rgb(231, 231, 231);
    cursor: pointer;
  }

  
  .show-active{
    background-color: #d1e592 !important;   
  }

  .show-active-date{
    background-color: #d1e592 !important;   
  }

  .seats-price-label{
    font-size: 11px;
    font-weight: 700;
    margin-top: 12px;
    color: #5e5e5e;
  }


  .autocomplete {
    position: relative;
    display: inline-block;
  }

  
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}


#div-ticket{
  width:350px;
  margin:0px auto;
  border:thin solid  lightgray;
  border-radius: 6px;
}


#barcode {
  /* box-shadow: 0 0 10px rgba(0,139,253,0.25); */
  width: 300px;
  }