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, input, textarea, 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;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

textarea, input, a {
    outline: none;
}

/*------------------------*/

html, body {
    height: 100%;
}

body {
    background: #f3f3f4;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #676a6c;
    position: relative;
}

a {
    text-decoration: none;
    color: #555;
}

strong {
    font-weight: bold;
}

/*------------------------*/

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 25px;
}

.clear {
    clear: both;
}

.clearfix, .container {
    *zoom: 1;
}

.clearfix:before, .clearfix:after, .container:before, .container:after {
    display: table;
    content: "";
    line-height: 0;
}

.container:after, .clearfix:after {
    clear: both;
}

.hide-text {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}

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

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

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

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

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.hand {
    cursor: pointer;
}

.nbsp {
    white-space: nowrap;
}

.pre {
    white-space: pre-wrap;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.affix {
    position: fixed;
}

.flex {
    display: flex;
}

.noscroll {
    overflow: hidden;
}

.ajax-loading {position: fixed; top: 50%; left: 50%; width: 32px; height: 32px; margin: -16px 0 0 -16px; background: url(loading.gif) no-repeat; display: none; z-index: 999; }
.ajax-loading.active {display:block;}

/*
.ajax-loading {
    display: none;
    z-index: 999;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.loading-inner {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ajax-loading.active {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
}
*/

/* Labels and Badges */
.label {
    background-color: #d1dade;
    color: #5e5e5e;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    text-shadow: none;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.badge {
    background-color: #d1dade;
    color: #5e5e5e;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-shadow: none;
    display: inline-block;
    min-width: 10px;
    padding: 2px 7px;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 10px;
}

.label-primary, .badge-primary {
    background-color: #1ab394;
    color: #FFFFFF;
}

.label-success, .badge-success {
    background-color: #3c763d;
    color: #FFFFFF;
}

.label-warning, .badge-warning {
    background-color: #c09853;
    color: #FFFFFF;
}

.label-warning-light, .badge-warning-light {
    background-color: #c09853;
    color: #ffffff;
}

.label-danger, .badge-danger {
    background-color: #b94a48;
    color: #FFFFFF;
}

.label-info, .badge-info {
    background-color: #3a87ad;
    color: #FFFFFF;
}

.label-inverse, .badge-inverse {
    background-color: #262626;
    color: #FFFFFF;
}

.label-white, .badge-white {
    background-color: #FFFFFF;
    color: #5E5E5E;
}

.label-white, .badge-disable {
    background-color: #2A2E36;
    color: #8B91A0;
}

.text-warning {
    color: #c09853 !important;
}

.text-danger {
    color: #b94a48 !important;
}

.text-success {
    color: #3c763d !important;
}

.text-info {
    color: #3a87ad !important;
}

.text-disable {
    color: #8B91A0 !important;
}

.text-bold {
    font-weight: 900 !important;
}

.text-small {
    font-size: 10px;
}

/* ICONS */
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* GRID */
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    background: #d1ab66;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn:hover {
    background: #c69239;
}

.btn:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.btn-white {
    background: #fff;
    color: #333;
    border: 1px solid #e7eaec;
}

.btn-white:hover {
    border: 1px solid #d2d2d2;
    background: #fff;
}

.btn-danger {
    background: #b94a48;
    color: #fff;
    border: 1px solid #b94a48;
}

.btn-danger:hover {
    background: #b94a48;
    color: #fff;
    border: 1px solid #b94a48;
}

.btn-clean {
    border: none;
    color: #333;
    background: none;
    padding: 0
}

.btn-clean:hover {
    border: none;
    color: #000;
    background: none;
}

.btn-mn {
    font-size: 12px;
    padding: 5px 7px;
}

.btn-sm {
    font-size: 13px;
    padding: 7px 10px;
}

.btn-md {
    font-size: 14px;
    padding: 8px 10px;
}

.btn[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* TABLES */
table {
    background-color: transparent;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table thead tr th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
    font-weight: 900;
}

.table tr td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
    vertical-align: middle;
}

.table-stripped > tbody > tr {
    background-color: #e9e9e9;
}

.table-stripped > tbody > tr:nth-child(2n) {
    background-color: #e1e1e1;
}

.table tbody tr:hover, .table-stripped tbody tr:nth-child(2n):hover {
    background: #f5f5f5;
}

.first td {
    border-top: none !important;
}


