/* modal */
.modal-backdrop.show{ opacity: 0.85 !important }

.modal-header {
    border-bottom: 0px solid #dee2e6;
}

.modal-footer {
    border-top: 0px solid #dee2e6;
}


/* alert */
.alert {
    margin-bottom: 0px;
}

/* cores */
.alert-info {
    color: #0c5460 !important;
    background-color: #d1ecf1 !important;
    border-color: #bee5eb !important;
}
.btn-info {
    color: #fff !important;
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

/* tabela */
.table td, .table th {
    padding: 5px 0px;
    vertical-align: middle;
    border-top: 0px solid #f0f0f0;
    word-break: break-word; 
    text-align: center;
}

.table td.border-left {
    border-left: 1px solid #e9e9e9 !important;
}

.table th.border-left {
    border-left: 1px solid #d9d9d9 !important;
}


/* forçar largura máxima do container em 1140 (igual bootstrap 4) */
@media screen and (max-width: 1199px) {
    .container {
        max-width: 100%;
    }
}
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}


/* remover o contorno azul dos botoes */
.btn {
    font-weight: bold !important;
    font-size: inherit !important;
    line-height: 1em !important;
}
button:focus, button:active, button:hover {
    outline: 0 !important;
    box-shadow: none !important;    
}
.btn:focus, .btn:active, .btn:hover {
    outline: 0 !important;
    box-shadow: none !important;
}
.btn-info {
    color: #ffffff !important;
}


/* remover o contorno azul dos formularios */
.form-control:focus, .form-control:active, .form-control:hover {
    outline: 0 !important;
    box-shadow: none !important;
}

.form-control {
    background-color: #f5f5f5 !important;
}

.form-control::file-selector-button {
    border: 0px solid #fff;
    height: 40px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: bold;
    color: #505050;
    transition: 1s;
}


/* checkbox */
.form-check {    
    display: flex;
    align-items: center;
}

.form-check .form-check-input {
    float: none;
}

.form-check[type=checkbox] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}
    .form-check:hover, .form-check-input:hover, .form-check-label:hover {
        cursor: pointer;
    }
    .form-check-label {
        margin-left: 3px;
    }    
.form-check-input[type=checkbox] {
    margin-top: 0px !important;
    margin-right: 0px !important;
    border-radius: 3px !important;
    height: 20px !important;
    width: 20px !important;
}
.form-check-input[type=radio] {
    margin-top: 0px !important;
    margin-right: 0px !important;
    border-radius: 10px !important;
    height: 20px !important;
    width: 20px !important;
}

.form-check-input:focus {
    box-shadow: none !important;
}


/* retirar a seta do dropdown */
.dropdown-toggle::after {
    display: none !important;
}


/* formularios */
.input-group-text {
    border-radius: 0px;
    font-size: 13px;
    line-height: 13px;
    text-align: left;
    font-weight: bold;
}

.form-control {
    border-radius: 0px;
}


/* form escuro */
.input-group-text-escuro {
    background-color: #3f6f80 !important;
    border: 0px solid #3f6f80 !important;
    color: #ffffff !important;
}

.form-control-escuro {
    background-color: #5f8fa0 !important;
    border: 0px solid #5f8fa0 !important;
    color: #ffffff !important;
}

    .form-control-escuro:focus {
        background-color: #7fafc0 !important;
    }

    .form-control-escuro:-webkit-autofill, .form-control-escuro:-webkit-autofill:hover, .form-control-escuro:-webkit-autofill:focus, .form-control-escuro:-webkit-autofill:active {
        -webkit-text-fill-color: #ffffff !important;
        -webkit-box-shadow: 0 0 0 30px #5f8fa0 inset !important;
        transition: background-color 5000s ease-in-out 0s !important;
    }


.form-check-input {
    background-color: #e9f0f5 !important;
    border: 1px solid #c0c0c0 !important;
}

.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='%23707070' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.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='%2323707070'/%3e%3c/svg%3e") !important;
}

.form-check-input-escuro {
    background-color: #3f6f80 !important;
    border: 1px solid #3f6f80 !important;
}

.form-check-input-escuro: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 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.form-check-input-escuro: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") !important;
}   