.bg-app-blue-softer-2 {
  background-color: rgba(var(--app-blue-softer-rgb), 0.2);
}

html {
  height: 100%;
}
html body {
  height: inherit;
}
html body .body-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* copied from index.css */
.pg-header .navbar {
  background-color: var(--app-white);
  color: var(--app-darker);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.pg-header .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item.active, .pg-header .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:active {
  background-color: var(--app-blue);
}

.pg-header .logo {
  /*height: 50px;*/
  height: 30px;
}

.pg-header .logo.mode-2 {
  display: none;
}

.pg-header .navbar-toggler {
  outline: 0;
  color: inherit;
  transition: color 0.15s linear;
}

.pg-header .navbar-toggler .btn-icon {
  font-size: 30px;
  vertical-align: middle;
}

.pg-header .navbar-nav .nl-btn {
  color: inherit;
  font-weight: 600;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, font-weight 0.15s ease-in-out;
}

@media (min-width: 992px) {
  .pg-header .navbar-nav .nl-btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.pg-contact-form {
  padding-top: 90px;
  flex: 1;
}
.pg-contact-form .form-wrap {
  margin: 0 auto;
  max-width: 600px;
}
.pg-contact-form .form-wrap .form .f-btn-group {
  display: grid;
  gap: 5px 15px;
  --btn_min-width: 120px;
  grid-template-columns: repeat(auto-fill, minmax(var(--btn_min-width), max-content));
}
.pg-contact-form .form-wrap .form .f-btn-group.btn-mw130 {
  --btn_min-width: 130px;
}
.pg-contact-form .form-wrap .form .f-btn-group .btn {
  border: 1px solid var(--app-gray-lighter);
  border-radius: 4px;
  padding: 7px 15px;
  display: flex;
  align-items: center;
}
.pg-contact-form .form-wrap .form .f-btn-group .btn.btn-border-error {
  border: 1px solid var(--app-danger);
}
.pg-contact-form .form-wrap .form .f-btn-group .btn .btn-input-radio {
  position: initial;
  clip: initial;
  margin-right: 10px;
  outline: none;
  height: 16px;
  width: 16px;
}
.pg-contact-form .form-wrap .form .f-btn-group .btn .btn-lbl {
  font-size: 16px;
  line-height: 18px;
}
@media (max-width: 575.98px) {
  .pg-contact-form .form-wrap .form .f-btn-group.f-btn-group--sm {
    grid-template-columns: initial;
    justify-content: flex-start;
  }
}
.pg-contact-form .form-wrap .form .fc {
  display: flex;
}
.pg-contact-form .form-wrap .form .fc .fc-input-wrap {
  position: relative;
}
.pg-contact-form .form-wrap .form .fc .fc-input-wrap .fc-input {
  position: absolute;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.pg-contact-form .form-wrap .form .fc .fc-input-wrap.fc-input-wrap--checkbox {
  margin-right: 10px;
  border-radius: 2px;
  height: 16px;
  /* min- */
  width: 16px;
}
.pg-contact-form .form-wrap .form .fc .fc-input-wrap.fc-input-wrap--checkbox.fc-border-danger {
  border: 1px solid var(--app-danger);
}
.pg-contact-form .form-wrap .form .fc .fc-lbl {
  flex: 1;
  color: var(--app-gray-light);
}
.pg-contact-form .form-wrap .form .fc .fc-lbl .a {
  color: var(--app-blue);
}
.pg-contact-form .form-wrap .form .fg {
  margin-bottom: initial;
}
.pg-contact-form .form-wrap .form .fg .fg-label {
  color: var(--app-darker);
}
.pg-contact-form .form-wrap .form .fg .fg-input-wrap {
  position: relative;
}
.pg-contact-form .form-wrap .form .fg .fg-input-wrap .fg-input-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  width: 20px;
}
.pg-contact-form .form-wrap .form .fg .fg-input-wrap .fg-input {
  border: 1px solid var(--app-gray-lighter);
  padding: 6px 12px;
}
.pg-contact-form .form-wrap .form .fg .fg-input-wrap .fg-input.fg-input--input {
  padding-left: 40px;
}
.pg-contact-form .form-wrap .form .fg .fg-input-wrap .fg-input.fg-input--textarea {
  height: 100px;
}
.pg-contact-form .form-wrap .form .fg .fg-input-wrap .fg-input.fg-error {
  border: 1px solid var(--app-danger);
}
.pg-contact-form .form-wrap .form .fg:not(:last-child) {
  margin-bottom: 20px;
}
.pg-contact-form .form-wrap .form .sub-panel {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 575.98px) {
  .pg-contact-form .intro-text .section-title {
    font-size: 30px;
  }
  .pg-contact-form .intro-text .intro-features {
    font-size: initial;
  }
}

/* copied from index.css */
.pg-foot {
  background-color: var(--app-blue-darker);
  color: var(--app-gray-lighter);
}

.pg-foot .btn-brand {
  color: inherit;
  transition: color 0.25s;
}

.pg-foot .btn-brand:hover {
  color: #fff;
}

.pg-foot .sets {
  max-width: 400px;
}

@media (min-width: 576px) {
  .pg-foot .sets {
    max-width: 600px;
  }
}
.pg-foot .sets .divider {
  height: 1px;
  width: 100%;
  /* useful in d-flex container */
  max-width: calc(100% - (12px * 2));
  background-color: var(--app-gray-lighter);
}

.pg-foot .list-head {
  padding-left: 12px;
  /* .btn */
  padding-right: 12px;
  /* .btn */
  padding-bottom: 7px;
  color: var(--app-light);
  font-size: 18px;
  font-weight: 600;
}

.pg-foot .li-link {
  width: 100%;
  border: 0;
  padding: 5px 12px;
  /* default: 6px 12px */
  color: inherit;
  /*font-size: 15px;*/
  line-height: 1.1;
  text-align: left;
}

@media (min-width: 360px) and (max-width: 575.98px) {
  .pg-foot .li-link {
    width: 50%;
    float: left;
    /* I need this to remove "text space" between inline-blocks */
  }
}
.pg-foot .li-link.type-2 {
  display: flex;
  align-items: center;
}

.pg-foot .li-link.type-2 .btn-text {
  flex: 1;
  max-width: 160px;
}

.pg-foot .li-link.type-2 .btn-img {
  margin-left: 15px;
  height: 30px;
}

.pg-foot .li-link:hover {
  color: #fff;
}

.pg-foot .foot-row-2 {
  max-width: calc(600px - (12px * 2));
  text-align: center;
}

@media (min-width: 992px) {
  .pg-foot .foot-row-2 {
    max-width: calc(100% - (12px * 2));
  }
}
.pg-foot .fc-logo {
  height: 36px;
}

.pg-foot .company .disclaimer {
  font-size: 14px;
}

@media (min-width: 576px) {
  .pg-foot .company .disclaimer {
    padding-left: 36px;
  }
}
@media (min-width: 1300px) {
  .pg-foot .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .pg-foot .col-xxl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .pg-foot .sets {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
  }

  .pg-foot .sets .set {
    width: 50%;
  }

  .pg-foot .sets .set.set-1 {
    padding-bottom: 24px !important;
  }

  .pg-foot .foot-row-2 {
    padding-bottom: 4px;
    text-align: left;
  }

  .pg-foot .company {
    padding-bottom: 0 !important;
  }
}
/* removes amazon bottom footer */

/*# sourceMappingURL=contact-us.css.map */
