:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
}

.standout {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

html {
  font-size: 16px;
}

#loading-container {
  width: 100%;
  height: 100%;
  background-color: var(--gray-xl);
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

body {
  min-height: 100vh;
  color: var(--cool-md);
  background-color: var(--gray-xl);
  font: 400 1rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  -webkit-transition: color .3s ease-out, background-color .3s ease-out;
  transition: color .3s ease-out, background-color .3s ease-out;
}

section {
  padding: 1.5rem 0;
}

section h1.accented::before, section h2.accented::before, section h3.accented::before, section h4.accented::before, section h5.accented::before, section h6.accented::before {
  content: "\25CF\25CF\25CF";
  display: block;
  color: var(--primary);
  font-size: .625rem;
  letter-spacing: .25rem;
  text-align: inherit;
  margin: 0 .125rem;
}

section p:last-child {
  margin-bottom: 0;
}

.lead {
  color: var(--beige);
  font: 500 1.25rem/1.3 var(--font-body);
  margin-bottom: .75rem;
}

.running-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 600 1rem/1.5 var(--font-heading);
  text-transform: lowercase;
  letter-spacing: .0625rem;
  color: var(--secondary);
}

.running-head::before {
  content: "";
  background: url("/images/icon.svg") no-repeat top left;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .5rem;
  text-align: inherit;
}

[data-theme="dark"] section.bg-accent {
  color: var(--cool-gray-ml);
}

[data-theme="dark"] section.bg-accent h1:first-child::after, [data-theme="dark"] section.bg-accent h2:first-child::after, [data-theme="dark"] section.bg-accent h3:first-child::after, [data-theme="dark"] section.bg-accent h4:first-child::after, [data-theme="dark"] section.bg-accent h5:first-child::after, [data-theme="dark"] section.bg-accent h6:first-child::after {
  color: var(--primary);
}

footer {
  color: var(--cool-m);
  font-size: .875rem;
  font-weight: 400;
}

footer * {
  margin-bottom: 0;
}

footer .disclaimer {
  font-family: var(--font-mono);
  font-size: .6875rem;
}

.topbar {
  font-size: .875rem;
  color: var(--text-body);
}

.topbar * {
  margin-bottom: 0;
}

/* Typography */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: .5rem;
}

.h1, h1 {
  font-size: 3rem;
}

.h2, h2 {
  font-size: 2.25rem;
  letter-spacing: 0;
}

.h3, h3 {
  font-size: 1.75rem;
}

.h4, h4 {
  font-size: 1.375rem;
  margin-bottom: .5rem;
}

.h5, h5 {
  font-size: 1.125rem;
}

.display-4 {
  font-size: 3.25rem;
}

.bigger {
  font-size: 1.125em;
}

.service-brand {
  max-height: 3rem;
}

.standout {
  font-weight: 400 !important;
}

small, .small, .fine-print {
  font-size: .75rem;
}

.fine-print {
  color: var(--cool-m);
}

.stage::before {
  content: "";
  display: block;
  width: 100%;
  height: .25rem;
  background-color: var(--gray-l);
  margin-bottom: 1rem;
}

.stage::after {
  content: "";
  display: block;
  width: 100%;
  height: .25rem;
  background-color: var(--gray-l);
  margin-top: 1rem;
}

.expertise-icon {
  max-width: 8rem;
  margin: 0 auto;
}

.sent, .failed {
  color: white;
  background-color: var(--mint);
  padding: 1rem;
  margin-bottom: 0;
}

.failed {
  background-color: var(--red);
}

.qrcode {
  max-width: 8rem;
}

.wow {
  visibility: hidden;
}

/* Responsive */
@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (min-device-pixel-ratio: 3), only screen and (-webkit-min-device-pixel-ratio: 4.791666666666667), only screen and (min-resolution: 460dpi), only screen and (min-resolution: 3dppx) {
  html {
    font-size: 18px;
  }
}

.navbar .navbar-brand {
  width: 10rem;
  position: relative;
}