.table tfoot tr th {
    padding: 18px 8px 8px 8px;
    font-weight: 700;
    font-size: 12px;
    color: #777;
}

.table-view tr td {
    border: none;
}

.table tbody tr th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    font-weight: 900;
    text-align: right;
}

.table-compact thead tr th {
    padding: 4px;
}
.table-compact tr td {
    padding: 2px;
}


.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-error {
    background-color: #f2dede;
    border-color: #eed3d7;
    color: #b94a48;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bcdff1;
    color: #31708f;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faf2cc;
    color: #8a6d3b;
}

/*------------------------*/
/* Tailwind-based classes */

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }
.flex-shrink { flex-shrink: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

.w-0 { width: 0px }
.w-1 { width: 0.25rem }
.w-2 { width: 0.5rem }
.w-3 { width: 0.75rem }
.w-4 { width: 1rem }
.w-5 { width: 1.25rem }
.w-6 { width: 1.5rem }
.w-7 { width: 1.75rem }
.w-8 { width: 2rem }
.w-9 { width: 2.25rem }
.w-10 { width: 2.5rem }
.w-11 { width: 2.75rem }
.w-12 { width: 3rem }
.w-14 { width: 3.5rem }
.w-16 { width: 4rem }
.w-20 { width: 5rem }
.w-auto { width: auto }
.w-full { width: 100%; }
.w-half { width: 50%; }
.h-1 { height: 1px; }
.h-0 { height: 0px }
.h-1 { height: 0.25rem }
.h-2 { height: 0.5rem }
.h-3 { height: 0.75rem }
.h-4 { height: 1rem }
.h-5 { height: 1.25rem }
.h-6 { height: 1.5rem }
.h-7 { height: 1.75rem }
.h-8 { height: 2rem }
.h-9 { height: 2.25rem }
.h-10 { height: 2.5rem }
.h-11 { height: 2.75rem }
.h-12 { height: 3rem }
.h-14 { height: 3.5rem }
.h-16 { height: 4rem }
.h-20 { height: 5rem }

.mb-0 { margin-bottom: 0px }
.mb-1 { margin-bottom: 0.25rem }
.mb-2 { margin-bottom: 0.5rem }
.mb-3 { margin-bottom: 0.75rem }
.mb-4 { margin-bottom: 1rem }
.mb-5 { margin-bottom: 1.25rem }

.mr-0 { margin-right: 0px }
.mr-1 { margin-right: 0.25rem }
.mr-2 { margin-right: 0.5rem }
.mr-3 { margin-right: 0.75rem }
.mr-4 { margin-right: 1rem }
.mr-5 { margin-right: 1.25rem }

.ml-0 { margin-left: 0px }
.ml-1 { margin-left: 0.25rem }
.ml-2 { margin-left: 0.5rem }
.ml-3 { margin-left: 0.75rem }
.ml-4 { margin-left: 1rem }
.ml-5 { margin-left: 1.25rem }


/*------------------------*/

#wrap {
    width: 100%;
    min-width: 960px;
}


#sidebar {
    width: 220px;
    position: fixed;
    left: 0;
    top: 0;
    background: #7e1b37;
    bottom: 0;
    display: flex;
    flex-direction: column;
}



#sidebar h1 {
    margin: 0 0 0 -4px;
    z-index: 1000;
    padding: 20px 15px;
    flex-shrink: 0;
}

#sidebar h1 img {
    width: 100%;
    height: auto;
}

#side-menu {
    flex-grow: 1;
    overflow: auto;
}

#side-menu li {
}

#side-menu li a {
    color: #fff;
    font-weight: 600;
    padding: 18px 14px 18px 15px;
    display: flex;
    line-height: 1.2;
    align-items: center;
}

#side-menu li a:hover {
    background: #65162c;
    color: #fff;
}

#side-menu li a:hover .fa {
    color: #fff;
}

#side-menu li a i {
    margin-right: 6px;
}

#side-menu li ul {
    padding: 0 0 12px 0;
}

#side-menu li ul li a {
    display: block;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px 10px 37px;
}

#side-menu li.active {
    background: #65162c;
    border-left: 4px solid #d1ab66;
    color: #fff;
}

#side-menu li.active > a {
    color: #fff;
}

#side-menu li.active a {
    padding: 18px 14px 18px 11px;
}

#side-menu li.active .fa {
    color: #fff;
}

