/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[0].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[4]!./client/src/scss/main.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************/
.contactform {
  align-items: baseline;
}
.contactform form {
  width: 100%;
}
.contactform form .field {
  display: block;
  margin-bottom: 1em;
}
@media (min-width: 576px) {
  .contactform form .field {
    display: flex;
  }
}
.contactform form .field.error input, .contactform form .field.error textarea {
  background-color: rgba(211, 32, 71, 0.2) !important;
}
.contactform form .field label.left {
  display: block;
}
@media (min-width: 576px) {
  .contactform form .field label.left {
    display: inline-block;
    width: 12rem;
    margin: 0.25em 0 0;
  }
}
.contactform form .field label a:hover {
  text-decoration: underline;
}
.contactform form .field .middleColumn {
  flex-grow: 1;
}
.contactform form .field .middleColumn input[type=text], .contactform form .field .middleColumn input[type=email], .contactform form .field .middleColumn textarea {
  border: 0 none;
  outline: none;
  padding: 0.25em 0.25em 0.25em 0.5em;
  background-color: #f3f3f3;
  width: 100%;
  border-bottom: rgb(191.25, 191.25, 191.25) 1px solid;
}
.contactform form .field .middleColumn input[type=text]:focus, .contactform form .field .middleColumn input[type=email]:focus, .contactform form .field .middleColumn textarea:focus {
  background-color: #f3f3f3;
}
.contactform form .field .middleColumn input[type=text].numeric, .contactform form .field .middleColumn input[type=email].numeric, .contactform form .field .middleColumn textarea.numeric {
  width: 4em;
}
.contactform form .field .middleColumn .optionset li {
  display: flex;
  align-items: center;
  margin: 0.25em 0;
}
.contactform form .field .middleColumn .optionset li input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f3f3f3;
  margin: 0;
  font: inherit;
  width: 1em;
  height: 1em;
  border-radius: 50%;
}
.contactform form .field .middleColumn .optionset li input[type=radio]:checked {
  background-color: #D32047;
}
.contactform form .field.checkbox {
  display: flex;
  position: relative;
}
@media (min-width: 576px) {
  .contactform form .field.checkbox {
    margin-left: 12rem;
  }
}
.contactform form .field.checkbox input {
  display: flex;
  position: absolute;
  top: 3px;
  width: 1rem !important;
  height: 1rem !important;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0 none;
  background-color: #f3f3f3;
  box-shadow: none;
  font-size: 1rem !important;
  border-radius: 100%;
  cursor: pointer;
}
.contactform form .field.checkbox input:checked::after {
  font-size: 1.5rem;
  line-height: 1rem;
  margin-left: -0.25rem;
  content: "\f633";
  font-family: "bootstrap-icons";
  position: absolute;
  color: #D32047;
}
.contactform form .field.checkbox label.right {
  margin-left: 1.5em;
}
.contactform form .field {
  /*&.optionset {
      ul {
          list-style: none;
          padding: 0;

          li {
              label {
                  padding-left: 1em;
                  width: auto;
              }
          }
      }
  }*/
}
.contactform form {
  /*.fieldgroup.ZipTown {
      display: block;

      .first {
          margin-bottom: 1em;
      }

      @media(min-width: $width-md) {
          .fieldgroup-field {
              margin-bottom: 0;

              &.first {
                  margin-bottom: 1em;
              }

              > div {
                  display: flex;

                  label {
                      width: $leftMargin;
                  }

                  input {
                      width: auto;
                      flex-grow: 1;
                  }
              }
          }
      }
      @media(min-width: $width-lg) {
          display: flex;
          > .middleColumn {
              display: flex;

              .first {
                  margin-bottom: 0;

                  input {
                      width: 8em;
                  }
              }

              .last {
                  flex-grow: 1;

                  label {
                      width: 6em;
                      text-align: center;
                  }
              }
          }
      }
  }*/
}
@media (min-width: 576px) {
  .contactform form .btn-toolbar {
    margin-left: 12rem;
  }
}
.contactform form .btn-toolbar input[type=submit] {
  padding: 0.6em 0.5em 0.5em;
  margin: 1em 0;
  flex-grow: 1;
  width: 100%;
  transition: all 0.2s ease;
  outline: none;
  background-color: rgba(211, 32, 71, 0.2);
  color: rgb(71.74, 10.88, 24.14);
  border: rgba(211, 32, 71, 0.2) 2px solid;
}
.contactform form .btn-toolbar input[type=submit]:hover {
  transition: all 0.2s ease;
  background-color: rgb(71.74, 10.88, 24.14);
  color: #FFFFFF;
  border-color: rgba(211, 32, 71, 0.2);
}
.contactform form #validationError {
  display: none;
  color: white;
}
@media (min-width: 576px) {
  .contactform form #validationError {
    margin-left: 12rem;
  }
}
.contactform form #validationError p {
  padding: 0.25rem 0.5rem;
  background-color: black;
  margin-bottom: 0.125rem;
}
.contactform form #validationError p.error {
  background-color: #D32047;
}
.contactform form #validationError p.info {
  background-color: #0dcaf0;
}
.contactform form #validationError p.good {
  background-color: #9EC23B;
  font-size: 2rem;
  padding: 1rem;
}
.contactform .contactform > p.good {
  background-color: none;
  font-size: 2rem;
}
.contactform.bg-primary svg {
  fill: #95c5d3;
  height: 125px;
  width: auto;
  float: right;
}
@media (min-width: 768px) {
  .contactform.bg-primary svg {
    height: auto;
    float: none;
  }
}
@media (min-width: 768px) {
  .contactform.bg-primary article {
    width: 50%;
    margin-left: 12.5%;
  }
}
.contactform.bg-primary article em strong {
  font-size: 120%;
  line-height: 1rem;
  color: #95c5d3;
}

/*# sourceMappingURL=main.css.map*/