@import "https://fonts.googleapis.com/css?family=IBM+Plex+Sans:200,400,500,700|Lobster";
@import url(normalize.css);
/* line 3, /sass/_base.scss */
p {
  line-height: 1.3;
}

/* line 6, /sass/_base.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: Lobster, Georgia, serif;
  margin: .6em 0;
}

/* line 10, /sass/_base.scss */
h1 {
  font-size: 46px;
}

/* line 13, /sass/_base.scss */
h2 {
  font-size: 38px;
}

/* line 16, /sass/_base.scss */
h2.subtitle {
  font-size: 30px;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

/* line 21, /sass/_base.scss */
h3 {
  font-size: 32px;
}

/* line 24, /sass/_base.scss */
h4 {
  font-size: 24px;
}

/* line 27, /sass/_base.scss */
h5 {
  font-size: 22px;
}

/* line 30, /sass/_base.scss */
h6 {
  font-size: 18px;
}

/* line 35, /sass/_base.scss */
a {
  color: #ce3154;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px dotted transparent;
  display: inline-block;
}

/* line 42, /sass/_base.scss */
a:hover {
  /*border-bottom: 1px dotted $blue;*/
}

/* line 48, /sass/_base.scss */
pre {
  padding: 16px;
  font-family: Consolas, monospace;
  background: #ddd;
  border-left: 5px solid #ce3154;
}

/* Formats */
/* line 57, /sass/_base.scss */
.text-center {
  text-align: center;
}

/* line 60, /sass/_base.scss */
.text-left {
  text-align: left;
}

/* line 63, /sass/_base.scss */
.text-right {
  text-align: right;
}

/* line 66, /sass/_base.scss */
.clear-left {
  float: left;
  clear: none;
}

/* line 70, /sass/_base.scss */
.clear-right {
  float: right;
  clear: none;
}

/* line 74, /sass/_base.scss */
.text-lead {
  font-size: 1.3em;
  line-height: 1.8;
  font-weight: 200;
  color: #000;
}

/* line 80, /sass/_base.scss */
.text-narrow {
  width: 400px;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

/* line 86, /sass/_base.scss */
.text-bold {
  font-weight: 700;
}

/* line 89, /sass/_base.scss */
.text-light {
  font-weight: 200;
}

/* line 92, /sass/_base.scss */
.text-italic {
  font-style: italic;
}

/* line 95, /sass/_base.scss */
.text-outset {
  text-shadow: 1px 1px 1px #000;
}

/* line 98, /sass/_base.scss */
.text-muted {
  color: #808080;
}

/*.text-danger {
  color: $danger;
}
.text-warning {
  color: $warning;
}
.text-success {
  color: $success;
}
.text-primary {
  color: $blue;
}
.text-secondary {
  color: $green;
}
.text-info {
  color: $info;
}*/
/* line 120, /sass/_base.scss */
.text-subtitle {
  border-bottom: 1px solid #ce3154;
  color: #808080;
  font-size: 18px;
}

/* line 126, /sass/_base.scss */
.text-animate {
  opacity: 0;
  transition: all var(--transition-timing, 0.25s);
}

/* line 130, /sass/_base.scss */
.text-animate.bottom {
  transform: translateY(20px);
}

/* line 133, /sass/_base.scss */
.text-animate.top {
  transform: translateY(-20px);
}

/* line 136, /sass/_base.scss */
.text-animate.right {
  transform: translateX(20px);
}

/* line 139, /sass/_base.scss */
.text-animate.left {
  transform: translateX(-20px);
}

/* line 143, /sass/_base.scss */
.text-animate.in {
  opacity: 1;
  transform: translateY(0px) translateX(0px);
}

@media screen and (max-width: 760px) {
  /* line 151, /sass/_base.scss */
  .mobile-hide {
    display: none !important;
  }
}

@media screen and (min-width: 761px) {
  /* line 156, /sass/_base.scss */
  .desktop-hide {
    display: none !important;
  }
}

/* line 164, /sass/_base.scss */
.content {
  padding: 16px;
}

/* line 168, /sass/_base.scss */
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

@media screen and (max-width: 960px) {
  /* line 168, /sass/_base.scss */
  .row {
    display: block;
  }
}

/* line 176, /sass/_base.scss */
.row .item {
  grid-row-start: var(--grs);
  grid-row-end: var(--gre);
  grid-column-start: var(--gcs);
  grid-column-end: var(--gce);
  grid-area: 1fr;
  padding: 16px;
  vertical-align: top;
}

/* line 191, /sass/_base.scss */
.card {
  background: #fff;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin: 16px 0;
  border-radius: 3px;
}

/* line 198, /sass/_base.scss */
.card .card-footer {
  text-align: right;
  margin-bottom: -10px;
  padding-top: 10px;
}

/* line 1, /sass/_forms.scss */
.form-item {
  position: relative;
  margin-top: 20px;
}

/* line 5, /sass/_forms.scss */
.form-item input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #808080;
  background: transparent;
  outline: none;
  padding: 16px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
}

/* line 16, /sass/_forms.scss */
.form-item input:-webkit-autofill {
  box-shadow: 1000px 1000px 10000px #fff inset;
}

/* line 20, /sass/_forms.scss */
.form-item label {
  transform: translateY(-25px);
  color: #808080;
  position: absolute;
  width: 100%;
  display: block;
  pointer-events: none;
  transition: all 0.3s 0s;
}

/* line 28, /sass/_forms.scss */
.form-item label:after {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ce3154;
  content: "";
  display: block;
  bottom: 0px;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.3s ease-in, bottom 0.3s, opacity 0.3s;
}

/* line 42, /sass/_forms.scss */
.form-item input:focus + label, .form-item input:valid + label {
  transform: translateY(-65px);
  font-size: 12px;
  color: #ce3154;
  transition-delay: 0;
}

/* line 48, /sass/_forms.scss */
.form-item input:focus + label:after, .form-item input:valid + label:after {
  opacity: 1;
  transition: transform .3s ease-in, bottom 0s, opacity .3s;
  transform: scaleX(1);
  bottom: -50px;
}

/* line 55, /sass/_forms.scss */
.form-item select {
  padding: 16px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-appearance: none;
  border: none;
  outline: none;
  border-bottom: 3px solid #ce3154;
  margin-top: 8px;
}

/* line 67, /sass/_forms.scss */
.form-item select + label {
  color: #ce3154;
  font-size: 12px;
  transform: translateY(-60px);
}

/* line 72, /sass/_forms.scss */
.form-item select * {
  -webkit-appearance: none;
}

/* line 75, /sass/_forms.scss */
.form-item select option {
  padding: 8px 16px;
  -webkit-appearance: none;
}

/* line 80, /sass/_forms.scss */
.form-item textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #808080;
  background: transparent;
  outline: none;
  padding: 16px 0;
  height: 150px;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  margin-top: 20px;
  resize: none;
  height: 40px;
  transition: all .2s ease-in;
}

