/* /colors/ */
/* Spacing */
/* /todo: probably remove the rest of these / */
/* /Line heights/ */
/* /Breakpoints/ */
.o-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  background: #fff;
  margin-bottom: 16px;
  border-radius: 8px 10px 8px 8px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.2s ease-out;
  transition: -webkit-box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
}
.o-card:hover {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .o-card {
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  }
}

.o-card--bordered {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #d7d5d2;
}

.tmh-card {
  padding: 16px;
  border-radius: 6px;
  height: 100%;
  width: 100%;
}

.tmh-card:hover {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

/* stylelint-disable selector-class-pattern -- Uses a Help Custom Forms class */
.form_link,
.model_link {
  /* stylelint-enable selector-class-pattern */
  display: inline-block;
  width: 100%;
  padding: 0;
  margin-top: 16px;
  margin-right: 16px;
  background-color: #fff;
}
.form_link span,
.model_link span {
  line-height: 32px;
}
.form_link a,
.model_link a {
  color: #007acd;
  text-decoration: none;
}

/* stylelint-disable-next-line selector-class-pattern -- Uses a Help Custom Forms class */
.form_link--inverted {
  background-color: #f6f5f4;
}

.picker {
  display: block;
  padding-bottom: 32px;
  cursor: pointer;
}

.picker-heading {
  color: #76716d;
  font-size: 16px;
  font-weight: 500;
}

.listing-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 138px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 24px 0;
  border-bottom: 1px solid #d7d5d2;
}
.listing-card .listing-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  height: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* align horizontal */
  margin: 0 16px;
  background-color: #c9c9c9;
}
.listing-card .listing-image img {
  max-width: 90px;
  max-height: 90px;
}
.listing-card .listing-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #76716d;
}
.listing-card .listing-details .listing-closed {
  font-size: 12px;
  font-weight: 400;
}
.listing-card .listing-details .listing-title {
  font-size: 14px;
  font-weight: 500;
}
.listing-card .listing-details .listing-price {
  margin-top: auto;
  font-size: 12px;
  font-weight: 400;
}
.listing-card .listing-details .listing-price .listing-price-value {
  font-size: 14px;
  font-weight: 500;
}

.empty-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 138px;
  padding-top: 32px;
  padding-bottom: 16px;
  cursor: auto;
}
.empty-card .no-item {
  max-width: 90px;
  max-height: 90px;
}
.empty-card .empty-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 32px;
}
.empty-card .empty-content .empty-title {
  color: #44413d;
  font-size: 18px;
}
.empty-card .empty-content .empty-text {
  margin-top: 8px;
  color: #65605d;
  font-size: 16px;
}

.listing-radio {
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #d7d5d2;
  background: #fff;
  border-radius: 50%;
}

.selected-listing-radio {
  border: 2px solid #65605d;
}
.selected-listing-radio:after {
  position: relative;
  top: 4px;
  left: 4px;
  display: block;
  width: 12px;
  height: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #65605d;
  border-radius: 50%;
  content: "";
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.12s cubic-bezier(0.47, 0.93, 0.42, 1.6);
  transition: -webkit-transform 0.12s cubic-bezier(0.47, 0.93, 0.42, 1.6);
  transition: transform 0.12s cubic-bezier(0.47, 0.93, 0.42, 1.6);
  transition: transform 0.12s cubic-bezier(0.47, 0.93, 0.42, 1.6), -webkit-transform 0.12s cubic-bezier(0.47, 0.93, 0.42, 1.6);
}

.show-all,
.show-less {
  padding-top: 24px;
  color: #00569e;
}
.show-all .icon,
.show-less .icon {
  padding-left: 8px;
}
.show-all .icon:after,
.show-less .icon:after {
  position: relative;
  top: 6px;
}

.not-listed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #d7d5d2;
}
.not-listed .not-listed-text {
  margin: 0 16px;
}

.listing-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.change-item {
  margin-left: auto;
  color: #00569e;
}

@media (min-width: 0) and (max-width: 767px) {
  .listing-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .change-item {
    margin-left: 0;
  }
}
.listing-card-hidden,
.change-item-hidden,
.show-all--hidden,
.show-less--hidden {
  display: none !important;
}