.navbar .navbar-toggler {
  width: 3rem;
  height: 3rem;
  padding: .75rem;
  border: none;
  border-radius: 50rem;
  z-index: 9;
}

.navbar .navbar-toggler .icon-bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--gray-md);
  position: absolute;
  top: 50%;
  margin-top: -.0625rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-toggler .icon-bar:first-child {
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
}

.navbar .navbar-toggler .icon-bar:last-child {
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
}

.navbar .navbar-toggler:focus, .navbar .navbar-toggler:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .navbar-toggler.toggled {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-toggler.toggled .icon-bar {
  background-color: #b8b8b8;
}

.navbar .navbar-toggler.toggled .icon-bar:first-child {
  -webkit-transform: rotate(45deg) translateZ(0);
          transform: rotate(45deg) translateZ(0);
}

.navbar .navbar-toggler.toggled .icon-bar:last-child {
  -webkit-transform: rotate(-45deg) translateZ(0);
          transform: rotate(-45deg) translateZ(0);
}

#navbarContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 15rem;
  height: auto;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 1rem;
  right: .75rem;
  z-index: 8;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  visibility: hidden;
  opacity: 0;
}

#navbarContent.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#navbarContent small {
  color: var(--gray-m);
}

#navbarContent .navbar-nav {
  width: 100%;
}

#navbarContent .navbar-nav .nav-link {
  color: #b8b8b8;
  font: 600 1.375rem/1.5 var(--font-heading);
  text-transform: lowercase;
  text-decoration: none;
  padding: .25rem;
  border-top: 0.125rem solid dimgray;
}

#navbarContent .navbar-nav .nav-link:active {
  color: #d9d9d9;
}

.overlay-effect {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 7;
  background-color: rgba(64, 64, 64, 0.9);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay-effect.open {
  visibility: visible;
  opacity: 1;
}

body.has-overlay {
  overflow: hidden;
}

@media (min-width: 992px) {
  .navbar .navbar-brand {
    width: 12.5rem;
  }
  #navbarContent {
    background-color: transparent;
    position: static;
    padding: 0;
    width: 100%;
    overflow: visible;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #navbarContent .navbar-nav {
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    border: 0;
    width: auto;
  }
  #navbarContent .navbar-nav .nav-item {
    margin-right: 1rem;
    display: inline;
  }
  #navbarContent .navbar-nav .nav-item .nav-link {
    color: var(--cool-ml);
    font: 500 1rem/1.5 var(--font-body);
    text-align: center;
    position: relative;
    padding: 0 .5rem;
    border: 0;
  }
  #navbarContent .navbar-nav .nav-item .nav-link:hover {
    color: var(--cool-d);
  }
  #navbarContent .navbar-nav .nav-item .nav-link:active {
    color: var(--cool-ml);
  }
}

:root {
  --switch-width: 42px;
  --switch-height: 24px;
  --switch-padding: 0px;
  --checkbox-width: 1rem;
  --checkbox-mark-width: .5rem;
  --checkbox-border-width: 1px;
  --switch-animation-duration: 0.5s;
}

.theme-switch {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin: .75rem .25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: .75rem;
  font-weight: 500;
}

.theme-switch svg {
  fill: #b8b8b8;
}

.switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: var(--switch-width);
  height: var(--switch-height);
  border-radius: 50em;
  padding: var(--switch-padding) 0;
  margin: 0 .25rem;
}

.switch__input, .switch__label {
  position: absolute;
  left: 0;
  top: 0;
}

