@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
html {
  font-size: 40px;
}
@media (max-width: 2400px) {
  html {
    font-size: 35px;
  }
}
@media (max-width: 1920px) {
  html {
    font-size: 30px;
  }
}
@media (max-width: 1280px) {
  html {
    font-size: 25px;
  }
}
@media (max-width: 580px) {
  html {
    font-size: 20px;
  }
}
@media (max-width: 280px) {
  html {
    font-size: 4vw;
  }
}

@media (max-width: 1280px) {
  body {
    padding: 2rem 4rem;
  }
}
@media (max-width: 980px) {
  body {
    padding: 2rem 3rem;
  }
}

.bold {
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

body {
  background-color: #F5F5F5;
}

h1 {
  color: #111111;
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2rem;
}

h2 {
  color: #111111;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}
ul li {
  margin-bottom: 0.3rem;
  margin-left: 1.35rem;
  text-indent: -1.35rem;
}

img {
  user-select: none;
}

.loading {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.loading h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  width: 100%;
}

.not-found {
  text-align: center;
}
.not-found h1 {
  font-size: 3rem;
  font-weight: 700;
}

.button {
  cursor: pointer;
  border: solid 2px;
  border-radius: 0.5rem;
  font-weight: 700;
  user-select: none;
  padding: 0.65rem 1.5rem;
  box-shadow: 2px 2px 6px 0px #CCCCCC;
  background-color: #E6E6E6;
  color: #262626;
  border-color: #262626;
}
.button:active {
  box-shadow: 2px 2px 3px 0px #CCCCCC;
}
.button:active {
  background-color: #F5F5F5;
}
.button.success {
  background-color: #41991F;
  color: #F5F5F5;
  border-color: #338019;
}
.button.success:active {
  background-color: #47B312;
}
.button.warning {
  background-color: #E0A510;
  color: #F5F5F5;
  border-color: #CC9214;
}
.button.warning:active {
  background-color: #F3BD00;
}
.button.danger {
  background-color: #C83349;
  color: #F5F5F5;
  border-color: #99364F;
}
.button.danger:active {
  background-color: #E0435E;
}
.button.disabled {
  cursor: not-allowed;
  background-color: #CCCCCC;
  color: #E6E6E6;
  border-color: #AFAFAF;
  box-shadow: none;
}
.button.disabled:active {
  background-color: #CCCCCC;
}
.button:focus {
  outline: solid 3px #111111;
}
.button:active {
  outline: none;
}

.button-wrapper {
  text-align: center;
}
.button-wrapper .button {
  display: inline-block;
}

.vertical-button-array-wrapper {
  text-align: center;
}
.vertical-button-array-wrapper .vertical-button-array {
  display: inline-flex;
  flex-direction: column;
}
.vertical-button-array-wrapper .vertical-button-array .button {
  flex: 1;
  margin-bottom: 1rem;
}

.textbox input, .validated-input input {
  border-radius: 0.25rem;
  padding: 0.2rem 0.25rem;
  outline: none;
  min-width: 0;
  max-width: 80vw;
}

.textbox {
  display: inline-block;
}
.textbox span.label {
  margin-right: 0.5rem;
}

.validated-input {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.validated-input span.label {
  margin-right: 0.5rem;
}
.validated-input p.invalid-msg {
  margin-top: 0.75rem;
  color: #BA344A;
  font-size: 1.25rem;
}
.validated-input .button {
  margin-top: 0.75rem;
}

.checkbox {
  font-size: inherit;
}
.checkbox input {
  transform: scale(2);
  vertical-align: middle;
  cursor: pointer;
}
.checkbox span {
  margin-left: 0.5rem;
  vertical-align: middle;
  font-size: inherit;
}

select {
  font-size: 1rem;
  padding: 0.2rem 0.25rem;
  border-radius: 0.25rem;
  border: solid 2px;
  background-color: white;
}
select option {
  font-size: 1rem;
}

.image-file-picker input {
  display: none;
}

.link.black {
  color: #111111;
  text-decoration: underline;
  cursor: pointer;
}
.link.black:hover {
  color: #7B7B7B;
}
.link.red {
  color: #BA344A;
  text-decoration: underline;
  cursor: pointer;
}
.link.red:hover {
  color: #ED536D;
}
.link.green {
  color: #338019;
  text-decoration: underline;
  cursor: pointer;
}
.link.green:hover {
  color: #47B312;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.table-wrapper table {
  width: 100%;
  min-width: 280px;
  max-width: 1920px;
  margin: auto;
  border-collapse: collapse;
  border: 2px solid #AFAFAF;
}
@media (max-width: 1920px) {
  .table-wrapper table {
    max-width: 1280px;
  }
}
.table-wrapper table * {
  font-size: 0.75rem;
}
.table-wrapper table th, .table-wrapper table td {
  padding: 1rem;
  border: 2px solid #AFAFAF;
  border-left: none;
  border-right: none;
}
.table-wrapper table th {
  border-top: none;
  font-weight: 700;
  background-color: #E6E6E6;
}

.page-controls {
  padding-top: 2rem;
  width: 100%;
  min-width: 280px;
  max-width: 1920px;
  margin: auto;
  text-align: center;
}
.page-controls p {
  margin-bottom: 0.5rem;
}
.page-controls .btns span.link {
  user-select: none;
}
.page-controls .btns span.prev {
  margin-right: 0.5rem;
}
.page-controls .btns span.next {
  margin-left: 0.5rem;
}

.no-rows {
  width: 100%;
  min-width: 280px;
  max-width: 1920px;
  margin: auto;
}
.no-rows p {
  text-align: center;
  color: #7B7B7B;
  border: 2px solid #AFAFAF;
  border-left: none;
  border-right: none;
  padding: 0.5rem 0;
}

.login, .signup, .forgot-password {
  text-align: center;
}
.login .row, .signup .row, .forgot-password .row {
  margin: auto;
  margin-bottom: 1rem;
  max-width: 520px;
  width: 90%;
}
.login .row .textbox, .signup .row .textbox, .forgot-password .row .textbox {
  text-align: left;
  width: 100%;
}
.login .row .textbox .label, .signup .row .textbox .label, .forgot-password .row .textbox .label {
  display: block;
}
.login .row .textbox input, .signup .row .textbox input, .forgot-password .row .textbox input {
  width: 100%;
}
.login .error, .signup .error, .forgot-password .error {
  color: #C83349;
}
.login .button, .signup .button, .forgot-password .button {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.password-strength-bar {
  margin-top: 0.15rem;
}
.password-strength-bar * {
  font-size: 0.75rem;
}
.password-strength-bar .bar {
  display: inline-block;
  width: 100%;
  border: solid 2px #7B7B7B;
  border-radius: 0.2rem;
  padding: 0.1rem 0.2rem;
  height: 0.9rem;
  position: relative;
  text-align: left;
}
.password-strength-bar .class {
  font-weight: 700;
}
.password-strength-bar .class.weak {
  color: #73293c;
}
.password-strength-bar .class.average {
  color: #6f500b;
}
.password-strength-bar .class.strong {
  color: #1a400d;
}
.password-strength-bar .inner-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
  z-index: -1;
}
.password-strength-bar .inner-bar.weak {
  background-color: #F2798D;
}
.password-strength-bar .inner-bar.average {
  background-color: #F5DA62;
}
.password-strength-bar .inner-bar.strong {
  background-color: #95ED5F;
}
.password-strength-bar .warning {
  margin-top: 0.15rem;
  text-align: left;
  font-style: italic;
  color: #99364F;
}

#app {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#wrapper {
  height: 100%;
}

#main {
  margin: 2rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(100% - 8.5rem);
  position: relative;
}

#header {
  background-color: #111111;
  height: 2.5rem;
  position: relative;
}
#header #logo {
  height: 100%;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