#side-menu li.active ul li a {
    display: block;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px 10px 33px;
}

#side-menu .fa {
    color: #fff;
    width: 12px;
    text-align: center;
}


/*------------------------*/

#page-wrapper {
    margin: 0 0 0 220px;
}

#top {
    border-bottom: 5px solid #e7eaec;
    height: 46px;
    position: relative;
}

.logout {
    padding: 15px 26px;
    display: block;
    float: right;
    font-weight: 600;
    color: #aaa;
}

.logout:hover {
    color: #444;
}

#page-header {
    background: #fff;
    padding: 22px 25px;
    border-bottom: 1px solid #e7eaec;
}

#page-header h2 {
    font-size: 24px;
    font-weight: 100;
    float: left;
    line-height: 30px;
}

#page-header i {
    margin: 0 6px 0 0;
}

#page-header .action-group {
    float: right;
}

#page-container {
    padding: 24px;
}

/*------------------------*/

.box {
    background: #fff;
    border-top: 4px solid #e7eaec;
    margin-bottom: 24px;
}

.box-header {
    padding: 15px;
    border-bottom: 1px solid #e7eaec;
    font-weight: 600;
    font-size: 14px;
}

.box-header .action-group {
    float: right;
}

.box-header .action-group .btn {
    float: right;
    padding: 3px 5px;
    font-size: 10px;
    margin: 0 0 0 4px;
}

.box-content {
    padding: 15px;
}

.tabbed-box {
}

.tabbed-box .box-header {
    padding: 5px 5px 0 5px;
}

.tabbed-box .box-header .btn {
    float: right;
    margin-top: 5px;
}

.tabbed-box .box-header .tab {
    padding: 15px;
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.tabbed-box .box-header .tab.active {
    border: 1px solid #f1f1f1;
    border-bottom: 1px solid #fff;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    margin-bottom: -1px;
}

.tabbed-box .box-content {
    padding: 0 5px 5px 5px;
}

.tabbed-box .box-content .tab-content {
    display: none;
    padding: 15px 0 0;
    border-bottom: 1px solid #f1f1f1;
}

.tabbed-box .box-content .tab-content.active {
    display: block;
}

.tabOptions {
    position: absolute;
    top: 100%;
    left: calc(100% - 40px);
    width: 100px;
    padding: 10px;
    background: #d1ab66;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
    z-index: 2;
}

.tabOptions:before {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 100%;
    border-bottom: 10px solid #d1ab66;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.tabbed-box .box-header .tabOptions .btn {
    float: none;
    width: 100%;
    margin-top: 5px;
}


form .row {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 15px;
    vertical-align: middle;
}

.form-group:after {
    clear: both;
    display: block;
    content: " ";
}

.form-group label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
    font-weight: bold;
}

input[type=text], input[type=password], input[type=email], input[type=number], input[type=tel], input[type=date], textarea, select {
    background-color: #FFFFFF;
    background-image: none;
    border: 1px solid #e5e6e7;
    border-radius: 1px;
    color: inherit;
    display: block;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
    height: 33px;
}

textarea {
    min-height: 100px;
}

.form-group .form-control-static {
    padding-top: 7px;
}

.form-group .checkbox, .form-group .radio {
    padding: 5px 0;
}

.form-group .checkbox label, .form-group .radio label {
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    margin: 0 20px 0 0;
}

.form-group label.checkbox {
    padding-left: 20px;
}

.form-group input[type=radio], .form-group input[type=checkbox] {
    position: absolute;
    margin: 1px 0 0 -20px;
    line-height: normal;
}
.no-absolute-cb {
	position: relative !important;
	margin: 1px 0 0 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.my-2 {
	margin: 2px 0;
}
.my-5 {
	margin: 5px 0;
}

.hr-dashed {
    border-top: 1px dashed #e7eaec;
    color: #ffffff;
    background-color: #ffffff;
    height: 1px;
    margin: 20px 0;
}

.input-lg, form .input-lg {
    line-height: 1.33;
    height: 46px;
}

.input-sm, form .input-sm { /* line-height:1; height:23px;*/
}

.input-inline, form .input-inline {
    display: inline-block;
    width: auto;
    float: none;
    margin: 0 8px;
}

fieldset {
    background: #f0f0f0;
    margin-bottom: 15px;
    margin-top: 30px;
}

fieldset legend {
    background: #f0f0f0;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 17px;
}

.fieldset-juros-multa {
    background-color: #FFE8E8;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 5px;
}


/* hr { border:none; border-top: 1px dashed #e7eaec; color: #ffffff; background-color: #ffffff; height: 1px; margin: 20px 0;} */

.brvfinder-select {
    min-width: 200px;
    background: #fff;
    border-left: 4px solid #d1ab66;
    position: absolute;
    top: 26px;
    margin: 0 0 0 12px;
    z-index: 1000;
    font-size: 11px;
    -webkit-box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.2);
}

