.padding select.form-control {
    padding: 6px 12px;
}

select {
    padding: 6px 12px;
}

.custom-select {
    padding: 0px 35px;
}

.custom-selectGrid {
    width: 100%; /* O select ocupa toda a largura da célula */
    padding: 4px; /* Ajuste no espaçamento interno */
    text-align: center; /* Centraliza o texto no select */
    text-align-last: center; /* Centraliza o texto selecionado (para navegadores compatíveis) */
    box-sizing: border-box; /* Inclui padding e borda no tamanho total */
    background-color: #fff; /* Fundo branco para o select */
    border: 1px solid #ccc; /* Adiciona uma borda ao select */
    padding-bottom: 10px;
    font-size: 8pt;
    padding-bottom: 6px;
    padding-top: 8px;

}

    /* Adiciona estilo ao foco no select */
    .custom-selectGrid:focus {
        border-color: #007bff; /* Muda a cor da borda ao focar */
        outline: none; /* Remove o contorno padrão */
    }


.padding0 {
    padding: 0;
}

.padding-left0 {
    padding-left: 0;
}

.padding-right0 {
    padding-right: 0;
}

.width-btn {
    width: 6.333333%;
}

.fileinput {
    width: 100%;
}

    .fileinput .close {
        padding-top: 1px;
        position: inherit;
        float: right;
    }

.fileinput-exists i {
    font-size: 8pt;
}

.files-name {
    padding-top: 5px;
}

.files div:first-child {
    padding-top: 0;
}

.fileinput-filename {
    padding: 0px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 3px;
}

.btn.fileinput-exists {
    padding: 0 4px;
}

.checkbox label, .radio label {
    padding-top: 2px;
}

/*upload*/
.progress {
    background-color: transparent;
}

/* chosen */
.chosen-container {
    background-color: #fff;
    border: lightgray solid;
    border-width: 1px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    height: 30px !important;
    width: 100% !important;
}

    .chosen-container .chosen-default {
        height: 30px;
    }

        .chosen-container .chosen-default span {
            margin-top: 2px;
            font-size: 10pt;
            padding-left: 10px;
            color: black;
        }

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    height: 30px;
    margin: -1px 0;
    padding-left: 10px;
}

.chosen-container-single .chosen-search input[type=text] {
    padding-left: 20px;
}

.chosen-container-single .chosen-single span {
    padding-left: 10px;
    margin-right: 0;
}

.chosen-container-single .chosen-search {
    margin: 4px;
}

.chosen-container-multi .chosen-choices li.search-choice {
    margin: 3px;
    padding: 4px 25px 5px 7px;
}

    .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
        top: 5px;
    }

.chosen-container-single:before {
    margin-right: 9px;
    z-index: 0;
}

.has-error .chosen-container:after {
    background: none;
}
/*
.chosen-container:after {
    background: none;
}
*/

.chosen-container-multi .chosen-choices {
    /*border-bottom: none;*/
}

.chosen-container-single .chosen-single {
    /*border-bottom: none;*/
}

/*modal*/
/*.modal-footer {
    padding: 23px 0px 26px;
}*/

.showbox {
    position: absolute;
    top: 30%;
    height: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5%;
    z-index: 999999999;
}

.loader {
    position: relative;
    margin: 0px auto;
    width: 100px;
}

    .loader:before {
        content: '';
        display: block;
        padding-top: 100%;
    }

.circular {
    -webkit-animation: rotate 2s linear infinite;
    -moz-animation: rotate 2s linear infinite;
    -o-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    -moz-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    -o-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

.body-op {
    width: 100%;
    height: 100%;
    background-color: white;
    -moz-opacity: 0.6;
    opacity: 0.6;
    z-index: 99999;
    position: absolute;
}

.cabecalho {
    margin: 20px 0 10px 0;
    font: bold 14pt Arial, Helvetica, sans-serif;
    color: #2b3763;
    font-size: 22px;
}

.form-group.cc-linked-search {
    margin-bottom: 7px;
}

.modal .modal-header {
    padding: 23px 26px 0px 26px;
}

.modal-footer {
    padding-right: 27px;
}

.form-group {
    margin-bottom: 0px;
}

.btn-success:focus {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #2196F3;
}

.ui-grid-filter-select {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.btn-modal-submit {
    left: 84px;
}

.btn-modal-close {
    right: 100px;
}

.col-sm-1-5 {
    width: 10%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.tooltip-inner {
    text-align: left;
    white-space: pre-wrap;
    max-width: none;
}