#header #logo img {
  height: 60%;
  padding-left: 1rem;
}
#header #logo span {
  font-size: 1rem;
  text-align: left;
  color: #E6E6E6;
  margin: 0;
  padding-left: 0.5rem;
  user-select: none;
}
#header #menu {
  display: inline-block;
  color: #E6E6E6;
  position: absolute;
  right: 0;
  height: 100%;
}
#header #menu #menu-desktop {
  height: 100%;
}
@media (max-width: 980px) {
  #header #menu #menu-desktop {
    display: none;
  }
}
#header #menu #menu-desktop .menu-item {
  height: 100%;
  padding: 0 1rem;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  border-left: 1px solid #AFAFAF;
}
#header #menu #menu-desktop .menu-item span {
  font-size: 0.75rem;
}
#header #menu #menu-desktop .menu-item:hover span {
  text-decoration: underline;
}
#header #menu #menu-desktop .menu-item:focus {
  outline: 2px solid #52CC14;
}
#header #menu #menu-desktop .menu-item:active {
  outline: none;
}
#header #menu #menu-mobile {
  height: 100%;
  position: relative;
  z-index: 1000;
}
@media (min-width: 981px) {
  #header #menu #menu-mobile {
    display: none;
  }
}
#header #menu #menu-mobile #menu-hamburger {
  height: 100%;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
