@charset "UTF-8";

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 12px;
  background: #eee;
  font-family: Arial, Helvetica, sans-serif;
}

#alert {
  width: 100%;
  max-width: min(400px, calc(100vw - 24px));
  margin: clamp(30px, 12vh, 100px) auto 30px;
  border-radius: 3px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(50, 50, 50, 0.3);
  text-align: center;
}

#alert .fas {
  font-size: 60px;
}

#alert .rlink {
  margin: 10px 0;
}

#alert .rlink a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

#alert .title {
  margin: 10px;
  font-weight:600;
  text-transform: uppercase;
}

.fasuccess {
  color: #5cb85c;
}

.fadanger {
  color: #d9534f;
}

#process-bar {
  width: 0%;
  transition: all 0.3s !important;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-display: auto;
  font-style: normal;
  font-weight: normal;
  src: url("../../fonts/awesome/fa-brands-400.woff2") format("woff2"), url("../../fonts/awesome/fa-brands-400.woff") format("woff");
}

.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/awesome/fa-regular-400.woff2") format("woff2"), url("../../fonts/awesome/fa-regular-400.woff") format("woff");
}

.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: auto;
  font-style: normal;
  font-weight:600;
  src: url("../../fonts/awesome/fa-solid-900.woff2") format("woff2"), url("../../fonts/awesome/fa-solid-900.woff") format("woff");
}

.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight:600;
}

.fa,
.fas,
.far,
.fal,
.fab {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.fa-envelope-open::before {
  content: "\f2b6";
}

.fa-phone::before {
  content: "\f095";
}

.fa-map-marker-alt::before {
  content: "\f3c5";
}

.fa-shopping-cart::before {
  content: "\f07a";
}

.fa-bars::before {
  content: "\f0c9";
}

.fa-calendar-alt::before {
  content: "\f073";
}

.fa-search::before {
  content: "\f002";
}

.fa-exclamation-triangle::before {
  content: "\f071";
}

.fa-check-circle::before {
  content: "\f058";
}

.fa-user::before {
  content: "\f007";
}

.fa-sign-out-alt::before {
  content: "\f2f5";
}

.fa-minus::before {
  content: "\f068";
}

.fa-plus::before {
  content: "\f067";
}
