
::selection {
    background-color: #eee;
  }
  
  ::-moz-selection {
    background-color: #eee;
  }
  .subs1{
      display:none;
  }
  
  .seat-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .theatre {
    margin: 20px auto;
    width: 100%;
    /* max-width: 60%; */
    border-radius: 5px;
    background-color: #fff;
    padding: 25px 26px;
    box-shadow: 0px 0px 17px -4px #000;
  }
  .theatre .cabin{
    overflow-x: auto;
  }
  
  .screen-side {
    text-align: center;
  }
  
  .screen-side .screen {
    height: 25px;
    margin: 0 20px;
    border-radius: 50%;
    box-shadow: 0px -3px 0px 1px #ccc;
    color: #ccc;
  }
  
  .screen-side .select-text {
    color: #969696;
  }
  
  .exit {
    position: relative;
    height: 50px;
  }
  
  .exit:before, .exit:after {
    content: "EXIT";
    font-size: 14px;
    line-height: 18px;
    padding: 0px 5px;
    font-family: "Arial Narrow", Arial, sans-serif;
    display: block;
    position: absolute;
    background: #81c784;
    color: white;
    top: 50%;
    transform: translate(0, -50%);
  }
  
  .exit:before {
    left: 0;
  }
  
  .exit:after {
    right: 0;
  }
  
  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.28571%;
    padding: 5px;
    position: relative;
  }
  
  .seat input[type="checkbox"] {
    position: absolute;
    opacity: 0;
  }
  
  .seat input[type="checkbox"]:checked+label {
    background: #bada55;
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    animation-duration: 300ms;
    animation-fill-mode: both;
  }
  
  .seat input[type="checkbox"]:disabled+label {
    background: #ddd;
    text-indent: -9999px;
    overflow: hidden;
  }
   .row--allotted .seat input[type="checkbox"]:disabled+label {
    background: #858585;
  }
  
  .seat input[type="checkbox"]:disabled+label:after {
    /*content: "X";*/
    /*text-indent: 0;*/
    /*position: absolute;*/
    /*top: 4px;*/
    /*left: 50%;*/
    /*transform: translate(-50%, 0%);*/
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 15px; /* adjust as needed */
    height: 15px; /* adjust as needed */
    background-image: url("../../images/unavailable.png");
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
  }
  
    .seat label::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 17px;
    /* left: 50%; */
    transform: translate(-50% -50%, 0%);
    width: 15px;
    height: 20px;
    background-image: url(../../images/available.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    }
  
  .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: 14px;
    font-weight: bold;
    line-height: 1.5rem;
    padding: 4px 0;
    color: #fff;
    background: #f74f22;
    border-radius: 2px;
    animation-duration: 300ms;
    animation-fill-mode: both;
    transition-duration: 300ms;
  }
  
  .seat label:hover {
    cursor: pointer;
    box-shadow: 0px 0 7px 3px #ccc;
  }
  
  @-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;
  }