.brvfinder-select div {
    padding: 10px 20px 10px 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}

.brvfinder-select div:hover {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    color: #000;
}

.brvfinder-select div:active {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #e9e9e9;
}

.brvfinder-select div.new {
    font-style: italic;
    margin: 12px 0 0 0;
}

.config-list {
    padding: 0 16px;
}

.config-list li {
    border-bottom: 1px solid #ddd;
    line-height: 24px;
}

.config-list .lvl-1 {
}

.config-list .lvl-2 {
    padding: 0 0 0 12px;
}

.config-list .lvl-3 {
    padding: 0 0 0 24px;
}

.config-edit {
    float: right;
    font-size: 11px;
    display: none;
}

.config-list li:hover > .config-edit {
    display: block;
}

.bravosel-select {
    background: #fff;
    padding: 5px;
}

.bravosel-option.sel {
    background-color: #eee;
}


.categorias > div {
    background: #f1f1f1;
    margin-bottom: 10px;
    padding: 5px;
}


.modal {
    z-index: 998;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    overflow: auto;
}

.modal-full .modal-dialog {
    width: 90%;
}

.modal-fullscreen .modal-dialog {
    width: 100%;
    max-width: 100%;
}

.modal.active {
    display: block;
}

.modal-dialog {
    position: relative;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    width: 900px;
    max-width: 90%;
}

.modal-title {
    padding: 15px;
    border-bottom: 1px solid #e7eaec;
    font-weight: 600;
    font-size: 14px;
}

.modal-dialog > .modal-cancel {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.modal-content {
    padding: 15px;
}

.modal-middle.modal-active {
    display: flex;
    align-items: center;
    justify-content: center;
}


.travar_valor {
    position: absolute;
    top: 18px;
    left: 18px;
    cursor: pointer;
    opacity: 0.1;
    -moz-opacity: 0.1;
    filter: alpha(opacity=10);
}

.travar_valor.lock {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
}

th .travar_valor {
    position: static;
    margin: 0 5px 0 10px;
}


.login-page {
    margin: 0 auto !important;
    width: 400px;
    margin: 100px auto !important;
    background: #fff;
    padding: 30px;
    border-top: 4px solid #e7eaec;
}

.logo-login-htcb {
    height: 104px;
    background: url(../images/logo-login-htcb.png) no-repeat center;
    display: block;
    text-indent: -9999px;
    margin: 0 0 30px 0;
}

/* v-cloak */
[v-cloak] {
    display: none;
}

.html {
    font-size: 1em;
    border: 1px solid #f5f5f5;
}

.html h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

.html h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

.html h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

.html h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

.html h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

.html h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

.html p {
    margin: 1em 0;
}

.html em {
    font-style: italic;
}

.html strong {
    font-weight: bold;
}

.html ul, ol {
    margin: 1em 0;
    padding-left: 40px;
}

.html ul {
    list-style-type: disc;
}

.html ul ul {
    padding-left: 0;
    list-style-type: circle;
}

.html ol {
    list-style-type: decimal;
}

.html ol ol {
    list-style-type: decimal;
}


/*------------------------*/
.mce-menu {
    position: fixed !important;
}

.mce-tooltip {
    position: fixed !important;
}

/*------------------------*/

.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    zoom: 1;
    *display: inline;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.chosen-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    width: 100%;
    border: 1px solid #aaa;
    border-top: 0;
    background: #fff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15)
}

.chosen-container.chosen-with-drop .chosen-drop {
    left: 0
}

.chosen-container a {
    cursor: pointer
}

.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 3px 12px;
    border: 1px solid #e5e6e7;
    background-color: #fff;
    background-clip: padding-box;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 24px
}

.chosen-container-single .chosen-default {
    color: #999
}

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px
}

.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(chosen-sprite.png) -42px 1px no-repeat;
    font-size: 1px
}