#header #menu #menu-mobile #menu-hamburger img {
  height: 50%;
  padding-right: 0.5rem;
}
#header #menu #menu-mobile #menu-hamburger:focus {
  outline: 2px solid #52CC14;
}
#header #menu #menu-mobile #menu-hamburger:active {
  outline: none;
}
#header #menu #menu-mobile #menu-mobile-content {
  background-color: #262626;
  padding: 2rem;
  padding-top: 1rem;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  top: 0;
  transition: right 0.5s;
}
#header #menu #menu-mobile #menu-mobile-content.shown {
  right: 0;
}
#header #menu #menu-mobile #menu-mobile-content.hidden {
  right: -100%;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-close {
  height: 1.25rem;
  text-align: right;
  padding-bottom: 1rem;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-close img {
  height: 100%;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-close:focus {
  outline: 2px solid #52CC14;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-close:active {
  outline: none;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-items .menu-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: solid 1px #E6E6E6;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-items .menu-item:first-child {
  border-top: none;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-items .menu-item span {
  font-size: 1.25rem;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-items .menu-item:focus {
  outline: 2px solid #52CC14;
}
#header #menu #menu-mobile #menu-mobile-content #menu-mobile-items .menu-item:active {
  outline: none;
}

#footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #AFAFAF;
  color: #E6E6E6;
  height: 2rem;
}
#footer p {
  margin: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
#footer p span {
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0 0.5rem;
  border-right: solid 1px #E6E6E6;
}
#footer p span:last-child {
  border: none;
}
#footer p span a {
  text-decoration: underline;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
#footer p span a:visited {
  color: inherit;
}

#error {
  padding: 2rem 2rem;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1280px;
  text-align: center;
}

