@import 'https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap';
.dropdown--primary {
  display: flex;
  position: relative;
  z-index: 1031;
}
.dropdown--primary .dropdown-toggle {
  color: white;
  cursor: pointer;
  padding-left: 16px;
  padding-right: 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  width: 100%;
}
.dropdown--primary .dropdown-menu {
  background-color: var(--white);
  box-shadow: none;
  border-radius: 0;
  margin-left: 0px;
  right: 0px;
  margin-top: 0px;
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.dropdown--primary .dropdown-menu > li > a {
  padding: 10px 16px;
}
.dropdown--primary .dropdown-menu > li > a:hover, .dropdown--primary .dropdown-menu > li > a.active {
  background-color: #f8f8f8;
}
.dropdown--primary.open .dropdown-menu {
  border: 1px solid var(--gray);
}
.dropdown--primary.open .caret {
  transform: rotate(180deg);
}
.dropdown--primary .selected {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  width: 60vw;
}
.dropdown--primary .caret {
  border: none;
  height: 8px;
  width: 17px;
  min-width: 17px;
  background: url(/static/img/icon/svg/drop-down2-white.svg) center center no-repeat;
  background-size: 100% auto;
  margin-left: auto;
  flex-grow: 0;
  position: relative;
  top: -2px;
}

.dropdown-menu--wrap > li > a {
  white-space: wrap;
}

.dropdown--outline {
  display: flex;
  position: relative;
  z-index: 1031;
}
.dropdown--outline .dropdown-toggle {
  color: var(--dark-grey);
  cursor: pointer;
  padding-left: 16px;
  padding-right: 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--whtie);
  border-color: var(--dark-grey);
  width: 100%;
}
.dropdown--outline .dropdown-menu {
  background-color: var(--white);
  box-shadow: none;
  border-radius: 0;
  margin-left: 0px;
  right: 0px;
  margin-top: 0px;
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.dropdown--outline .dropdown-menu > li > a {
  padding: 10px 16px;
}
.dropdown--outline .dropdown-menu > li > a:hover, .dropdown--outline .dropdown-menu > li > a.active {
  background-color: #f8f8f8;
}
.dropdown--outline.open .dropdown-toggle {
  color: var(--white);
  background-color: var(--dark-grey);
}
.dropdown--outline.open .dropdown-menu {
  border: 1px solid var(--gray);
}
.dropdown--outline.open .caret {
  transform: rotate(180deg);
  background: url(/static/img/icon/svg/drop-down2-white.svg) center center no-repeat;
}
.dropdown--outline .selected {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  width: 60vw;
}
.dropdown--outline .caret {
  border: none;
  height: 8px;
  width: 17px;
  min-width: 17px;
  background: url(/static/img/icon/svg/drop-down2-black.svg) center center no-repeat;
  background-size: 100% auto;
  margin-left: auto;
  flex-grow: 0;
  position: relative;
  top: -2px;
}

.dropdown-menu--wrap > li > a {
  white-space: wrap;
}

.form-3 .form-control {
  font-size: 16px;
  color: inherit;
  height: auto;
  padding: 10px 0 6px;
  box-shadow: none;
  border-width: 0;
  border-color: var(--dark-grey);
  border-bottom-width: 1px;
  -webkit-appearance: none;
}
.form-3 .form-control:not(textarea):focus {
  border-bottom-width: 2px;
  margin-bottom: -1px;
}
.form-3 .form-control::-moz-placeholder {
  font-size: inherit;
}
.form-3 .form-control::placeholder {
  font-size: inherit;
}
@media (max-width: 767px) {
  .form-3 .form-control {
    font-size: 14px;
  }
}

.form-3 textarea.form-control {
  border: 1px solid #ababab;
  padding: 10px;
}
.form-3 textarea.form-control:focus {
  outline: 1.5px solid var(--dark-grey);
  outline-offset: -2px;
}

.form-floating {
  font-size: 16px;
  position: relative;
}
.form-floating .control-label {
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: transform 0.3s ease-in-out;
}
.form-floating .help-block {
  font-size: 10px;
}
@media (max-width: 767px) {
  .form-floating {
    font-size: 14px;
  }
}

.form-floating-textarea .form-control::-moz-placeholder {
  color: var(--grey-700);
  font-family: "Avenir Book";
  text-transform: none;
  font-size: 14px;
}
.form-floating-textarea .form-control::placeholder {
  color: var(--grey-700);
  font-family: "Avenir Book";
  text-transform: none;
  font-size: 14px;
}
.form-floating-textarea .help-block {
  font-size: 11px;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: transparent;
}

.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  transform: scale(0.6875) translateY(-2rem);
}

