*,
*:before,
*:after {
  box-sizing: inherit;
  vertical-align: top; }

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  line-height: 1;
  margin: 0;
  padding: 0; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  color: #262730; }

span,
strong {
  display: inline-block; }

ol,
ul {
  padding: 0;
  margin: 0;
  list-style-position: inside; }

ul li {
  list-style: none; }

table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border-collapse: collapse; }

/* No number spinners on input fields */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

a {
  text-decoration: none;
  display: inline-block; }

input[type='search'] {
  -webkit-appearance: textfield;
  /* https://github.com/h5bp/html5-boilerplate/issues/396#issue-697226 */ }

.classic-list li {
  list-style: disc;
  font-size: 14px;
  margin-bottom: 12px;
  margin-left: 20px;
  line-height: 1.4; }

code {
  color: #b92534;
  background: #f9f9f9;
  padding: 1px 3px;
  font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', monospace;
  font-size: 13px;
  line-height: 1.6; }

.btn {
  padding: 14px 30px;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 900;
  color: #262730;
  background-color: #fff;
  border-radius: 3px;
  transition: all 250ms ease 0s;
  cursor: pointer;
  outline: none;
  border: none;
  line-height: 1; }
  .btn:hover {
    background: #fcfcfc; }
  .btn:active {
    transform: translateY(1px); }
  .btn:disabled {
    background: #ebe6db !important;
    color: #a89971;
    cursor: default !important; }
  .btn.btn-sm {
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 1.5px; }
  .btn.btn-lg {
    padding: 15px 45px; }
  .btn.btn-cta {
    padding: 10px 16px 10px 38px;
    line-height: 2.3;
    font-size: 14px; }
    .btn.btn-cta .fa {
      background: rgba(255, 255, 255, 0.2);
      font-size: 20px;
      padding: 6px 10px 6px 14px;
      margin-left: 10px;
      transition: transform 300ms; }
    .btn.btn-cta:hover .fa {
      transform: translateX(5px); }
  .btn.btn-blue {
    color: white;
    background: linear-gradient(to right, #505e71, #65778f);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); }
    .btn.btn-blue:hover {
      background: linear-gradient(to right, #505e71, #546377); }
    .btn.btn-blue:active {
      background: linear-gradient(to right, #455262, #4c596b); }
  .btn.btn-clear {
    background: transparent; }
  .btn.btn-gold {
    color: white;
    background: linear-gradient(to right, #a89971, #bfb497);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); }
    .btn.btn-gold:hover {
      background-color: #a09064; }
    .btn.btn-gold:active {
      background-color: #95855b; }
  .btn.btn-border {
    border: 2px solid #e9e9ea; }
  .btn.btn-block {
    width: 100%;
    display: block;
    text-align: center; }

.danger-link {
  color: #cb6b67;
  cursor: pointer;
  font-size: 12px; }
  .danger-link:hover {
    text-decoration: underline; }

.label {
  background: #f2efe8;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #262730;
  padding: 3px 5px;
  border-radius: 3px; }

.text-right {
  text-align: right; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.uppercase {
  text-transform: uppercase; }

.capped {
  text-transform: capitalize; }

.lowercase {
  text-transform: lowercase; }

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

.underline {
  text-decoration: underline !important; }

.no-td {
  text-decoration: none; }

.pointer {
  cursor: pointer; }

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

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

.d-inline {
  display: inline; }

.d-flex {
  display: flex; }

.flex-spacer {
  flex-grow: 99; }

.vertical-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; }

@media (min-width: 577px) {
  .xs-only {
    display: none !important; } }

@media (min-width: 769px) {
  .sm-only {
    display: none !important; } }

@media (max-width: 576px) {
  .hidden-xs {
    display: none !important; } }

@media (max-width: 768px) {
  .hidden-sm {
    display: none !important; } }

@media (max-width: 992px) {
  .hidden-md {
    display: none !important; } }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.hidden-all {
  display: none !important; }

.italic {
  font-style: italic; }

.well {
  background: white;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
  padding: 24px;
  border-radius: 6px; }
  .well.well-np {
    padding: 0; }
  @media (max-width: 768px) {
    .well {
      padding: 16px; } }

.error-text {
  color: #cb6b67; }

.link {
  text-decoration: underline;
  color: #a89971;
  cursor: pointer; }

.controls {
  position: absolute;
  top: 20px;
  right: 20px; }
  @media (max-width: 768px) {
    .controls {
      top: 12px;
      right: 16px; }
      .controls .fa {
        font-size: 13px; } }
  .controls .fa {
    margin-left: 6px;
    color: #7c7d82;
    cursor: pointer;
    transition: transform 200ms;
    border: 1px solid #eee;
    padding: 3px 5px;
    border-radius: 4px; }
    .controls .fa:hover {
      transform: scale(1.15); }

.color-gray {
  color: #7c7d82; }

.color-red {
  color: #cb6b67 !important; }

.color-dark-gray {
  color: #262730; }

.color-blue {
  color: #505e71; }

.color-gold {
  color: #a89971; }

.color-orange {
  color: #dc8035; }

.body-text {
  line-height: 1.4;
  color: #262730;
  font-size: 16px; }

.clear {
  clear: both; }

.pre-wrap {
  white-space: pre-wrap; }

.logo {
  font-family: 'Dancing Script', cursive;
  font-weight: 400; }

.subheader-text {
  color: #7c7d82;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.25px;
  line-height: 1.3; }
  @media (max-width: 768px) {
    .subheader-text {
      font-size: 16px; } }

.responsive-video-wrapper {
  padding: 56.25% 0 0 0;
  position: relative; }
  .responsive-video-wrapper > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.full-page-loading {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 100; }

/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width; }

.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 100%; } }
  @media (min-width: 768px) {
    .container {
      max-width: 100%; } }
  @media (min-width: 992px) {
    .container {
      max-width: 100%; } }
  @media (min-width: 1136px) {
    .container {
      max-width: 1136px; } }

.container-fluid {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 8px;
  padding-left: 8px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1136px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    order: -1; }
  .order-xl-last {
    order: 13; }
  .order-xl-0 {
    order: 0; }
  .order-xl-1 {
    order: 1; }
  .order-xl-2 {
    order: 2; }
  .order-xl-3 {
    order: 3; }
  .order-xl-4 {
    order: 4; }
  .order-xl-5 {
    order: 5; }
  .order-xl-6 {
    order: 6; }
  .order-xl-7 {
    order: 7; }
  .order-xl-8 {
    order: 8; }
  .order-xl-9 {
    order: 9; }
  .order-xl-10 {
    order: 10; }
  .order-xl-11 {
    order: 11; }
  .order-xl-12 {
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

@media (min-width: 1136px) {
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; } }

.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation: zoomIn 1s; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation: fadeIn 1.5s; }

.manual-send-page {
  position: fixed;
  background: white;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: #f8fafc; }
  .manual-send-page .exit-icon {
    font-size: 22px;
    position: absolute;
    top: 20px;
    left: 20px;
    color: #7c7d82;
    z-index: 1; }
    @media (max-width: 576px) {
      .manual-send-page .exit-icon {
        font-size: 18px;
        top: 12px; } }

.step-container {
  height: 100%;
  overflow: auto; }
  .step-container > div:not([class*='col-']) {
    display: flex;
    flex-grow: 1; }
    .step-container > div:not([class*='col-']) > div {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      padding-bottom: 100px;
      z-index: 0; }
  .step-container .step-content h2 {
    margin: 40px auto 10px auto;
    text-align: center;
    font-size: 32px; }
    @media (max-width: 576px) {
      .step-container .step-content h2 {
        font-size: 22px; } }
  .step-container .step-content > p {
    font-size: 18px;
    color: #7c7d82;
    text-align: center;
    margin-bottom: 40px; }
    @media (max-width: 576px) {
      .step-container .step-content > p {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.4; } }
  .step-container .step-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 16px;
    background: #505e71; }
    .step-container .step-footer .progress-bar {
      position: absolute;
      width: 300px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: #8191a6;
      border-radius: 12px;
      height: 10px; }
      .step-container .step-footer .progress-bar-percent {
        background: #00a676;
        height: 10px;
        border-radius: 12px; }
      @media (max-width: 576px) {
        .step-container .step-footer .progress-bar {
          display: none;
          width: 150px;
          left: 20px;
          transform: translate(0, -50%); } }
  .step-container .step-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 10px; }
    .step-container .step-menu li {
      margin-right: 30px;
      line-height: 22px;
      color: #ccc;
      position: relative;
      display: inline-block; }
      .step-container .step-menu li.active-step {
        color: #a89971; }
        .step-container .step-menu li.active-step .step-number {
          background: #a89971; }
      .step-container .step-menu li.completed-step {
        color: #00a676; }
        .step-container .step-menu li.completed-step .step-number {
          background: #00a676; }
    .step-container .step-menu .step-number {
      margin-right: 6px;
      color: white;
      background: #ccc;
      width: 22px;
      height: 22px;
      line-height: 22px;
      text-align: center;
      font-size: 12px;
      border-radius: 50%; }
      .step-container .step-menu .step-number .fa {
        line-height: 22px; }

.choice-card {
  padding: 50px 40px;
  width: 100%;
  text-align: center;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
  background: white;
  margin-bottom: 32px; }
  @media (max-width: 768px) {
    .choice-card {
      padding: 32px 24px;
      margin-bottom: 16px; } }
  .choice-card > .fa {
    font-size: 50px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 50%;
    padding: 30px;
    margin-bottom: 24px; }
    .choice-card > .fa-envelope-o {
      color: #a89971; }
    .choice-card > .fa-cogs {
      color: #505e71; }
    @media (max-width: 768px) {
      .choice-card > .fa {
        padding: 20px;
        font-size: 32px; } }
  .choice-card h3 {
    margin-bottom: 16px;
    color: #262730; }
  .choice-card p {
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto 32px auto;
    color: #7c7d82; }

::placeholder {
  color: #ddd; }

.card-text-wrapper {
  background: white;
  box-shadow: 0px 20px 35px -30px;
  position: relative;
  max-width: 8in;
  transition: all 300ms; }
  .card-text-wrapper:hover {
    box-shadow: 0px 40px 70px -60px; }
  .card-text-wrapper:before {
    display: block;
    content: '';
    width: 100%;
    padding-top: 66.66667%; }
  .card-text-wrapper > .ar-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .card-text-wrapper textarea {
    border: none;
    padding: 50px 40px;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    outline: none;
    display: block;
    width: 100%;
    resize: none;
    border: 1px solid white;
    border-radius: 3px; }
    .card-text-wrapper textarea.border-red {
      border: 1px solid #cb6b67; }
    @media (max-width: 992px) {
      .card-text-wrapper textarea {
        font-size: 20px; } }
    @media (max-width: 768px) {
      .card-text-wrapper textarea {
        font-size: 15px; } }
    @media (max-width: 576px) {
      .card-text-wrapper textarea {
        padding: 24px;
        font-size: 14px;
        letter-spacing: 0; } }

.remaining-chars {
  font-size: 13px;
  color: #7c7d82; }

.template-choices {
  overflow: scroll;
  max-height: 100%;
  padding: 20px; }

.image-choice {
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 0px 20px 35px -30px; }
  .image-choice:hover {
    box-shadow: 0px 40px 70px -60px; }
  .image-choice > img {
    width: 100%; }
  @media (max-width: 576px) {
    .image-choice {
      margin-bottom: 0; } }

.image-choice,
.contact-choice {
  cursor: pointer;
  transition: all 250ms;
  background: white;
  padding: 14px;
  border-radius: 6px;
  position: relative; }
  .image-choice > .fa-check,
  .contact-choice > .fa-check {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: white;
    font-size: 16px;
    background: #00a676;
    padding: 6px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 300ms; }
  .image-choice > .fa-user,
  .contact-choice > .fa-user {
    opacity: 0.5;
    font-size: 20px; }
  .image-choice:hover,
  .contact-choice:hover {
    transform: scale(1.03); }
  .image-choice.selected .fa,
  .contact-choice.selected .fa {
    opacity: 1; }

.contact-choice {
  margin-bottom: 10px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
  color: #7c7d82;
  line-height: 1.3; }
  .contact-choice strong {
    color: #262730; }
  .contact-choice > .fa-check {
    font-size: 16px; }

.action-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; }

.template-text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
  border: 1px solid #f2efe8;
  padding: 12px;
  white-space: pre-wrap; }

.conf-contact-list {
  padding: 20px; }
  .conf-contact-list li {
    position: relative;
    padding-right: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9e9ea; }
  .conf-contact-list .fa-times {
    position: absolute;
    top: 0;
    right: 0;
    color: #cb6b67;
    cursor: pointer; }

.success-screen {
  position: fixed;
  z-index: 1;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: #f2efe8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .success-screen .fa {
    color: #00a676;
    font-size: 72px;
    margin-bottom: 32px;
    margin-top: -80px; }
  .success-screen h1 {
    font-size: 60px;
    margin-bottom: 24px; }
    @media (max-width: 576px) {
      .success-screen h1 {
        font-size: 42px; } }
  .success-screen p {
    font-size: 22px;
    color: #7c7d82;
    margin-bottom: 40px; }
    @media (max-width: 576px) {
      .success-screen p {
        font-size: 18px;
        text-align: center;
        padding: 0 24px; } }
  .success-screen .fetti-holder {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }

.card-info img {
  width: 80px;
  margin-bottom: 8px;
  margin-right: 16px; }

.card-info .last-four {
  display: block;
  color: #7c7d82;
  margin-bottom: 16px;
  letter-spacing: 2px;
  margin-top: 8px; }

.home-intro {
  background: linear-gradient(45deg, rgba(38, 39, 48, 0.45) 0, #262730 100%);
  padding: 180px 0;
  height: 660px;
  text-align: center;
  color: white;
  position: relative;
  margin-top: -80px; }
  @media (max-width: 768px) {
    .home-intro {
      padding: 160px 0;
      height: 600px; } }
  @media (max-width: 576px) {
    .home-intro {
      padding: 120px 0;
      height: 500px; } }
  .home-intro h1 {
    color: white;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 auto 32px auto;
    max-width: 870px; }
    .home-intro h1 b {
      color: #e2dabf;
      font-weight: 400; }
    @media (max-width: 768px) {
      .home-intro h1 {
        font-size: 42px;
        font-weight: 700; } }
    @media (max-width: 576px) {
      .home-intro h1 {
        font-size: 24px;
        font-weight: 900;
        line-height: 1.3; }
        .home-intro h1 b {
          font-weight: 900; } }
  .home-intro p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.75); }
    @media (max-width: 768px) {
      .home-intro p {
        font-size: 20px; } }
    @media (max-width: 576px) {
      .home-intro p {
        font-size: 16px;
        line-height: 1.4;
        max-width: 80%;
        margin: 0 auto 40px auto;
        color: rgba(255, 255, 255, 0.85); } }
  .home-intro .fullscreen-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background-color: black;
    z-index: -100; }
    .home-intro .fullscreen-bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: auto;
      height: auto;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%); }
  .home-intro .svg-wave {
    height: 150px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; }
    @media (max-width: 768px) {
      .home-intro .svg-wave {
        height: 80px; } }
    .home-intro .svg-wave svg {
      width: 100%;
      height: 100%; }

.section-padding {
  padding: 80px 0; }
  @media (max-width: 768px) {
    .section-padding {
      padding: 60px 0; } }
  @media (max-width: 576px) {
    .section-padding {
      padding: 50px 12px; } }

.how-it-works .large-number {
  font-size: 50px;
  color: #f2efe8;
  font-weight: 900; }
  @media (max-width: 768px) {
    .how-it-works .large-number {
      font-size: 42px; } }

.how-it-works h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #505e71;
  margin-top: 16px;
  line-height: 1.3; }
  @media (max-width: 768px) {
    .how-it-works h3 {
      font-size: 22px; } }

.how-it-works img {
  max-width: 300px;
  filter: invert(30%);
  width: 100%;
  display: block;
  margin: 0 auto 80px auto; }
  @media (max-width: 576px) {
    .how-it-works img {
      display: none; } }

@media (max-width: 576px) {
  .how-it-works p {
    margin-bottom: 32px; } }

.how-it-works .finale {
  display: block;
  text-align: center;
  font-size: 28px;
  font-weight: bold; }
  @media (max-width: 576px) {
    .how-it-works .finale {
      font-size: 22px; } }

.samples {
  margin-top: 80px;
  background: #f2efe8;
  padding: 120px 0;
  clip-path: polygon(0% 0, 100% 50px, 100% 100%, 0% calc(100% - 50px)); }
  .samples h4 {
    font-size: 24px;
    color: #505e71;
    margin-bottom: 24px; }
  .samples p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 24px; }
    @media (max-width: 768px) {
      .samples p {
        font-size: 16px;
        margin-bottom: 16px; } }
  .samples-images {
    position: relative; }
    .samples-images img {
      background: white;
      padding: 6px;
      border: 1px solid #ddd;
      width: 100%;
      box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
      border-radius: 4px;
      position: absolute;
      left: 0; }
      .samples-images img:first-of-type {
        transform: rotate(-3deg);
        transform-origin: left;
        top: -20px; }
      .samples-images img:last-of-type {
        transform: rotate(2deg);
        transform-origin: left;
        top: 180px;
        left: -40px;
        width: 85%; }
      @media (max-width: 576px) {
        .samples-images img {
          position: static; } }

.integrations .integration-card {
  background: white;
  padding: 20px 20px 0 20px;
  text-align: center;
  height: 280px;
  box-shadow: 0px 20px 35px -30px;
  position: relative;
  border-radius: 3px;
  transition: all 200ms;
  display: block;
  text-decoration: none;
  color: #262730;
  margin: 0 8px;
  border: 3px solid #f2efe8; }
  .integrations .integration-card:hover {
    box-shadow: 0px 40px 70px -60px; }
  @media (max-width: 576px) {
    .integrations .integration-card {
      margin-bottom: 24px; } }
  .integrations .integration-card p {
    font-size: 14px;
    color: #262730;
    margin-top: 16px;
    line-height: 1.4; }
  .integrations .integration-card:hover {
    transform: scale(1.02);
    cursor: pointer; }
  .integrations .integration-card.inactive {
    transition: none;
    border: 3px solid #e9e9ea;
    box-shadow: none; }
    .integrations .integration-card.inactive:hover {
      transform: none;
      cursor: default; }
    .integrations .integration-card.inactive h3 {
      color: #7c7d82; }
    .integrations .integration-card.inactive img {
      filter: grayscale(100%);
      opacity: 0.5; }
    .integrations .integration-card.inactive .bottom-btn {
      color: #7c7d82;
      border-top: 2px solid #e9e9ea; }
  .integrations .integration-card .img-holder {
    height: 130px;
    width: 130px;
    border-radius: 50%;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    margin: 0 auto 20px auto;
    justify-content: center; }
    .integrations .integration-card .img-holder img {
      width: 80px; }
  .integrations .integration-card .bottom-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    color: #a89971;
    border-top: 2px solid #f2efe8; }

.pricing {
  background: #f8fafc;
  border-top: 3px solid #f1f5f9;
  border-bottom: 3px solid #f1f5f9; }
  .pricing-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    color: #505e71; }

.faqs strong {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.3; }
  @media (max-width: 768px) {
    .faqs strong {
      font-size: 16px; } }

.faqs .answers {
  line-height: 1.5;
  margin-bottom: 48px;
  color: #7c7d82; }
  @media (max-width: 768px) {
    .faqs .answers {
      margin-bottom: 32px; } }

.contact-us {
  background: #f2efe8; }
  .contact-us .well {
    position: relative;
    z-index: 1; }
  .contact-us svg {
    position: absolute;
    z-index: 0;
    left: -200px;
    top: -100px; }

.signup-promo {
  padding: 100px 0;
  background: #fcfcfc;
  text-align: center; }
  .signup-promo > p {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 32px;
    line-height: 1.4; }
    @media (max-width: 768px) {
      .signup-promo > p {
        font-size: 20px; } }

.card-item {
  margin-bottom: 20px;
  position: relative; }
  .card-item img {
    width: 100%; }
  .card-item-content {
    margin-bottom: 16px; }
  .card-item .frame {
    padding: 8px;
    border: 1px solid #ddd;
    position: relative; }
    .card-item .frame .side-shown {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
      .card-item .frame .side-shown .extra-text {
        font-size: 12px;
        color: #7c7d82;
        font-style: italic;
        display: block;
        margin-top: 5px; }
    .card-item .frame-front img {
      position: relative;
      z-index: 0; }
    .card-item .frame-front .side-shown {
      background: transparent; }

.hw-page img.hw-preview {
  padding: 8px;
  border: 1px solid #eee;
  width: 100%; }

.template-page .template-card {
  margin-bottom: 32px;
  position: relative; }
  @media (max-width: 768px) {
    .template-page .template-card {
      margin-bottom: 16px; } }
  .template-page .template-card strong {
    color: #505e71;
    margin-bottom: 15px;
    display: block; }
    @media (max-width: 768px) {
      .template-page .template-card strong {
        margin-bottom: 8px;
        font-size: 14px; } }
  .template-page .template-card p {
    line-height: 1.4;
    color: #262730;
    margin-bottom: 20px;
    white-space: pre-wrap; }
    @media (max-width: 768px) {
      .template-page .template-card p {
        font-size: 14px;
        margin-bottom: 12px; } }

.onboarding svg {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0; }

.onboarding-top {
  padding: 50px 0 60px 0;
  background: white;
  border-bottom: 3px solid #edf2f7; }
  @media (max-width: 768px) {
    .onboarding-top {
      padding: 40px 0; } }
  .onboarding-top ul.onboarding-steps {
    text-align: center;
    margin-bottom: 40px;
    display: flex; }
    @media (max-width: 576px) {
      .onboarding-top ul.onboarding-steps {
        margin-bottom: 24px; } }
    .onboarding-top ul.onboarding-steps li {
      display: inline-block;
      margin-right: 20px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.2);
      flex-grow: 1;
      flex-basis: 0;
      text-align: left;
      padding-bottom: 8px;
      text-transform: uppercase;
      color: #7c7d82;
      font-size: 14px; }
      .onboarding-top ul.onboarding-steps li:nth-of-type(2n) {
        color: #a89971;
        border-bottom-color: #a89971; }
  .onboarding-top h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #505e71;
    position: relative; }
    .onboarding-top h2 span {
      position: absolute;
      right: calc(100% + 15px); }
    @media (max-width: 768px) {
      .onboarding-top h2 {
        font-size: 24px; } }
  .onboarding-top p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.5px; }
    @media (max-width: 768px) {
      .onboarding-top p {
        font-size: 16px; } }

.onboarding-bottom {
  background: #f8fafc;
  padding-top: 40px;
  padding-bottom: 40px; }
  .onboarding-bottom strong {
    color: #505e71;
    font-size: 18px;
    line-height: 1.3; }

.onboarding .logo {
  color: white;
  font-size: 32px; }

.onboarding .step-number {
  background: white;
  color: #a89971;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
  font-size: 14px; }
  @media (max-width: 768px) {
    .onboarding .step-number {
      margin-bottom: 12px; } }

.onboarding .help-text {
  color: #7c7d82;
  font-size: 14px;
  margin-top: 6px;
  margin-bottom: 16px;
  line-height: 1.3; }

.onboarding ul.horizontal-overflow {
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  padding: 8px 8px 16px 0;
  position: relative; }
  .onboarding ul.horizontal-overflow li {
    display: inline-block;
    margin-right: 20px;
    padding: 8px;
    cursor: pointer;
    position: relative; }
    .onboarding ul.horizontal-overflow li .fa {
      position: absolute;
      bottom: 6px;
      right: 6px;
      color: #00a676;
      opacity: 0;
      font-size: 18px; }
    .onboarding ul.horizontal-overflow li.selected .fa {
      opacity: 1; }
    .onboarding ul.horizontal-overflow li p {
      margin-top: 12px;
      text-align: center;
      font-style: italic; }
    .onboarding ul.horizontal-overflow li img {
      padding: 10px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); }

.slider-box {
  padding: 20px 0 80px 0; }
  @media (max-width: 768px) {
    .slider-box {
      padding: 20px 0 60px 0; } }
  @media (max-width: 576px) {
    .slider-box {
      display: none; } }
  .slider-box h2 {
    font-size: 28px;
    margin-bottom: 10px; }
  .slider-box p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #7c7d82; }

.user-role {
  font-size: 12px;
  text-transform: uppercase;
  color: #888; }
  @media (max-width: 768px) {
    .user-role {
      font-size: 14px;
      color: #262730;
      text-transform: capitalize; } }

.contact-list .actions {
  text-align: right;
  width: 100%; }
  @media (max-width: 768px) {
    .contact-list .actions {
      position: absolute;
      top: 12px;
      right: 12px; } }
  .contact-list .actions .fa-ellipsis-h {
    cursor: pointer;
    color: #262730;
    font-size: 18px; }

.support-page .well {
  text-align: center;
  min-height: 240px; }

.support-page .fa {
  font-size: 40px;
  color: #a89971;
  margin-bottom: 20px; }

.support-page h3 {
  margin-bottom: 10px;
  color: #505e71; }

.support-page p {
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #262730; }

.support-page .created {
  color: #7c7d82;
  font-style: italic; }

.internal {
  min-height: 100vh;
  display: flex;
  flex-direction: column; }
  .internal-left-nav {
    border-right: 2px solid #f2efe8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    background: white;
    width: 200px;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    transition: 300ms; }
    @media (max-width: 768px) {
      .internal-left-nav {
        display: none; } }
    @media (max-width: 768px) {
      .internal-left-nav.open {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 40px;
        display: flex; } }
    .internal-left-nav.open .fa-times {
      display: block;
      text-align: center;
      font-size: 20px;
      padding: 24px 0;
      color: #7c7d82; }
    .internal-left-nav .logo {
      font-size: 28px;
      color: #262730;
      margin: 30px auto;
      text-align: center;
      display: block; }
      @media (max-width: 768px) {
        .internal-left-nav .logo {
          padding: 20px; } }
    .internal-left-nav-item {
      padding: 5px 0;
      color: #7c7d82; }
      .internal-left-nav-item.red {
        color: #cb6b67; }
      .internal-left-nav-item a {
        padding: 15px 0 15px 20px;
        display: block;
        color: inherit;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1px;
        font-weight: 900;
        line-height: 18px;
        transition: color 500ms;
        white-space: nowrap;
        overflow: hidden; }
        .internal-left-nav-item a .fa {
          margin-right: 20px;
          font-size: 18px; }
        .internal-left-nav-item a:hover {
          color: #505e71; }
        .internal-left-nav-item a.active {
          color: #a89971;
          background-image: linear-gradient(to right, #f2efe8, #f9f8f5);
          border-right: 3px solid #a89971;
          margin-right: -2px; }
          @media (max-width: 768px) {
            .internal-left-nav-item a.active {
              border-right: none; } }
        .internal-left-nav-item a.cta {
          border-radius: 30px;
          color: #505e71;
          border: 2px solid #505e71;
          margin: 0 16px 0 8px;
          padding: 10px;
          background: linear-gradient(to right, #505e71 50%, white 50%);
          background-size: 200% 100%;
          background-position: right bottom;
          transition: all 200ms ease-out; }
          .internal-left-nav-item a.cta .fa {
            transition: transform 500ms ease; }
          .internal-left-nav-item a.cta:hover {
            background-position: left bottom;
            color: white; }
            .internal-left-nav-item a.cta:hover .fa {
              transform: rotate(25deg); }
    .internal-left-nav .bottom-content {
      padding: 20px;
      border-top: 1px solid #f2efe8;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .internal-left-nav .bottom-content .fa-question-circle {
        font-size: 20px;
        color: #505e71; }
  .internal-header {
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .internal-header {
        margin-bottom: 20px; } }
    @media (max-width: 576px) {
      .internal-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start; }
        .internal-header .pull-right {
          float: none;
          order: 2;
          margin-top: 12px; } }
    .internal-header h1 {
      color: #505e71;
      font-weight: 900;
      margin-bottom: 8px; }
      @media (max-width: 768px) {
        .internal-header h1 {
          font-size: 24px;
          margin-bottom: 4px; } }
    .internal-header h2 {
      color: #7c7d82;
      font-weight: 400;
      font-size: 17px;
      letter-spacing: 0.25px;
      max-width: 500px;
      line-height: 1.4; }
      @media (max-width: 768px) {
        .internal-header h2 {
          font-size: 15px; } }
  .internal .mobile-header {
    position: relative;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.03);
    padding: 16px;
    text-align: center; }
    .internal .mobile-header .logo {
      color: #262730;
      font-size: 24px; }
    .internal .mobile-header .menu-toggle {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 24px; }

.internal-layout {
  flex: 1 0 auto;
  background: #f8fafc;
  margin-left: 200px;
  transition: 300ms;
  padding: 30px; }
  @media (max-width: 768px) {
    .internal-layout {
      margin-left: 0;
      padding: 20px 0 80px 0; } }

.external-nav {
  padding: 14px 0;
  height: 80px;
  display: flex;
  align-items: center; }
  .external-nav.dark {
    background: transparent;
    position: relative;
    z-index: 1; }
    .external-nav.dark a {
      color: white !important; }
  .external-nav .logo {
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    font-size: 32px;
    color: #262730; }
    @media (max-width: 768px) {
      .external-nav .logo {
        font-size: 26px; } }
  .external-nav a:not(.logo) {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-left: 15px;
    padding: 10px;
    color: #262730;
    font-weight: 700;
    font-family: 'Lato', sans-serif; }
    .external-nav a:not(.logo):last-of-type {
      border: 1px solid;
      border-radius: 3px; }
      .external-nav a:not(.logo):last-of-type:hover {
        color: white;
        background: #262730; }
    @media (max-width: 768px) {
      .external-nav a:not(.logo) {
        font-size: 12px;
        margin-left: 10px; } }
  .external-nav .pusher {
    display: flex;
    justify-content: space-between;
    align-items: center; }

.external {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column; }
  .external-footer {
    background: #262730;
    color: white;
    text-align: center;
    padding: 24px; }

.auth-page {
  flex-grow: 1;
  padding-bottom: 100px;
  background: #f8fafc;
  transition: 500ms ease;
  margin-top: -80px;
  padding-top: 180px; }
  @media (max-width: 576px) {
    .auth-page {
      padding-top: 100px; } }
  .auth-page .well {
    width: 500px;
    margin: 0 auto; }
    @media (max-width: 576px) {
      .auth-page .well {
        width: 95%;
        margin: 0 auto; }
        .auth-page .well h1 {
          font-size: 24px; } }

.section-header {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 1px;
  color: #262730; }
  .section-header.with-bb {
    margin-bottom: 40px; }
    .section-header.with-bb:after {
      content: '';
      display: block;
      width: 100px;
      height: 3px;
      background: #f2efe8;
      margin: 0 auto;
      margin-top: 20px; }
    @media (max-width: 576px) {
      .section-header.with-bb {
        margin-bottom: 24px; } }
  @media (max-width: 768px) {
    .section-header {
      font-size: 28px; } }

.lifted, label.input-label.lifted, .form-control-field > input:focus + label,
.form-control-field select:focus + label,
.form-control-field textarea:focus + label,
.form-control-field .read-only:focus + label {
  font-size: 12px;
  top: 10px;
  line-height: 16px;
  color: #7c7d82; }

label.input-label {
  position: absolute;
  left: 26px;
  top: 22px;
  line-height: 24px;
  z-index: 0;
  font-size: 14px;
  letter-spacing: 0.9px;
  text-align: left;
  transition: all 200ms ease;
  pointer-events: none;
  color: #7c7d82;
  font-weight: 400;
  font-family: 'Lato', sans-serif; }

.form-control-field {
  position: relative;
  margin-bottom: 24px;
  display: block;
  width: 100%; }
  @media (max-width: 576px) {
    .form-control-field {
      margin-bottom: 20px; } }
  .form-control-field.active-error input,
  .form-control-field.active-error select,
  .form-control-field.active-error textarea {
    border: 2px solid #cb6b67; }
  .form-control-field > input,
  .form-control-field select,
  .form-control-field textarea,
  .form-control-field .read-only {
    background: white;
    display: block;
    width: 100%;
    border: 2px solid #e9e9ea;
    padding: 24px 0 8px 24px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 26px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 0;
    font-weight: 400;
    font-family: 'Lato', sans-serif; }
    @media (max-width: 576px) {
      .form-control-field > input,
      .form-control-field select,
      .form-control-field textarea,
      .form-control-field .read-only {
        appearance: none;
        -webkit-appearance: none;
        min-height: 66px;
        font-size: 14px;
        line-height: 22px; } }
  .form-control-field .read-only {
    background: transparent;
    cursor: not-allowed;
    padding: 24px 48px 12px 24px; }
    .form-control-field .read-only:hover .contact-text {
      opacity: 1; }
    .form-control-field .read-only-val {
      position: relative;
      left: 2px;
      top: 2px; }
    .form-control-field .read-only .contact-text {
      background: #978272;
      position: absolute;
      color: white;
      padding: 8px 40px 8px 16px;
      max-width: 256px;
      top: 8px;
      right: 8px;
      bottom: 8px;
      opacity: 0;
      transition: opacity 400ms ease;
      border-radius: 2px;
      display: flex;
      align-items: center; }
      .form-control-field .read-only .contact-text a {
        color: white;
        text-decoration: underline; }
  .form-control-field textarea {
    resize: none;
    height: 156px; }
  .form-control-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    z-index: 0;
    background-image: url("https://res.cloudinary.com/handwrite/image/upload/v1572368955/assets/caret-down_bc8csi_1_sbq41a.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center; }
  .form-control-field .helper-text {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    display: block;
    color: #555; }
    .form-control-field .helper-text:before {
      content: '*'; }
    .form-control-field .helper-text.error {
      color: #cb6b67; }
    .form-control-field .helper-text.char-length {
      right: 0;
      left: auto; }
    @media (max-width: 576px) {
      .form-control-field .helper-text {
        font-size: 11px; } }
  .form-control-field .fa-lock,
  .form-control-field .fa-caret-down {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a89971;
    pointer-events: none; }
  .form-control-field .fa-lock {
    font-size: 20px; }
  .form-control-field .fa-caret-down {
    font-size: 10px;
    z-index: 0; }

.checkbox-field {
  padding-left: 22px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.8px;
  cursor: pointer;
  position: relative;
  user-select: none;
  display: inline-block; }
  .checkbox-field input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
    .checkbox-field input:checked ~ .fake-checkbox {
      background: #262730; }
      .checkbox-field input:checked ~ .fake-checkbox:after {
        display: block; }
  .checkbox-field .fake-checkbox {
    position: absolute;
    top: 5px;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: white;
    border: 1px solid #262730; }
    .checkbox-field .fake-checkbox:after {
      content: '';
      position: absolute;
      display: none;
      width: 10px;
      height: 10px;
      border: 2px solid white;
      top: 0;
      left: 0; }

.select-wrapper {
  background: white;
  display: block;
  width: 100%;
  position: relative;
  padding-top: 24px;
  padding-bottom: 4px;
  border: 2px solid #e9e9ea;
  margin-bottom: 32px; }
  .select-wrapper label {
    font-weight: 400;
    font-family: 'Lato', sans-serif; }
  .select-wrapper.active-error {
    border: 2px solid #cb6b67; }

.radio-section {
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 28px;
  text-align: left; }
  .radio-section label {
    position: relative;
    line-height: 22px;
    margin-right: 24px;
    padding: 7px 0;
    cursor: pointer;
    border-radius: 12px; }
    .radio-section label:hover {
      background: #f8fafc; }
    @media (max-width: 576px) {
      .radio-section label {
        display: block;
        margin-bottom: 16px; } }
  .radio-section .radio-button {
    display: inline;
    padding-right: 8px; }
    .radio-section .radio-button::before, .radio-section .radio-button::after {
      content: '';
      display: block;
      position: absolute;
      width: 16px;
      height: 16px;
      top: 100%;
      left: 0;
      top: 9px;
      border-radius: 20px;
      border: 1px solid transparent;
      transition: 0.3s all; }
    .radio-section .radio-button::before {
      border: 1px solid #262730; }
    .radio-section .radio-button::after {
      width: 14px;
      height: 14px;
      left: 1px;
      top: 10px; }
  .radio-section input[type='radio'] {
    margin-right: 8px;
    visibility: hidden;
    opacity: 0; }
  .radio-section input:checked + .radio-button::before {
    background-color: #262730; }
  .radio-section input:checked + .radio-button::after {
    background-color: #262730;
    border: 2px solid white; }

.multi-select__value-container {
  padding: 0 32px 0 24px !important; }

.multi-select__control {
  border: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  background: transparent !important; }

.multi-select__indicator-separator {
  display: none !important; }

.multi-select__indicator {
  display: none !important; }

.multi-select__option {
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  background-color: white !important; }
  .multi-select__option:hover {
    background-color: #e9e9ea !important; }

.multi-select__menu {
  border-radius: 0 !important; }

.multi-select__multi-value {
  background: #e9e9ea !important;
  text-transform: uppercase !important;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1.2px !important;
  font-size: 14px !important;
  line-height: 24px !important;
  border: 1px solid #e3ded1 !important; }
  .multi-select__multi-value__label {
    color: #978272 !important;
    padding: 0 6px !important; }
  .multi-select__multi-value__remove {
    color: #978272 !important;
    border-radius: 0 !important;
    border-left: 1px solid #e3ded1 !important;
    padding: 0 6px !important; }
    .multi-select__multi-value__remove:hover {
      background: transparent !important;
      color: inherit !important; }

.autocomplete-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  max-height: 324px;
  overflow: auto;
  background: white; }
  .autocomplete-menu li {
    padding: 12px 36px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 400;
    font-family: 'Lato', sans-serif; }
    .autocomplete-menu li.active {
      background: #e9e9ea; }
    @media (max-width: 576px) {
      .autocomplete-menu li {
        padding: 12px 24px;
        text-align: left;
        line-height: 1.3; } }

.inline-fields {
  display: flex; }
  .inline-fields > * {
    margin-right: 10px; }
    .inline-fields > *:last-of-type {
      margin-right: 0; }
  @media (max-width: 768px) {
    .inline-fields {
      flex-direction: column; } }

.search-wrapper {
  position: relative; }
  .search-wrapper .fa {
    position: absolute;
    left: 16px;
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.35; }
    .search-wrapper .fa-spin {
      top: 38%; }

.search-bar {
  display: block;
  width: 100%;
  padding: 16px 0 16px 45px;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #262730;
  border: 2px solid #e9e9ea;
  outline: none;
  border-radius: 3px; }
  .search-bar::placeholder {
    color: #ddd; }
  @media (max-width: 576px) {
    .search-bar {
      -webkit-appearance: none;
      appearance: none;
      border-radius: 0 !important;
      font-size: 16px; } }

.file-input {
  display: flex;
  flex-direction: column;
  border: 2px dashed #7c7d82;
  padding: 30px;
  cursor: pointer;
  border-radius: 4px;
  align-items: center;
  justify-content: center; }
  .file-input .fa {
    color: #505e71;
    font-size: 28px;
    display: block;
    margin: 0 auto 16px auto; }
  .file-input > input[type='file'] {
    visibility: hidden;
    width: 0;
    height: 0; }

.react-toggle {
  touch-action: pan-x;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s; }

.react-toggle-track {
  width: 40px;
  height: 22px;
  padding: 0;
  border-radius: 30px;
  background-color: #4d4d4d;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000; }

.react-toggle--checked .react-toggle-track {
  background-color: #dc8035; }

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #dc8035; }

.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  transition: opacity 0.25s ease; }

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  transition: opacity 0.25s ease; }

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  transition: opacity 0.25s ease; }

.react-toggle--checked .react-toggle-track-x {
  opacity: 0; }

.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  background-color: #fafafa;
  box-sizing: border-box;
  transition: all 0.25s ease; }

.react-toggle--checked .react-toggle-thumb {
  left: 19px;
  border-color: #dc8035; }

.toggle-label {
  font-size: 14px;
  line-height: 22px;
  font-weight: 700; }
  .toggle-label > * {
    margin-right: 10px; }
  .toggle-label.checked {
    color: #dc8035; }
  .toggle-label.pull-right > * {
    margin-left: 10px; }

.tooltip-wrapper {
  position: relative; }
  .tooltip-wrapper:hover {
    cursor: pointer; }
    .tooltip-wrapper:hover .tooltip {
      display: block; }

.tooltip {
  position: absolute;
  width: max-content;
  color: #e9e9ea;
  padding: 8px;
  line-height: 1.5;
  background: #262730;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 1px;
  z-index: 3;
  border-radius: 3px;
  display: none;
  max-width: 240px; }
  .tooltip-top {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%); }
  .tooltip-right {
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%); }
    .tooltip-right:before {
      content: '';
      position: absolute;
      right: 100%;
      top: 50%;
      transform: translateY(-50%);
      border-right: 8px solid #262730;
      border-bottom: 8px solid transparent;
      border-top: 8px solid transparent; }
  .tooltip-bottom {
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%); }
    .tooltip-bottom:before {
      content: '';
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      border-bottom: 8px solid #262730;
      border-right: 8px solid transparent;
      border-left: 8px solid transparent; }
  .tooltip-left {
    right: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%); }
    .tooltip-left:before {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border-left: 8px solid #262730;
      border-bottom: 8px solid transparent;
      border-top: 8px solid transparent; }

.banner {
  border-left: 4px solid #7c7d82;
  color: #7c7d82;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  align-items: center;
  overflow: auto; }
  .banner-green {
    color: #262730;
    border-color: #00a676;
    background: rgba(0, 166, 118, 0.05); }
    .banner-green:before {
      content: '\F023';
      color: #00a676;
      margin-right: 12px;
      font: normal normal normal 18px/1 'FontAwesome'; }
  .banner-success {
    color: #262730;
    border-color: #00a676;
    background: rgba(0, 166, 118, 0.05); }
    .banner-success:before {
      content: '\F00C';
      color: #00a676;
      margin-right: 12px;
      font: normal normal normal 18px/1 'FontAwesome'; }
  .banner-warning {
    color: #bd6721;
    border-color: #dc8035;
    background: rgba(220, 128, 53, 0.05); }
    .banner-warning:before {
      content: '\F071';
      color: #dc8035;
      margin-right: 12px;
      font: normal normal normal 18px/1 'FontAwesome'; }

.pricing-card {
  background: white;
  padding: 40px 20px 30px 20px;
  margin-bottom: 60px;
  border: 3px solid white;
  border-radius: 4px;
  transition: transform 200ms;
  position: relative;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05); }
  @media (max-width: 576px) {
    .pricing-card {
      margin-bottom: 24px; } }
  .pricing-card.recommended {
    border: 3px solid #505e71;
    transform: scale(1.05);
    box-shadow: 0px 20px 35px -30px; }
    .pricing-card.recommended:hover {
      box-shadow: 0px 40px 70px -60px; }
  .pricing-card .small-rec {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    padding: 4px 0 6px 0;
    background: #505e71;
    display: block;
    text-align: center; }
  .pricing-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center; }
  .pricing-card-price {
    font-size: 32px;
    font-weight: 400;
    color: #505e71;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
    display: block; }
  .pricing-card .per-month {
    text-align: center;
    display: block;
    color: #7c7d82;
    font-size: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f2efe8; }
  .pricing-card ul {
    margin-bottom: 32px;
    text-align: left; }
    .pricing-card ul li {
      list-style: none;
      margin-bottom: 16px;
      color: #262730;
      font-size: 15px; }
    .pricing-card ul .pull-right {
      font-weight: bold;
      color: #555; }
      .pricing-card ul .pull-right.fa-times {
        color: #cb6b67; }
      .pricing-card ul .pull-right.fa-check {
        color: #00a676; }

.enterprise-upsell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 60px 120px 60px;
  margin-bottom: 100px; }
  .enterprise-upsell .fa {
    font-size: 40px;
    color: #505e71;
    background: #f8fafc;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px; }
  .enterprise-upsell strong {
    font-size: 32px;
    font-weight: 400; }
  .enterprise-upsell p {
    font-size: 18px;
    line-height: 1.3;
    color: #7c7d82;
    text-align: center;
    margin-bottom: 24px; }

/**
* Rangeslider
*/
.rangeslider {
  margin: 20px 0;
  position: relative;
  background: #e6e6e6;
  -ms-touch-action: none;
  touch-action: none; }

.rangeslider,
.rangeslider .rangeslider__fill {
  display: block; }

.rangeslider .rangeslider__handle {
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 -1px 3px rgba(0, 0, 0, 0.4); }

.rangeslider .rangeslider__handle .rangeslider__active {
  opacity: 1; }

.rangeslider .rangeslider__handle-tooltip {
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  font-weight: normal;
  font-size: 14px;
  transition: all 100ms ease-in;
  border-radius: 4px;
  display: inline-block;
  color: white;
  left: 50%;
  transform: translate3d(-50%, 0, 0); }

.rangeslider .rangeslider__handle-tooltip span {
  margin-top: 12px;
  display: inline-block;
  line-height: 100%; }

.rangeslider .rangeslider__handle-tooltip:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0; }

/**
* Rangeslider - Horizontal slider
*/
.rangeslider-horizontal {
  height: 12px;
  border-radius: 10px; }

.rangeslider-horizontal .rangeslider__fill {
  height: 100%;
  background-color: #00a676;
  border-radius: 10px;
  top: 0; }

.rangeslider-horizontal .rangeslider__handle {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  outline: none; }

.rangeslider-horizontal .rangeslider__handle:after {
  content: ' ';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background-color: #dadada;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) inset, 0 -1px 3px rgba(0, 0, 0, 0.4) inset; }

.rangeslider-horizontal .rangeslider__handle-tooltip {
  top: -55px; }

.rangeslider-horizontal .rangeslider__handle-tooltip:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(0, 0, 0, 0.8);
  left: 50%;
  bottom: -8px;
  transform: translate3d(-50%, 0, 0); }

/**
* Rangeslider - Vertical slider
*/
.rangeslider-vertical {
  margin: 20px auto;
  height: 150px;
  max-width: 10px;
  background-color: transparent; }

.rangeslider-vertical .rangeslider__fill,
.rangeslider-vertical .rangeslider__handle {
  position: absolute; }

.rangeslider-vertical .rangeslider__fill {
  width: 100%;
  background-color: #00a676;
  box-shadow: none;
  bottom: 0; }

.rangeslider-vertical .rangeslider__handle {
  width: 30px;
  height: 10px;
  left: -10px;
  box-shadow: none; }

.rangeslider-vertical .rangeslider__handle-tooltip {
  left: -100%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0); }

.rangeslider-vertical .rangeslider__handle-tooltip:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  left: 100%;
  top: 12px; }

/**
* Rangeslider - Reverse
*/
.rangeslider-reverse.rangeslider-horizontal .rangeslider__fill {
  right: 0; }

.rangeslider-reverse.rangeslider-vertical .rangeslider__fill {
  top: 0;
  bottom: inherit; }

/**
* Rangeslider - Labels
*/
.rangeslider__labels {
  position: relative; }

.rangeslider-vertical .rangeslider__labels {
  position: relative;
  list-style-type: none;
  margin: 0 0 0 24px;
  padding: 0;
  text-align: left;
  width: 250px;
  height: 100%;
  left: 10px; }

.rangeslider-vertical .rangeslider__labels .rangeslider__label-item {
  position: absolute;
  transform: translate3d(0, -50%, 0); }

.rangeslider-vertical .rangeslider__labels .rangeslider__label-item::before {
  content: '';
  width: 10px;
  height: 2px;
  background: black;
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1; }

.rangeslider__labels .rangeslider__label-item {
  position: absolute;
  font-size: 14px;
  color: #7c7d82;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-block;
  top: 10px;
  transform: translate3d(-50%, 0, 0); }

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(80, 94, 113, 0.75);
  z-index: 10;
  cursor: zoom-out;
  overflow: scroll; }
  .modal-overlay .modal-content {
    height: auto;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    outline: none;
    cursor: default;
    padding: 30px 30px 100px 30px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
    background: white;
    margin-bottom: 60px; }
    .modal-overlay .modal-content.no-pad {
      padding: 0; }
      .modal-overlay .modal-content.no-pad header {
        display: none; }
    .modal-overlay .modal-content-sm {
      width: 400px; }
    .modal-overlay .modal-content-md {
      width: 600px; }
    .modal-overlay .modal-content-lg {
      width: 800px; }
    @media (max-width: 768px) {
      .modal-overlay .modal-content {
        width: 90%;
        padding-left: 20px;
        padding-right: 20px; } }
    .modal-overlay .modal-content .fa-times {
      position: absolute;
      top: -20px;
      right: -20px;
      cursor: pointer;
      font-size: 22px;
      color: white; }
      @media (max-width: 768px) {
        .modal-overlay .modal-content .fa-times {
          right: 0;
          top: -30px; } }
  .modal-overlay header {
    background: white;
    margin: -30px -30px 24px -30px;
    letter-spacing: 0.5px;
    font-size: 20px;
    font-weight: bold;
    color: #262730;
    padding: 26px 30px 24px 30px;
    background: #f8fafc;
    border-bottom: 2px solid #edf2f7; }
    @media (max-width: 768px) {
      .modal-overlay header {
        margin-left: -20px;
        margin-right: -20px; } }
  .modal-overlay footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 16px;
    background: #f8fafc;
    margin-top: 20px;
    text-align: right;
    border-top: 2px solid #edf2f7; }

.dropdown {
  position: relative;
  cursor: pointer; }
  .dropdown:hover .dropdown-menu {
    visibility: visible; }
  .dropdown-menu {
    position: absolute;
    top: calc(100%);
    right: 0;
    background: white;
    box-shadow: 0 0 18px rgba(38, 39, 48, 0.15);
    width: max-content;
    max-width: 300px;
    min-width: 100px;
    padding: 10px 0;
    visibility: hidden;
    z-index: 1; }
    .dropdown-menu:before {
      content: '';
      position: absolute;
      top: -8px;
      right: 3px;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid white; }
  .dropdown ul li {
    color: #7c7d82;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: block;
    text-transform: uppercase;
    text-align: left;
    font-weight: 700;
    line-height: 1; }
    .dropdown ul li:hover {
      color: #262730; }
    .dropdown ul li .fa {
      margin-right: 4px; }

.tabs {
  border-bottom: 3px solid #e9e9ea;
  margin-bottom: 30px; }
  .tabs ul {
    display: flex;
    background: white; }
    .tabs ul li {
      display: inline-block;
      flex-grow: 1;
      border-right: 1px solid #e9e9ea; }
      .tabs ul li a {
        padding-top: 16px;
        padding-bottom: 16px;
        display: block;
        text-align: center;
        border-bottom: 3px solid transparent;
        margin-bottom: -3px;
        color: #7c7d82;
        font-weight: 700; }
        .tabs ul li a:hover {
          color: #262730; }
        @media (max-width: 576px) {
          .tabs ul li a {
            padding: 10px 14px;
            font-size: 14px; } }
        .tabs ul li a.active {
          border-bottom: 3px solid #a89971;
          color: #a89971; }

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background: white;
  transform: translateX(100%);
  width: 400px;
  transition: transform 200ms linear;
  z-index: 2;
  overflow: auto; }
  @media (max-width: 768px) {
    .sidebar {
      width: 300px; } }
  .sidebar-open {
    transform: translateX(0); }
  .sidebar-closer {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15); }

.table-wrapper {
  margin: 0 auto; }

.table {
  width: 100%;
  display: table; }
  @media (max-width: 768px) {
    .table {
      display: flex;
      flex-wrap: wrap; } }
  .table-row {
    display: table-row; }
    .table-row.invited {
      border: 2px solid rgba(220, 128, 53, 0.3); }
    @media (max-width: 768px) {
      .table-row {
        padding: 12px 0;
        display: block;
        background: white;
        margin-bottom: 12px;
        margin-right: 12px;
        flex-grow: 1;
        flex-shrink: 0;
        width: calc(50% - 12px);
        position: relative;
        border: 1px solid #eee; } }
    @media (max-width: 576px) {
      .table-row {
        width: 100%;
        margin-right: 0; } }
  .table-cell {
    display: table-cell;
    color: #262730; }
    .table-cell-content {
      background: white;
      padding: 0 20px;
      margin-bottom: -1px;
      border-bottom: 1px solid #e9e9ea;
      border-top: 1px solid #e9e9ea;
      font-size: 14px;
      height: 70px;
      line-height: 1.3;
      display: flex;
      align-items: center; }
      @media (max-width: 768px) {
        .table-cell-content {
          border: none !important;
          padding: 0;
          height: auto; } }
    .table-cell:first-of-type .table-cell-content {
      border-left: 1px solid #e9e9ea;
      border-top-left-radius: 3px;
      border-bottom-left-radius: 3px; }
    .table-cell:last-of-type .table-cell-content {
      border-right: 1px solid #e9e9ea;
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px; }
    @media (max-width: 768px) {
      .table-cell {
        padding: 2px 16px;
        display: block;
        margin-bottom: 6px; }
        .table-cell:before {
          margin-bottom: 3px;
          content: attr(data-title);
          min-width: 98px;
          font-size: 10px;
          line-height: 10px;
          font-weight: bold;
          text-transform: uppercase;
          color: #7c7d82;
          display: block; } }
  .table-header {
    font-weight: 900;
    color: #262730;
    background: transparent;
    text-transform: capitalize; }
    .table-header .table-cell {
      padding: 0 20px 12px 20px; }
    @media (max-width: 768px) {
      .table-header {
        display: none; }
        .table-header .table-cell {
          display: none; } }

.pagination {
  display: flex;
  list-style: none;
  margin: 3px 0;
  padding: 3px 0;
  justify-content: center; }
  .pagination .page-item,
  .pagination .break {
    margin: 3px 4px; }
    .pagination .page-item span,
    .pagination .break span {
      display: inline-block;
      padding: 3px 3px; }
    .pagination .page-item a,
    .pagination .break a {
      border-radius: 10px;
      display: inline-block;
      padding: 3px 6px;
      text-decoration: none;
      cursor: pointer;
      outline: none; }
      .pagination .page-item a:focus, .pagination .page-item a:hover,
      .pagination .break a:focus,
      .pagination .break a:hover {
        color: #a89971; }
    .pagination .page-item.disabled a,
    .pagination .break.disabled a {
      cursor: default;
      opacity: 0.3;
      pointer-events: none; }
    .pagination .page-item.active a,
    .pagination .break.active a {
      background: #a89971;
      color: #f2efe8; }
    .pagination .page-item.page-prev, .pagination .page-item.page-next,
    .pagination .break.page-prev,
    .pagination .break.page-next {
      flex: 1 0 50%; }
    .pagination .page-item.page-next,
    .pagination .break.page-next {
      text-align: right; }
    .pagination .page-item .page-item-title,
    .pagination .break .page-item-title {
      margin: 0; }
    .pagination .page-item .page-item-subtitle,
    .pagination .break .page-item-subtitle {
      margin: 0;
      opacity: 0.5; }

@keyframes upthenscale {
  0% {
    transform: translateY(250px); }
  50% {
    transform: translateY(0); }
  60% {
    height: 100px;
    width: 90px;
    transform: translateY(0); }
  100% {
    height: 250px;
    width: 100%;
    transform: translateY(0); } }

@keyframes scalethendown {
  0% {
    height: 250px;
    width: 100%;
    transform: translateY(0); }
  50% {
    height: 100px;
    width: 90px;
    transform: translateY(0); }
  60% {
    transform: translateY(0); }
  100% {
    transform: translateY(250px); } }

@keyframes waitfade {
  0%,
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes wiggle {
  0% {
    transform: translateY(310px) rotate(0); }
  25% {
    transform: translateY(310px) rotate(2deg); }
  50% {
    transform: translateY(310px) rotate(0deg); }
  75% {
    transform: translateY(310px) rotate(-2deg); }
  100% {
    transform: translateY(310px) rotate(0); } }

.letter {
  max-width: 100%;
  height: 375px;
  position: relative;
  overflow: hidden;
  display: block; }
  .letter-open .paper {
    animation-name: upthenscale;
    animation-duration: 0.6s;
    animation-fill-mode: forwards; }
  .letter-open .paper-content {
    animation-name: waitfade;
    animation-duration: 1.5s;
    animation-fill-mode: forwards; }
  .letter-open .envelope {
    animation: pause; }
  .letter-close .paper {
    animation-name: scalethendown;
    animation-duration: 0.4s;
    animation-fill-mode: forwards; }

.paper {
  height: 50px;
  width: 90px;
  background: #f1f0c3;
  transform: translateY(250px);
  margin: 0 auto;
  transition: transform 0.3s 0.1s ease;
  border-radius: 2px;
  position: relative; }
  .paper-content {
    padding: 25px;
    opacity: 0; }

.envelope {
  width: 94px;
  height: 60px;
  background: #f36363;
  position: relative;
  margin: auto;
  z-index: 2;
  cursor: pointer;
  border-radius: 3px;
  transition: box-shadow 0.3s ease;
  transform: translateY(310px);
  animation: wiggle 0.3s 0.2s infinite; }
  .envelope:hover {
    animation: pause; }
    .envelope:hover .envelope-paper {
      transform: translateY(-20px); }
    .envelope:hover .envelope-flap {
      transform: translateY(-45px); }
    .envelope:hover .envelope-detail::after {
      visibility: hidden; }
  .envelope-paper {
    height: 50px;
    width: 90px;
    background: #f1f0c3;
    transform: translateY(0);
    margin: 0 auto;
    transition: transform 0.3s 0.1s ease;
    border-radius: 2px;
    position: absolute;
    border: 2px solid transparent; }
  .envelope-detail {
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    background: #f36363;
    border-top: 2px solid transparent; }
    .envelope-detail:before {
      content: '';
      width: 70px;
      height: 70px;
      background: #f36363;
      display: inline-block;
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      top: 30px;
      margin: auto;
      transform: rotate(45deg);
      border: 4px solid #e65454; }
    .envelope-detail:after {
      content: '';
      width: 70px;
      height: 70px;
      background: #f36363;
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      top: -45px;
      margin: auto;
      transform: rotate(45deg);
      border: 4px solid #e65454; }
  .envelope-flap {
    content: '';
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 45px solid #f36363;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    transform: translateY(0); }

.letter-open .envelope-paper {
  visibility: hidden; }

.letter-open .envelope-detail::after {
  visibility: hidden; }

.letter-close .envelope-paper {
  visibility: hidden; }

.letter-open .envelope-flap {
  transform: translateY(-45px); }

.letter-open .envelope-detail {
  border-top: 2px solid #e25b5b; }

.paper-close {
  position: absolute;
  right: 10px;
  top: 5px;
  display: inline-block;
  cursor: pointer; }

.protip {
  border: 1px solid #eee;
  margin-top: 40px;
  padding: 24px;
  font-size: 18px;
  display: inline-block; }
  .protip .fa {
    color: #3882f5;
    font-size: 24px;
    margin-top: -3px;
    margin-right: 12px; }
  .protip strong {
    font-weight: 700;
    margin-right: 12px;
    display: inline; }
  .protip p {
    color: #7c7d82;
    margin-left: 26px;
    margin-top: 4px;
    font-size: 16px; }

#nprogress {
  pointer-events: none; }

#nprogress .bar {
  background: #e2dabf;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px; }

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #e2dabf, 0 0 5px #e2dabf;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px); }

.nprogress-custom-parent {
  overflow: hidden;
  position: relative; }

.nprogress-custom-parent #nprogress .bar {
  position: absolute; }

/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */
.StripeElement {
  background-color: white;
  padding: 16px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease; }

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df; }

.StripeElement--invalid {
  border-color: #fa755a; }

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important; }

html,
body {
  height: 100%;
  font-weight: 400;
  font-family: 'Lato', sans-serif; }

#__next {
  min-height: 100vh;
  display: flex;
  flex-direction: column; }

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

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

.mt-1 {
  margin-top: 8px !important; }

.mb-1 {
  margin-bottom: 8px !important; }

.mt-2 {
  margin-top: 16px !important; }

.mb-2 {
  margin-bottom: 16px !important; }

.mt-3 {
  margin-top: 24px !important; }

.mb-3 {
  margin-bottom: 24px !important; }

.mt-4 {
  margin-top: 32px !important; }

.mb-4 {
  margin-bottom: 32px !important; }

.mt-5 {
  margin-top: 40px !important; }

.mb-5 {
  margin-bottom: 40px !important; }

.mt-6 {
  margin-top: 48px !important; }

.mb-6 {
  margin-bottom: 48px !important; }

.mt-7 {
  margin-top: 56px !important; }

.mb-7 {
  margin-bottom: 56px !important; }

.mt-8 {
  margin-top: 64px !important; }

.mb-8 {
  margin-bottom: 64px !important; }

.mt-9 {
  margin-top: 72px !important; }

.mb-9 {
  margin-bottom: 72px !important; }

.mt-10 {
  margin-top: 80px !important; }

.mb-10 {
  margin-bottom: 80px !important; }

.mt-11 {
  margin-top: 88px !important; }

.mb-11 {
  margin-bottom: 88px !important; }

.mt-12 {
  margin-top: 96px !important; }

.mb-12 {
  margin-bottom: 96px !important; }

@media (max-width: 576px) {
  .mtx-0 {
    margin-top: 0px !important; } }

@media (max-width: 576px) {
  .mbx-0 {
    margin-bottom: 0px !important; } }

@media (max-width: 576px) {
  .mtx-1 {
    margin-top: 8px !important; } }

@media (max-width: 576px) {
  .mbx-1 {
    margin-bottom: 8px !important; } }

@media (max-width: 576px) {
  .mtx-2 {
    margin-top: 16px !important; } }

@media (max-width: 576px) {
  .mbx-2 {
    margin-bottom: 16px !important; } }

@media (max-width: 576px) {
  .mtx-3 {
    margin-top: 24px !important; } }

@media (max-width: 576px) {
  .mbx-3 {
    margin-bottom: 24px !important; } }

@media (max-width: 576px) {
  .mtx-4 {
    margin-top: 32px !important; } }

@media (max-width: 576px) {
  .mbx-4 {
    margin-bottom: 32px !important; } }

@media (max-width: 576px) {
  .mtx-5 {
    margin-top: 40px !important; } }

@media (max-width: 576px) {
  .mbx-5 {
    margin-bottom: 40px !important; } }

@media (max-width: 576px) {
  .mtx-6 {
    margin-top: 48px !important; } }

@media (max-width: 576px) {
  .mbx-6 {
    margin-bottom: 48px !important; } }

@media (max-width: 576px) {
  .mtx-7 {
    margin-top: 56px !important; } }

@media (max-width: 576px) {
  .mbx-7 {
    margin-bottom: 56px !important; } }

@media (max-width: 576px) {
  .mtx-8 {
    margin-top: 64px !important; } }

@media (max-width: 576px) {
  .mbx-8 {
    margin-bottom: 64px !important; } }

@media (max-width: 576px) {
  .mtx-9 {
    margin-top: 72px !important; } }

@media (max-width: 576px) {
  .mbx-9 {
    margin-bottom: 72px !important; } }

@media (max-width: 576px) {
  .mtx-10 {
    margin-top: 80px !important; } }

@media (max-width: 576px) {
  .mbx-10 {
    margin-bottom: 80px !important; } }

@media (max-width: 576px) {
  .mtx-11 {
    margin-top: 88px !important; } }

@media (max-width: 576px) {
  .mbx-11 {
    margin-bottom: 88px !important; } }

@media (max-width: 576px) {
  .mtx-12 {
    margin-top: 96px !important; } }

@media (max-width: 576px) {
  .mbx-12 {
    margin-bottom: 96px !important; } }

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

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

.mr-1 {
  margin-right: 8px !important; }

.ml-1 {
  margin-left: 8px !important; }

.mr-2 {
  margin-right: 16px !important; }

.ml-2 {
  margin-left: 16px !important; }

.mr-3 {
  margin-right: 24px !important; }

.ml-3 {
  margin-left: 24px !important; }

.mr-4 {
  margin-right: 32px !important; }

.ml-4 {
  margin-left: 32px !important; }

.mr-5 {
  margin-right: 40px !important; }

.ml-5 {
  margin-left: 40px !important; }