.phone-verification img {
  width: 3rem;
  display: block;
  margin: auto;
  margin-bottom: 2rem;
}
.phone-verification .enter-phone {
  text-align: center;
}
.phone-verification .enter-phone .validated-input {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.phone-verification .enter-phone .validated-input input {
  max-width: 70%;
}
.phone-verification .enter-phone p.info-link, .phone-verification .enter-phone p.info-link * {
  font-size: 0.75rem;
  text-align: center;
}
@media (max-width: 580px) {
  .phone-verification .enter-phone p.info-link, .phone-verification .enter-phone p.info-link * {
    font-size: 1rem;
  }
}
.phone-verification .verify-phone {
  text-align: center;
}
.phone-verification .verify-phone .phone-number {
  font-weight: 700;
}
.phone-verification .verify-phone .validated-input {
  margin-top: 1rem;
}
.phone-verification .verify-phone .back, .phone-verification .verify-phone .back * {
  margin-top: 2rem;
  font-size: 0.75rem;
  text-align: center;
}
@media (max-width: 580px) {
  .phone-verification .verify-phone .back, .phone-verification .verify-phone .back * {
    font-size: 1rem;
  }
}
.phone-verification .verify-phone .incorrect {
  color: #BA344A;
}
.phone-verification .attempts-exhausted p, .phone-verification .code-expired p {
  text-align: center;
  margin-bottom: 1.5rem;
}

.registration-steps {
  max-width: 1280px;
  margin: auto;
  text-align: center;
}
.registration-steps .steps {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-gap: 1rem 1rem;
  max-width: 1280px;
  margin-top: 0.5rem;
}
.registration-steps .steps div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.registration-steps .steps div img.phone-icon {
  height: 2rem;
}
.registration-steps .steps div img.card-icon, .registration-steps .steps div img.email-icon {
  height: 1.75rem;
}
.registration-steps .steps div p {
  margin: 0;
  text-align: left;
}
.registration-steps .button {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.registration-steps .info-links p.info-link, .registration-steps .info-links p.info-link * {
  margin: 1rem auto;
  max-width: 580px;
  font-size: 0.75rem;
}
@media (max-width: 580px) {
  .registration-steps .info-links p.info-link, .registration-steps .info-links p.info-link * {
    font-size: 1rem;
  }
}

.datetime-selection .date-select h2 {
  margin-bottom: 3rem;
}
.datetime-selection p.back {
  text-align: center;
  margin-top: 3rem;
}
.datetime-selection .calendar {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}
.datetime-selection .calendar .month-select {
  margin-bottom: 1.75rem;
}
.datetime-selection .calendar .month-select .prev-month, .datetime-selection .calendar .month-select .next-month, .datetime-selection .calendar .month-select .month {
  display: inline-block;
  width: 33%;
}
.datetime-selection .calendar .month-select .month {
  text-align: center;
  font-weight: 700;
}
.datetime-selection .calendar .month-select .next-month {
  text-align: right;
}
.datetime-selection .calendar .row .day {
  display: inline-block;
  width: 14.2%;
  text-align: center;
}
.datetime-selection .calendar .row.head {
  margin-bottom: 0.5rem;
}
.datetime-selection .calendar .row.body .day {
  box-sizing: border-box;
  padding: 0.25rem 0;
}
.datetime-selection .calendar .row.body .day .day-inner {
  width: 80%;
  padding: 0.8rem 0;
  border-radius: 0.5rem;
  font-weight: 700;
}
.datetime-selection .calendar .row.body .day.available .day-inner {
  background-color: #BAF291;
  border: 3px solid #52CC14;
  cursor: pointer;
}
.datetime-selection .calendar .row.body .day.available .day-inner:hover {
  background-color: #95ED5F;
}
.datetime-selection .calendar .row.body .day.unavailable .day-inner {
  background-color: #CCCCCC;
  border: 3px solid #AFAFAF;
  color: #AFAFAF;
  cursor: not-allowed;
}
.datetime-selection .time-select div.date {
  text-align: center;
  margin-bottom: 1.5rem;
}
.datetime-selection .time-select .time-list {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, auto);
  column-gap: 1rem;
}
@media (max-width: 980px) {
  .datetime-selection .time-select .time-list {
    grid-template-columns: repeat(4, auto);
  }
}
@media (max-width: 580px) {
  .datetime-selection .time-select .time-list {
    grid-template-columns: repeat(3, auto);
  }
}
@media (max-width: 430px) {
  .datetime-selection .time-select .time-list {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 280px) {
  .datetime-selection .time-select .time-list {
    grid-template-columns: repeat(1, auto);
  }
}
.datetime-selection .time-select .time-list .time {
  text-align: center;
}
.datetime-selection .time-select .time-list .time * {
  font-weight: 700;
}

#login, #signup, #forgot-password {
  text-align: center;
}
#login div.title, #signup div.title, #forgot-password div.title {
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.75rem;
}
#login div.title img, #signup div.title img, #forgot-password div.title img {
  height: 1.75rem;
  margin-right: 0.35rem;
}
#login .links a, #signup .links a, #forgot-password .links a {
  display: block;
  margin-bottom: 0.75rem;
}

