.logo-center {
    display: flexbox;
    justify-content: center;
    align-items: center;
}
h2 {
    font-size: 16px;
    font-weight: 600;
    color: #888;
}
.color-red {
    color: red;
}
.space10 {
    margin-top: 10px;
}
.space20 {
    margin-top: 20px;
}
.space30 {
    padding-top: 30px;
}
.space40 {
    padding-top: 40px;
}
.space60 {
    padding-top: 60px;
}

.btn-small {
    width: 5%;
}
.btn-plus {
    cursor: pointer;
    height: 24px;
    width: 24px;
    color: #FFF;
    background-color: #00bcd4;
    border-radius: 50%;
    padding: 8px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-plus i {
    font-size: 18px;
    line-height: 1;
}
.btn-plus:focus,.btn-plus:hover {
    color: #FFF;
}
.content {
    margin-top: 40px;
}

.space2 {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .content {
        margin-top: 40px;
    }
}

input[type="checkbox"].css-checkbox {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

input[type="checkbox"].css-checkbox + label.css-label {
    padding-left: 22px;
    height: 18px;
    display: inline-block;
    line-height: 18px;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 18px;
    vertical-align: middle;
    cursor: pointer;
}

input[type="checkbox"].css-checkbox:checked + label.css-label {
    background-position: 0 -18px;
}
label.css-label {
    /*background-image:url(http://csscheckbox.com/checkboxes/u/csscheckbox_314a66eb1641f8832a7ada19bbf96697.png);*/
    background-image: url("../images/csscheckbox.png");
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
}

/*
 Styling
*/

.tabset > label {
    position: relative;
    display: inline-block;
    padding: 15px 15px 25px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
}

.tabset > label::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 10px;
    width: 22px;
    height: 4px;
    background: #8d8d8d;
}

.tabset > label:hover,
.tabset > input:focus + label {
    color: #06c;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
    background: #06c;
}

.tabset > input:checked + label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

.tab-panel {
    padding: 20px 0 10px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

/* TABS 2 */
.box-tab {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
}

.tab {
    cursor: pointer;
    padding: 10px 25px;
    margin: 0px -1px;
    background: #fff;
    color: #28ccd0;
    border-radius: 0;
    display: inline-block;
    border-top: 1px solid #28ccd0;
}

.tab:checked {
    background-color: #06c;
}

.tabs {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: initial;
    width: 20%;
    top: 0;
}

.panels {
    background: #fff;
    min-height: 260px;
    width: 80%;
    border-radius: 3px;
    overflow: hidden;
    padding: 20px;
}

.panel {
    display: none;
    animation: fadein 0.8s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab-title {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    font-size: 1.5em;
    font-weight: bold;
}

.radio {
    display: none;
}

#a0:checked ~ .panels #tab-0,
#a1:checked ~ .panels #tab-1,
#a2:checked ~ .panels #tab-2,
#a3:checked ~ .panels #tab-3,
#a4:checked ~ .panels #tab-4,
#a5:checked ~ .panels #tab-5,
#a6:checked ~ .panels #tab-6,
#a7:checked ~ .panels #tab-7,
#a8:checked ~ .panels #tab-8,
#a9:checked ~ .panels #tab-9,
#a10:checked ~ .panels #tab-10,
#a11:checked ~ .panels #tab-11,
#a12:checked ~ .panels #tab-12,
#a13:checked ~ .panels #tab-13,
#a14:checked ~ .panels #tab-14,
#a15:checked ~ .panels #tab-15,
#a16:checked ~ .panels #tab-16,
#a17:checked ~ .panels #tab-17 {
    display: block;
}

#a0:checked ~ .tabs #tab-0,
#a1:checked ~ .tabs #tab-1,
#a2:checked ~ .tabs #tab-2,
#a3:checked ~ .tabs #tab-3,
#a4:checked ~ .tabs #tab-4,
#a5:checked ~ .tabs #tab-5,
#a6:checked ~ .tabs #tab-6,
#a7:checked ~ .tabs #tab-7,
#a8:checked ~ .tabs #tab-8,
#a9:checked ~ .tabs #tab-9,
#a10:checked ~ .tabs #tab-10,
#a11:checked ~ .tabs #tab-11,
#a12:checked ~ .tabs #tab-12,
#a13:checked ~ .tabs #tab-13,
#a14:checked ~ .tabs #tab-14,
#a15:checked ~ .tabs #tab-15,
#a16:checked ~ .tabs #tab-16,
#a17:checked ~ .tabs #tab-17 {
    background: #28ccd0;
    color: #fff;
}
/* FIM TABS 2 */

.btn-no-radius {
    border-radius: 0px;
}

.lnk-orange {
    color: darkorange;
}
.lnk-orange:hover,
.lnk-orange:focus {
    color: orange;
}
.lnk-red {
    color: red;
}
.lnk-red:hover,
.lnk-red:focus {
    color: tomato;
}

.round-red {
    height: 14px;
    width: 14px;
    background-color: red;
    border-radius: 50% 50%;
}
.round-green {
    height: 14px;
    width: 14px;
    background-color: #33c411;
    border-radius: 50% 50%;
}

.line-back {
    border-bottom: 1px solid #ddd;
}
.small-table thead tr th {
    background-color: #fff;
    font-weight: 400;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}
.small-table tbody tr td {
    font-size: 1rem;
    background-color: #fff;
    font-weight: 400;
    font-size: 12px;
}

.links {
    color: #333;
    font-weight: 500;
}
.links:hover {
    color: #888;
    font-weight: 500;
}
.school {
    color: dodgerblue;
    font-weight: 500;
    font-size: 16px;
}
.wrapper-table {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.col-data {
    width: 15%;
}

#table_list_filter {
    float: right;
}

/* CONJUNTO FLEX */
.linha-flex-left {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    padding: 0;
    margin: 10px 0 0 10px;
    height: 60px;
    border-radius: 10px;
}
.linha-flex-left.cor {
    background-color: #e6f0f7;
}
.wrapper-line {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}
.line-top-block {
    height: 20px;
    justify-content: center;
    display: flex;
    padding: 5px 10px;
}
.line-bottom-block {
    height: 40px;
    padding: 0 10px;
    justify-content: center;
    display: flex;
}
.block-fields {
    margin: 0 10px 0 10px;
}
.larg10 {
    width: 40px;
}
.larg50 {
    width: 15%;
}

/* FORM CONTROL */
.form-control {
    display: block;
    width: 100%;
    padding: 0.6875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #a098ae;
    background-color: #fff; /* #e6ebee;*/
    background-clip: padding-box;
    background-size: 0; /*0 100%, 100% 100%;*/
    border: 1px solid #ddd;
    appearance: none;
    border-radius: 0.625rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}
.form-control[type="file"] {
    overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control:focus {
    color: #a098ae;
    background-color: #f7f7f7;
    border-color: #a6a2da;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(77, 68, 181, 0.25);
}
.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}
.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}
.form-control::file-selector-button {
    padding: 0.6875rem 1.25rem;
    margin: -0.6875rem -1.25rem;
    margin-inline-end: 1.25rem;
    color: #a098ae;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.6875rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #a098ae;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}
.form-control-plaintext:focus {
    outline: 0;
}
.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0;
}