.chosen-container-single .chosen-single abbr:hover {
    background-position: -42px -10px
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
    background-position: -42px -10px
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 3px;
    right: 0;
    display: block;
    width: 14px;
    height: 100%
}

.chosen-container-single .chosen-single div b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(chosen-sprite.png) no-repeat 0 2px
}

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap
}

.chosen-container-single .chosen-search input[type=text] {
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #aaa;
    background: #fff url(chosen-sprite.png) no-repeat 100% -20px;
    background: url(chosen-sprite.png) no-repeat 100% -20px;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0
}

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px
}

.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 240px;
    -webkit-overflow-scrolling: touch
}

.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 5px 6px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none
}

.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer
}

.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default
}

.chosen-container .chosen-results li.highlighted {
    background-color: #3875d7;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
    background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
    background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
    background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
    background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
    color: #fff
}

.chosen-container .chosen-results li.no-results {
    color: #777;
    display: list-item;
    background: #f4f4f4
}

.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: 700;
    cursor: default
}

.chosen-container .chosen-results li.group-option {
    padding-left: 15px
}

.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline
}

.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: auto !important;
    height: 1%;
    border: 1px solid #aaa;
    background-color: #fff;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(#eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(#eee 1%, #fff 15%);
    background-image: -o-linear-gradient(#eee 1%, #fff 15%);
    background-image: linear-gradient(#eee 1%, #fff 15%);
    cursor: text
}

.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none
}

.chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    margin: 1px 0;
    padding: 0;
    height: 25px;
    outline: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none;
    color: #999;
    font-size: 100%;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0
}

.chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 3px 20px 3px 5px;
    border: 1px solid #aaa;
    max-width: 100%;
    border-radius: 3px;
    background-color: #eee;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-size: 100% 19px;
    background-repeat: repeat-x;
    background-clip: padding-box;
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, .05);
    color: #333;
    line-height: 13px;
    cursor: default
}

.chosen-container-multi .chosen-choices li.search-choice span {
    word-wrap: break-word
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    position: absolute;
    top: 4px;
    right: 3px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(chosen-sprite.png) -42px 1px no-repeat;
    font-size: 1px
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
    background-position: -42px -10px
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    color: #666
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
    background: #d4d4d4
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
    background-position: -42px -10px
}

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0
}

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default
}

.chosen-container-active .chosen-single {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3)
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #aaa;
    -moz-border-radius-bottomright: 0;
    border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-left-radius: 0;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #eee), color-stop(80%, #fff));
    background-image: -webkit-linear-gradient(#eee 20%, #fff 80%);
    background-image: -moz-linear-gradient(#eee 20%, #fff 80%);
    background-image: -o-linear-gradient(#eee 20%, #fff 80%);
    background-image: linear-gradient(#eee 20%, #fff 80%);
    box-shadow: 0 1px 0 #fff inset
}

.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: 0;
    background: transparent
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 2px
}

.chosen-container-active .chosen-choices {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3)
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
    color: #222 !important
}

.chosen-disabled {
    opacity: .5 !important;
    cursor: default
}

.chosen-disabled .chosen-single {
    cursor: default
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default
}

.chosen-rtl {
    text-align: right
}

.chosen-rtl .chosen-single {
    overflow: visible;
    padding: 0 8px 0 0
}

.chosen-rtl .chosen-single span {
    margin-right: 0;
    margin-left: 26px;
    direction: rtl
}

.chosen-rtl .chosen-single-with-deselect span {
    margin-left: 38px
}

.chosen-rtl .chosen-single div {
    right: auto;
    left: 3px
}

.chosen-rtl .chosen-single abbr {
    right: auto;
    left: 26px
}

.chosen-rtl .chosen-choices li {
    float: right
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
    direction: rtl
}

.chosen-rtl .chosen-choices li.search-choice {
    margin: 3px 5px 3px 0;
    padding: 3px 5px 3px 19px
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
    right: auto;
    left: 4px
}

.chosen-rtl.chosen-container-single-nosearch .chosen-search, .chosen-rtl .chosen-drop {
    left: 9999px
}

.chosen-rtl.chosen-container-single .chosen-results {
    margin: 0 0 4px 4px;
    padding: 0 4px 0 0
}

.chosen-rtl .chosen-results li.group-option {
    padding-right: 15px;
    padding-left: 0
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
    border-right: 0
}

.chosen-rtl .chosen-search input[type=text] {
    padding: 4px 5px 4px 20px;
    background: #fff url(chosen-sprite.png) no-repeat -30px -20px;
    background: url(chosen-sprite.png) no-repeat -30px -20px;
    direction: rtl
}

.chosen-rtl.chosen-container-single .chosen-single div b {
    background-position: 6px 2px
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
    background-position: -12px 2px
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
    .chosen-rtl .chosen-search input[type=text], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search input[type=text], .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span {
        background-image: url(chosen-sprite@2x.png) !important;
        background-size: 52px 37px !important;
        background-repeat: no-repeat !important
    }
}


.toastr {
    width: 300px;
    padding: 20px;
    background: #66cc66;
    color: #fff;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.toastr-error {
    background: #cc3333;
}


.pagination {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    margin: 10px;
}

.pagination ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}