body .pika-single.is-bound {
  width: auto;
  height: auto;
}
body .pika-single.is-bound .pika-title {
  height: 24px;
  margin: 8px;
}
body .pika-single.is-bound .pika-title .pika-label {
  padding-top: 2px;
  color: #5a5653;
  font-size: 16px;
  font-weight: 500;
}
body .pika-single.is-bound .pika-title .option {
  color: #65605d;
}
body .pika-single.is-bound .pika-title button {
  color: #76716d;
}
body .pika-single.is-bound thead {
  border-bottom: 1px solid #d7d5d2;
  margin-bottom: 4px;
}
body .pika-single.is-bound thead abbr {
  color: #65605d;
  font-size: 12px;
  font-weight: 500;
}
body .pika-single.is-bound .pika-day {
  width: 32px;
  height: 32px;
  padding: 8px;
  margin: 4px;
  color: #76716d;
}
body .pika-single.is-bound .is-today .pika-day {
  border: 1px solid #76716d;
  border-radius: 3px;
  font-weight: 400;
}
body .pika-single.is-bound .is-selected .pika-day {
  background-color: #00569e;
  border-radius: 3px;
  color: #fff;
  font-weight: 500;
}
body .pika-single.is-bound .is-today.is-selected .pika-day {
  border: none;
}
body .pika-single.is-bound abbr {
  text-decoration: none;
}

/*/
    We are using an out of the box zendesk component for uploading.
    This is restlying that component to our liking.
/*/
.upload-dropzone {
  border: 1px dashed #007acd;
  border-radius: 8px;
}

.upload-cloud-container {
  display: none;
  padding: 24px;
  cursor: pointer;
}

.invalid-file-type-error {
  display: none;
  margin-top: -30px;
  color: #e34647;
}

.upload-cloud-container img {
  width: 24px;
  height: 24px;
  margin: auto;
  cursor: pointer;
}

.upload-text {
  color: #007acd;
  cursor: pointer;
  font-size: 16px;
}

.upload-alternate-text {
  color: #76716d;
  cursor: pointer;
  font-size: 14px;
}