.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.76563rem;
    border-radius: 0.625rem;
}
@media (min-width: 1200px) {
    .form-control-sm {
        font-size: 0.76562rem;
    }
}
.form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem;
}

.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    border-radius: 0.625rem;
}
.form-control-lg::file-selector-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem;
}

textarea.form-control {
    min-height: calc(1.5em + 1.375rem + 2px);
}

textarea.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
    width: 3rem;
    height: calc(1.5em + 1.375rem + 2px);
    padding: 0.6875rem;
}
.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control-color::-moz-color-swatch {
    border: 0 !important;
    border-radius: 0.625rem;
}
.form-control-color::-webkit-color-swatch {
    border-radius: 0.625rem;
}
.form-control-color.form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
}
.form-control-color.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.6875rem 3.75rem 0.6875rem 1.25rem;
    -moz-padding-start: calc(1.25rem - 3px);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #a098ae;
    background-color: #e6ebee;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px 12px;
    border: 1px solid #f2f2f2;
    border-radius: 0.625rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .form-select {
        transition: none;
    }
}
.form-select:focus {
    border-color: #a6a2da;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(77, 68, 181, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-right: 1.25rem;
    background-image: none;
}
.form-select:disabled {
    background-color: #e9ecef;
}
.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #a098ae;
}

.form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.76563rem;
    border-radius: 0.625rem;
}
@media (min-width: 1200px) {
    .form-select-sm {
        font-size: 0.76562rem;
    }
}

.form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.09375rem;
    border-radius: 0.625rem;
}

.form-check {
    display: block;
    min-height: 1.3125rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.form-check-reverse {
    padding-right: 1.5em;
    padding-left: 0;
    text-align: right;
}
.form-check-reverse .form-check-input {
    float: right;
    margin-right: -1.5em;
    margin-left: 0;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #e6ebee;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    appearance: none;
    print-color-adjust: exact;
}
.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
}
.form-check-input[type="radio"] {
    border-radius: 50%;
}
.form-check-input:active {
    filter: brightness(90%);
}
.form-check-input:focus {
    border-color: #a6a2da;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(77, 68, 181, 0.25);
}
.form-check-input:checked {
    background-color: #4d44b5;
    border-color: #4d44b5;
}
.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
    background-color: #4d44b5;
    border-color: #4d44b5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
    cursor: default;
    opacity: 0.5;
}

