/* Apply Google Font to Contact Form 7 form elements */
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea, .wpcf7 label, .wlsm input[type="text"], .wlsm input[type="email"], .wlsm input[type="tel"], .wlsm textarea, .wlsm label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.wlsm select {
  font-size: 0.95em;
}
/* Apply flexbox to the form container */
.wpcf7 form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
}
/* Ensure the submit button aligns at the end */
.submit-button {
  align-self: flex-end;
  padding: 0;
  margin: 0;
  display: grid;
  justify-self: end;
}
/* Style the submit button */
.wpcf7 input[type="submit"], button.wlsm-btn.btn.btn-primary {
  font-family: "Roboto Slab", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.wpcf7 input[type="submit"], button.wlsm-btn.btn.btn-primary {
  background-color: #0073aa;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}
.wpcf7 input[type="submit"]:hover, button.wlsm-btn.btn.btn-primary:hover {
  background-color: #FFCD57;
  color: #54595F;
}
/* Nayyar Shaikh CSS */
.single-post:not(.elementor-page), .entry-content a:not(.wp-block-button__link):not(.wp-block-file__button), .page:not(.elementor-page):not(.woocommerce-page), .entry a:not(.wp-block-button__link):not(.wp-block-file__button) {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}
.wlsm-navigation-links li a:hover, .wlsm-navigation-links li a:focus, .wlsm-navigation-links li a.active {
  color: #fff;
  background-color: #0E8DBB;
  box-shadow: 1px 1px 2px #adadad;
}
a.wlsm-st-print-class-time-table.wlsm-font-small.wlsm-font-bold.wlsm-ml-1 {
  text-decoration: underline;
  text-decoration-style: dotted;
  color: #00bdce;
  text-decoration-skip-ink: none;
}
/* CSS Code to try remove the thin white border in mobile view */
@media (max-width: 767px) {
  .elementor-344 .elementor-element.elementor-element-182ccb5 > .elementor-widget-container {
    margin: 0px;
  }
  .elementor-344 .elementor-element.elementor-element-182ccb5 > .elementor-widget-container {
    margin: 0px;
    padding: 0px;
  }
}
/* CSS Code to animate Register button - Fade Slide in from below*/
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
    /* Start 50px below */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* End in original position */
  }
}
.ast-custom-button {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeSlideIn 0.5s ease-out forwards;
}