.pagination li {
    padding: 2px;
    margin: 0 2px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 3px;
    min-width: 20px;
    text-align: center;
    background: #fff;
}

.pagination li.active {
    font-weight: bold;
}


.content-html li + li {
    margin-top: 0.25em;
}

.content-html p:not(:last-child),
.content-html ol:not(:last-child),
.content-html ul:not(:last-child),
.content-html blockquote:not(:last-child),
.content-html table:not(:last-child) {
    margin-bottom: 1em;
}

.content-html h1,
.content-html h2,
.content-html h3,
.content-html h4,
.content-html h5,
.content-html h6 {
    color: #363636;
    font-weight: 400;
    line-height: 1.125;
}

.content-html h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.content-html h1:not(:first-child) {
    margin-top: 1em;
}

.content-html h2 {
    font-size: 1.75em;
    margin-bottom: 0.5714em;
}

.content-html h2:not(:first-child) {
    margin-top: 1.1428em;
}

.content-html h3 {
    font-size: 1.5em;
    margin-bottom: 0.6666em;
}

.content-html h3:not(:first-child) {
    margin-top: 1.3333em;
}

.content-html h4 {
    font-size: 1.25em;
    margin-bottom: 0.8em;
}

.content-html h5 {
    font-size: 1.125em;
    margin-bottom: 0.8888em;
}

.content-html h6 {
    font-size: 1em;
    margin-bottom: 1em;
}

.content-html blockquote {
    background-color: whitesmoke;
    border-left: 5px solid #dbdbdb;
    padding: 1.25em 1.5em;
}

.content-html ol {
    list-style: decimal outside;
    margin-left: 2em;
    margin-right: 2em;
    margin-top: 1em;
}

.content-html ul {
    list-style: disc outside;
    margin-left: 2em;
    margin-right: 2em;
    margin-top: 1em;
}

.content-html ul ul {
    list-style-type: circle;
    margin-top: 0.5em;
}

.content-html ul ul ul {
    list-style-type: square;
}

.content-html table {
    width: 100%;
}

.content-html table td,
.content-html table th {
    border: 1px solid #dbdbdb;
    border-width: 0 0 1px;
    padding: 0.5em 0.75em;
    vertical-align: top;
}

.content-html table th {
    color: #363636;
    text-align: left;
}

.content-html table tr:hover {
    background-color: whitesmoke;
}

.content-html table thead td,
.content-html table thead th {
    border-width: 0 0 2px;
    color: #363636;
}

.content-html table tfoot td,
.content-html table tfoot th {
    border-width: 2px 0 0;
    color: #363636;
}

.content-html table tbody tr:last-child td,
.content-html table tbody tr:last-child th {
    border-bottom-width: 0;
}

.anexo-item {
    display: inline-block;
    background: #fff;
    background-size: 15px;
    padding: 15px 10px 15px 10px;
    margin: 0 10px 10px 0;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
    width: 400px;
    line-height: 1.2;
}

.anexo-item + .excluir {
    color: #c00;
}


.linkazul {
    color: #33e;
    cursor: pointer;
}

table.fases {
    width: 100%;
}

table.fases.collapsed > tbody > tr:not(:first-child) {
    display: none;
}

.fases .hr-dashed {
    border-color: #ccc;
    background: transparent;
}


.fase-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    white-space: nowrap;
    margin-bottom: 10px;
}

.fase-info > div {
    margin: 0 3px;
}

table.fases th {
    font-weight: bold;
}

.fase-header {
}

