@charset "UTF-8";
/* reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  border: 0;
  text-decoration: none;
}

ul.tick-style {
  list-style: none;
  padding-left: 20px;
}
ul.tick-style li:before {
  content: "✔ ";
  margin-right: 16px;
  color: #F46E15;
  font-weight: 600;
  font-size: 16px;
}

body {
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
}

input, textarea {
  font-family: "Manrope", sans-serif;
}

button {
  font-family: "Manrope", sans-serif;
}

@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/Manrope-ExtraLight.ttf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/Manrope-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/Manrope-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/Manrope-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/Manrope-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/Manrope-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/Manrope-ExtraBold.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../../fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("truetype");
  font-weight: 100 900;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Mediumitalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Light-italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Bolditalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Blackitalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Circular Std";
  src: url("../fonts/circular-std-font-family/CircularStd-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.gutter {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .gutter {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1024px) {
  .gutter {
    padding-left: 112px;
    padding-right: 112px;
  }
}

.d-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .d-mobile {
    display: block;
  }
}

.d-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .d-desktop {
    display: none;
  }
}

.visible-mobile-block {
  display: none !important;
}
@media (max-width: 375px) {
  .visible-mobile-block {
    display: block !important;
  }
}

.visible-mobile-flex {
  display: none !important;
}
@media (max-width: 375px) {
  .visible-mobile-flex {
    display: flex !important;
  }
}

.visible-tablet-block {
  display: none !important;
}
@media (min-width: 376px) {
  .visible-tablet-block {
    display: block !important;
  }
}

.visible-tablet-flex {
  display: none !important;
}
@media (min-width: 376px) {
  .visible-tablet-flex {
    display: flex !important;
  }
}

.visible-laptop-block {
  display: none !important;
}
@media (min-width: 769px) {
  .visible-laptop-block {
    display: block !important;
  }
}

.visible-laptop-flex {
  display: none !important;
}
@media (min-width: 769px) {
  .visible-laptop-flex {
    display: flex !important;
  }
}

.visible-desktop-block {
  display: none !important;
}
@media (min-width: 1025px) {
  .visible-desktop-block {
    display: block !important;
  }
}

.visible-desktop-flex {
  display: none !important;
}
@media (min-width: 1025px) {
  .visible-desktop-flex {
    display: flex !important;
  }
}

.hidden-desktop-block {
  display: block !important;
}
@media (min-width: 1025px) {
  .hidden-desktop-block {
    display: none !important;
  }
}

.hidden-desktop-flex {
  display: flex !important;
}
@media (min-width: 1025px) {
  .hidden-desktop-flex {
    display: none !important;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.grid__col {
  flex: 0 0 auto;
  padding: 0 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .grid__col {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .grid__col {
    width: 33.33333%;
  }
}

.header {
  background-color: #f8f9fa;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

footer {
  padding: 48px 16px;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  position: relative;
}
footer .footer-container .navigation-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
footer .footer-container .navigation-wrapper .navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
footer .footer-container .navigation-wrapper .navigation__item {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #475467;
  cursor: pointer;
}
footer .footer-container .navigation-wrapper .navigation__item:hover {
  color: #344054;
}
footer .footer-container .disclaimers-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}
footer .footer-container .disclaimers-container .horizontal-line {
  font-size: 0;
  border-top: 1px solid #EAECF0;
  height: 1px;
  width: 100%;
}
footer .footer-container .disclaimers-container .rights-and-socials-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  align-items: center;
}
footer .footer-container .disclaimers-container .rights-and-socials-container .rights-copy {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #475467;
  text-align: center;
}
footer .footer-container .disclaimers-container .rights-and-socials-container .social-media-icon-wrapper {
  display: flex;
  gap: 24px;
}
footer .footer-container .disclaimers-container .rights-and-socials-container .social-media-icon-wrapper a {
  opacity: 0.75;
  transition: opacity 200ms;
}
footer .footer-container .disclaimers-container .rights-and-socials-container .social-media-icon-wrapper a:hover {
  opacity: 1;
}
footer .footer-container .disclaimers-container .acknowledgement-of-country {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #475467;
  text-align: center;
}
footer .footer-container .back-to-top-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 0 24px;
}
footer .footer-container .back-to-top-container:hover {
  cursor: pointer;
}
footer .footer-container .back-to-top-container .back-to-top__icon {
  padding: 14px;
  border-radius: 50%;
  border: 1px solid #D0D5DD;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  width: 48px;
  height: 48px;
}
footer .footer-container .back-to-top-container .back-to-top__title {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #475467;
}
@media (min-width: 768px) {
  footer {
    padding: 48px 32px;
  }
  footer .footer-container .navigation-wrapper {
    gap: 24px;
    width: 100%;
    padding-right: 120px;
    align-items: flex-start;
  }
  footer .footer-container .navigation-wrapper .brand-logo {
    align-self: flex-start;
  }
  footer .footer-container .navigation-wrapper .navigation {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }
  footer .footer-container .back-to-top-container {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (min-width: 1024px) {
  footer {
    padding: 64px 112px;
    max-width: 1440px;
    margin: 0 auto;
  }
  footer .footer-container {
    gap: 32px;
  }
  footer .footer-container .navigation-wrapper {
    min-height: 86px;
  }
  footer .footer-container .disclaimers-container .rights-and-socials-container {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  footer .footer-container .disclaimers-container .acknowledgement-of-country {
    text-align: left;
  }
}

.urgent-care-container {
  display: flex;
  flex-direction: column;
}
.urgent-care-container .darken-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
  pointer-events: all;
}
.urgent-care-container .urgent-care-badge {
  color: #D92D20;
  background-color: #FEF3F2;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  padding: 2px 6px 2px 8px;
  gap: 4px;
  width: fit-content;
  cursor: pointer;
  user-select: none;
}
.urgent-care-container .urgent-care-badge::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../../utils/icons/orange-info-circle.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.urgent-care-container .urgent-care-popup {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1000;
  width: 90%;
  max-width: 512px;
  font-family: Manrope, sans-serif;
  cursor: default;
}
.urgent-care-container .urgent-care-popup .popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.urgent-care-container .urgent-care-popup .popup-close-button {
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.urgent-care-container .urgent-care-popup .popup-close-button img {
  width: 100%;
  height: 100%;
}
.urgent-care-container .urgent-care-popup .border {
  border-radius: 10px;
  border: 1px solid #EAECF0;
  box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.urgent-care-container .urgent-care-popup .icon::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../../utils/icons/info-circle.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 6px;
}
.urgent-care-container .urgent-care-popup .urgent-care-header {
  padding-top: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  width: 100%;
}
.urgent-care-container .urgent-care-popup .urgent-care-text {
  padding-top: 4px;
  color: #475467 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.urgent-care-container .urgent-care-popup .urgent-care-text p {
  color: #475467 !important;
  display: block;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.urgent-care-container .urgent-care-popup .urgent-care-text a {
  color: #F47721;
  text-decoration: underline;
}

.btn {
  border-radius: 4px;
  padding: 11px 19px;
  border-width: 1px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  text-align: center;
  color: #475467;
  background-color: transparent;
  border-color: transparent;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 8px 14px;
  }
}
.btn.btn-primary {
  color: #FFF;
  border: 1px solid #F47721;
  background: #F47721;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn.btn-primary:hover:not(:disabled) {
  background: #F46E15;
  border-color: #F46E15;
}
.btn.btn-primary:disabled {
  border-radius: 4px;
  border: 1px solid #FBC39D;
  background: #FBC39D;
  cursor: not-allowed;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn.btn-primary:focus {
  box-shadow: 0px 0px 0px 4px #FDDBC4, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn.btn-secondary {
  border: 1px solid #D0D5DD;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #344054;
  line-height: 24px;
}
.btn.btn-secondary:hover:not(:disabled) {
  border-radius: 4px;
  border: 1px solid #D0D5DD;
  background: #F9FAFB;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn.btn-secondary:disabled {
  color: #D0D5DD;
  cursor: not-allowed;
}
.btn.btn-destructive-secondary-gray {
  color: #D92D20;
  border: 1px solid #D92D20;
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  cursor: pointer;
}
.btn.btn-destructive-secondary-gray:hover:not(:disabled) {
  background: #FEF3F2;
}
.btn.btn-destructive-secondary-gray:disabled {
  border-color: #FECDCA;
  color: #FDA29B;
  cursor: not-allowed;
}
.btn.btn-destructive-secondary-gray:focus, .btn.btn-destructive-secondary-gray:focus-visible {
  box-shadow: 0px 0px 0px 4px #FEE4E2, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn img {
  vertical-align: text-top;
}

div.umbraco-forms-form {
  padding: 0;
}
div.umbraco-forms-form form, div.umbraco-forms-form .umbraco-forms-form form {
  width: 100%;
  margin: 0px auto;
  font-family: "Manrope";
}
div.umbraco-forms-form form .action-buttons-wrapper, div.umbraco-forms-form .umbraco-forms-form form .action-buttons-wrapper {
  display: flex;
  gap: 20px;
}
div.umbraco-forms-form form h1, div.umbraco-forms-form form h4, div.umbraco-forms-form .umbraco-forms-form form h1, div.umbraco-forms-form .umbraco-forms-form form h4 {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 36px !important;
  line-height: 44px !important;
  color: #101828;
}
@media (max-width: 768px) {
  div.umbraco-forms-form form h1, div.umbraco-forms-form form h4, div.umbraco-forms-form .umbraco-forms-form form h1, div.umbraco-forms-form .umbraco-forms-form form h4 {
    font-size: 30px !important;
    font-style: normal;
    line-height: 38px !important;
  }
}
div.umbraco-forms-form form .optional-field, div.umbraco-forms-form .umbraco-forms-form form .optional-field {
  color: #344054;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
div.umbraco-forms-form form .umbraco-forms-field-wrapper, div.umbraco-forms-form .umbraco-forms-form form .umbraco-forms-field-wrapper {
  width: 100%;
}
div.umbraco-forms-form form .umbraco-forms-container, div.umbraco-forms-form .umbraco-forms-form form .umbraco-forms-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  div.umbraco-forms-form form .umbraco-forms-container, div.umbraco-forms-form .umbraco-forms-form form .umbraco-forms-container {
    padding-top: 20px;
  }
}
div.umbraco-forms-form form .umbraco-forms-field, div.umbraco-forms-form .umbraco-forms-form form .umbraco-forms-field {
  width: 100%;
}
div.umbraco-forms-form form .umbraco-forms-field textarea, div.umbraco-forms-form .umbraco-forms-form form .umbraco-forms-field textarea {
  -webkit-appearance: none;
  /* Text md/Regular */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