.upload-item {
  overflow: visible; /* So that the upload-remove shows */
  width: 100%;
  clear: none;
  float: none;
  padding: 0px;
  margin: 16px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.upload-item .upload-link {
  width: 90%;
  border: 1px solid #d7d5d2;
  border-radius: 3px 0 0 3px !important; /* override BR */
  height: 48px;
}
.upload-item .upload-remove {
  clear: left;
  float: left;
  padding: 0px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
}
.upload-item .upload-progress {
  margin: 0px 8px;
}

.upload-item:hover {
  background-color: transparent;
}

.upload-item-icon {
  display: none;
}

/* /colors/ */
/* Spacing */
/* /todo: probably remove the rest of these / */
/* /Line heights/ */
/* /Breakpoints/ */
.form-field {
  margin-bottom: 16px;
}

.form-field input,
.form-field textarea,
.form-field a:not(.field__link),
.nesty-panel {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #d7d5d2;
  margin-bottom: 8px;
  background-color: #fff;
  border-radius: 3px;
  color: #44413d;
  cursor: text;
  -webkit-transition: #d7d5d2 0.2s ease-out;
  transition: #d7d5d2 0.2s ease-out;
}

.form-field p {
  font-size: 14px;
}

.form-field a {
  cursor: pointer;
  line-height: 42px;
  white-space: normal;
}

.nesty-panel ul li {
  color: #44413d;
  font-size: 14px;
}

.nesty-input:after {
  top: 16px;
  right: 12px;
}

.form-field textarea {
  min-height: 96px;
  padding: 12px 16px;
  margin-bottom: 0;
}

.form-field input:active,
.form-field input:focus,
.form-field textarea:active,
.form-field textarea:focus,
.nesty-panel {
  border: 2px solid #85807c;
}

.form-field label {
  padding-right: 16px;
  margin-bottom: 8px;
  color: #65605d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  white-space: normal;
}

.form-field__heading {
  margin-top: 32px;
  color: #5a5653;
  font-size: 32px;
  line-height: 40px;
}

.form-field__subheading {
  margin-top: 16px;
  color: #44413d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
}

.optional .optional {
  padding-left: 8px;
  color: #9b9591;
  content: " (optional)";
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* /set validation styling/ */
.notification-error {
  margin-top: 8px;
  color: #d93a3f;
  font-size: 14px !important;
}

.form-field-error {
  border-color: #d93a3f !important;
}

/* /Remove default dropdown arrow/ */
.dropdown__arrow-down {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-field input.disabled-input {
  min-height: 0;
  padding: 0;
  border: none;
}

.form-field input.disabled-input + p {
  display: none;
}

/* /new page custom layout/ */
.form-content {
  padding-top: 32px;
  padding-bottom: 25%;
}

.extra-tip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.g-recaptcha {
  display: none;
}

.username-suggestion__container {
  margin: 24px 0;
}
.username-suggestion__container .username-suggestion__suggestion {
  color: #007acd;
  cursor: pointer;
}

@media (max-width: 768px) {
  .left-margin,
  .right-margin {
    display: none;
  }
  .form {
    height: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  /* /all elements 100% wide and ordered/ */
  .form .extra-tip {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .form form {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.arrow-left {
  margin: 5px 5px 0;
}

.form__heading {
  display: block;
  margin-top: 24px;
  margin-bottom: 16px;
}
.form__heading--contact-us {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .form__heading {
    margin: 16px 0;
  }
  .info {
    padding-top: 0;
  }
}
.form__subtitle {
  display: block;
  margin-bottom: 32px;
}

.field__subtitle {
  display: block;
  margin-top: -8px;
  margin-bottom: 8px;
}

.form-field .field__link {
  line-height: 24px;
  color: #007acd;
  outline: 0;
  text-decoration: none;
}

/* /reset the browser default outline/ */
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: none;
}

/* /error-validation-box/ */
.form-field .error-validation-box {
  width: 100%;
  padding: 0;
  margin: 32px 0;
}

.error-validation-box {
  display: none;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .error-validation-box {
    padding: 0 0 24px;
  }
}
.error-validation-box .error-validation-box-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 85%;
          flex: 1 1 85%;
  padding: 24px;
  border-radius: 0 8px 8px 0;
  color: #65605d;
}
@media (max-width: 768px) {
  .error-validation-box .error-validation-box-content {
    padding: 16px;
  }
}
.error-validation-box .error-validation-box-content .error-validation-box__actions {
  color: #00569e;
}
.error-validation-box .error-validation-box-content .error-validation-box__actions:hover {
  cursor: pointer;
}
.error-validation-box .error-validation-box-content .error-validation-box__heading {
  padding-bottom: 24px;
  color: #65605d;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .error-validation-box .error-validation-box-content .error-validation-box__heading {
    padding-bottom: 16px;
  }
}
.error-validation-box .error-validation-box-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px 0 0 8px;
}
.error-validation-box .error-validation-box-icon:empty {
  width: 8px;
}
.error-validation-box .error-validation-box-icon img {
  width: 24px;
  height: 24px;
}

/* / validation / */
/* /reset default styling/ */
.notification-inline.notification-error {
  border: none;
  background: none;
}

.notification-inline.notification-error::before {
  display: none;
  border: none;
  margin: 0;
  content: "";
}

/* /set validation styling/ */
/* stylelint-disable-next-line -- ID name was provided by Zendesk */
#request_description_error:after {
  content: "";
}

textarea + .notification-error:after {
  content: "";
}

.notification-error:after {
  position: absolute;
  top: -42px;
  right: 16px;
  display: block;
  content: "!";
  font-size: 24px;
}

/* /multi-select reset/ */
.hc-multiselect-toggle,
.hc-multiselect-menu,
.hc-multiselect,
.hc-multiselect-menu ul,
.hc-multiselect-menu ul li label .hc-multiselect-menu ul li label input {
  position: static;
  z-index: 0;
  display: inline-block;
  overflow: visible;
  width: auto;
  height: auto;
  max-height: none;
  border: none;
  margin: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 16px;
}

.hc-multiselect-toggle {
  display: none;
}

.hc-multiselect-toggle[aria-expanded=false] + .hc-multiselect-menu {
  display: inline-block;
}

.hc-multiselect,
.hc-multiselect-menu .hc-multiselect-menu ul,
.hc-multiselect-menu ul li {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.hc-multiselect-menu ul li,
.hc-multiselect-menu ul li:hover,
.hc-multiselect-menu ul li:focus,
.hc-multiselect-menu ul li:active .hc-multiselect-menu ul li label,
.hc-multiselect-menu ul li label:hover,
.hc-multiselect-menu ul li label:focus,
.hc-multiselect-menu ul li label:active {
  background: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.hc-multiselect-menu ul li label input {
  width: auto;
  border: none;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}

.hc-multiselect-menu ul li label input:active {
  border: none;
}

/* /style of multiselect/ */
.hc-multiselect-menu ul li {
  padding-top: 0;
  margin-top: 16px;
}

.hc-multiselect-menu ul li:first-of-type {
  margin-top: 0;
}

.hc-multiselect-menu ul li label {
  position: relative;
  display: inline-block;
  overflow: visible;
  width: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 48px;
  margin-top: 0;
  color: #44413d;
  font-family: "Story Sans", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  text-indent: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: normal;
}

.hc-multiselect-menu ul li[aria-checked=true] label {
  font-weight: 500;
}

.hc-multiselect-menu ul li label:before {
  position: absolute;
  top: 13px;
  left: 13px;
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #c4c0bc;
  background: #fff;
  border-radius: 3px;
  content: "";
}

.hc-multiselect-menu ul li[aria-checked=true] label:before {
  border: 2px solid #65605d;
  border-radius: 3px;
}

.hc-multiselect-menu ul li label:after {
  position: absolute;
  top: 14px;
  left: 16px;
  display: none;
  width: 16px;
  height: 16px;
  padding: 0 !important;
  color: #65605d;
}

.hc-multiselect-menu ul li[aria-checked=true] label:after {
  display: inline-block;
}

.hc-multiselect-menu ul li label input[type=checkbox] {
  /* /hide/ */
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}

/* /Checkbox/ */
.checkbox label {
  position: relative;
  display: inline-block;
  overflow: visible;
  width: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 48px;
  margin-top: 0;
  color: #44413d;
  cursor: pointer;
  font-family: "Story Sans", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-indent: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: normal;
}

.checkbox .checkbox--checked {
  font-weight: 500;
}

.checkbox label:before {
  position: absolute;
  top: 13px;
  left: 13px;
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #c4c0bc;
  background: #fff;
  border-radius: 3px;
  content: "";
  cursor: pointer;
}

.checkbox .checkbox--checked:before {
  border: 2px solid #65605d;
  border-radius: 3px;
}

.checkbox label:after {
  width: 16px;
  height: 16px;
  content: "";
}

.checkbox--checked:after {
  position: absolute;
  top: 14px;
  left: 16px;
  padding: 0 !important;
}

/* hide original */
.form-field input[type=checkbox] {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}

/* stylelint-disable-next-line -- Class name was provided by Zendesk */
#request_description {
  resize: vertical;
}

.notification-inline {
  margin-top: 0;
  line-height: 24px;
}

.long-error::after {
  top: -50px;
}

.article-box {
  padding: 16px 24px 24px !important;
}
.article-box a h3 {
  margin-bottom: 8px;
}

.article-link {
  display: inline-block;
  margin-top: 16px;
  color: #007acd;
  font-size: 16px;
  font-weight: 400;
}

.disputes-more-detail__banner {
  width: 100%;
  padding: 24px;
  margin-bottom: 32px;
  background-color: #f6f5f4;
  float: left;
}
.disputes-more-detail__banner h3 {
  padding-bottom: 16px;
}
.disputes-more-detail__banner .disputes-more-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.disputes-more-detail__banner .disputes-more-detail__content .disputes-more-detail__image {
  width: 80px;
  height: 80px;
  margin-right: 24px;
  background-position: center center;
  background-repeat: no-repeat;
}
.disputes-more-detail__banner .disputes-more-detail__content .disputes-more-detail__copy {
  overflow-wrap: break-word;
}
.disputes-more-detail__banner .disputes-more-detail__content .disputes-more-detail__copy p {
  margin-bottom: 8px;
}/*$vite$:1*/