@keyframes blinking {
        0% {
          background-color: #f09422;
          border: 3px solid #ec7725;
        }
        100% {
          background-color: #ef6851;
          border: 3px solid #ec7725;
        }
      }
      /*
      Start
      20221228
      Sushma B
      Added styling to timer displayed in tab for booking section in mobile view
      */
      .timer{
        font-size: 20px;
        font-weight: bold;
        padding: 8px;
      }
      /* END */
      .timer.blink {
        animation: blinking 1s infinite;
    text-align: center;
    color: white;
    font-size: 32px;
    margin: 5px;
      }