.be-has-error2 .help-block,
.be-has-error2 .control-label {
  color: var(--error);
}

.be-has-error2 .form-control {
  border-color: var(--error);
}
.be-has-error2 textarea.form-control {
  border-color: var(--error) !important;
  outline-color: var(--error) !important;
}

.resize-y {
  resize: vertical;
}

.btn-lgh44 {
  font-size: 14px;
  height: 44px;
}

.EB-400 {
  font-family: "EB Garamond";
  font-weight: normal;
}

.category-tiles {
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}
.category-tiles a {
  text-decoration: none;
}
.category-tiles a:hover .link-text {
  color: var(--light-green);
  text-decoration: underline;
}
.category-tiles .link-text {
  font-family: "Avenir Medium";
  font-size: 18px;
  margin-top: 24px;
}
.category-tiles .caption {
  padding-top: 0;
}
.category-tiles .thumbnail {
  max-width: 100%;
  padding: 0 12px;
  background: none;
}
@media (min-width: 768px) {
  .category-tiles .thumbnail {
    flex-basis: 0;
    flex-grow: 1;
  }
}
.category-tiles a:hover .ir251-link-text, .category-tiles a:hover p {
  color: var(--light-green);
}

.category-tiles--thumbnail {
  border: none;
  border-radius: 0;
}
.category-tiles--thumbnail h3 {
  text-decoration: none !important;
}
.category-tiles--thumbnail .caption {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .category-tiles {
    padding-left: 0.8%;
    scroll-snap-type: x mandatory;
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
    transition: 0.25s left ease;
    padding-left: 10px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .category-tiles::-webkit-scrollbar {
    display: none;
  }
  .category-tiles > div {
    flex: 0 0 66%;
    scroll-snap-align: center;
  }
  .category-tiles .thumbnail {
    padding-left: 8px;
    padding-right: 8px;
  }
  .category-tiles .link-text {
    font-size: 14px;
    margin-top: 16px;
  }
}
.avenir-roman {
  font-family: "Avenir Roman";
  font-weight: 400;
}

.hosted-appointment {
  display: flex;
}
.hosted-appointment .align-self-center {
  align-self: center;
}
.hosted-appointment:before, .hosted-appointment:after {
  display: none;
}

.hosted-appointment__headline {
  font-family: "Avenir Medium";
  font-size: 38px;
}

.hosted-appointment__secondary-headline {
  font-family: "Avenir Medium";
  font-size: 32px;
}

.hosted-appointment__tro {
  font-size: 16px;
  font-family: "Avenir Roman";
}

.hosted-appointment__form {
  /* display:flex;
   flex-wrap: wrap;
   gap: 16px;*/
}

.reason-cancellation {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1290px) {
  .cancel-appt-submit-x {
    display: none;
  }
}
@media (min-width: 1291px) {
  .cancel-appt-submit-y {
    display: none;
  }
}
.cancelappt-contact {
  display: flex;
  gap: 35px;
}

.cancelappt-contact__item {
  text-align: center;
}

.cancelappt-contact__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cancelappt-contact__link:hover, .cancelappt-contact__link:focus {
  color: var(--dark-grey);
  text-decoration: none;
}
.cancelappt-contact__link:hover .cancelappt-contact__name, .cancelappt-contact__link:focus .cancelappt-contact__name {
  color: var(--light-green);
}

.cancelappt-contact__name {
  font-size: 18px;
  font-family: "Avenir Medium";
  display: block;
}

.cancelappt-contact__description {
  font-size: 16px;
  font-family: "Avenir Roman";
}

@media (max-width: 767px) {
  .mt-xs-25 {
    margin-top: 25px;
  }
  .form-3 {
    font-size: 12px;
  }
  .hosted-appointment__form {
    gap: 8px;
  }
  .hosted-appointment {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .hosted-appointment__headline {
    font-size: 28px;
  }
  .hosted-appointment__secondary-headline {
    font-size: 24px;
  }
}
.modal-cancel-appointment .modal-content {
  border: none;
  box-shadow: none;
}
.modal-cancel-appointment .close {
  top: 15px;
  right: 10px;
}
.modal-cancel-appointment .close .iconfont-close2 {
  font-size: 14px;
}
.modal-cancel-appointment .modal-body {
  padding: 48px;
}
@media (max-width: 767px) {
  .modal-cancel-appointment .modal-body {
    padding: 48px 24px;
  }
}

/*# sourceMappingURL=refresh-appointment.css.map */