.form-switch {
    padding-left: 2.5em;
}
.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-switch .form-check-input {
        transition: none;
    }
}
.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23a6a2da'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
    padding-right: 2.5em;
    padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
    margin-right: -2.5em;
    margin-left: 0;
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
.btn-check[disabled] + .btn,
.btn-check:disabled + .btn {
    pointer-events: none;
    filter: none;
    opacity: 0.65;
}

.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    appearance: none;
}
.form-range:focus {
    outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #e6ebee, 0 0 0 0.25rem rgba(77, 68, 181, 0.25);
}
.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #e6ebee, 0 0 0 0.25rem rgba(77, 68, 181, 0.25);
}
.form-range::-moz-focus-outer {
    border: 0;
}
.form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #4d44b5;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .form-range::-webkit-slider-thumb {
        transition: none;
    }
}
.form-range::-webkit-slider-thumb:active {
    background-color: #cac7e9;
}
.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #4d44b5;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .form-range::-moz-range-thumb {
        transition: none;
    }
}
.form-range::-moz-range-thumb:active {
    background-color: #cac7e9;
}
.form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.form-range:disabled {
    pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}

.form-floating {
    position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}
.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 1.25rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-floating > label {
        transition: none;
    }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    padding: 1rem 1.25rem;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
    color: transparent;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
    border-width: 1px 0;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
    z-index: 5;
}
.input-group .btn {
    position: relative;
    z-index: 2;
}
.input-group .btn:focus {
    z-index: 5;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.6875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #a098ae;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #f2f2f2;
    border-radius: 0.625rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    border-radius: 0.625rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.76563rem;
    border-radius: 0.625rem;
}
@media (min-width: 1200px) {
    .input-group-sm > .form-control,
    .input-group-sm > .form-select,
    .input-group-sm > .input-group-text,
    .input-group-sm > .btn {
        font-size: 0.76562rem;
    }
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-right: 5rem;
}

.input-group:not(.has-validation)
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(
        .form-floating
    ),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
    > .form-floating:not(:last-child)
    > .form-control,
.input-group:not(.has-validation)
    > .form-floating:not(:last-child)
    > .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group.has-validation
    > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu):not(
        .form-floating
    ),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation
    > .form-floating:nth-last-child(n + 3)
    > .form-control,
.input-group.has-validation
    > .form-floating:nth-last-child(n + 3)
    > .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group
    > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
        .valid-feedback
    ):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.label-linha {
    color: #000000;
}

/* Botão de controle para linhas de tabela */
.btn-control {
    display: inline-block;
    padding: 0.15rem 0.25rem;
    font-size: 0.7rem;
    line-height: 1.1;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-control:hover,
.btn-control:focus {
    text-decoration: none;
    outline: 0;
}

.btn-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-control:disabled,
.btn-control.disabled {
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-control:not(:disabled):not(.disabled):active {
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-control i,
.btn-control .material-icons {
    font-size: 0.875rem;
    line-height: 1;
    vertical-align: middle;
}

/* Variantes de cores */
.btn-control.sucesso {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-control.sucesso:hover,
.btn-control.sucesso:focus {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-control.sucesso:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.btn-control.sucesso:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-control.info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-control.info:hover,
.btn-control.info:focus {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.btn-control.info:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.btn-control.info:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-control.primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-control.primary:hover,
.btn-control.primary:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-control.primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-control.primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-control.warning {
    color: #FFFFFF;
    background-color: #ff9800;
    border-color: #ff9800;
}

.btn-control.warning:hover,
.btn-control.warning:focus {
    color: #E7E7E7;
    background-color: #f08f00;
    border-color: #f08f00;
}

.btn-control.warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn-control.warning:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-control.danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-control.danger:hover,
.btn-control.danger:focus {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-control.danger:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-control.danger:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-control.default {
    color: #212529;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-control.default:hover,
.btn-control.default:focus {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-control.default:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}

.btn-control.default:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}

/* Responsividade */
@media (max-width: 768px) {
    .btn-control {
        padding: 0.15rem 0.4rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .btn-control {
        padding: 0.1rem 0.3rem;
        font-size: 0.65rem;
    }
}

/* TIMELINE */
.wrapper-timeline {
    width: 100%;
    height: 100%;
    padding: 2% 5%;
    background-color: #f5f5f5;
}

titulo {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}
