@charset "UTF-8";
@import './tryxle-icons.css';
@import './lato-font.css';
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@-webkit-keyframes animation-shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes animation-shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
.animation-shake {
  -webkit-animation: animation-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: animation-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@font-face {
  font-family: "tryxle-icons";
  src: url("../../font/tryxle-icons/tryxle-icons.eot?53701221");
  src: url("../../font/tryxle-icons/tryxle-icons.eot?53701221#iefix") format("embedded-opentype"), url("../../font/tryxle-icons/tryxle-icons.woff2?53701221") format("woff2"), url("../../font/tryxle-icons/tryxle-icons.woff?53701221") format("woff"), url("../../font/tryxle-icons/tryxle-icons.ttf?53701221") format("truetype"), url("../../font/tryxle-icons/tryxle-icons.svg?53701221#tryxle-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
input[type=checkbox], input[type=radio] {
  position: absolute;
  left: -100000px;
  opacity: 0;
}
input[type=checkbox] + label, input[type=radio] + label {
  display: block;
  padding: 0;
  text-align: left;
  padding-top: 6px;
  font-size: 1rem;
  min-height: 30px;
  background-size: 30px;
  cursor: pointer;
}
input[type=checkbox] + label::before, input[type=radio] + label::before {
  display: inline-block;
  font-family: "tryxle-icons";
  content: "";
  color: #9e9999;
  padding: 0 0.5em;
}
input[type=checkbox].invalid + label, input[type=radio].invalid + label {
  color: #EF5734;
}
input[type=checkbox].invalid + label::before, input[type=radio].invalid + label::before {
  color: #EF5734;
}
input[type=checkbox]:checked + label::before, input[type=radio]:checked + label::before {
  color: #2BAF2B;
}
input[type=checkbox]:focus + label::before, input[type=radio]:focus + label::before {
  -webkit-text-stroke: 1px #393838;
  text-stroke: 1px #393838;
  text-shadow: 0rem 0rem 0.6rem #9e9999;
}

input[type=text], input[type=password], input[type=number] {
  display: block;
  font-size: 1.3rem;
  width: 100%;
  border: 1px solid #9e9999;
  color: #393838;
  padding: 8px 15px;
  background: #fff;
  margin: 0 auto 0.5rem auto;
  border-radius: 0.3rem;
}
input[type=text]:active, input[type=text]:focus, input[type=password]:active, input[type=password]:focus, input[type=number]:active, input[type=number]:focus {
  outline-style: none;
  border-color: #393838;
  box-shadow: 0.3rem 0.3rem 3rem 0px #9e9999;
}
input[type=text]:active.invalid, input[type=text]:focus.invalid, input[type=password]:active.invalid, input[type=password]:focus.invalid, input[type=number]:active.invalid, input[type=number]:focus.invalid {
  border-color: #EF5734;
  color: #EF5734;
}
input[type=text].invalid, input[type=password].invalid, input[type=number].invalid {
  border-color: #EF5734;
  color: #EF5734;
}

.password-wrapper {
  border: 1px solid #9e9999;
  border-radius: 0.3rem;
  margin: 0 auto 0.5rem auto;
  display: flex;
  align-content: center;
}
.password-wrapper input[type=text], .password-wrapper input[type=password] {
  border: 0;
  margin: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.password-wrapper .password-reveal {
  font-size: 1.3rem;
  border-left: 1px solid #9e9999;
}
.password-wrapper .password-reveal::after {
  content: "👁";
  color: #393838;
  font-weight: bold;
  padding: 0 0.5em;
  vertical-align: middle;
}
.password-wrapper.invalid {
  border-color: #EF5734;
}
.password-wrapper.invalid .password-reveal {
  border-color: #EF5734;
}
.password-wrapper.invalid input[type=text], .password-wrapper.invalid input[type=password] {
  color: #EF5734;
}

label, .label {
  display: block;
  text-transform: uppercase;
  text-align: left;
  margin: 0 auto 0.25rem auto;
  color: #393838;
  font-weight: bold;
}
label::after, .label::after {
  content: "•";
  vertical-align: super;
  opacity: 0;
}
label.required::after, .label.required::after {
  content: "•";
  color: #EF5734;
  vertical-align: super;
  opacity: 1;
}
label.invalid, .label.invalid {
  border-color: #EF5734;
  color: #EF5734;
}
label.required-description, .label.required-description {
  text-align: center;
  color: #9e9999;
  text-transform: none;
  font-size: 0.8rem;
  font-weight: normal;
}
label.required-description::before, .label.required-description::before {
  content: "•";
  color: #EF5734;
  vertical-align: super;
  font-weight: bold;
  font-size: 1rem;
}

.input-description {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  margin: 0 auto 0.25rem auto;
  color: #393838;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  font-size: 1rem;
  color: #fff;
  border-radius: 0.3rem;
  background: #00ACEE;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: 0;
}
.btn:active, .btn:focus {
  outline: 0;
  box-shadow: 0.3rem 0.3rem 3rem 0px #9e9999;
}
.btn.btn-block {
  display: block;
  margin: 0 auto 0.5rem auto;
}
.btn.btn-fullwidth {
  display: block;
  margin: 0.5rem 0;
  width: 100%;
}

.card {
  flex-direction: column;
  text-align: center;
  background: white;
  box-shadow: 5px 5px 60px 0px #999;
  border-radius: 5px;
  padding: 10px 15px;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-xs {
  font-size: 0.6rem;
}
.text-sm {
  font-size: 0.8rem;
}
.text-xl {
  font-size: 2rem;
}
.text-success {
  color: #2BAF2B;
}
.text-danger {
  color: #EF5734;
}

.message-success, .message-error {
  font-size: 1rem;
  color: #fff;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
}
.message-success {
  background-color: #2BAF2B;
}
.message-error {
  background-color: #EF5734;
}

b {
  font-weight: bold;
}

h1, .h1 {
  font-size: 1.6rem;
  margin: 0.5rem 0;
  font-weight: 500;
}

h2, .h2 {
  font-size: 1.4rem;
  margin: 0.5rem 0;
  font-weight: 500;
}

p {
  margin-bottom: 0.5rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3rem;
  background: white;
  box-shadow: 0 0 1rem 0 #393838;
}

body {
  background: #fff;
  font-family: Lato, sans-serif;
  color: #393838;
}

a {
  color: #00ACEE;
  text-decoration: none;
}/*# sourceMappingURL=global.css.map */