#date-slider-container{
    position: relative;
    padding: 0px 5px 20px 5px;
    line-height: 1.5;
    font-family: GothamBook;
}
.date-slider .date-block {
    border-radius: 10px 10px 0 0;
    padding: 8px 0;
    background: url("../images/date-seperator.png") no-repeat right center;
    text-transform: uppercase;
    cursor: pointer; text-align: center;
}
.date-slider {
    background-color: #494949;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.date-slider .date-block.active{
    background-color: #aae0fa;
    background-image: none;
}

.date-slider .date-block > span{
    
}
.date-slider .date-block span.day,
.date-slider .date-block span.month{
    display: block;
    text-align: center;
    font-size: 10px;
}
.date-slider .date-block span.date{
    display: block;
    text-align: center;
    font-size: 30px;
    color: #fff;
}

.day .badge {
    min-width: 8px !important;
    padding: 1px 4px !important;
    font-size: 10px !important;
 }

.date-slider .date-block span.badge{
     
    text-align: center;
    
}

.date-slider .date-block span.day{
    color: #b3b5b8;
    letter-spacing: 2px;
}
.date-slider .date-block span.month{
    color: #97dbf8;
    letter-spacing: 2px;
}

.date-slider .date-block.active span.date,
.date-slider .date-block.active span.month,
.date-slider .date-block.active span.day{
    color: #373637
}
.date-slider-prev, .date-slider-next {
    position: absolute;
    top: 20px;
    left: -21px;
    text-indent: -999em;
    width: 30px;
    height: 60px;
    background-size: 275px 145px;
    border: none;
    cursor: pointer;
    outline: none;
    background-color: #666;
    border-radius: 5px 0 0 5px;
}
.date-slider-prev:after, .date-slider-next:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    margin-top: -11px;
    text-indent: -999em;
    background: url('../images/sprite.png') no-repeat ;
    background-size: 350px 150px;
    width: 11px;
    height: 21px;
}
.date-slider-prev:after {
    background-position: -123px -67px;
    margin-left: -5px;
}
.date-slider-next {
    left: auto;
    right: -21px;
    border-radius: 0 5px 5px 0;
}
.date-slider-next:after {
    background-position: -138px -67px;
    left: auto;
    right: 50%;
    margin-right: -5px;
}
.ticket-booking .time-list {
    background: #aae0fa;
    padding: 20px 15px 10px;
    margin-top: -8px;
    border-radius: 0 0 10px 10px;
}
.ticket-booking h3 {
    margin: 0 0 5px 0;
    text-transform: uppercase;
}
.ticket-booking .time-list ul {
    margin: 0 -10px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.time-list li {
    min-width: 95px;
    background-color: #e2f3fd;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 5px;
    margin-right: 5px;
    line-height: 2.0;
    color:#252B2B;
}
.time-list li.active, .time-list li:active {
    background-color: #9ec0d2;
    border: 1px solid #fff;
}
.time-list li:hover{
    background-color: #f3fafe;
}
.time-list li.requested:hover{
    background-color: #9ec0d2;
}

.badge-foucsed{
       font-size: 14px;
    font-family: GothamBold;
    background-color: #3F51B5;
}
.ScheduleTickets
{
    cursor: pointer;
    margin-top: 5px;
    padding: 7px;
    line-height: 1.3;
}

.seatLoading{
    text-align: center;
    margin-top:30px;
}
.loaderx {
  margin: auto;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spinx 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spinx {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spinx {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}