#check-email p {
  text-align: center;
  font-size: 1.25rem;
}

#info {
  max-width: 1280px;
  margin: auto;
}
#info .button {
  margin-top: 1rem;
}

#email-verification {
  text-align: center;
}
#email-verification .textbox {
  margin-bottom: 1rem;
}
#email-verification .error {
  color: #BA344A;
  font-weight: 700;
}
#email-verification p.success {
  color: #41991F;
  font-weight: 700;
  margin-bottom: 2rem;
}

#password-reset {
  text-align: center;
}
#password-reset .error {
  color: #BA344A;
  font-weight: 700;
}
#password-reset p.success {
  color: #41991F;
  font-weight: 700;
  margin-bottom: 2rem;
}
#password-reset .row {
  margin: auto;
  margin-bottom: 0.75rem;
  max-width: 520px;
  width: 90%;
}
#password-reset .row .textbox {
  text-align: left;
  width: 100%;
}
#password-reset .row .textbox .label {
  display: block;
}
#password-reset .row .textbox input {
  width: 100%;
}
#password-reset .button {
  margin-top: 0.5rem;
}

#registration .age-confirmation p.question {
  width: fit-content;
  max-width: 980px;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#registration .age-confirmation p.under, #registration .age-confirmation p.over {
  font-size: 1rem;
  text-align: center;
  margin-top: 1.5rem;
}

#registration .tos-confirmation p {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
#registration .tos-confirmation p a {
  color: #111111;
  text-decoration: underline;
  cursor: pointer;
}
#registration .tos-confirmation p a:hover {
  color: #7B7B7B;
}

#registration .card-validation {
  max-width: 1600px;
  margin: auto;
}
#registration .card-validation img {
  width: 5rem;
  display: block;
  margin: auto;
  margin-bottom: 2rem;
}
#registration .card-validation .instructions ul {
  margin-bottom: 2rem;
}
#registration .card-validation .take-picture {
  text-align: center;
}
#registration .card-validation .take-picture span.bold {
  color: #338019;
}
#registration .card-validation .take-picture .info-links {
  margin-top: 3rem;
}
#registration .card-validation .take-picture .info-links p.info-link, #registration .card-validation .take-picture .info-links p.info-link * {
  font-size: 0.75rem;
  text-align: center;
}
@media (max-width: 580px) {
  #registration .card-validation .take-picture .info-links p.info-link, #registration .card-validation .take-picture .info-links p.info-link * {
    font-size: 1rem;
  }
}
#registration .card-validation .check-pictures {
  text-align: center;
}
#registration .card-validation .issue {
  text-align: left;
}
#registration .card-validation .issue p:first-child {
  color: #BA344A;
  text-align: center;
  margin-bottom: 1.5rem;
}
#registration .card-validation .issue .button {
  margin-top: 1.5rem;
}
#registration .card-validation .complete {
  text-align: center;
}
#registration .card-validation .complete .success-message {
  color: #338019;
  font-weight: 700;
}
#registration .card-validation .complete .button {
  margin-top: 1rem;
}

#home p {
  text-align: center;
  margin-bottom: 1.5rem;
}
#home ul {
  list-style-type: none;
  text-align: center;
}
#home ul li {
  margin-bottom: 0.75rem;
}

#search .header {
  text-align: center;
  margin-bottom: 2rem;
}
#search .no-results {
  text-align: center;
}
#search .no-results p {
  font-size: 1.25rem;
  font-weight: 300;
}
#search h2 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
}
#search .results {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 3rem;
}
#search .results .result {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0.75rem 0.5rem;
  border-bottom: solid 1px #4A4A4A;
}
#search .results .result:first-child {
  border-top: solid 1px #4A4A4A;
}
#search .results .result p {
  margin: 0;
}
#search .results .result .left, #search .results .result .right {
  display: inline-block;
  vertical-align: top;
}
#search .results .result .name {
  font-size: 1.25rem;
  font-weight: 300;
}
#search .results .result .address * {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  color: #4A4A4A;
}
#search .results .result .button-wrapper {
  text-align: left;
  margin-top: 1rem;
}
#search .results .result .button-wrapper .button {
  padding: 0.35rem 1.2rem;
}

