#allrecords a {
    color: #ffffff;
    text-decoration: none;
}
.ms_booking {
    font-family: 'Play', sans-serif !important;
    padding-block-start: 5px;
    padding-block-end: 5px;
    font-size: 14px !important;
    line-height: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
    vertical-align: middle !important;
    letter-spacing: 1px !important;
    position: fixed;
    bottom: 25px;
    right: 20px;
    border-radius: 5px;
    width: 90px;
    height: 35px;
    background: #ea9e92;
    opacity: .9;
    -webkit-transition: opacity .15s;
    transition: opacity .15s;
    cursor: pointer;
    color: #fff;
    z-index: 100;
}
.ms_whatsapp {
    text-align: center !important;
    vertical-align: middle !important;
    position: fixed;
    bottom: 90px;
    right: 38px;
    cursor: pointer;
    z-index: 100;
}

.ms_booking::after,
.ms_booking::before {
  content: '';
  position: absolute;
  border: 2px solid #ea9e92;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 10%;
  animation: pulse 2.5s linear infinite;
}

.ms_booking::after {
  animation-delay: 1.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
