html, body{
    margin: 0;
    padding: 0;
}
.spinner-clock-dark {
  width: 150px;
  height: 150px;
  border: 4px solid #565656;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 20px auto;
}
.spinner-clock-dark:before {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #565656;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: '';
  margin: -6px 0 0 -6px;
  z-index: 1;
}
.spinner-clock-dark .spinner-clock-hour,
.spinner-clock-dark .spinner-clock-minute {
  -webkit-animation-name: spinner;
  -moz-animation-name: spinner;
  -o-animation-name: spinner;
  -ms-animation-name: spinner;
  animation-name: spinner;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 4px;
  background: #565656;
  margin-left: -2px;
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -o-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  position: absolute;
  left: 50%;
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.spinner-clock-dark .spinner-clock-minute {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  top: 15px;
  height: 56px;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}
.spinner-clock-dark .spinner-clock-hour {
  -webkit-animation-duration: 12s;
  -moz-animation-duration: 12s;
  -o-animation-duration: 12s;
  -ms-animation-duration: 12s;
  animation-duration: 12s;
  top: 31px;
  height: 40px;
}
.spinner-clock-dark.spinner-clock-slow .spinner-clock-minute {
  -webkit-animation-duration: 3px;
  -moz-animation-duration: 3px;
  -o-animation-duration: 3px;
  -ms-animation-duration: 3px;
  animation-duration: 3px;
}
.spinner-clock-dark.spinner-clock-slow .spinner-clock-hour {
  -webkit-animation-duration: 36s;
  -moz-animation-duration: 36s;
  -o-animation-duration: 36s;
  -ms-animation-duration: 36s;
  animation-duration: 36s;
}

.booking-item .booking-time{
    text-align: center;
    font-size: 20px;
}
.booking-item .booking-place{
    text-align: center;
    font-size: 20px;
}

/* seat coloring */
.seat-choices {
    border: 1px solid black;
    padding: 10px;
    display: inline-block;
}

.seat-row {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
}

.btn-seat {
    width: 45px;
    height: 45px;
    margin: 3px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.seat-booked { background: #ff1d13; color: white; }
.seat-free { border: 1px dashed #333; background: #f0f0f0; color: black; }

.seat-temp-booked { background: orange; color: white; }
.seat-disabled { background: #eee; color: #999; }
.seat-selected { background: #5cb85c; color: white; }

.btn-seat{
    width: 40px;
    height: 40px;
    margin: 5px;
}
.btn-seat:hover{
    border-radius: 0px;
}
.seat-legend{
    display: inline-block;
}
@media (min-width: 1200px){
    .search-info-container{
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #e6e6e6;
    }
    .search-info-container .info-bottom span{
        font-size: 20px;
    }
    .search-info-container .info-bottom a{
        float: right;
    }
    .navbar-container{
        margin-right : 0px;
        padding-right:0px;
        margin-left: 0%;
        padding-left: 0px;margin-top: 16px; width:100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px){
    .navbar-container{
        margin-right : 0px;
        padding-right:0px;
        margin-left: 0%;
        padding-left: 0px;margin-top: 16px; width:100%;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    .navbar-container{
        margin-right : 0px;
        padding-right:0px;
        margin-left: 0%;
        padding-left: 0px;
        width:100%;
    }
}

@media (min-width: 375px) and (max-width: 767px){
    .navbar-menu{
        padding: 0px 0px;
    }
}

@media only screen
  and (min-device-width: 375px)
  and (max-device-width: 667px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
      .navbar-menu{
          padding: 0px 0px;
      }
}


@media (max-width: 374px){
    .navbar-menu{
        padding: 0px 0px;
    }
}

.has-error .form-control{
    border-color: #ff1d13;
}

.has-error .form-control:focus{
    border-color: #ff1d13;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff1d13;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff1d13;
}
.has-error .help-block, .has-error .control-label{
    color: #ff1d13;
}
