/** 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;
    }