div.umbraco-forms-form form .umbraco-forms-field .text, div.umbraco-forms-form .umbraco-forms-form form .umbraco-forms-field .text {
  -webkit-appearance: none;
  /* Text md/Regular */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
div.umbraco-forms-form form .umbraco-forms-field .field-validation-error, div.umbraco-forms-form .umbraco-forms-form form .umbraco-forms-field .field-validation-error {
  display: block;
  padding-top: 6px;
  padding-left: 0px;
  color: #F04438 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
div.umbraco-forms-form form .submission-agreement, div.umbraco-forms-form .umbraco-forms-form form .submission-agreement {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #667085;
}
div.umbraco-forms-form form fieldset, div.umbraco-forms-form .umbraco-forms-form form fieldset {
  margin: 0;
  padding: 0px 0px 20px 0px;
}
@media (max-width: 768px) {
  div.umbraco-forms-form form fieldset, div.umbraco-forms-form .umbraco-forms-form form fieldset {
    padding: 0;
  }
}
div.umbraco-forms-form form legend, div.umbraco-forms-form .umbraco-forms-form form legend {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475467;
}
@media (max-width: 768px) {
  div.umbraco-forms-form form legend, div.umbraco-forms-form .umbraco-forms-form form legend {
    margin-bottom: 10px;
  }
}
div.umbraco-forms-form form label, div.umbraco-forms-form .umbraco-forms-form form label {
  color: #344054;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  padding-bottom: 6px;
  font-family: "Manrope";
}
div.umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]), div.umbraco-forms-form .umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]) {
  height: 24px;
  border: 1px solid #D0D5DD;
  border-radius: 4px;
  padding: 8px 12px;
  display: block;
  width: calc(100% - 24px);
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
}
div.umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]).input-validation-error, div.umbraco-forms-form .umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]).input-validation-error {
  background: none;
  border: 1px solid #FDA29B;
  background-image: url("/utils/icons/alert-circle.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 12px);
  background-position-y: center;
  background-size: 16px 16px;
  padding-right: 20px;
}
div.umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]).input-validation-error:focus-visible, div.umbraco-forms-form .umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]).input-validation-error:focus-visible {
  outline: none;
  border-color: #FDA29B;
  box-shadow: 0px 0px 0px 4px #FEE4E2, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
@media (max-width: 768px) {
  div.umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]).input-validation-error, div.umbraco-forms-form .umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]).input-validation-error {
    width: 89%;
  }
}
@media (max-width: 768px) {
  div.umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]), div.umbraco-forms-form .umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]) {
    font-size: 14px;
  }
}
div.umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio])::placeholder, div.umbraco-forms-form .umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio])::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #98A2B3;
}
div.umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]):focus-visible, div.umbraco-forms-form .umbraco-forms-form form input:not([type=button]):not([type=submit]):not([type=radio]):focus-visible {
  outline: none;
  border-color: #F9AB77;
  box-shadow: 0px 0px 0px 4px #FDDBC4, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
div.umbraco-forms-form form select, div.umbraco-forms-form .umbraco-forms-form form select {
  height: 40px;
  line-height: 20px;
  border: 1px solid #D0D5DD;
  border-radius: 4px;
  color: #98A2B3;
  font-weight: 400;
  font-size: 16px;
  font-family: "Manrope" !important;
  padding: 9px 14px;
  width: 100%;
  display: block;
  margin: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("/utils/icons/chevron-down-gray.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 14px);
  background-position-y: 10px;
}
div.umbraco-forms-form form select option, div.umbraco-forms-form .umbraco-forms-form form select option {
  line-height: 20px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Manrope" !important;
  padding: 10px 14px;
  width: 100%;
  display: block;
  margin: 0px;
  color: black;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.umbraco-forms-form form select:has(option:checked:not([value=""])), div.umbraco-forms-form .umbraco-forms-form form select:has(option:checked:not([value=""])) {
  color: black;
}
div.umbraco-forms-form form select:focus-visible, div.umbraco-forms-form .umbraco-forms-form form select:focus-visible {
  color: black;
}
div.umbraco-forms-form form select:focus, div.umbraco-forms-form .umbraco-forms-form form select:focus {
  color: black;
}
@media (max-width: 768px) {
  div.umbraco-forms-form form select, div.umbraco-forms-form .umbraco-forms-form form select {
    width: 100%;
  }
}
div.umbraco-forms-form form select.input-validation-error, div.umbraco-forms-form .umbraco-forms-form form select.input-validation-error {
  border: 1px solid #FDA29B;
  background: transparent;
  background-image: url("/utils/icons/chevron-down-gray.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 14px);
  background-position-y: 10px;
}
div.umbraco-forms-form form select:focus-visible, div.umbraco-forms-form .umbraco-forms-form form select:focus-visible {
  outline-color: #D0D5DD;
}
div.umbraco-forms-form form textarea, div.umbraco-forms-form .umbraco-forms-form form textarea {
  margin: 0px;
  height: 100px;
  padding: 14px 12px;
  border: 1px solid #D0D5DD;
  border-radius: 4px;
  width: calc(100% - 24px);
}
div.umbraco-forms-form form textarea.input-validation-error, div.umbraco-forms-form .umbraco-forms-form form textarea.input-validation-error {
  background: none;
  border: 1px solid #FDA29B;
}
div.umbraco-forms-form form textarea.input-validation-error:focus-visible, div.umbraco-forms-form .umbraco-forms-form form textarea.input-validation-error:focus-visible {
  outline-color: #FDA29B;
  box-shadow: 0px 0px 0px 4px #FEE4E2, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
div.umbraco-forms-form form textarea::placeholder, div.umbraco-forms-form .umbraco-forms-form form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #98A2B3;
}
div.umbraco-forms-form form textarea::-webkit-input-placeholder, div.umbraco-forms-form .umbraco-forms-form form textarea::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #98A2B3;
}
div.umbraco-forms-form form textarea::-moz-placeholder, div.umbraco-forms-form .umbraco-forms-form form textarea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #98A2B3;
}
div.umbraco-forms-form form textarea:-ms-input-placeholder, div.umbraco-forms-form .umbraco-forms-form form textarea:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #98A2B3;
}
div.umbraco-forms-form form textarea:-moz-placeholder, div.umbraco-forms-form .umbraco-forms-form form textarea:-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #98A2B3;
}
div.umbraco-forms-form form textarea:focus-visible, div.umbraco-forms-form .umbraco-forms-form form textarea:focus-visible {
  outline-color: #F9AB77;
  box-shadow: 0px 0px 0px 4px #FDDBC4, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
div.umbraco-forms-form form .radiobuttonlist input[type=radio], div.umbraco-forms-form .umbraco-forms-form form .radiobuttonlist input[type=radio] {
  appearance: none;
  background-color: white;
  margin: 0 8px 0 0;
  font: inherit;
  width: 16px !important;
  height: 16px !important;
  border: 1px solid #D0D5DD !important;
  border-radius: 50% !important;
  transform: translateY(-0.075em);
  display: inline-grid !important;
  place-content: center;
}
div.umbraco-forms-form form .radiobuttonlist input[type=radio]:checked, div.umbraco-forms-form .umbraco-forms-form form .radiobuttonlist input[type=radio]:checked {
  border: 1px solid #F47721 !important;
}
div.umbraco-forms-form form .radiobuttonlist input[type=radio]::before, div.umbraco-forms-form .umbraco-forms-form form .radiobuttonlist input[type=radio]::before {
  content: "";
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: #F47721;
}
div.umbraco-forms-form form .radiobuttonlist input[type=radio]:checked::before, div.umbraco-forms-form .umbraco-forms-form form .radiobuttonlist input[type=radio]:checked::before {
  transform: scale(1);
}
div.umbraco-forms-form form .radiobuttonlist input[type=radio]:focus, div.umbraco-forms-form .umbraco-forms-form form .radiobuttonlist input[type=radio]:focus {
  outline-offset: max(2px, 0.15em);
  box-shadow: 0px 0px 4px 2px #F9AB77;
}
div.umbraco-forms-form form .radiobuttonlist label, div.umbraco-forms-form .umbraco-forms-form form .radiobuttonlist label {
  font-weight: 500;
  font-size: 14px;
  color: #344054;
}
div.umbraco-forms-form form .radiobuttonlist .col-md-6, div.umbraco-forms-form .umbraco-forms-form form .radiobuttonlist .col-md-6 {
  width: 50% !important;
}
div.umbraco-forms-form form .row-fluid, div.umbraco-forms-form .umbraco-forms-form form .row-fluid {
  display: flex;
  flex-wrap: wrap;
}
div.umbraco-forms-form form .col-md-6, div.umbraco-forms-form .umbraco-forms-form form .col-md-6 {
  width: 50%;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  div.umbraco-forms-form form .col-md-6:first-child, div.umbraco-forms-form .umbraco-forms-form form .col-md-6:first-child {
    padding-right: 10px;
  }
  div.umbraco-forms-form form .col-md-6:last-child, div.umbraco-forms-form .umbraco-forms-form form .col-md-6:last-child {
    padding-left: 10px;
  }
}
@media (max-width: 768px) {
  div.umbraco-forms-form form .col-md-6, div.umbraco-forms-form .umbraco-forms-form form .col-md-6 {
    width: 100%;
  }
}
div.umbraco-forms-form form .col-md-12, div.umbraco-forms-form .umbraco-forms-form form .col-md-12 {
  width: 100%;
  flex: 0 0 auto;
}

.umbraco-forms-submitmessage-html {
  align-self: center;
}
.umbraco-forms-submitmessage-html h2 {
  font-size: 20px;
  font-weight: 600;
  color: #101828;
  text-align: center;
  position: relative;
}
.umbraco-forms-submitmessage-html h2::before {
  content: url("/utils/icons/thumbs-up.svg");
  position: absolute;
  top: -75px;
  margin-left: 25%;
}
.umbraco-forms-submitmessage-html p {
  font-size: 16px;
  font-weight: 400;
  color: #475467;
  text-align: center;
  margin-top: 40px;
}

.carousel-view {
  overflow: hidden;
}
.carousel-view .carousel-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.carousel-view .carousel-container .carousel-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 32px 16px;
}
.carousel-view .carousel-container .carousel-track.transition {
  transition: transform 0.5s ease-in-out;
}
.carousel-view .carousel-container .carousel-track:not(.transition) {
  transition: none;
}
.carousel-view .carousel-container .carousel-track .carousel-slide {
  width: 300px;
  height: 384px;
  background-color: #EAECF0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
  position: relative;
}
.carousel-view .carousel-container .carousel-track .carousel-slide .image-wrapper {
  width: 100%;
  height: 100%;
}
.carousel-view .carousel-container .carousel-track .carousel-slide .image-wrapper img, .carousel-view .carousel-container .carousel-track .carousel-slide .image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10.09%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(1px);
}
.carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay__title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #FFF;
}
.carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay__supporting-text {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #FFF;
}
.carousel-view .carousel-container .carousel-navigation {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.carousel-view .carousel-container .carousel-navigation .carousel-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border-width: 0;
  background-color: rgba(0, 0, 0, 0.0509803922);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-view .carousel-container .carousel-navigation .carousel-button svg g path {
  stroke: #475467;
}
.carousel-view .carousel-container .carousel-navigation .carousel-button:active {
  background-color: rgba(0, 0, 0, 0.2823529412);
}
.carousel-view .carousel-container .carousel-navigation .carousel-button:disabled {
  background-color: rgba(0, 0, 0, 0.0196078431);
}
.carousel-view .carousel-container .carousel-navigation .carousel-button:disabled svg g path {
  stroke: #D0D5DD;
}
.carousel-view .carousel-container .carousel-navigation .carousel-slide-tracker {
  min-width: 32px;
  height: 32px;
  border-radius: 16px;
  border-width: 0;
  background-color: rgba(0, 0, 0, 0.0509803922);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.carousel-view .carousel-container .carousel-navigation .carousel-slide-tracker .carousel-slide-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D0D5DD;
}
.carousel-view .carousel-container .carousel-navigation .carousel-slide-tracker .carousel-slide-indicator.active {
  background-color: #F46E15;
}
@media (min-width: 768px) {
  .carousel-view .carousel-container {
    gap: unset;
  }
  .carousel-view .carousel-container .carousel-track {
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  .carousel-view .carousel-container {
    max-width: 1440px;
    margin: 0 auto;
  }
  .carousel-view .carousel-container .carousel-track {
    padding: 32px 116px;
  }
  .carousel-view .carousel-container .carousel-track .carousel-slide {
    width: 100%;
    height: 550px;
    max-width: 1000px;
  }
  .carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay {
    padding: 24px;
  }
  .carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay__title {
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
  }
  .carousel-view .carousel-container .carousel-track .carousel-slide .media-overlay__supporting-text {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
}

#sticky-banner {
  min-height: 72px;
  background-color: #FFF8F4;
  width: 100%;
  display: flex;
  justify-content: center;
}
#sticky-banner .banner-content {
  max-width: 1460px;
  padding-left: clamp(16px, 4%, 123px);
  padding-right: clamp(16px, 4%, 123px);
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
  flex-direction: row;
}
@media (max-width: 374px) {
  #sticky-banner .banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1439px) {
  #sticky-banner .banner-content {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #sticky-banner .banner-content {
    margin-left: 123px;
    margin-right: 123px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1919px) {
  #sticky-banner .banner-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  #sticky-banner .banner-content {
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    padding: 15px;
    gap: 15px;
  }
}
#sticky-banner .banner-content .btn.btn-secondary {
  height: 44px;
  padding: 8px 16px;
}
#sticky-banner .banner-content .content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #F46E15;
  align-items: center;
}
#sticky-banner .banner-content .content .icon-wrapper {
  width: 56px;
  height: 56px;
  background-image: url("/utils/icons/sticky-icon-bg.svg");
  display: flex;
  justify-content: center;
  align-items: center;
}
#sticky-banner .banner-content .content .icon-wrapper .icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  #sticky-banner .banner-content .content .icon-wrapper {
    display: none;
  }
}
#sticky-banner .banner-content .content .text {
  font-size: 16px;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media (max-width: 768px) {
  #sticky-banner .banner-content .content .text {
    flex-direction: column;
    gap: 10px;
    justify-content: stretch;
  }
}
#sticky-banner .banner-content .content .text .title {
  font-weight: 600;
}
#sticky-banner .banner-content .content .text .supporting-text {
  font-weight: 400;
}

