ul.trilha {
    display: inline-flex;
}

ul.trilha>li:not(:last-child):after {
    content: '>';
    margin: 0 0.2rem;
    color: silver;
}

a[disabled=""],
a[disabled="disabled"] {
    pointer-events: none;
}

.select2-search>textarea {
    border: 0 !important;
}

.select2-search>textarea:focus {
    border: 0 !important;
}

input,
select,
textarea {
    border: 1px solid var(--input-border) !important;
    padding: 6px;

}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    border: 1px solid #ff3c00 !important;
    outline: 1px solid rgb(202, 150, 107)
}

:focus-visible {
  outline: 1px solid rgb(202, 150, 107);
}

.ti-form-input {
  display: block;
  border-color: rgb(244, 67, 54);
  width: 100%;
  border-width: 1px;
  font-size: 0.875rem;
}

.icon-left {
    margin-left: 9px;
}

.icon-right {
    margin-right: 9px;
}

.notice {}

.notice.red {
    background-color: rgb(255, 111, 111);
    color: #fff;
}

.notice.red a {
    color: #cbc5ff;
}

.notice.orange {
    background-color: rgb(255, 185, 86);
    color: #fff;
}

.notice.orange a {
    color: #5b45f7;
}

.notice.yellow {
    background-color: #ffce73;
    color: #fff;
}

.notice.yellow a {
    color: #5b45f7;
}

.notice.blue {
    background-color: rgb(98, 98, 247);
    color: #fff;
}

.notice.blue a {
    color: #5b45f7;
}

.notice.green {
    background-color: rgb(192, 255, 192);
    color: #464646;
}

.notice.green a {
    color: #5b45f7;
}

.notice.grey {
    background-color: rgb(89, 89, 89);
    color: #fff;
}

.notice.grey a {
    color: #5b45f7;
}


.notice.light-grey {
    background-color: rgb(205, 205, 205);
    color: #333;
}

.notice.light-grey a {
    color: #5b45f7;
}

.notice.light {
    background-color: rgb(240, 240, 240);
    border: 1px solid silver;
    color: #464646;
}

.view-list {
    list-style: none;
}


.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}

.pointer {
    cursor: pointer;
}

.text-blue {
    color: #5b45f7
}

.card-flex {
    display: flex;
    gap: 6px;
}

.card-flex.label-block label {
    display: block;
    font-weight: 900;
}

.card-flex div {
    border: 1px solid silver;
    border-radius: 6px;
    padding: 12px;

}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}


.flex-wrap {
    flex-wrap: wrap;
}

.icon-stack {
    position: relative;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
}

.icon-stack-left {
    left: 0;
}

.icon-stack-right {
    left: 30%;
}

.icon-stack-1x,
.icon-stack-2x,
.icon-stack-3x {
    position: absolute;
    width: 100%;
    text-align: right;
}

.icon-stack-1x {
    line-height: inherit;
}

.icon-stack-2x {
    font-size: 1.5em;
}

.icon-stack-3x {
    font-size: 2em;
}

.deleted {
    text-decoration: line-through;
    color: grey;
}


.text-muted {
    color: #8c9097;
}

.text-muted {
    font-weight: 900;
}


.progress-bar {
    min-width: 124px;
    background-color: rgb(161, 161, 161);
    border-radius: .3rem;
    height: 18px;
    position: relative;
}

.progress-bar-inline {
    display: inline-flex;
}

.progress-bar-text {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    color: #F1f1f1;
    text-wrap: nowrap;
}

.progress-bar-text.center {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.progress-bar-load {
    height: 100%;
    background-color: rgb(58, 166, 255);
}

.link {
    color: rgb(var(--secondary));
    text-decoration: none;
    cursor: pointer;
}

.select2-container {
  border-radius: 6px;
}