/*  */
/*  */
/* CSS RESET */
/*  */
/*  */

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%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
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;
}

/*  */
/*  */
/* Field Office Styling */
/*  */
/*  */

@font-face {
  font-family: 'Proxima Nova Alt';
  src: url('/css/fonts/ProximaNovaA-Bold.woff2');
  src: local('Proxima Nova Alt'), local('ProximaNovaA-Bold'),
    url('/css/fonts/ProximaNovaA-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova Alt';
  src: url('/css/fonts/ProximaNovaA-Regular.woff2');
  src: local('Proxima Nova Alt'), local('ProximaNovaA-Regular'),
    url('/css/fonts/ProximaNovaA-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova Alt';
  src: url('/css/fonts/ProximaNovaA-Light.woff2');
  src: local('Proxima Nova Alt'), local('ProximaNovaA-Light'),
    url('/css/fonts/ProximaNovaA-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

:root {
  --font-primary: 'Proxima Nova Alt', sans-serif;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #273e39;
}

@media (max-width: 900px) {
  body {
    font-size: 14px;
  }
}

select {
  -webkit-appearance: none;
  appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  line-height: 1;
}

p,
span,
li,
a {
  line-height: 1.4;
}

/*  */
/*  */
/* Colors */
/*  */
/*  */

/* Dark Green */

.color-darkgreen {
  color: #273e39;
}

.background-darkgreen {
  background: #273e39;
}

.fill-darkgreen {
  fill: #273e39;
}

/* Light Green */

.color-lightgreen {
  color: #adc4b4;
}

.background-lightgreen {
  background: #adc4b4;
}

.fill-lightgreen {
  fill: #adc4b4;
}

/* Beige */

.color-beige {
  color: #f6e8d9;
}

.background-beige {
  background: #f6e8d9;
}

.fill-beige {
  fill: #f6e8d9;
}

/* Orange */

.color-orange {
  color: #fb5900;
}

.background-orange {
  background: #fb5900;
}

.fill-orange {
  fill: #fb5900;
}

/* White */

.color-white {
  color: #ffffff;
}

.background-white {
  background: #ffffff;
}

.fill-white {
  fill: #ffffff;
}

/* Black */

.color-black {
  color: #000000;
}

.background-black {
  background: #000000;
}

.fill-black {
  fill: #000000;
}

/*  */
/*  */
/* Typography */
/*  */
/*  */

/* Heading 1 */

.heading1 {
  font-size: 64px;
}

.IntroTitle {
  line-height: 1;
}

@media (max-width: 900px) {
  .heading1 {
    font-size: 36px;
  }
}

/* Heading 2 */

.heading2 {
  font-size: 40px;
}

@media (max-width: 900px) {
  .heading2 {
    font-size: 26px;
  }
}

/* Heading 3 */

.heading3 {
  font-size: 30px;
}

@media (max-width: 900px) {
  .heading3 {
    font-size: 20px;
  }
}

/* Heading 4 */

.heading4 {
  font-size: 24px;
}

@media (max-width: 900px) {
  .heading4 {
    font-size: 16px;
  }
}

/* Shared Heading Styles */

.heading1,
.heading2,
.heading3,
.heading4 {
  font-weight: 700;
}

/* X Large Text */

.xlarge-text {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .xlarge-text {
    font-size: 15px;
  }
}

/* Large Text */

.large-text {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .large-text {
    font-size: 12px;
  }
}

/* Regular Text */

.regular-text {
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .regular-text {
    font-size: 14px;
  }
}

/* Small Text */

.small-text {
  font-size: 11px;
  font-weight: 300;
}

@media (max-width: 900px) {
  .small-text {
    font-size: 10px;
  }
}

/* Utilities */

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

@media (min-width: 1200px) {
  .hide-above-large {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .hide-below-large {
    display: none !important;
  }
}

@media (min-width: 900px) {
  .hide-above-medium {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .hide-below-medium {
    display: none !important;
  }
}

@media (min-width: 600px) {
  .hide-above-small {
    display: none !important;
  }
}

@media (max-width: 599px) {
  .hide-below-small {
    display: none !important;
  }
}

.user-message.warning {
  color: #273e39;
  background: transparent !important;
  padding: 0;
  border: none;
  font-size: 16px;
}

.notifyjs-bootstrap-base {
  padding: 8px 15px 8px 14px !important;
}

.lds-ring {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -2px;
  position: relative;
  width: calc(80px / 4);
  height: calc(80px / 4);
  margin-right: 10px;
  margin-left: -10px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: calc(64px / 4);
  height: calc(64px / 4);
  border: 3px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