.switch__input {
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.switch__input:checked + .switch__label {
  background-color: var(--primary);
}

.switch__input:checked + .switch__label + .switch__marker {
  left: calc(100% - var(--switch-height) + var(--switch-padding));
  background-color: #e3e5e8;
}

.switch__input:active + .switch__label {
  -webkit-box-shadow: 0 0 0 3px var(--gray-ml);
          box-shadow: 0 0 0 3px var(--gray-ml);
}

.switch__label {
  width: 100%;
  height: 100%;
  color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: var(--cool-l);
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: background var(--switch-animation-duration);
  transition: background var(--switch-animation-duration);
}

.switch__marker {
  position: relative;
  background-color: var(--primary);
  width: calc(var(--switch-height) - var(--switch-padding) * 2);
  height: calc(var(--switch-height) - var(--switch-padding) * 2);
  border-radius: 50%;
  z-index: 99;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 1px rgba(43, 43, 43, 0.5);
          box-shadow: 0 1px 1px rgba(43, 43, 43, 0.5);
  left: var(--switch-padding);
  -webkit-transition: left var(--switch-animation-duration);
  transition: left var(--switch-animation-duration);
  will-change: left;
}

.checkbox label {
  position: relative;
  padding-left: calc(var(--checkbox-width) + .5rem);
}

.checkbox label::before, .checkbox label::after {
  content: "";
  display: inline-block;
  position: absolute;
}

.checkbox label::before {
  height: var(--checkbox-width);
  width: var(--checkbox-width);
  border: var(--checkbox-border-width) solid var(--gray-m);
  left: 0;
  border-radius: 50%;
}

.checkbox label::after {
  height: .5rem;
  width: .5rem;
  background-color: var(--primary);
  border: 0;
  border-radius: 50%;
  top: 0;
  left: 0;
}

@media (min-width: 992px) {
  .theme-switch {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .theme-switch svg {
    fill: var(--cool-ml);
  }
}

.jumbotron {
  height: 50vh;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  position: relative;
}

.jumbotron .jumbotron-image {
  width: 100%;
}

.jumbotron .container .jumbotron-caption-light h1 {
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

.jumbotron .container .jumbotron-caption-light h1:last-child {
  margin-bottom: 0;
}

form .form-group {
  color: var(--cool-md);
  text-align: left;
  margin-bottom: 1rem;
}

form label {
  display: block;
  color: var(--cool-md);
  font: 500 1rem/1.5 var(--font-body);
  margin-bottom: .5rem;
  pointer-events: none;
}

form #name-error.error, form #email-error.error, form #phone-error.error, form #message-error.error {
  font-weight: 500;
  font-size: .75rem;
}

form .form-control {
  font-size: 1rem;
  color: var(--cool-d);
  background-color: white;
  padding: .375rem .75rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

form .form-control::-webkit-input-placeholder {
  color: var(--gray-ml);
}

form .form-control::-moz-input-placeholder {
  color: var(--gray-ml);
}

form .form-control:-ms-input-placeholder {
  color: var(--gray-ml);
}

form .form-control::-webkit-input-placeholder {
  color: var(--gray-ml);
}

form .form-control::-ms-input-placeholder {
  color: var(--gray-ml);
}

form .form-control::placeholder {
  color: var(--gray-ml);
}

form .form-control:focus {
  color: var(--gray-d);
  border-color: var(--azure) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(58, 163, 242, 0.25) !important;
          box-shadow: 0 0 0 3px rgba(58, 163, 242, 0.25) !important;
}

form .required, form .error {
  color: var(--red);
  margin-top: .5rem;
}

form input, form select, form textarea {
  outline: none;
}

input#name:focus ~ .inner-text, input#name:valid ~ .inner-text {
  -webkit-transform: translateY(-0.875rem);
          transform: translateY(-0.875rem);
  font-size: 1rem;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  color: white;
  background-color: #62b5f5;
}

.custom-select {
  width: 100%;
  position: relative;
}

.custom-select select {
  display: none;
}

.custom-select .select-selected {
  color: var(--gray-ml);
  background-color: white;
  padding: .375rem .75rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.custom-select .select-selected::after {
  position: absolute;
  content: "";
  top: 1rem;
  right: 1rem;
  width: 0;
  height: 0;
  border: .375rem solid transparent;
  border-color: var(--gray-d) transparent transparent transparent;
}

.custom-select .select-selected:focus, .custom-select .select-selected.select-arrow-active {
  color: var(--gray-ml) !important;
  border-color: var(--azure);
  -webkit-box-shadow: 0 0 0 3px rgba(58, 163, 242, 0.25);
          box-shadow: 0 0 0 3px rgba(58, 163, 242, 0.25);
  outline: none;
}

.custom-select .select-selected.select-arrow-active::after {
  border-color: transparent transparent var(--gray-d) transparent;
  top: .625rem;
}

.custom-select .select-items {
  background-color: white;
  margin-top: 3px;
  border: 1px solid var(--gray-ml);
  border-top: 0;
  border-radius: 0 0 .25rem .25rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-items div, .select-selected {
  color: var(--gray-d);
  padding: .5rem .75rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

input::-webkit-contacts-auto-fill-button:hover {
  background-color: var(--azure) !important;
}

.inputfile {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.inputfile + label {
  display: inline-block;
  cursor: pointer;
  pointer-events: auto;
  color: var(--azure);
  font-size: .875rem;
}

.inputfile:focus + label, .inputfile + label:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

#preview {
  color: var(--gray-m);
  font-size: .75rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

[data-theme="dark"] .form-control {
  color: var(--gray-d);
  background-color: var(--gray-l);
}

[data-theme="dark"] .form-control::-webkit-input-placeholder {
  color: var(--gray-ml);
}

[data-theme="dark"] .form-control::-moz-input-placeholder {
  color: var(--gray-ml);
}

[data-theme="dark"] .form-control:-ms-input-placeholder {
  color: var(--gray-ml);
}

[data-theme="dark"] .form-control::-webkit-input-placeholder {
  color: var(--gray-ml);
}

[data-theme="dark"] .form-control::-ms-input-placeholder {
  color: var(--gray-ml);
}

[data-theme="dark"] .form-control::placeholder {
  color: var(--gray-ml);
}

[data-theme="dark"] .form-control:focus {
  border-color: var(--azure) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(58, 163, 242, 0.25) !important;
          box-shadow: 0 0 0 3px rgba(58, 163, 242, 0.25) !important;
}

[data-theme="dark"] input, [data-theme="dark"] textarea {
  caret-color: white;
}

[data-theme="dark"] input::-webkit-contacts-auto-fill-button {
  background-color: var(--gray-l);
}

[data-theme="dark"] .custom-select .select-selected {
  color: var(--gray-ml);
  background-color: var(--gray-l);
}

[data-theme="dark"] .custom-select .select-selected.select-arrow-active {
  color: var(--gray-ml) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(58, 163, 242, 0.25);
          box-shadow: 0 0 0 3px rgba(58, 163, 242, 0.25);
}

[data-theme="dark"] .custom-select .select-items {
  background-color: var(--gray-l);
  border-color: var(--gray-m);
}

[data-theme="dark"] .select-items div:hover, [data-theme="dark"] .same-as-selected {
  background-color: #2972aa;
}

.content a {
  color: var(--gray-d);
  text-decoration: none !important;
  transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out;
}

.content a:hover {
  color: var(--primary);
}

.content a.btn {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0px 0 var(--primary);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0px 0 var(--primary);
  text-decoration: none;
}

a {
  color: var(--azure);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.btn {
  display: inline-block;
  min-width: 10rem;
  font: 500 1rem/1.5 var(--font-body);
  text-align: center;
  text-decoration: none !important;
  padding: .625rem 1.25rem;
  border: 1px solid;
  border-radius: 50rem;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.btn:active {
  -webkit-transition: none;
  transition: none;
}

.btn-sm {
  min-width: 7.5rem;
  font-size: .875rem;
  padding: .5rem 1rem;
}

.btn-sm:hover {
  -webkit-box-shadow: 0 0 0 0.1875rem var(--box-shadow-color);
          box-shadow: 0 0 0 0.1875rem var(--box-shadow-color);
}

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

.btn-primary:hover {
  color: white;
  background-color: #CC6640;
  border-color: #CC6640;
}

.btn-primary:active {
  color: #CC6640;
  background-color: transparent;
  border-color: #CC6640;
}

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

.btn-secondary:hover {
  color: white;
  background-color: #1C3B62;
  border-color: #1C3B62;
}

.btn-secondary:active {
  color: #1C3B62;
  background-color: transparent;
  border-color: #1C3B62;
}

.btn-outline-secondary {
  color: var(--cool-m);
  border: 1px solid var(--cool-m);
}

.btn-outline-secondary:hover {
  color: var(--cool-d);
  border-color: var(--cool-d);
}

.btn-outline-secondary:active {
  color: var(--cool-m);
  border-color: var(--cool-m);
}

.btn-light {
  color: rgba(58, 163, 242, 0.8);
  background-color: white;
  border-color: white;
}

.btn-light:hover {
  color: var(--azure);
  background-color: white;
  border-color: rgba(58, 163, 242, 0.8);
}

.btn-light:active {
  color: white;
  background-color: rgba(58, 163, 242, 0.8);
  border-color: transparent;
}

.btn-block {
  width: 100%;
}

.socials a {
  width: 2.75rem;
  height: 2.75rem;
  margin-right: 1.25rem;
  color: var(--cool-ml);
  border-radius: 50rem;
  font-size: 1rem;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.socials a:last-child {
  margin-right: 0;
}

.socials a:hover {
  color: var(--primary);
}

.socials a:active {
  color: #CC6640;
}

[data-theme="dark"] .btn-primary {
  color: #d9d9d9;
}

[data-theme="dark"] .btn-primary:hover {
  background-color: #B35938;
  border-color: #B35938;
}

[data-theme="dark"] .btn-primary:active {
  color: #B35938;
  background-color: transparent;
  border-color: #B35938;
}

[data-theme="dark"] .btn-secondary {
  color: #d9d9d9;
  background-color: var(--cool-m);
  border-color: var(--cool-m);
}

[data-theme="dark"] .btn-secondary:hover {
  background-color: #606871;
  border-color: #606871;
}

[data-theme="dark"] .btn-secondary:active {
  color: #606871;
  background-color: transparent;
  border-color: #606871;
}

[data-theme="dark"] .btn-outline-secondary:hover {
  --box-shadow-color: hsla(208, 7%, 59%, .4);
}

[data-theme="dark"] .btn-light {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: transparent;
}

[data-theme="dark"] .btn-light:hover {
  color: var(--azure);
  border-color: rgba(58, 163, 242, 0.8);
  --box-shadow-color: hsla(206, 88%, 59%, .4);
}

[data-theme="dark"] .btn-light:active {
  color: var(--gray-l);
  background-color: rgba(58, 163, 242, 0.8);
  border-color: transparent;
}

[data-theme="dark"] .socials a:hover {
  color: var(--primary);
}

[data-theme="dark"] .socials a:active {
  color: var(--gray-l);
  border: 1px solid var(--primary);
}

@-webkit-keyframes animate-bouncing {
  0% {
    top: 0;
  }
  50% {
    top: .25rem;
  }
  100% {
    top: 0;
  }
}

@keyframes animate-bouncing {
  0% {
    top: 0;
  }
  50% {
    top: .25rem;
  }
  100% {
    top: 0;
  }
}

.animate-bouncing {
  position: relative;
  -webkit-animation: animate-bouncing 1s infinite;
          animation: animate-bouncing 1s infinite;
}

@-webkit-keyframes animate-color {
  0% {
    opacity: 1;
  }
  100% {
    opacity: .4;
  }
}

@keyframes animate-color {
  0% {
    opacity: 1;
  }
  100% {
    opacity: .4;
  }
}

@-webkit-keyframes animate-rotating {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate-rotating {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.animate-rotating {
  -webkit-animation: animate-rotating 60s linear infinite;
          animation: animate-rotating 60s linear infinite;
}

.loading {
  width: 3rem;
  height: 3rem;
  -webkit-animation: animate-rotating 6s linear infinite;
          animation: animate-rotating 6s linear infinite;
}

.chat-window {
  max-width: 22.5rem;
  margin: 0 1.25rem 6rem;
  font-size: .875rem;
  border-radius: .625rem;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0.25rem 0.75rem;
          box-shadow: rgba(0, 0, 0, 0.15) 0 0.25rem 0.75rem;
  position: fixed;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.chat-window.show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.chat-window p {
  margin-bottom: 0;
}

.chat-window .chat-header {
  background-color: #234a7a;
  padding: .875rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.chat-window .chat-header .user-image {
  width: 3.25rem;
  height: 3.25rem;
  display: block;
  position: relative;
}

.chat-window .chat-header .user-image::after {
  content: "";
  width: .75rem;
  height: .75rem;
  display: block;
  background-color: #25D366;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #234a7a;
  position: absolute;
  bottom: 0;
  right: 0;
}

.chat-window .chat-header .user-info {
  color: white;
  margin: 0 1rem;
}

.chat-window .chat-header .user-info .user-name {
  font-weight: 600;
  font-size: 1rem;
}

.chat-window .chat-header .user-info .user-description {
  font-size: .8125rem;
}

.chat-window .chat-header .close-button {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  padding: .3125rem;
  position: absolute;
  top: .625rem;
  right: .625rem;
  opacity: .5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.chat-window .chat-header .close-button .icon {
  width: .625rem;
  height: .625rem;
  position: absolute;
  top: .3125rem;
  left: .3125rem;
}

.chat-window .chat-header .close-button:hover {
  opacity: 1;
}

.chat-window .chat-area {
  background-color: var(--wcoffee);
  padding: .875rem 1.25rem;
  text-align: center;
  min-height: 10rem;
}

.chat-window .chat-area .chat-date {
  font-weight: 700;
  font-size: .75rem;
  color: var(--gray-d);
  text-align: center;
  margin: 0 auto .5rem;
  display: inline-block;
  min-width: 5rem;
  padding: .0625rem .875rem;
  background-color: #d4eaf5;
  border-radius: 50rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
          box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
}

.chat-window .chat-area .chat-message {
  text-align: left;
  padding: .1875rem .5rem;
  background-color: white;
  color: var(--gray-d);
  border-radius: 0 .5rem .5rem .5rem;
  line-height: 1.4;
  max-width: calc(100% - 4.124rem);
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
          box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}

.chat-window .chat-area .chat-message::after {
  content: "";
  width: .75rem;
  height: 1.1875rem;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
  background-size: contain;
  position: absolute;
  top: 0;
  left: -.75rem;
  display: block;
}

.chat-window .chat-area .chat-message .chat-name {
  font-weight: 600;
  color: #234a7a;
}

.chat-window .chat-area .chat-loading {
  width: 3.5rem;
  height: 2rem;
  display: block;
  background-color: white;
  border-radius: 1rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
          box-shadow: rgba(0, 0, 0, 0.15) 0 1px 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}

.chat-window .chat-area .chat-loading .loading-dot {
  width: .3125rem;
  height: .3125rem;
  background-color: var(--gray-md);
  border-radius: 50rem;
  margin: 0 .125rem;
  -webkit-animation: animate-color 1.1s infinite;
          animation: animate-color 1.1s infinite;
}

.chat-window .chat-area .chat-time {
  font-size: .75rem;
  color: var(--gray-m);
  margin-top: .25rem;
}

.chat-window .button-area {
  padding: .875rem 1.25rem;
  background-color: var(--white);
}

.chat-window .button-area .btn-chat {
  background-color: var(--azure);
  padding: .5rem .75rem;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  font-weight: 600;
  font-size: .9375rem;
}

.chat-bubble {
  width: 4rem;
  height: 4rem;
  background-color: #25D366;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 1.25rem 1.25rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0.25rem 0.75rem;
          box-shadow: rgba(0, 0, 0, 0.15) 0 0.25rem 0.75rem;
  position: fixed;
  bottom: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.chat-icon {
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.notif-badge {
  width: .625rem;
  height: .625rem;
  background-color: red;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: .25rem;
  right: .25rem;
}
/*# sourceMappingURL=main.css.map */