#practices #practice-info .action-btn {
  max-width: 980px;
  margin: auto;
  margin-bottom: 2rem;
}
#practices #practice-info .action-btn p {
  font-size: 0.75rem;
  text-align: center;
}
#practices #practice-info .section {
  border-top: solid 1px #111111;
  max-width: 980px;
  margin: auto;
  padding: 1.5rem 0;
}
#practices #practice-info .section h2 {
  margin-bottom: 0.75rem;
}
#practices #practice-info .address * {
  max-width: 580px;
  margin: auto;
  margin-bottom: 0.25rem;
}
#practices #practice-info .practitioner-list p {
  margin: 0.25rem 0;
  text-align: center;
}

#practitioners #create-request {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#practitioners #create-request p {
  text-align: center;
  margin-bottom: 2rem;
}
#practitioners .request-confirmation .text {
  margin-bottom: 2rem;
}
#practitioners .request-confirmation .text.hc-invalid {
  max-width: 980px;
  margin: auto;
}
#practitioners .request-confirmation .text.hc-invalid p {
  text-align: left;
}
#practitioners .request-confirmation .text p {
  text-align: center;
}
#practitioners .request-confirmation .text p span.request-type {
  font-weight: 700;
}
#practitioners .request-confirmation .text p span.request-type.book {
  color: #338019;
}
#practitioners .request-confirmation .text p span.request-type.reschedule {
  color: #CC9214;
}
#practitioners .request-confirmation .text p span.request-type.cancel {
  color: #BA344A;
}
#practitioners .request-sent .text {
  margin-bottom: 2rem;
}
#practitioners .request-sent .text p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}
#practitioners .request-sent .text p.success {
  color: #338019;
}
#practitioners .request-sent .text p.validation {
  margin-top: 2rem;
  font-size: 1rem;
  text-align: left;
  max-width: 980px;
}
#practitioners .duplicate-request .text {
  margin-bottom: 2rem;
}
#practitioners .duplicate-request .text p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}
#practitioners .duplicate-request .text p.failure {
  color: #99364F;
}
#practitioners .duplicate-request .text p .my-requests-link, #practitioners .duplicate-request .text p .my-requests-link * {
  font-size: inherit;
}

#practitioner-info .action-btn {
  max-width: 980px;
  margin: auto;
  margin-bottom: 2rem;
}
#practitioner-info .action-btn p {
  font-size: 0.75rem;
  text-align: center;
}
#practitioner-info .section {
  border-top: solid 1px #111111;
  max-width: 980px;
  margin: auto;
  padding: 1.5rem 0;
}
#practitioner-info .section h2 {
  margin-bottom: 1rem;
}
#practitioner-info .address * {
  max-width: 580px;
  margin: auto;
  margin-bottom: 0.25rem;
}

#requests .no-requests {
  margin-top: 3rem;
  text-align: center;
}
#requests .no-requests p, #requests .no-requests span {
  font-size: 1.25rem;
}
#requests .requests-table td.status {
  text-align: center;
}
#requests .requests-table td.status span.complete {
  color: #338019;
}
#requests .requests-table td.status span.pending {
  color: #CC9214;
}
#requests .requests-table td.status span.cancelled {
  color: #C83349;
}
#requests .requests-table td.created {
  text-align: center;
}
#requests .requests-table td.actions {
  text-align: center;
}

#requests .request-cancellation p {
  text-align: center;
  max-width: 980px;
  margin: auto;
  margin-bottom: 2rem;
  font-weight: 700;
}

