html {
    height: 100%;
}

body {
    height: 100%;
}

body {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

body, ul, li {
    margin: 0;
}

ul, li {
    list-style: none;
    padding: 5px;
}

form, ul, li, .cleanButton {
}

.ghost {
    pointer-events: none;
}

.blk, .form label > * {
    display: block;
}

:focus {
    outline: 5px auto -webkit-focus-ring-color;
}

.abs, .abs-c > * {
    position: absolute;
}

.rel, .rel-c > * {
    position: relative;
}

.fix, .fix-c > * {
    position: fixed;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.no-select, .n-s {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

.fl, .fl-c > * {
    float: left;
}

.fr, .fr-c > * {
    float: right;
}

.inline, .inline-c > * {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
}

.inline-c > * {
    font-size: 0;
}

.spacer {
    clear: both;
    float: none !important;
    height: auto !important;
    width: auto !important;
}

.margin-center {
    margin-right: auto;
    margin-left: auto;
}

.text-center {
    text-align: center;
}

.text-center > * {
    text-align: left;
}

.text-right {
    text-align: right;
}

a:link {
    text-decoration: none;
    cursor: pointer;
}

.underline {
    text-decoration: underline !important;
}

.hUnderline:hover {
    text-decoration: underline !important;
}

.bigger {
    font-size: 1.2em;
}

.justify {
    text-align: justify;
}

.cleanButton {
    background: none;
    cursor: pointer;
}

img, .cleanButton {
    border: 0;
}

dl, dd, dt, .cleanButton {
    margin: 0
}

dd {
    margin-left: 15px
}

.form label > * {
    width: 100%;
}

.form label {
    padding-right: 4px;
    margin-left: 10px;
}

.form label:first-child {
    margin-left: 0;
}

.form label.select {
    padding-right: 0;
}

.form label.select select {
    float: left;
    padding: 1px;
    margin-top: 0;
}

.form fieldset {
    padding: 10px 7px
}

.vertical-n, .vertical-n + * {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.vertical-n {
    vertical-align: middle !important;
    height: 100% !important;
    width: 0 !important;
    border: 0 !important;
}

.vertical-n + *, .vertical-c > * {
    vertical-align: middle;
}

.fill-w, .fill-parent {
    width: 100%;
}

.fill-h, .fill-parent {
    height: 100%;
}

.f0 {
    font-size: 0;
}

/* Dynamic Build */

.d-box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.d-box.orient-v {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.d-box.center-v {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.d-box.center-h {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.d-box > .flex {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.d-box > .flex-2 {
    -ms-flex: 2;
    -webkit-flex: 2;
    flex: 2;
}

/* Form area base */
.form-area .form-item > label, .form-area .form-item > .label {
    display: block;
    /*padding-right: 0 !important;*/
}

.form-area .form-item:not(.where-hidden) + .form-item {
    padding-left: 0;
}

.form-area .form-item > label > *, .form-area .form-item > .label > * {
    display: block;
    width: 100%;
    margin-top: 5px;
}

.form-area .form-item > label > *:first-child, .form-area .form-item > .label > *:first-child {
    padding: 0 0 2px;
    color: #777;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.form-area .group + .group {
    /*box-shadow: none;*/
}

.form-area .form-item > label input[type=date] {
    padding: 7px;
    -webkit-appearance: none;
}

textarea,
select,
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="password"] {
    font-family: monospace;
    background-color: rgba(39, 132, 160, 0.04);
    padding: 8px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, .1);
    box-sizing: border-box;
    transition: border .2s ease;
}

select {
    padding-top: 4px;
    padding-bottom: 4px;
}

input[type="date"],
input[type="time"] {
    padding-top: 4px;
    padding-bottom: 4px;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="password"]:focus {
    outline: none;
    border: 1px solid #ef4039;
}

.form-item.disabled .label > *:first-child,
.form-item.disabled label > *:first-child {
    opacity: .6;
}

textarea.disabled,
select.disabled,
input[type="text"].disabled,
input[type="number"].disabled,
input[type="tel"].disabled,
input[type="date"].disabled,
input[type="time"].disabled,
input[type="password"].disabled {
    border-style: dashed;
    opacity: .7;
}

.form-text-hidden {
    color: transparent !important;
}

.checkArea input:before {
    display: none !important;
}

.checkArea > * {
    display: block;
}

.checkArea label > * {
    display: inline-block;
    vertical-align: text-top;
}

.checkArea label {
    display: block;
    background: rgba(0, 0, 0, .03);
    font-size: .9em;
    line-height: 160%;
    padding: 3px 5px 0;
    height: 23px;
    border: solid 1px #ccc;
    border-radius: 3px;
}

.checkArea > * + * {
    margin-left: 8px;
}

.uppercase {
    text-transform: uppercase;
}

.onPrint {
    display: none;
}

.mac-os .grid-list > header > .area {
    padding-right: 0 !important;
}

body:after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background: url("../../resource/image/salgados-fritos.jpg") center center no-repeat;
    background-size: cover;
    opacity: 0.008;
    pointer-events: none;
}

.card-block {
    -webkit-box-shadow: 0 14px 18px -15px rgba(0, 0, 0, 0.40);
    -moz-box-shadow: 0 14px 18px -15px rgba(0, 0, 0, 0.40);
    box-shadow: 0 14px 18px -15px rgba(0, 0, 0, 0.40);
    background-color: white;
}

.card-block + .card-block:not(.glued) {
    margin-top: 12px;
}