/** Row component */
/** Input component */
/** Dialog component */
/** AdminLock component */
/* Tabs component */
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-family: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
small {
  font-size: 12px;
}
a {
  text-decoration: none;
}
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;
}
b,
strong {
  font-weight: bolder;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
          appearance: button;
}
textarea {
  overflow: auto;
}
[type='checkbox'],
[type='radio'] {
  padding: 0;
}
[hidden] {
  display: none;
}
/** Mamba webkit specific */
input,
textarea,
keygen,
select,
button,
isindex {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}
h1 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
}
h2 {
  margin: 0 0 0.72rem;
  font-size: 1.8rem;
}
h3 {
  margin: 0 0 0.64rem;
  font-size: 1.6rem;
}
h4 {
  margin: 0 0 0.56rem;
  font-size: 1.4rem;
}
h5 {
  margin: 0 0 0.48rem;
  font-size: 1.2rem;
}
h6 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
p {
  font-size: 1rem;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
*:focus {
  outline: none !important; /* stylelint-disable-line */
}
html {
  height: 100%;
  font-size: 13px;
  font-family: Roboto, Arial, sans-serif;
}
body {
  color: #181D25;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}
/** Positioning */
.h-fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.h-fixed-center,
.h-absolute-center {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.h-fixed-center {
  position: fixed;
}
.h-absolute-center {
  position: absolute;
}
/** Colors */
.h-color-gray-darker {
  color: #181D25;
}
.h-color-gray {
  color: #7D8BA1;
}
.h-color-gray-lighter {
  color: #F3F5F7;
}
.h-color-gray-lightest {
  color: #F3F5F7;
}
/** Text */
.h-text-uppercase {
  text-transform: uppercase;
}
.h-text-lowercase {
  text-transform: lowercase;
}
.h-text-center {
  text-align: center;
}
.h-text-left {
  text-align: left;
}
.h-text-right {
  text-align: right;
}
/** Imitate the <Row/> component layout */
.ui-row {
  padding: 12px 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #F3F5F7;
  font-size: 14px
}
.ui-row.-light {
    background-color: #F3F5F7;
    border-bottom-color: #F3F5F7;
  }
.ui-row.-border-top {
    border-top: 1px solid #F3F5F7
  }
.ui-row.-border-top.-light {
      border-bottom-color: #F3F5F7;
    }
@font-face {
  font-family: 'Roboto';
  font-weight: 100 300;
  src: url(assets/fonts/Roboto-Light.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-weight: normal;
  src: url(assets/fonts/Roboto-Regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 700 900;
  src: url(assets/fonts/Roboto-Bold.ttf) format('truetype');
}
@font-face {
  font-family: 'Sharon Sans';
  font-weight: 300;
  src: url(assets/fonts/SharonSans-Light.otf) format('opentype');
}
@font-face {
  font-family: 'Sharon Sans';
  font-weight: normal;
  src: url(assets/fonts/SharonSans-Regular.otf) format('opentype');
}
@font-face {
  font-family: 'Sharon Sans';
  font-weight: 400;
  font-style: italic;
  src: url(assets/fonts/SharonSans-Italic.otf) format('opentype');
}
@font-face {
  font-family: 'Sharon Sans';
  font-weight: 600;
  src: url(assets/fonts/SharonSans-Medium.otf) format('opentype');
}
@font-face {
  font-family: 'Sharon Sans';
  font-weight: 700;
  src: url(assets/fonts/SharonSans-Bold.otf) format('opentype');
}
/** Normalize rules for desktop only. Not included on the main build */
html {
  text-size-adjust: 100%;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
          appearance: textfield;
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
body {
  background-color: #fff;
}
*::after,
*::before,
*:not(input),
*:not(code) input[type='checkbox'],
input[type='radio'] {
  /* Remove orange selection */
  outline: none;
}
var,
address,
dfn,
cite {
  font-style: italic;
}
abbr {
  border-bottom: 1px #ccc dotted;
  cursor: help;
}
code,
kbd {
  font-family: 'Fira Code', 'SFMono-Medium', 'SF Mono', 'Segoe UI Mono', 'Roboto Mono',
    'Ubuntu Mono', 'Menlo', 'Courier', monospace;
  -webkit-user-select: auto;
          user-select: auto;
}
table {
  border-collapse: collapse;
}
