:root {
  --black: hsl(15, 1%, 18%);
  --dark: var(--gray5);
  --gray5: hsl(15, 1%, 38%);
  --color: hsl(15, 1%, 45%);
  --gray4: hsl(15, 1%, 53%);
  --gray3: hsl(15, 1%, 68%);
  --gray2: hsl(15, 1%, 83%);
  --gray1: hsl(15, 1%, 96%);
  --light: var(--gray1);
  --cold: hsl(204, 15%, 94%);
  --cold-dark: hsl(204, 15%, 90%);
  --lightsmoke: hsl(204, 15%, 98%);
  --white: #FFF;

  --primary: hsl(204, 100%, 37%);
  --primary-pale: hsl(204, 100%, 95%);
  --primary-light: hsl(204, 100%, 44%);
  --primary-dark: hsl(240, 33%, 1%);
  --brand: hsl(15, 88%, 65%);
  /*--brand: #FF00FF;*/
  --brand-pale: hsl(15, 88%, 96%);
  /*--brand-pale: #FFE6FF;*/
  --brand-light: hsl(15, 88%, 72%);
  /*--brand-light: #FF99FF;*/
  --brand-dark: hsl(15, 88%, 58%);
  /*--brand-dark: #8C158C;*/

  --blue: hsl(204, 100%, 37%);
  --red: hsl(1, 76%, 54%);
  --red-pale: hsl(1, 56%, 96%);
  --red-light: hsl(1, 76%, 64%);
  --red-dark: hsl(1, 76%, 44%);
  --green: hsl(142, 76%, 44%);
  --yellow: hsl(40, 96%, 64%);
  --yellow-pale: hsl(40, 56%, 96%);
  --yellow-light: hsl(40, 96%, 74%);
  --yellow-dark: hsl(40, 96%, 54%);
  --indigo: hsl(263, 90%, 51%);
  --purple: hsl(261, 51%, 51%);
  --cyan: hsl(188, 78%, 41%);
  --cyan-pale: hsl(188, 38%, 94%);
  --cyan-light: hsl(188, 78%, 51%);
  --cyan-dark: hsl(188, 78%, 31%);
  --teal: hsl(162, 73%, 46%);
  --teal-pale: hsl(162, 33%, 92%);
  --teal-light: hsl(162, 73%, 56%);
  --teal-dark: hsl(162, 73%, 36%);

  --backdrop: hsla(15, 1%, 18%, 0.75);

  --weight-lite: 300;
  --weight-norm: 400;
  --weight-bold: 600;

  --radius: 3px;

  --font: 'Montserrat', sans-serif;
  --font-alt: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

@-ms-viewport {
  width: device-width
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block
}

body {
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  background-color: var(--white);
}

[tabindex="-1"]:focus {
  outline: 0 !important
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: var(--weight-norm);
}

h1 {
  font-size: calc(var(--size) * 2.5)
}

h2 {
  font-size: calc(var(--size) * 2)
}

h3 {
  font-size: calc(var(--size) * 1.5)
}

h4 {
  font-size: calc(var(--size) * 1.25)
}

h5 {
  font-size: calc(var(--size) * 1)
}

h6 {
  font-size: calc(var(--size) * 0.75)
}

p {
  margin-top: 0;
  margin-bottom: 1rem
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0
}

dt {
  font-weight: bold
}

dd {
  margin-bottom: .5rem;
  margin-left: 0
}

blockquote {
  margin: 0 0 1rem
}

dfn {
  font-style: italic
}

b,
strong {
  font-weight: bolder
}

small {
  font-size: 80%
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none
}

a:not([href]):not([tabindex]):focus {
  outline: 0
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar
}

figure {
  margin: 0 0 1rem
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
  vertical-align: middle
}

table {
  border-collapse: collapse
}

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom
}

th {
  text-align: inherit
}

label {
  display: inline-block;
  margin-bottom: .5rem
}

button {
  border-radius: 0
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}

option {
  -moz-padding-start: 0;
}

input:required,
select:required,
textarea:required {
  box-shadow: none;
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
}

legend {
  display: block;
  max-width: 100%;
  padding: 0 .5rem;
  font-size: 1rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto
}

[type="number"]:disabled,
[type="number"]:disabled {
  -moz-appearance: textfield;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button
}

output {
  display: inline-block
}

summary {
  display: list-item;
  cursor: pointer
}

template {
  display: none
}

[hidden] {
  display: none !important
}

/* should we do this? */
dt {
  text-transform: uppercase
}

[data-dismiss="dialog"] * {
  pointer-events: none
}

/*--------------------------------------*/
/* #SCROLLBAR (only chrome)*/
/*--------------------------------------*/

::-webkit-scrollbar {
  width: calc(var(--size) / 2);
}

::-webkit-scrollbar:horizontal {
  height: calc(var(--size) / 2);
}

::-webkit-scrollbar-thumb {
  background: var(--gray4);
  border-radius: 1rem;
}

/* FUNCTIONS */

/* small margin children */
.sm-m-child>* {
  margin: .25rem 0;
}

.box-shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)
}

.box-shadow {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)
}

.box-shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175)
}

.box-shadow-in {
  box-shadow: inset 0 0 .1rem .1rem rgba(0, 0, 0, .075) !important;
}

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

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

.text-red,
.text-danger {
  color: var(--red) !important;
}

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

.text-yellow,
.text-warning {
  color: var(--yellow) !important;
}

.text-green,
.text-success {
  color: var(--green) !important;
}