#settings {
  max-width: 1280px;
  margin: auto;
}
#settings .sections .section {
  padding: 2rem 0;
  border-top: solid 2px #AFAFAF;
}
#settings .sections .section:first-child {
  border: none;
}
#settings .sections .section h2 {
  text-align: left;
  margin-bottom: 1rem;
  font-weight: 400;
}
#settings .sections .section.profile .info .info-row, #settings .sections .section.health-card .info .info-row {
  margin: 1.25rem 0;
}
#settings .sections .section.profile .info .info-row div, #settings .sections .section.health-card .info .info-row div {
  margin: 0.25rem 0;
}
#settings .sections .section.profile .info .info-row span.update, #settings .sections .section.health-card .info .info-row span.update {
  margin-left: 1rem;
}
#settings .sections .section.health-card .health-card-images {
  max-width: 980px;
}
#settings .sections .section.health-card .health-card-images div {
  display: flex;
  align-items: center;
}
#settings .sections .section.health-card .health-card-images div img {
  width: 40%;
}
#settings .sections .section.health-card .health-card-images div img:first-child {
  margin-right: 5%;
}
#settings .sections .section.health-card .card-update-link p {
  margin-top: 1rem;
}
#settings .sections .section.notifications .option {
  margin-bottom: 1rem;
}
#settings .sections .section.notifications .option p {
  margin-bottom: 0.25rem;
}
#settings .sections .section.delete .warn {
  color: #BA344A;
  font-weight: 700;
  text-decoration: underline;
}
#settings .sections .section.delete a {
  color: #111111;
  text-decoration: underline;
  cursor: pointer;
}
#settings .sections .section.delete a:hover {
  color: #7B7B7B;
}

#update-health-card .side {
  margin-bottom: 3rem;
}
#update-health-card .side h2 {
  margin-bottom: 0.5rem;
}
#update-health-card .side p.status {
  text-align: center;
  font-weight: 300;
  margin-top: 0.5rem;
}
#update-health-card .side p.status.incomplete {
  color: #A82F47;
}
#update-health-card .side p.status.done {
  color: #338019;
}
#update-health-card .complete {
  text-align: center;
}
#update-health-card .complete .success-message {
  color: #338019;
  font-weight: 700;
}
#update-health-card .complete .button {
  margin-top: 1rem;
}
#update-health-card p.issue {
  color: #BA344A;
  text-align: center;
}
#update-health-card .issue-instructions {
  max-width: 1280px;
  margin: auto;
  margin-top: 3rem;
}
#update-health-card p.are-you-sure {
  text-align: center;
}

#appointments #book-appointment p.back {
  text-align: center;
  margin-top: 3rem;
}
#appointments #book-appointment .invalid-card {
  max-width: 980px;
  margin: auto;
}
#appointments #book-appointment .no-appointment-types {
  margin-top: 5rem;
}
#appointments #book-appointment .no-appointment-types p {
  text-align: center;
  font-weight: 700;
}
#appointments #book-appointment h2 {
  font-weight: 700;
}
#appointments #book-appointment .confirmation p {
  max-width: 1280px;
  margin: auto;
  margin-bottom: 1.25rem;
}
#appointments #book-appointment .confirmation p.instruction {
  font-size: 0.75rem;
}
#appointments #book-appointment .confirmation p .label {
  display: block;
  margin-bottom: 0.25rem;
}
#appointments #book-appointment .confirmation p .value {
  display: block;
  font-weight: 700;
}
#appointments #book-appointment .confirmation .back {
  margin-top: 1.5rem;
}
#appointments #book-appointment .confirmed {
  max-width: 1280px;
  margin: auto;
}
#appointments #book-appointment .confirmed span.value {
  font-weight: 700;
}
#appointments #book-appointment .confirmed .info {
  font-size: 0.75rem;
}
#appointments #book-appointment .confirmed .button {
  margin-top: 1rem;
}
#appointments #book-appointment .time-unavailable {
  text-align: center;
}
#appointments #book-appointment .time-unavailable p.instruction {
  font-weight: 700;
  margin-bottom: 2rem;
}

