/* vars */
/* 

THEME 1 -(8) Natural
$omnis-blue:          #303F9F;
$omnis-pink:          #FF4081;
$theme-verdigris:     #62BEC1;
$theme-vividskyblue:  #5AD2F4;
$theme-coyote:        #735F3D;

THEME 2 -(11) soft deep greens   ---- no longer SELECTED, none of these themes are used. ---- 
$omnis-blue:          #303F9F;
$omnis-pink:          #FF4081;
$theme-darkcyan:      #048A81;
$theme-emerald:       #06D6A0;
$theme-vividskyblue:  #52C6EB;

THEME 3 -(7) Spring
$omnis-blue:          #303F9F;
$omnis-pink:          #FF4081;
$theme-mindaro:       #DCF763;
$theme-clouds:        #F1F2EE;
$theme-taupe:         #4A4238;

THEME 4 -(4) Sprouts
$omnis-blue:          #303F9F;
$omnis-pink:          #FF4081;
$theme-straw:         #E5E059;
$theme-yellowgreen:   #BDD358;
$theme-linen:         #FFEDDF;

THEME 5 -(19) Meadow
$omnis-blue:          #303F9F;
$omnis-pink:          #FF4081;
$theme-linen:         #FFEDDF;
$theme-mindaro:       #C5D86D;
$theme-tiffanyblue:   #AFE0CE;

*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html.dark-mode {
  filter: invert(100%) hue-rotate(180deg) saturate(150%) contrast(90%);
  -webkit-backface-visibility: hidden !important;
  backface-visibility:         hidden !important;
}

body {
  background: white;
  color: #212529;
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
  padding-top: 70px;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2rem;
}

/* Header */
.main-nav {
  /* background: #303F9F; */
  background: #FFFFFF;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  padding: 16px 12px;
}

.main-nav .container {
  max-width: 1280px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header Branding */

.branding-logo {
  display: inline-block;
  max-height: 56px;
  max-width: 225px;
  padding: 8px 4px 8px 8px;
  vertical-align: middle;
  transform: scale(1.2);
}

.branding-content {
  padding-left: .75rem;
  line-height: 1;
}

/* Header navigation */
.navigation > ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  padding: 0 10px;
  text-shadow: 1px 1px 0px transparent;
  transition: all .25s ease-in-out;
}

.navigation a:hover {
  color: #FF4081;
}

/* Header CTA */
.sales-cta {
  order: 3;
}

.sr-only {
  height: 1px;
  left: -99999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.text-gradient {
  background: -webkit-linear-gradient(45deg, #FF4081, #303F9F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient_flip {
  padding: 5px 10px;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: white;
}

/* TODO: this is a bit much. would look good on a darker BG likely. shelving for now */
/* .text-gradient_alt {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #54C6EB, #06D6A0 28%, #048A81 59%, #303F9F 80%, #FF4081);
} */

.container {
  margin: 0 auto;
  padding: 40px 20px 60px;
  max-width: 1280px;
}

.container_noPad {
  padding: 0;
}

.container_noPadTop {
  padding-top: 0;
}

.container_noPadBottom {
  padding-bottom: 0;
}

.container_addPad {
  padding-top: 60px;
  padding-bottom: 90px;
}

/* Footer */
footer {
  color: white;
  line-height: 1.5;
  min-height: 500px; /* TEMP */
  font-size: 20px;
  font-weight: 600;
}

footer p {
  font-size: 16px;
  font-weight: 300;
}

@media (min-width: 767px) {
  footer .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  } 
}

.footer-list {
  color: #fff;
  font-size: 16px;
  list-style: none;
  padding: 0;
}

@media (max-width: 768px) {
  .footer-list {
    margin: 40px 0;
  }
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: all .25s ease-in-out;
  font-weight: 300;
}

.footer-list a:hover {
  color: rgba(255, 255, 255, 1);
}

.branding-logo-footer {
  padding-left: 17px;
  padding-top: 17px;
}

.gradient-dark {
  background: linear-gradient(315deg, #048A81 0%, #06D6A0 100%);
}

.gradient-secondary {
  background: linear-gradient(315deg, #232e79 0%, #303F9F 100%);
}

.gradient-pinkToBlue {
  background: linear-gradient(315deg, #303F9F 0%, #FF4081 100%);
}

/* Card */
.card {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 6px;
  padding: 20px;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 0 11px #E3E3E9;
}

.card_alt {
  background-color: #FAF8FB !important;
}

/* Button */
.btn {
  border-radius: 6px;
  font-size: 1rem;
  padding: .375rem .75rem;
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out, transform .15s ease-in-out;
}

.btn-primary {
  background: linear-gradient(180deg, #FF669A 0%, #FF4081 100%);
  border: 1px solid #FF4081;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
}

.btn-secondary {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFB 100%);
  border: 1px solid #F7F7F9;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 1px rgba(0, 0, 0, 0.15);
  color: #303037;
}

.btn-tertiary {
  background: linear-gradient(180deg, #303F9F 0%, #232e79 100%);
  border: 1px solid #303F9F;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
}

.btn-gradient {
  border: none;
  background: linear-gradient(90deg, #303F9F -25.61%, #FF4081 115.85%);
  color: #fff;
}

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

.btn + .btn {
  margin-left: 10px;
}

/* Utilities */
.text-center {
  text-align: center !important;
}

.d-none {
  display: none !important;
}

.modal {
  display: none;

  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10000;
}

.modal.isActive {
  display: block;
}

.modal-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  max-width: 800px;
  width: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  overflow-y: scroll;
}

/* WYSIWYG styles (word DOC stuff for legal text) */
.wysiwyg {
  line-height: 1.5;
}

.wysiwyg h4 {
  margin-top: 0;
}

.wysiwyg h5 {
  font-size: 18px;
}

.wysiwyg ol {
  list-style-position: inside;
  padding-left: 0;
}

.wysiwyg ol > li > h5 {
  display: inline-block;
  margin: 10px 0;
}

.wysiwyg ol > li::marker {
  font-size: 18px;
  font-weight: bold;
}

.wysiwyg ul {
  padding-left: 15px;
  list-style: disc;
}

.wysiwyg ul > li {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .d-md-block {
      display: block !important;
  }
}