@charset "UTF-8";
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a,
a *,
button,
button * {
    cursor: pointer;
}

html,
body {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    overflow: auto;
    font-size: var(--fui-layout--font-size);
}

/*app scaffolding*/
body {
    background: var(--app--background) !important;
    color: var(--app--color);
    padding: 0;
    font-family: var(--fui-layout--font-family);
    transition: background-color 250ms ease-in-out;
}

.body-dark {
    background-color: #464646;
    color: #fff;
}

a,
button {
    -webkit-transition-property: background, color, border-color;
    transition-property: background, color, border-color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

a,
a:active,
a:focus,
button,
button:active,
button:focus {
    outline: none !important;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
    text-decoration: none;
}

a {
    color: var(--app-accent--color);
}

a:hover {
    color: inherit;
}

.ir {
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

.with-shadow {
    -webkit-box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.075);
    box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.075);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: bold;
}

h1 .icon,
h2 .icon,
h3 .icon,
h4 .icon,
h5 .icon,
h6 .icon,
.h1 .icon,
.h2 .icon,
.h3 .icon,
.h4 .icon,
.h5 .icon,
.h6 .icon {
    margin-right: 6px;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child {
    margin-top: 0;
}

.no-margins {
    margin: 0;
}

.no-paddings {
    padding: 0;
}

.striped-list .stripped-elem:nth-of-type(odd) {
    background-color: #eee;
}

.striped-list .stripped-elem:nth-of-type(odd) hr {
    border-color: #ffffff;
}

i em {
    font-family: Helvetica;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px;
    color: #fff;
    display: inline-flex;
    align-items: end;
    background: #ed1c24;
    border-radius: 10px;
    padding: 0 5px;
    height: 15px;
    position: absolute;
    left: 10px;
    top: -10px;
}

.badge-item-row {
    padding: 3px 8px;
    border-radius: 6px;
    color: #000;
}