#appointments #my-appointments .no-appts {
  text-align: center;
  margin-top: 4rem;
}
#appointments #my-appointments .no-appts p, #appointments #my-appointments .no-appts span {
  font-size: 1.25rem;
  font-weight: 300;
}
#appointments #my-appointments .appt-list .date-coll {
  max-width: 980px;
  margin: auto;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 3px solid #AFAFAF;
  border-radius: 1rem;
  background-color: #f8f8f8;
}
#appointments #my-appointments .appt-list .date-coll .date {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
#appointments #my-appointments .appt-list .date-coll .appt {
  border-top: 3px solid #CCCCCC;
  padding: 1rem 0;
}
@media (max-width: 580px) {
  #appointments #my-appointments .appt-list .date-coll .appt {
    padding: 1.5rem 0;
  }
}
#appointments #my-appointments .appt-list .date-coll .appt .info {
  margin-bottom: 0.5rem;
}
@media (max-width: 580px) {
  #appointments #my-appointments .appt-list .date-coll .appt .info {
    margin-bottom: 1rem;
  }
}
#appointments #my-appointments .appt-list .date-coll .appt .info .time {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
#appointments #my-appointments .appt-list .date-coll .appt .info .time, #appointments #my-appointments .appt-list .date-coll .appt .info .practice {
  display: block;
}
#appointments #my-appointments .appt-list .date-coll .appt .buttons {
  margin-bottom: 0;
}
#appointments #my-appointments .appt-list .date-coll .appt .buttons span {
  margin-right: 0.75rem;
  font-size: 0.75rem;
}
@media (max-width: 1280px) {
  #appointments #my-appointments .appt-list .date-coll .appt .buttons span {
    margin-right: 1.75rem;
  }
}
@media (max-width: 580px) {
  #appointments #my-appointments .appt-list .date-coll .appt .buttons span {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  #appointments #my-appointments .appt-list .date-coll .appt .buttons span:last-child {
    margin-bottom: 0;
  }
}

#appointments #appointment .view-appt .wrapper {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
  border: 3px solid #AFAFAF;
  border-radius: 1rem;
  background-color: #f8f8f8;
}
#appointments #appointment .view-appt .wrapper .row {
  margin-bottom: 1.5rem;
}
#appointments #appointment .view-appt .wrapper .row .label {
  margin-bottom: 0.5rem;
}
#appointments #appointment .view-appt .wrapper .row .value {
  margin-bottom: 0.25rem;
  font-weight: 700;
}
#appointments #appointment .view-appt .wrapper .row.links {
  margin-bottom: 1.75rem;
  margin-top: 0.25rem;
  text-align: center;
}
#appointments #appointment .view-appt .wrapper .row.links span {
  margin-right: 1.5rem;
}
#appointments #appointment .cancel-appt {
  max-width: 1280px;
  margin: auto;
  text-align: center;
}
#appointments #appointment .cancel-appt p {
  margin-bottom: 0.5rem;
}
#appointments #appointment .cancel-appt p span.val {
  font-weight: 700;
}
#appointments #appointment .cancel-appt p.warn {
  color: #C83349;
  font-weight: 700;
}
#appointments #appointment .cancel-appt .options {
  margin-top: 2rem;
}
#appointments #appointment .cancel-appt .options .button {
  margin-top: 1rem;
}
#appointments #appointment .reschedule-appt .selections .practitioner-select {
  text-align: center;
  margin-bottom: 2rem;
}
#appointments #appointment .reschedule-appt .selections .practitioner-select .label {
  margin-right: 0.5rem;
}
#appointments #appointment .reschedule-appt .time-unavailable, #appointments #appointment .reschedule-appt .confirmed {
  text-align: center;
}
#appointments #appointment .within-cancellation-window {
  text-align: center;
}
#appointments #appointment .within-cancellation-window p {
  color: #99364F;
  font-weight: 700;
}

/*# sourceMappingURL=style.min.css.map */
