@charset "UTF-8";

/* visibilidade */
.show {
    display: block;
}
.hide {
    display: none;
}

/* animacao */
.fade-in {
    animation: fadeIn ease 0.5s;
    -webkit-animation: fadeIn ease 0.5s;
    -moz-animation: fadeIn ease 0.5s;
    -o-animation: fadeIn ease 0.5s;
    -ms-animation: fadeIn ease 0.5s;
}
@keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@-moz-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@-o-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
@-ms-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
/* fim animacao */

/* formulario */
/* margem */
.m-r-4{
    margin-right: 4px !important;
}
.m-rb-4{
    margin-right: 4px !important;
    margin-bottom: 4px !important;
}
.m-b-4{
    margin-bottom: 4px !important;
}
.m-l-4{
    margin-left: 4px !important;
}
.m-l-5{
    margin-left: 5px !important;
}

/* datatable header*/
.b_header{
    margin: 2px 4px 2px 0px !important;
}

/*texto*/
.bold-4{
    font-weight: 400;
}
.bold-5{
    font-weight: 500;
}
.bold-6{
    font-weight: 600;
}
.no-bold{
    font-weight: normal;
}
.no-margin{
    margin: 0 !important;
}
h4.no-margin{
    margin: 0 !important;
}
.italic{
    font-style: italic;
}
.underline{
    text-decoration: none;
}
.underline:hover{
    text-decoration: underline !important;
}
.title-4{
    font-size: 1.5rem !important;
}
.title-5{
    font-size: 1.25rem !important;
}

.title-6{
    font-size: 1rem !important;
}


/*bordas */
.bd-b {
    border-width: 0;
    border-bottom-width: 1px;
}
.bd-gray {
    border-style: solid;
    border-color: #ddd;
}

/* padding */
.p-b-10{
    padding-bottom: 10px !important;
}

/*filterStyle*/
.filter-text{
    width: 100%;
    font-size: 12px !important;
    padding: 4px 4px !important;
}

.no-fluid{
    width: auto !important;
}

.no-padding{
    padding: 0 !important;
}

.no-hiperlink{
    text-decoration:none !important;
}

.parcelamento{
    background: #F7F7F8;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 4px 10px 10px;
}

.recebimentos{
    background-color: #EEF5FF !important;
}

.m-s {
    margin: 20px;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.alert {
    padding: 15px;
    /* margin-bottom: 20px; */
    border: 1px solid transparent;
    border-radius: 4px;
}

/* titulos */
.total h5{
    margin: 0;
}
.total-text{
    font-size: 1.2rem;
    font-weight: 400;
}

.customer-badge {
    font-size: 10px !important;
}
/* TAG */
.secondary.ui-tag {
    background: lightgray;
    color: #69707A;
}

/* remove cor do link, e deixa a cor padão */
.ui-link .remove-color {
    color: var(--text-color) !important;
}