@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  font-family: "Poppins", sans-serif;
  transition: all 0.5s linear;
}

.page-wrapper {
  max-width: 1024px;
  margin: auto;
}

.top-image {
  width: 100%;
  position: relative;
  z-index: 1;
}

.top-image-wrapper::after {
  content: "";
  width: 100%;
  height: 40%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(#80808000, #ffffff);
  z-index: 2;
}

.main-heading {
  color: #000;
  font-weight: 600;
  font-size: 18pt;
}

.sub-heading {
  color: #000;
  font-weight: 600;
  font-size: 16pt;
}

.sub-heading span {
  color: #1475bc;
}

.input-field {
  width: 100%;
  background-color: #f2f3f8;
  border: none;
  outline: 0;
  border-radius: 10pt;
  margin: 0.75rem 0;
  padding: 0.8rem 1rem;
  font-weight: 500;
  color: #000;
  font-size: 16pt;
  position: relative;
  z-index: 1;
}

.input-field::placeholder {
  color: #000;
}

.birthdate-format {
  color: #bbb;
  font-weight: 500;
  font-size: 16pt;
  position: absolute;
  top: 57%;
  right: 3%;
  z-index: 3;
  transform: translate(-40%, -50%);
}

button,
.button {
  border: 1px solid #00709f;
  outline: 0;
  background: #00709f;
  color: #fff;
  font-weight: 500;
  border-radius: 10pt;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  background: #fff;
  color: #00709f;
  outline: 0 !important;
  text-decoration: none;
}

.continue-btn {
  width: 100%;
  margin: 0.75rem 0;
  padding: 0.8rem 1rem;
  font-size: 16pt;
}

.header {
  background-color: #0077ad;
  color: #fff;
  font-weight: 400;
  font-size: 17pt;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.header a {
  color: #fff;
  font-size: 20pt;
  padding: 0 1rem;
  margin-top: -3px;
}

.header span {
  padding: 0 1rem;
}

@media (max-width: 375px) {
  .header {
    font-size: 16pt;
    padding: 2rem 0;
  }

  .header a {
    font-size: 20pt;
    padding: 0 0.5rem;
  }

  .header span {
    padding: 0 0.5rem;
  }
}

.available-bookings-wrapper {
  background-color: #f2f3f8;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.bookings-avail > div {
  border-radius: 10pt;
  background-color: #ffffff;
}

.section-heading {
  color: #000000;
  font-weight: 500;
  font-size: 14pt;
}

.section-div {
  color: #ff0000;
  font-weight: 500;
  font-size: 13pt;
}

.section-div2 {
  color: #bbbbbb;
  font-weight: 500;
  font-size: 13pt;
}

.book-sm-btn {
  width: 100%;
  font-size: 11pt;
  padding: 0.5rem 0rem;
  display: block;
  text-align: center;
}

.upcomming-appointments-wrapper {
  background-color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.ua-card-header {
  background-color: #f2f3f8;
  border: 1px solid #64d1ff;
  border-top-left-radius: 10pt;
  border-top-right-radius: 10pt;
  padding: 1rem 1rem 0.5rem;
}

.ua-card-body {
  border: 1px solid #bbbbbb;
  border-top: none;
  border-bottom-left-radius: 10pt;
  border-bottom-right-radius: 10pt;
  padding: 1rem 1px;
}

.ua-text {
  color: #000;
  font-weight: 500;
  font-size: 12pt;
  display: flex;
}

.ua-text > i {
  font-size: 18pt;
  margin-right: 10px;
}

.ua-text-gray {
  color: #bbb;
  font-weight: 500;
  font-size: 11pt;
  margin-top: 5px;
}

@media (max-width: 388px) {
  .ua-card-body {
    padding: 1rem 0px;
  }

  .ua-text {
    font-size: 11pt;
  }

  .ua-text > i {
    font-size: 16pt;
    margin-right: 6px;
  }

  .ua-text-gray {
    font-size: 10pt;
  }
}

.ua-card-note {
  color: #00709f;
  font-weight: 500;
  font-size: 12pt;
  margin-left: 1rem;
  margin-top: 2rem;
}

.ua-card-buttons {
  display: flex;
  margin-top: 1rem;
}

.ua-card-buttons > button,
.ua-card-buttons > a {
  width: 40%;
  display: block;
  margin: 0 1rem;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 11pt;
}

.consultations-month {
  color: #1475bc;
  font-size: 18pt;
  font-weight: 500;
  background-color: #f2f3f8;
  border-radius: 10pt;
  padding: 0.7rem 0;
}

@media (max-width: 450px) {
  .consultations-month {
    font-size: 16pt;
  }
}

label {
  display: block;
  color: #bbbbbb;
  text-align: center;
  font-size: 14pt;
}

.timeslotes-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.timeslotes-wrapper > div {
  color: #000;
  font-weight: 500;
  font-size: 13pt;
  background-color: #f2f3f8;
  border-radius: 7pt;
  padding: 0.7rem 1rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.timeslotes-wrapper > div.active {
  background-color: #97dffc;
}

.book-app-btn {
  padding: 0.7rem 0;
  width: 100%;
  display: block;
}

.cancel-appointment-btn {
  display: block;
  background-color: #ff0000;
  border-color: #ff0000;
  padding: 0.7rem 0;
  width: 80%;
  margin: 2rem auto 0;
  font-size: 11pt;
}

.cancel-appointment-btn:hover {
  color: #ff0000;
}

#form label {
  text-align: left;
  color: #000;
  display: block;
  font-weight: bold;
  margin-bottom: -7px;
  padding-left: 15px;
  font-size: 24px;
}