/* line 95, /sass/_forms.scss */
.form-item textarea + label {
  transform: translateY(-30px);
  color: #808080;
  position: absolute;
  width: 100%;
  display: block;
  pointer-events: none;
  transition: all 0.3s 0s;
}

/* line 105, /sass/_forms.scss */
.form-item texarea + label:after {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ce3154;
  content: "";
  display: block;
  bottom: 0px;
  transform: scaleX(0);
  opacity: 0;
  transition: transform .3s ease-in, bottom .3s, opacity .3s;
}

/* line 118, /sass/_forms.scss */
.form-item textarea:focus, .form-item textarea:valid {
  height: 150px;
}

/* line 121, /sass/_forms.scss */
.form-item textarea:focus + label, .form-item textarea:valid + label {
  font-size: 12px;
  color: #ce3154;
  transform: translateY(-165px);
}

/* line 126, /sass/_forms.scss */
.form-item textarea:focus + label:after, .form-item textarea:valid + label:after {
  opacity: 1;
  transition: transform .3s ease-in, bottom 0s, opacity .3s;
  transform: scaleX(1);
  bottom: -150px;
}

/* line 133, /sass/_forms.scss */
.form-item textarea, .form-item input, .form-item select {
  /*&.invalid + label {
      color: $danger;

      &:after {
        background: $danger !important;
      }
    }*/
}

/* line 144, /sass/_forms.scss */
.form-item.has-icon .icon {
  position: absolute;
  top: 20px;
  transition: all .3s;
  left: 0px;
  color: #808080;
  font-size: 18px;
}

/* line 153, /sass/_forms.scss */
.form-item.has-icon input {
  padding-left: 32px;
}

/* line 156, /sass/_forms.scss */
.form-item.has-icon input:focus ~ .icon,
.form-item.has-icon input:focus ~ .icon .mdi {
  color: #ce3154;
}

/* line 161, /sass/_forms.scss */
.form-item.has-icon input + label {
  text-indent: 32px;
}

/* line 170, /sass/_forms.scss */
.checkbox {
  display: inline-block;
  position: relative;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 24px;
}

