/* FONT FOR STAR RATING */
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

:root {
  --ocean: #008299;
  --ocean-dark: #008299;
  --teal: #63B1BC;
  --blue: #5575A2;
  --purple: #716ACA;
  --purple-highlight: #6059C5;
  --blue-highlight: #00B9DB;
  --dark: #004855;

  --teal-dark: #44A1B2;
  --mint: #E3FCF3;
  --white: #fff;
  --gray-light: #B6B8B5;
  --gray-lightest: #F9FBFC;
  --gray-dark: #494B4B;
  --powder: #F2F4F5;
  --disabled: var(--powder);
  
  --red: #F1262C;
  --yellow: #FFB822;

  --ocean-opacity: 0, 130, 153;
  --dark-opacity: 0, 72, 85;
  --mint-opacity: 227, 252, 243;
  --blue-opacity: 85, 117, 162;
  --purple-opacity: 96, 89, 197;

  --font-family-sans-serif: Figtree;
  --font-family-fancy: 'Great Vibes';

  --border-radius-low: 6px;
  --border-radius-mid: 8px;
  --border-radius-high: 16px;
}

/* ======= TEXT CUSTOMIZATION ======= */
body, html {
  font-family: var(--font-family-sans-serif);
  font-weight: 400;
  font-size: 14px;
  --body-font-size: 14px;
  color: var(--dark) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-sans-serif);
  font-style: normal;
  font-weight: 700;
}


.p1, .p2, .p3, .p4 {
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-family-sans-serif);
}

.p1 a, .p2 a, .p3 a, .p4 a {
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-family-sans-serif);
  text-decoration: underline;
}