.fase-header th { /* border:1px solid #ccc; */
    padding: 5px;
    border-bottom: 1px solid #333;
    text-align: center;
    vertical-align: middle;
}

.fase-body {
}

.fase-body:nth-child(2n) {
    background: #e8e8e8;
}

.fase-body td { /* border:1px solid #ccc; */
    padding: 5px;
    text-align: center;
}

.fase-body td:first-child {
    text-align: left;
}

.fase-body td:first-child input {
    width: 100%;
    min-width: 300px;
}

.fase-body select {
    width: auto;
    display: inline-block;
    padding: 6px 12px;
    -webkit-appearance: none;
    appearance: none;
    background: #f8f8f8;
    cursor: pointer;
    text-align: center;
}

.fase-body .color- {
}

.fases .colorV {
    color: #0c0;
}

.fases .colorE {
    color: #d00;
}

.fases .colorC {
    color: #000;
}

.flag1 {
    color: #999;
}

.flag2 {
    color: #fc6;
}

.flag3 {
    color: #f00;
}

.flag4 {
    color: #00f;
}

.flag1:after {
    content: '⚐';
}

.flag2:after {
    content: '⚑';
}

.flag3:after {
    content: '⚑';
}

.flag4:after {
    content: '⚑';
}


.fase-footer {
    white-space: nowrap;
}

.fase-footer td {
    padding: 5px 0;
}

.fase-footer .btn-acoes {
    width: 100%;
    width: calc(100% - 38px);
    margin: 0 5px;
}

.fase-footer input, .fase-footer select {
}

.mensagem-resumo a {
    color: #33e;
    text-decoration: underline;
    cursor: pointer;
}

.fase-conservatoria { /* display:flex; *//* flex-grow: 1; *//* max-width: 70%; *//* align-items: flex-start; */
    margin-bottom: 5px;
    padding: 10px;
    background: #e5e5e5;
}

.fase-conservatoria label {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e7eaec;
    padding: 7px 10px;
    font-weight: 400;
    height: 33px;
}

.fase-conservatoria label input {
    margin-right: 5px;
}

.fase-conservatoria .form-group {
    margin: 0 3px;
}

.fase-conservatoria h5 {
    margin-right: 10px;
    display: flex;
    align-items: center;
    width: 100px;
    white-space: normal;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.2;
}


.fases fieldset legend {
    border-bottom: none;
    text-align: left;
    padding: 0;
}

table.fase-mensagens {
    width: 100%;
    margin-bottom: 10px
}

table.fase-mensagens th:nth-child(1) {
    width: 130px;
}

table.fase-mensagens th:nth-child(2) {
    width: 200px;
}

table.fase-mensagens th:nth-child(3) {
}

table.fase-mensagens th:nth-child(4) { /* width:200px; */
}

table.fase-mensagens th {
    border: 1px solid #ccc;
    padding: 5px;
    border-bottom: 1px solid #333;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

table.fase-mensagens td {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
    white-space: pre-wrap;
    vertical-align: top;
}

table.fase-mensagens td p {
}


.mensagem {
    margin-bottom: 20px;
}

.mensagem-header {
    padding: 0 0 10px 0;
}

.mensagem-body {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.mensagem-body p {
    margin-bottom: 1em;
}

.mensagem-body ol {
    padding-left: 2em;
    list-style: decimal outside
}

.mensagem-body li {
    margin-top: 0.25em;
}

.mensagem-footer {
    padding: 0 10px;
    display: inline-block;
}

.mensagem-resposta + .mensagem-footer {
    padding-left: 70px
}

.mensagem-header a {
    color: #33e;
    cursor: pointer;
}

.mensagem-footer a {
    color: #33e;
    cursor: pointer;
}

.mensagem-entregas {
}

.hl {
    background: #ff0;
    padding: 2px 0;
}

.mensagem-resposta {
    margin: 10px 0 10px 60px;
}

.mensagem-responder {
    padding: 0 10px;
}

.mensagem-responder textarea {
    margin-bottom: 5px;
    border: 1px solid #ccc;
    width: 100%;
}

.nova-mensagem {
    margin-bottom: 10px;
}

.nova-mensagem textarea {
    margin-bottom: 5px;
    border: 1px solid #ccc;
    width: 100%;
}

.minhas-mensagens .mensagem-body {
    background: #f1f1f1;
}


.fase-container {
    padding: 0 15px;
    /*background: #fff;*/
    /*box-shadow: 2px 2px 5px rgba(0,0,0,.2);*/
    margin-bottom: 20px;
    margin-top: 20px;
}

.fase-info {
    display: flex; /* font-size: 16px; */
    margin-bottom: 20px;
    border-bottom: 1px dashed #999;
    padding-bottom: 20px;
}

.fase-info strong {
    margin-right: 5px;
}

.fase-info > div {
    margin-right: 10px;
}

.fase-info > div:last-child {
    margin-right: 0;
}

.fase-info strong.center {
    display: block;
    text-align: center;
}

.bulkoptions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
    text-align: center;
    z-index: 2;
}

.bulkoptions h5 {
    font-weight: bold;
    white-space: normal;
    margin-bottom: 5px;
}

.bulkoptions-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    flex-direction: column;
    align-items: center;
}