/* line 177, /sass/_forms.scss */
.checkbox__input {
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  opacity: 0;
  z-index: 0;
}

/* line 188, /sass/_forms.scss */
.checkbox__label {
  display: block;
  padding: 0 0 0 24px;
  cursor: pointer;
}

/* line 193, /sass/_forms.scss */
.checkbox__label:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px solid #ce3154;
  border-radius: 2px;
  z-index: 1;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: background-color, border-color;
}

/* line 208, /sass/_forms.scss */
.checkbox__label:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 12px;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  transform: rotate(45deg);
  z-index: 2;
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 225, /sass/_forms.scss */
.checkbox__input:checked + .checkbox__label:before {
  background-color: #ce3154;
  border-color: #ce3154;
}

/* line 230, /sass/_forms.scss */
.checkbox__input:checked + .checkbox__label:after {
  border-color: #fff;
}

/* line 16, stdin */
:root {
  --primary: #ce3154;
}

/* line 20, stdin */
body {
  padding: 0;
  margin: 0;
  font: normal normal 16px/1.4 "IBM Plex Sans", Arial, sans-serif;
  padding-top: 60px;
}

/* line 27, stdin */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #ce3154;
  box-shadow: 1px 1px 1px rgba(30, 30, 30, 0.8);
}

/* line 36, stdin */
#header #header-navbar {
  padding: 0;
  margin: 0;
  text-align: center;
}

/* line 41, stdin */
#header #header-navbar #mobile-toggle {
  display: inline-block;
  width: 30px;
  background: #fff;
  padding: 0 8px;
  border-radius: 3px;
  margin: 10px;
  cursor: pointer;
}

/* line 50, stdin */
#header #header-navbar #mobile-toggle .toggle-bar {
  width: 100%;
  height: 4px;
  margin: 8px 0;
  background: #ce3154;
  display: block;
  position: relative;
  z-index: 700;
  transition: all .2s;
}

/* line 63, stdin */
#header #header-navbar #mobile-toggle.in .toggle-bar:nth-of-type(1) {
  opacity: 0;
}

/* line 66, stdin */
#header #header-navbar #mobile-toggle.in .toggle-bar:nth-of-type(2) {
  transform: rotate(45deg) translateY(10px) translateX(9px);
}

/* line 69, stdin */
#header #header-navbar #mobile-toggle.in .toggle-bar:nth-of-type(3) {
  transform: rotate(-45deg) translateY(1px) translateX(-2px);
}

@media screen and (min-width: 600px) {
  /* line 41, stdin */
  #header #header-navbar #mobile-toggle {
    display: none;
  }
}

/* line 81, stdin */
#header #header-navbar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

/* line 88, stdin */
#header #header-navbar nav ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

/* line 94, stdin */
#header #header-navbar nav ul li a {
  font-weight: 500;
  color: #fff;
  display: block;
  padding: 8px 16px;
  margin: 8px 16px;
  text-decoration: none;
  font-family: Lobster;
  transition: all .3s;
  transform: scale(1);
  will-change: transform;
}

/* line 106, stdin */
#header #header-navbar nav ul li a:hover {
  color: #fff;
  transform: scale(1.1);
  text-shadow: 1px 1px 1px #333;
}

/* line 111, stdin */
#header #header-navbar nav ul li a.active {
  color: #ce3154;
  background: #fff;
}

/* line 115, stdin */
#header #header-navbar nav ul li a.active:hover {
  text-shadow: none;
  transform: scale(1);
}

@media screen and (max-width: 600px) {
  /* line 81, stdin */
  #header #header-navbar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 100px;
    display: block;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 400;
    transform: all .2s;
  }
  /* line 141, stdin */
  #header #header-navbar nav ul.in {
    opacity: 1;
    pointer-events: all;
  }
  /* line 146, stdin */
  #header #header-navbar nav ul li {
    display: block;
    padding: 0;
    margin: 0;
  }
  /* line 151, stdin */
  #header #header-navbar nav ul li a {
    font-size: 24px;
    padding: 8px 0;
    margin: 16px 0;
    color: #fff !important;
  }
}

/* line 165, stdin */
.btn {
  padding: 8px 16px;
  background: #ce3154;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .2s;
  text-shadow: 1px 1px 1px #555;
}

/* line 177, stdin */
.btn:hover {
  background: #a52743;
}

/* line 180, stdin */
.btn:active, .btn:focus {
  background: #90223b;
}

/* line 185, stdin */
.btn.btn-lg {
  padding: 14px 28px;
  font-size: 1.5em;
  font-weight: 700;
  border-radius: 4px;
}