.text-teal,
.text-info {
  color: var(--teal) !important;
}

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

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

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

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

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

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

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

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

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

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

.text-center {
  text-align: center
}

.text-left {
  text-align: left
}

.text-right {
  text-align: right
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-uppercase, .uppercase {
  text-transform: uppercase
}

.text-underline, .underline {
  text-decoration: underline
}

.text-mono {
  font-family: var(--font-mono) !important;
}

.small {
  font-size: .75rem;
  /* line-height: .75; */
}

.big {
  font-size: 1.25rem;
}

.bigger {
  font-size: 1.5rem;
  /* line-height: 1.25; */
}

.double {
  font-size: 2rem;
  /* line-height: 2; */
}

.lite {
  font-weight: var(--weight-lite)
}

.normal {
  font-weight: var(--weight-norm)
} 

.bold {
  font-weight: var(--weight-bold)
}

.pen * {
  pointer-events: none;
}

.pointer {
  cursor: pointer;
}

.box-100 {
  height: 1rem !important;
  width: 1rem !important;
}

.box-1000 {
  height: 15rem !important;
  width: 15rem !important;
}

.box-10002 {
  height: 10rem !important;
  width: 10rem !important;
}

.box-125 {
  height: 1.25rem !important;
  width: 1.25rem !important;
}

.box-150 {
  height: 1.5rem !important;
  width: 1.5rem !important;
}

.box-175 {
  height: 1.75rem !important;
  width: 1.75rem !important;
}

.box-200 {
  height: 2rem !important;
  width: 2rem !important;
}

.box-300 {
  height: 3rem !important;
  width: 3rem !important;
}

/* inline image to standard line height */
.iih-150 {
  height: 1.5rem !important;
}

.rounded {
  border-radius: var(--radius)
}

.unicode-icon {
  display: inline-block;
  line-height: 1;
  text-align: center;
}

.size-inherit {
  max-height: 1em;
  width: auto;
  height: auto;
  vertical-align: middle;
}

.list-unstyled {
  list-style: none;
}

.bg-indigo {
  background-color: var(--indigo);
}

.bg-purple {
  background-color: var(--purple);
}

.bg-red,
.bg-danger {
  background-color: var(--red);
}

.bg-brand {
  background-color: var(--brand);
}

.bg-yellow,
.bg-warning {
  background-color: var(--yellow);
}

.bg-invalid {
  background-color: var(--yellow-light);
}

.bg-green,
.bg-success {
  background-color: var(--green);
}

.bg-teal,
.bg-info {
  background-color: var(--teal);
}

.bg-cyan {
  background-color: var(--cyan);
}

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

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

.bg-gray2 {
  background-color: var(--gray2);
}

.bg-gray3 {
  background-color: var(--gray3);
}

.bg-gray4 {
  background-color: var(--gray4);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-light {
  background-color: var(--light);
}

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

.bg-black {
  background-color: var(--black);
}

.bg-transparent {
  background-color: transparent !important;
}

.bb-light {
  border-bottom: 1px solid var(--light)
}

.bt-light {
  border-top: 1px solid var(--light)
}

.bl-light {
  border-left: 1px solid var(--light)
}

.br-light {
  border-right: 1px solid var(--light)
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.relative {
  position: relative !important;
}

.sticky {
  position: sticky !important;
  z-index: 2000;
}

.visible {
  visibility: visible !important;
}

.hidden {
  visibility: hidden !important;
}

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

.d-inline {
  display: inline;
}

.d-inline-block, .ib {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-flex, .flex, .column, .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.d-flex-i, .flex-i, .column-i, .row-i {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-row, .row {
  flex-direction: row !important;
}

.flex-column, .column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap, .wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap, .nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-grow, .grow {
  flex-grow: 1;
}

.flex-shrink, .shrink {
  flex-shrink: 1;
}

.dont-grow {
  flex-grow: 0 !important;
}

.dont-shrink {
  flex-shrink: 0 !important;
}

.flex-expand, .expand {
  flex: 1 0 auto;
}

.flex-auto {
  flex: auto;
}

.justify-content-start, .jcs {
  justify-content: flex-start !important;
}

.justify-content-end, .jcend {
  justify-content: flex-end !important;
}

.justify-content-center, .jcc {
  justify-content: center !important;
}

.justify-content-between, .jcb {
  justify-content: space-between !important;
}

.justify-content-around, .jca {
  justify-content: space-around !important;
}

.justify-content-evenly, .jce {
  justify-content: space-evenly;
}

.align-items-start, .ais {
  align-items: flex-start !important;
}

.align-items-end, .aie {
  align-items: flex-end !important;
}

.align-items-center, .aic {
  align-items: center !important;
}

.align-items-baseline, .aib {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start, .acs {
  align-content: flex-start !important;
}

.align-content-end, .ace {
  align-content: flex-end !important;
}

.align-content-center, .acc {
  align-content: center !important;
}

.align-content-between, .acb {
  align-content: space-between !important;
}

.align-content-around, .aca {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto, .asa {
  align-self: auto !important;
}

.align-self-start, .ass {
  align-self: flex-start !important;
}

.align-self-end, .ase {
  align-self: flex-end !important;
}

.align-self-center, .asc {
  align-self: center !important;
}

.align-self-baseline, .asb {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mw-mobile {
  max-width: 24rem;
}

.w-mobile {
  width: 24rem;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-05 {
  margin-bottom: 0.125rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 1rem 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-4 {
  padding: 1.5rem 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-5 {
  padding: 3rem 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