.nav-wrapper {
  top: 0;
  position: fixed;
  z-index: 99;
  width: 100%;
}
@media (max-width: 768px) {
  .nav-wrapper {
    position: absolute;
  }
}
.nav-wrapper .navbar {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  transition: background-color 0.9s ease;
}
.nav-wrapper .navbar.fixed {
  position: fixed;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar {
    height: 60px;
  }
}
.nav-wrapper .navbar:hover {
  background-color: #FFF;
}
.nav-wrapper .navbar.scrolled {
  background-color: #FFF;
}
.nav-wrapper .navbar .btn-close {
  display: none;
}
.nav-wrapper .navbar .mobile-icon-wrapper {
  display: none;
}
@media (max-width: 768px) {
  .nav-wrapper .navbar .mobile-icon-wrapper {
    display: block;
  }
}
.nav-wrapper .navbar .tablet-icon-wrapper {
  display: block;
}
@media (max-width: 768px) {
  .nav-wrapper .navbar .tablet-icon-wrapper {
    display: none;
  }
}
.nav-wrapper .navbar.active {
  background-color: #FFF;
}
.nav-wrapper .navbar.active .hamburger-icon {
  display: none;
}
.nav-wrapper .navbar.active .btn-close {
  display: block;
}
.nav-wrapper .navbar.active .menu-item-container {
  visibility: visible;
}
.nav-wrapper .navbar.active .overlay {
  display: none;
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .nav-wrapper .navbar.active .overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 60px;
    height: 100vh;
    width: 100%;
    background-color: rgba(23, 23, 23, 0.0901960784);
  }
}
.nav-wrapper .navbar .navbar-container {
  display: flex;
  max-width: 1460px;
  flex: 1;
  height: 100%;
  align-items: center;
  color: #475467;
  font-weight: 600;
  padding-left: clamp(16px, 4%, 123px);
  padding-right: clamp(16px, 4%, 123px);
}
@media (max-width: 374px) {
  .nav-wrapper .navbar .navbar-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1439px) {
  .nav-wrapper .navbar .navbar-container {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .nav-wrapper .navbar .navbar-container {
    margin-left: 123px;
    margin-right: 123px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1919px) {
  .nav-wrapper .navbar .navbar-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.nav-wrapper .navbar .navbar-container .logo-container {
  padding-right: 40px;
}
.nav-wrapper .navbar .navbar-container .menu-item-container {
  width: 100%;
  z-index: 2;
  transform: translateY(0);
}
.nav-wrapper .navbar .navbar-container .menu-item-container.open {
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container {
    position: absolute;
    top: 60px;
    height: calc(100vh + 60px);
    background-color: #FFF;
    padding-top: 30px;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
    visibility: hidden;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container {
    right: 0;
    width: 375px;
  }
}
@media screen and (max-width: 768px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container {
    left: 0px;
    width: 100vw;
    padding-top: 0;
  }
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 1279px) and (min-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu {
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu {
    gap: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu {
    flex-direction: column;
    padding: 20px 0;
    padding-bottom: 40px;
    align-items: flex-start;
    height: 80vh;
    overflow-y: auto;
    gap: 0;
    overflow-x: hidden;
  }
}
@media screen and (min-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item.mobile-home {
    display: none;
  }
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item {
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item::-webkit-scrollbar {
  display: none;
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item:hover .sub-menu-container {
  display: block;
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item.active .sub-menu-container {
  display: block;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item {
    width: 100%;
    text-indent: 16px;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item > a {
    padding: 12px 0;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item:hover:not(.active) {
    background-color: #F9FAFB;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item.active {
    color: #F46E15;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item.active i {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item.active .menu-sub-item {
    max-height: 1000px;
  }
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item.active .icon-container {
    margin-right: 0px;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item .icon-container {
    margin-right: 16px;
  }
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item a {
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item a {
    display: flex;
    justify-content: space-between;
  }
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu .menu-item .icon-container {
  padding-left: 8px;
}
.nav-wrapper .navbar .navbar-container .menu-item-container .hover-bridge {
  height: 10px;
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .hover-bridge {
    display: none;
  }
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu-item .icon-container i {
  transition: transform 0.3s ease, margin-right 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu-item:hover .icon-container i {
    transform: rotate(180deg);
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .hover-bridge:hover ~ a .icon-container i,
  .nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container:hover ~ a .icon-container i {
    transform: rotate(180deg);
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu-item:hover > a,
  .nav-wrapper .navbar .navbar-container .menu-item-container .menu-item:hover .icon-container i {
    color: #F46E15;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .hover-bridge:hover ~ a,
  .nav-wrapper .navbar .navbar-container .menu-item-container .hover-bridge:hover ~ a .icon-container i {
    color: #F46E15;
  }
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu-sub-item li:focus a {
  color: #F46E15;
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu-sub-item li:hover ~ .menu-item a,
.nav-wrapper .navbar .navbar-container .menu-item-container .menu-sub-item li:hover ~ .menu-item .icon-container i {
  color: #F46E15;
}
.nav-wrapper .navbar .navbar-container .menu-item-container .menu-sub-item li:focus ~ .menu-item a,
.nav-wrapper .navbar .navbar-container .menu-item-container .menu-sub-item li:focus ~ .menu-item .icon-container i {
  color: #F46E15;
}
.nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container {
  display: none;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container {
    display: block;
    overflow: hidden;
  }
}
.nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container .menu-sub-item {
  position: absolute;
  left: -127px;
  width: 336px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px 0px;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container .menu-sub-item {
    position: static;
    width: auto;
    gap: 0;
    padding: 0;
    margin-top: 0;
    border: none;
    box-shadow: none;
    max-height: 0px;
    overflow: hidden;
    flex-wrap: nowrap;
    transition: max-height 0.3s ease-in;
    border-radius: 0;
  }
}
.nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container .menu-sub-item .order-last {
  order: 1;
}
.nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container .menu-sub-item li {
  padding: 12px;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container .menu-sub-item li {
    padding: 12px 12px 12px 16px;
    color: #101828;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container .menu-sub-item li a {
    font-weight: 500;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container .menu-sub-item li:active a {
    color: #F46E15;
  }
  .nav-wrapper .navbar .navbar-container .menu-item-container .sub-menu-container .menu-sub-item li:hover {
    background-color: #F9FAFB;
  }
}
.nav-wrapper .navbar .navbar-container .button-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .button-container {
    flex-direction: column;
    width: 100%;
    flex: 0;
    height: 100%;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .nav-wrapper .navbar .navbar-container .button-container {
    padding-top: 30px;
  }
}
.nav-wrapper .navbar .navbar-container .button-container .btn-search {
  padding: 10px;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .button-container .btn-search {
    width: 100%;
  }
}
.nav-wrapper .navbar .navbar-container .button-container .btn-search a {
  display: block;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .button-container .btn-find {
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.nav-wrapper .navbar .navbar-container .button-container .btn-find button {
  padding: 10px 18px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  outline: none;
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper .navbar .navbar-container .button-container .btn-find button {
    text-align: center;
    display: block;
    width: 100%;
  }
}
.nav-wrapper .navbar .navbar-container .mobile-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.nav-wrapper .navbar .navbar-container .mobile-container .icon-container {
  cursor: pointer;
}
@media screen and (min-width: 1201px) {
  .nav-wrapper .navbar .navbar-container .mobile-container {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
  animation-play-state: paused; /* Starts the animation in a paused state */
}

.fadeIn.start {
  animation-play-state: running; /* Resume the animation when this class is added */
}

.get-in-touch-modal-wrapper {
  overflow-y: auto;
}
.get-in-touch-modal-wrapper:has(.umbraco-forms-submitmessage-html) {
  display: flex;
  flex-direction: row;
}
.get-in-touch-modal-wrapper:has(.umbraco-forms-submitmessage-html) span {
  display: none;
}

.get-in-touch-modal-container, .get-in-touch-modal-contact-container {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  justify-content: right;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}
.get-in-touch-modal-container .get-in-touch-modal-wrapper, .get-in-touch-modal-contact-container .get-in-touch-modal-wrapper {
  max-width: 464px;
  background: #FFF;
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  padding: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .get-in-touch-modal-container .get-in-touch-modal-wrapper, .get-in-touch-modal-contact-container .get-in-touch-modal-wrapper {
    padding: 16px;
    padding-top: 50px;
  }
}
.get-in-touch-modal-container .get-in-touch-modal-wrapper .icon-wrapper, .get-in-touch-modal-contact-container .get-in-touch-modal-wrapper .icon-wrapper {
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  padding: 10px;
}
.get-in-touch-modal-container .get-in-touch-modal-wrapper .icon-wrapper img, .get-in-touch-modal-contact-container .get-in-touch-modal-wrapper .icon-wrapper img {
  width: 24px;
  height: 24px;
}
.get-in-touch-modal-container .get-in-touch-modal-wrapper > span, .get-in-touch-modal-contact-container .get-in-touch-modal-wrapper > span {
  color: #F47721;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.search-modal-container {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  justify-content: right;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}
.search-modal-container .search-modal-wrapper {
  overflow-y: auto;
  width: 528px;
  max-width: 528px;
  background: #FFF;
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: stretch;
}
@media (max-width: 768px) {
  .search-modal-container .search-modal-wrapper {
    padding: 16px;
    padding-top: 50px;
  }
}
.search-modal-container .search-modal-wrapper .icon-wrapper {
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  padding: 10px;
}
.search-modal-container .search-modal-wrapper .icon-wrapper img {
  width: 24px;
  height: 24px;
}
.search-modal-container .search-modal-wrapper > span {
  color: #344054;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.search-modal-container .search-modal-wrapper .search-modal-header {
  padding: 32px 32px 0 32px;
}
.search-modal-container .search-modal-wrapper .search-input {
  position: relative;
}
.search-modal-container .search-modal-wrapper .search-input img {
  position: absolute;
  top: 18px;
  left: 14px;
  cursor: pointer;
}
.search-modal-container .search-modal-wrapper .search-input input {
  width: calc(100% - 56px);
  margin-top: 6px;
  padding: 10px 14px 10px 42px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border: 1px solid #D0D5DD;
  border-radius: 4px;
}
.search-modal-container .search-modal-wrapper .search-input input:focus-visible {
  outline: none;
}
.search-modal-container .search-modal-wrapper .search-input input::placeholder {
  color: #98A2B3;
}
.search-modal-container .search-modal-wrapper .search-input-wrapper {
  position: relative;
}
.search-modal-container .search-modal-wrapper .search-input-suggestions {
  position: absolute;
  background: white;
  width: 100%;
  display: flex;
  padding: 4px 0px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  border-radius: 8px;
  border: 1px solid #EAECF0;
  box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
  overflow: auto;
  max-height: 300px;
}
.search-modal-container .search-modal-wrapper .search-input-suggestions li {
  padding: 2px 6px;
  align-items: center;
  align-self: stretch;
  padding: 10px 10px 10px 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
  color: #101828;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
}
.search-modal-container .search-modal-wrapper .search-input-suggestions li:hover {
  background: #F9FAFB;
}
.search-modal-container .search-modal-wrapper .search-input-suggestions:empty {
  display: none;
}
.search-modal-container .search-modal-wrapper hr {
  margin-top: 30px;
  border: none;
  border-top: 1px solid #EAECF0;
}
.search-modal-container .search-modal-wrapper ul.popular-search-terms li {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-top: 20px;
  cursor: pointer;
}
.search-modal-container .search-modal-wrapper ul.popular-search-terms li:first-child {
  cursor: auto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.search-modal-container .search-modal-wrapper .search-result {
  display: none;
  flex-grow: 1;
  flex-flow: column;
  overflow: auto;
  padding-left: 32px;
}
.search-modal-container .search-modal-wrapper .search-result span {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  color: #475467;
}
.search-modal-container .search-modal-wrapper .search-result .search-result-container {
  display: flex;
  flex-grow: 1;
  flex-flow: column;
  overflow: auto;
  padding: 0 32px 32px 0;
}
.search-modal-container .search-modal-wrapper .search-result .search-item {
  margin-top: 20px;
  border-bottom: 1px solid #EAECF0;
  padding-bottom: 10px;
}
.search-modal-container .search-modal-wrapper .search-result .search-item h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #F46E15;
}
.search-modal-container .search-modal-wrapper .search-result .search-item .result-content {
  color: #475467;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-modal-container .search-modal-wrapper .no-results {
  display: none;
  flex-flow: column;
  align-content: center;
  margin-top: 60px;
  align-items: center;
  justify-content: center;
}
.search-modal-container .search-modal-wrapper .no-results img {
  margin: 0 auto;
}
.search-modal-container .search-modal-wrapper .no-results h2 {
  margin-top: 15px;
  color: #101828;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.search-modal-container .search-modal-wrapper .no-results span {
  color: #475467;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

div.divider.solid {
  display: flex;
  align-items: center;
  height: 51px;
}
div.divider.solid .line {
  flex-grow: 1;
  height: 1px;
  background-color: #EAECF0;
}

section.hero-section {
  width: 100%;
}
section.hero-section .hero-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.hero-section .hero-container .image-wrapper {
  width: 100%;
  display: flex;
}
section.hero-section .hero-container .image-wrapper::before {
  content: "";
  padding-top: 41.6666666667%;
}
section.hero-section .hero-container .image-wrapper.skeleton {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 2s ease;
  border-radius: 8px;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
section.hero-section .hero-container .image-wrapper img {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
section.hero-section .hero-container .image-wrapper img.hero-desktop-image {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
@media (max-width: 768px) {
  section.hero-section .hero-container .image-wrapper img.hero-desktop-image {
    display: none;
  }
}
section.hero-section .hero-container .image-wrapper img.hero-mobile-image {
  display: none;
}
@media (max-width: 768px) {
  section.hero-section .hero-container .image-wrapper img.hero-mobile-image {
    display: block;
  }
}
section.hero-section .hero-container .content-container {
  max-width: 1472px;
  width: 100%;
  position: absolute;
  z-index: 1;
  padding: 0 16px;
}
@media (max-width: 374px) {
  section.hero-section .hero-container .content-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1440px) {
  section.hero-section .hero-container .content-container {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  section.hero-section .hero-container .content-container {
    padding-left: 123px;
    padding-right: 123px;
  }
}
section.hero-section .hero-container .content-container .content-wrapper {
  max-width: 596px;
}
section.hero-section .hero-container .content-container .content-wrapper .title-wrapper {
  padding-bottom: 10px;
}
section.hero-section .hero-container .content-container .content-wrapper .title-wrapper h1 {
  color: #FFF;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.96px;
}
@media (max-width: 768px) {
  section.hero-section .hero-container .content-container .content-wrapper .title-wrapper h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
section.hero-section .hero-container .content-container .content-wrapper .subtext-wrapper {
  padding-bottom: 20px;
}
section.hero-section .hero-container .content-container .content-wrapper .subtext-wrapper p {
  color: #FFF;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 768px) {
  section.hero-section .hero-container .content-container .content-wrapper .subtext-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
}
section.hero-section .hero-container .content-container .content-wrapper .btn-wrapper button {
  color: #FFF;
  border-radius: 4px;
  border: 1px solid #F47721;
  background: #F47721;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 20px;
  cursor: pointer;
}
section.hero-section .hero-container .content-container .content-wrapper .btn-wrapper button:hover {
  background: #F46E15;
  border-color: #F46E15;
}

.umbraco-forms-container .umbraco-forms-field.fileupload button.btn-clear-attachment {
  margin-top: 12px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  line-height: 16px;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  color: #D92D20;
  display: flex;
  align-items: center;
}
.umbraco-forms-container .umbraco-forms-field.fileupload button.btn-clear-attachment object {
  width: 16px !important;
  height: 16px !important;
}
.umbraco-forms-container .umbraco-forms-field.fileupload button.btn-clear-attachment span {
  margin-left: 4px;
  padding-bottom: 2px;
}
.umbraco-forms-container .umbraco-forms-field.fileupload button.btn-clear-attachment:hover, .umbraco-forms-container .umbraco-forms-field.fileupload button.btn-clear-attachment:disabled, .umbraco-forms-container .umbraco-forms-field.fileupload button.btn-clear-attachment:focus {
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
}
.umbraco-forms-container .umbraco-forms-field.fileupload button.btn-clear-attachment:hover:not(:disabled) {
  color: #B42318;
}
.umbraco-forms-container .umbraco-forms-field.fileupload button.btn-clear-attachment:disabled {
  color: #FDA29B;
  cursor: not-allowed;
}

.popover-container {
  position: relative;
  display: flex;
}
.popover-container .popover-button {
  display: flex;
  background: white;
  border-radius: 4px;
  border: 1px solid #D0D5DD;
  padding: 10px 14px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #101828;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
.popover-container .popover-button:hover {
  background: #FCFCFD;
}
.popover-container .popover-button :focus {
  border-color: #F9AB77;
  box-shadow: 0px 0px 0px 4px #F7DCC7;
  /*box-shadow: 0px 1px 2px 0px #1218270D;*/
}
.popover-container .popover-button::after {
  content: "";
  display: block;
  margin-left: auto;
  height: 20px;
  width: 20px;
  background: url(/utils/icons/chevron-down-gray.svg);
  background-size: contain;
}
.popover-container > .popover-panel {
  position: absolute;
  max-width: 320px;
  background: white;
  padding: 6px;
  border: 1px solid #EAECF0;
  border-radius: 8px;
  margin-top: 8px;
  max-height: 490px;
  overflow-y: auto;
  right: 0;
  width: 320px;
}
@media (max-width: 768px) {
  .popover-container > .popover-panel {
    max-height: 280px;
    left: 20px !important;
    right: 20px !important;
    max-width: calc(100% - 40px);
  }
}

.telehealth-navigation-bar-container {
  position: relative;
  z-index: 1;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar {
  display: flex;
  flex-direction: column;
  position: relative;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 64px;
  padding: 12px 16px;
  background-color: white;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .action-row .left {
  display: flex;
  flex: 1;
  align-items: center;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .action-row .middle {
  display: flex;
  align-items: center;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .action-row .right {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .action-row .logo {
  width: 105px;
  height: auto;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .action-row .menu-icon {
  padding: 8px;
  border-radius: 8px;
  background-color: #F9FAFB;
  min-width: 40px;
  min-height: 40px;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay.open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3019607843);
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover {
  display: flex;
  flex-direction: column;
  background-color: white;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover .nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover .nav-links a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #475467;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover .nav-links a.minor {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #344054;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover .nav-links a:hover {
  color: #1D2939;
  background-color: #F9FAFB;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover .nav-links a:focus {
  color: #1D2939;
  background-color: #F9FAFB;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover .nav-links a:active {
  color: #F46E15;
  background-color: #EAECF0;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover .get-started {
  display: flex;
  padding: 24px 16px;
  border-top: 1px solid #EAECF0;
}
.telehealth-navigation-bar-container .telehealth-navigation-bar .overlay .popover .get-started .btn {
  width: 100%;
}
@media (min-width: 1024px) {
  .telehealth-navigation-bar-container {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 44px 112px 0;
    width: 100%;
  }
  .telehealth-navigation-bar-container .telehealth-navigation-bar.visible-desktop-flex {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.0784313725);
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.0509803922);
  }
  .telehealth-navigation-bar-container .telehealth-navigation-bar.visible-desktop-flex .nav-links {
    display: flex;
    flex-direction: row;
    gap: 4px;
  }
  .telehealth-navigation-bar-container .telehealth-navigation-bar.visible-desktop-flex .nav-links a {
    display: block;
    padding: 4px;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #475467;
  }
  .telehealth-navigation-bar-container .telehealth-navigation-bar.visible-desktop-flex .nav-links a:hover {
    color: #1D2939;
  }
  .telehealth-navigation-bar-container .telehealth-navigation-bar.visible-desktop-flex .nav-links a:focus {
    color: #1D2939;
  }
  .telehealth-navigation-bar-container .telehealth-navigation-bar.visible-desktop-flex .nav-links a:active {
    color: #F46E15;
  }
}

.tooltip-wrapper {
  position: relative;
  display: flex;
  text-decoration: underline dashed #D0D5DD;
  min-width: 16px;
  min-height: 16px;
}
.tooltip-wrapper svg {
  position: absolute;
  left: 50%;
  bottom: -6px;
}
@media only screen and (max-width: 768px) {
  .tooltip-wrapper svg {
    left: 15px;
  }
}
.tooltip-wrapper .tooltip {
  pointer-events: none;
  border-radius: 8px;
  background: #101828;
  padding: 8px 12px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.tooltip-wrapper .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #101828 transparent transparent transparent;
}
.tooltip-wrapper:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.online-status-container {
  display: flex;
  width: 100%;
  justify-content: center;
}
.online-status-container .online-status {
  display: flex;
  justify-self: flex-start;
  align-items: center;
  gap: 12px;
  background-color: #FFF;
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  padding: 4px 10px 4px 4px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.online-status-container .online-status .text-small {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #344054;
}
.online-status-container .online-status .online-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #FFF;
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  padding: 2px 8px 2px 8px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.online-status-container .online-status .online-status-badge .online-status-indicator {
  display: flex;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  font-size: 0;
  background-color: #667085;
  border-color: #EAECF0;
}
.online-status-container .online-status .online-status-badge.online .online-status-indicator {
  background-color: #17B26A;
  border-color: #DCFAE6;
}
.online-status-container .online-status .online-status-badge.online .text-small {
  color: #17B26A;
}
.online-status-container .online-status .online-status-badge.offline .online-status-indicator {
  background-color: #F04438;
  border-color: #FEE4E2;
}
.online-status-container .online-status .online-status-badge.offline .text-small {
  color: #F04438;
}
.online-status-container .online-status .online-status-operating-hours {
  display: flex;
  align-items: center;
  gap: 4px;
}
.online-status-container .online-status .online-status-operating-hours .tooltip-wrapper {
  font-size: 0;
}
.online-status-container .online-status .online-status-operating-hours .tooltip-wrapper .tooltip {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  width: max-content;
}
.online-status-container .online-status .tooltip-container {
  /* This makes the tooltip's absolute positioning relative to this parent */
  position: relative;
  /* The container itself will not stretch to fit the tooltip */
  width: 16px;
  height: 16px;
}
.online-status-container .online-status .tooltip-container .icon {
  /* Your 16x16 icon block */
  width: 16px;
  height: 16px;
  background-color: steelblue;
  /* This makes the tooltip appear on hover */
  cursor: pointer;
}
.online-status-container .online-status .tooltip-container .tooltip-t {
  /* Absolutely position the tooltip so it doesn't affect the layout of the parent */
  position: absolute;
  /* These values place the tooltip above and centered horizontally on the icon */
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  /* Set the desired fixed width for the tooltip */
  width: max-content;
  max-width: 250px;
  /* Tooltip styles */
  background-color: #333;
  color: white;
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  /* Tooltip visibility. Start hidden. */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.online-status-container .online-status .tooltip-container:hover .tooltip-t {
  opacity: 1;
  visibility: visible;
}