label {
  font-family: var(--font-family-sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: var(--body-font-size);
}
/* ======= TEXT CUSTOMIZATION ======= */


/* ======= INPUT CONSISTENCY ======= */
input, select, .profession-radio, textarea {
  font-family: var(--font-family-sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: var(--body-font-size);
  line-height: 18px;
  border-radius: var(--border-radius-mid);
  -webkit-border-radius: var(--border-radius-mid);
  -moz-border-radius: var(--border-radius-mid);
  border: 1px solid var(--powder);
  padding: 11px 16px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white);
  color: var(--dark);
}

input::placeholder, select::placeholder, textarea::placeholder {
  color: var(--gray-light);
}

input:focus, input:focus-visible, input:focus-within,
select:focus, select:focus-visible, select:focus-within,
textarea:focus, textarea:focus-visible, textarea:focus-within {
  border: 2px solid var(--ocean);
  outline-color: var(--ocean);
}

.disabled, button:disabled {
  pointer-events: none;
  opacity: 60%;
}

input:disabled, select:disabled, textarea:disabled {
  border: 1px solid var(--powder);
  background-color: var(--powder);
  pointer-events: none;
}

input:invalid, select:invalid, textarea:invalid {
  border: 1px solid var(--red);
}

input:-webkit-autofill, .profession-radio {
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
  box-shadow: 0 0 0 1000px var(--white) inset !important;
  color: var(--dark);
}
/* ======= INPUT CONSISTENCY ======= */


/* ======= LINK CUSTOMIZATION ======= */
a:not(.btn) {
  font-family: var(--font-family-sans-serif);
  font-style: normal;
  font-weight: 400;
}

.link-light,
.font-light {
  color: var(--white);
  transition: all .2s ease;
}

.link-light:hover {
  text-decoration: underline;
  color: var(--dark);
}

.link-dark,
.font-dark {
  color: var(--dark);
  transition: all .2s ease;
}

.link-dark:hover {
  text-decoration: underline;
  color: var(--white);
}

.link-dark.gray-hover:hover {
  text-decoration: underline;
  color: var(--gray-light);
}

.link-teal {
  color: var(--teal);
}

.link-teal:hover {
  text-decoration: underline;
  color: var(--teal-dark);
}

.link-hidden:hover {
  text-decoration: none;
  color: inherit;
}
/* ======= LINK CUSTOMIZATION ======= */


/* ======= BUTTON CUSTOMIZATION ======= */
.btn {
  font-family: var(--font-family-sans-serif);
  font-weight: 700;
  padding: 14px 30px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  border-radius: var(--border-radius-low);
}

.btn-sm {
  font-family: var(--font-family-sans-serif);
  font-weight: 700;
  padding: 10px 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all .2s;
  border-radius: var(--border-radius-low);
}

.btn-great {
  font-family: var(--font-family-fancy);
}

.btn:hover {
  transform: scale(1.02);
}

.btn-ocean {
  color: var(--white);
  background-color: var(--ocean);
}

.btn-ocean:hover {
  background-color: var(--ocean-dark);
  color: var(--white);
}

.btn-dark {
  color: var(--white);
  background-color: var(--dark);
}

.btn-dark:hover {
  background-color: var(--dark);
  color: var(--white);
}

.btn-white-ocean {
  color: var(--ocean);
  background-color: var(--white);
  box-shadow: 0px 1px 4px rgba(var(--dark-opacity), 0.1) !important;
}

.btn-white-dark {
  color: var(--dark);
  background-color: var(--white);
  border: 1.5px solid var(--gray-lightest);
  box-shadow: 0px 1px 4px rgba(var(--dark-opacity), 0.1) !important;
}

.btn-white-red {
  color: var(--red);
  background-color: var(--white);
  border: 1.5px solid var(--gray-lightest);
  box-shadow: 0px 1px 4px rgba(var(--dark-opacity), 0.1) !important;
}

.btn-white-outline {
  color: var(--white);
  background-color: transparent;
  border: 1.5px solid var(--white);
}

.btn-accent {
  background-color: var(--mint);
  color: var(--dark) !important;
}

.btn-purple {
  background-color: var(--purple);
  color: var(--white) !important;
}

.btn-blue {
  background-color: var(--blue);
  color: var(--white) !important;
}

.btn-red-outline {
  color: var(--red);
  background-color: transparent;
  border: 1.5px solid var(--red);
}

.btn-yellow-outline {
  color: var(--yellow);
  background-color: transparent;
  border: 1.5px solid var(--yellow);
}

.btn-ocean-outline {
  color: var(--ocean);
  background-color: transparent;
  border: 1.5px solid var(--ocean);
}

.btn-icon-only {
  padding: 5px;
  width: 30px;
  height: 30px;
}
/* ======= BUTTON CUSTOMIZATION ======= */


/* ======= SHADOWS ======= */
.shadow1 {
  box-shadow: 0px 1px 4px rgba(var(--dark-opacity), 0.1);
}

.shadow2 {
  box-shadow: 0px 2px 8px rgba(var(--dark-opacity), 0.1);
}

.shadow3 {
  box-shadow: 0px 4px 12px rgba(var(--dark-opacity), 0.1);
}

.shadow4 {
  box-shadow: 0px 4px 20px rgba(var(--dark-opacity), 0.1);
}

.shadow5 {
  box-shadow: 0px 15px 60px rgba(var(--dark-opacity), 0.15);
}
/* ======= SHADOWS ======= */


/* ======= CUSTOM COLORING ======= */
.purple {
  background-color: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.blue {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.brand {
  background-color: var(--ocean) !important;
  border-color: var(--ocean) !important;
  color: var(--white) !important;
}

.text-purple {
  color: var(--purple);
}

.text-blue {
  color: var(--blue);
}

.text-gray {
  color: var(--gray);
}

.text-ocean {
  color: var(--ocean);
}

.text-red {
  color: var(--red);
}

.text-yellow {
  color: var(--yellow);
}

.text-white {
  color: var(--white) !important;
}

.text-great {
  font-family: var(--font-family-fancy);
  font-weight: 400;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-14 {
  font-size: 14px;
}

/* Specific sizing for selects to display more text */
.font-size-12 select {
  font-size: 12px;
}
/* ======= CUSTOM COLORING ======= */


/* ======= OTHER ======= */
.terms-scroller {
  overflow: auto;
  max-height: 300px;
}

span.body-text {
  font-weight: 700;
}

span.header-text {
  font-weight: 700;
  text-decoration: underline;
}

.m-footer__copyright {
  font-size: 12px !important;
}

.fine-print {
  font-size: 10px;
  font-weight: 200;
  width: 100%;
}

sup {
  font-size: 6px;
}

.service-mark, .trademark {
  font-style: italic;
  white-space: nowrap;
}

.service-mark sup,
.trademark sup {
  font-style: normal;
}

.form-control-feedback {
  color: var(--dark);
  margin-top: 5px;
}
/* ======= OTHER ======= */