 /* CODE FOR RADIO BUTTONS */

.s-bottom-form .hs_event_meet_discuss span {
         color: #00053D !important;
  margin: 0 !important;
}

   .s-bottom-form  .hs-form-radio-display:hover { background: #E0E6EB; }
       .s-bottom-form  .hs-form-radio-display {
  
    background: #ffffff;
    padding: 0.75em;
    border-radius: 0.5em;
    position: relative;
    display: flex
;
    transition: all 0.2sease-out;
    gap: 1em;
    margin-bottom: 10px;
    flex-direction: row;
    align-items: center;
    align-content: center;

  // &:hover {
  //   transform: translateY(-3.3%);
  // }

 .s-bottom-form  .hs-form-radio-display span {
    z-index: 2;
    pointer-events: none;



    strong {
      font-weight: bold;
      display: block;
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }
  }

  input[type="radio"] {
    margin: 0;
    padding: 0;
/*     margin-top: 1ch; */

    &::before {
      display: block;
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      border-radius: 0.5em;
      box-shadow: 0;
      transition: all 0.2s ease-out;
      cursor: pointer;
    }

    &:hover:not(:checked)::before {
      /*background: #E0E6EB;*/
        
    }

    &:checked::before {
      /*background: #E0E6EB;*/
        
     
    }
  }
}
        
/* END OF RADIO BUTTON CODE */

.s-bottom-form .submitted-message p
{ color: #fff }

.loading-bars {
   padding: 22px 20px;
   text-align: center;
}
.no-events-found .inrre {
    position: relative;
    padding: 20px;
    border: 1px solid var(--borders);
    text-align: center;
} 
.page-load-status {
    display: none;
}

.loading-bars .bar {
   animation: pulse 1.2s ease-out infinite;
   background: #0c63ff;
   display: inline-block;
   height: 8px;
   width: 5px;
}

.loading-bars .bar:nth-of-type(0n+1) {
   animation-delay: 0s;
}

.loading-bars .bar:nth-of-type(0n+2) {
   animation-delay: .2s;
}

.loading-bars .bar:nth-of-type(0n+3) {
   animation-delay: .4s;

}

.loading-bars .bar:nth-of-type(0n+4) {
   animation-delay: .6s;
}

.loading-bars .bar:nth-of-type(0n+5) {
   animation-delay: .8s;
}

@keyframes pulse {
   0%,75% {
      transform: scale(1)
   }

   25% {
      transform: scaleY(3)
   }
}