.bulkoptions-buttons span {
    width: 30px;
    height: 30px;
    border: 1px solid #eee;
    text-align: center;
    cursor: pointer;
    line-height: 28px;
}

.bulkoptions-buttons label {
    display: flex;
    align-items: center;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e7eaec;
    padding: 7px 10px;
    color: #333;
    font: 400 13.3333px Arial;
    font-size: 13px;
    margin-bottom: 5px;
    text-align: left;
}

.bulkoptions-buttons label input {
    margin-right: 5px;
}

.bulkoptions-buttons button {
    margin-bottom: 5px;
}

.bulkoptions-buttons-horizontal {
    flex-direction: row;
}

.fases .bulkoptions { 
    left:auto;
}


.etapas {
    display: flex;
    margin-bottom: 50px;
}

.etapa {
    background: #fff;
    position: relative;
    border: 1px solid #999;
    width: 50px;
    height: 50px;
    border-radius: 200px;
    flex-shrink: 0;
    margin: 0 -2px;
}

.etapa span {
    position: absolute;
    top: 110%;
    text-align: center;
    left: -20px;
    right: -20px;
}

.etapa-separator {
    position: relative;
    top: 19px;
    height: 12px;
    flex-grow: 1;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    background: #fff;
    z-index: 2;
    border-color: inherit;
}

.etapa i {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 14px;
    left: 14px;
    background: hsla(120, 100%, 35%, 1);
    border-radius: 200px;
}

.abas ul {
    display: flex;
}

.abas ul li {
    flex: 1;
    background: #f0f0f0;
    color: #7e1b37;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 2px;
    font-size: 13px;
}

.abas ul li.active {
    background: #7e1b37;
    color: #fff;
}

.aba-conteudo {
    display: none;
}

.aba-conteudo.active {
    display: block;
}


.bloco-fase {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
    margin-bottom: 50px;
}

.bloco-fase .btn-toggle {
    float: right;
    background: transparent;
    color: #7e1b37;
    border: 1px solid #999;
}

.bloco-fase .btn-toggle-hide {
    background: transparent;
    color: #999;
    border: 1px solid #999;
}

.table-processos-col-contratos {
    max-width: 150px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.detalhes-mensagem-colaboradores {
}

.detalhes-mensagem-colaboradores h3 {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
}

.detalhes-mensagem-colaboradores ul {
    list-style: disc;
    margin: 0 0 30px 20px;
}

.backtop {
    position: fixed;
    bottom: 10px;
    right: 20px;
    padding: 10px;
    background: #7e1b37;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    display: none;
    z-index: 2;
}


.ico-whatsapp {
    background: url(../images/ico-whatsapp.png) no-repeat center;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    vertical-align: middle;
}

.check {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #999;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
}

.check.checked:after {
    content: '✓';
}


.search-fields {
    flex-grow: 1;
    margin-right: 40px
}

.search-fields .form-group {
    flex: 1;
}

.search-actions {
}

.reforco-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}


#menu_state { display:none; }
#toggle_menu { display:none; }
@media (max-width: 767px) {
	#toggle_menu { display:block;
		position:absolute;
		top: 0;
		right: -40px;
		padding: 14px;
		width:40px;
		height:40px;
		box-shadow: 1px 1px 3px rgba(0,0,0,.2);
		background:#7e1b37;
		color:#fff;
	 }
	#sidebar {
		left:-220px;
		transition:.3s;
		z-index:40;
	}
    #menu_state:checked + #sidebar{ left:0; }
	#page-wrapper { margin-left:0; }
	#page-container{ padding:10px 0; }

}
