/* Flexbox */

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-xs-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xs-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 768px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}


/* html / body */

html,
body {
    height: 100% !important;
}


/* Utility classes */

.p-t-0 {
    padding-top: 0 !important;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.border-t-1 {
    border-top: 1px solid;
}

.border-b-0 {
    border-bottom: 0 !important;
}

.border-light-grey {
    border-color: #dbdbdb;
}

.bg-primary {
    background-color: #00104C !important;
}

.bg-light-grey {
    background-color: #f2f2f2 !important;
}

.btn-primary {
    background-color: #0B6063;
    border-color: #0B6063;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.hover,
.btn-primary:focus {
    background-color: #0B6063;
}

.btn-primary:focus {
    border-color: #b98f00;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-default {
    background-color: #f4f4f4 !important;
    color: #666 !important;
    border-color: #ddd !important;
}

.btn-default:hover,
.btn-default:active,
.btn-default.hover {
    background-color: #e7e7e7 !important;
}

.btn-default.focus,
.btn-default:focus {
    color: #333 !important;
    background-color: #e6e6e6 !important;
    border-color: #8c8c8c !important;
    outline: none !important;
}

@media (max-width: 767px) {
    .p-x-xs-10 {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/* Reset Admin LTE styles */

.alert {
    border-radius: 0;
    margin-bottom: 30px;
}

label {
    color: #737373;
}

.btn {
    border-radius: 0;
}

@media (min-width: 768px) {
    .content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.box-header,
.box-body,
.box-footer {
    padding-left: 0;
    padding-right: 0;
}

.box-header {
    padding-top: 0;
    color: #0B6063;
}

.box-body {
    padding-top: 0;
    padding-bottom: 30px;
}

.box-footer {
    border-top-color: #d2d6de;
    padding-top: 30px;
}

.form-control:hover {
    border-color: #999;
}

.form-control:focus {
    border-color: #0B6063;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0);
}


/* Estilo para el input del formulario de login. Borra el fondo del input */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-animation: autofill 0s forwards;
    animation: autofill 0s forwards;
    color: white;
}

@keyframes autofill {
    100% {
        background: #fff;
        color: rgb(0, 0, 0);
        border: 0.5px solid #0B6063;
    }
}

@-webkit-keyframes autofill {
    100% {
        background: #fff;
        color: rgb(0, 0, 0);
    }
}

@media (max-width: 767px) {
    .navbar-nav>.user-menu .user-image {
        float: left;
        margin-right: 10px;
        margin-top: -2px;
        line-height: 10px;
    }
    .navbar-custom-menu .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.content-header {
    padding: 30px 0 30px 0;
    margin: 0 15px;
    border-bottom: 1px solid #dbdbdb;
}

.content-header>h1 {
    color: #737373;
}

.content {
    padding-top: 30px;
    padding-bottom: 30px;
}

.table {
    margin-bottom: 30px;
}

.nav-tabs-custom {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
    border-radius: 0;
}

.nav-tabs-custom>.nav-tabs {
    background-color: #f2f2f2;
    border-bottom-color: #d2d6de;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.nav-tabs-custom>.nav-tabs>li.active {
    border-top-color: #0B6063;
}

.nav-tabs-custom>.tab-content {
    padding: 30px 0;
}


/* Login Template */

#login-template .main-box {
    height: 100%;
}

#login-template .main-box .content-box {
    flex: 2;
    padding: 0 15px;
}

#login-template .main-box header {
    text-align: center;
    padding: 15px 0;
    color: #fff;
}

#login-template .login-box {
    width: 100%;
    max-width: 400px;
    margin: 0;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 250px;
}

#login-template .login-box h3.title {
    margin: 0;
    margin-bottom: 20px;
}

#login-template .login-box .form-control {
    height: 50px;
    padding: 6px 15px;
}

#login-template .login-box button.btn[type=submit] {
    margin-top: 15px;
}

#login-template .login-box .alert {
    padding-right: 15px;
    text-align: left;
}

#login-template .login-box .alert-dismissible .close {
    right: 0;
}

#login-template .btn {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.075em;
    padding: 18px 40px;
    margin: 0;
    background: transparent;
    text-transform: uppercase;
    border: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#login-template .btn-dark {
    background-color: #333;
    color: #fff;
    border-radius: 0;
}

#login-template .btn-dark:hover {
    background: #0B6063;
    color: #fff;
}


/* General Layout - HEADER */

.navbar-nav>.user-menu>.dropdown-menu>li.user-header {
    height: auto;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-footer {
    padding: 0;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-footer .col {
    width: 50%;
}

.navbar-nav>.user-menu>.dropdown-menu>.user-footer .col .btn {
    width: 100%;
    padding: 10px 12px;
    border: 0;
}


/* General Layout - SIDEBAR MENU */

.main-sidebar .sidebar .sidebar-logo {
    padding: 30px 70px;
    border-bottom: 1px solid #c8c8c8;
}

.sidebar-menu>li {
    border-bottom: 1px solid #ddd;
}

.skin-yellow-light .sidebar-menu>li:hover>a,
.skin-yellow-light .sidebar-menu>li.active>a {
    background: #e6e6e6;
}

.skin-yellow-light .sidebar-menu>li>.treeview-menu {
    background: #e6e6e6;
}

.treeview li:hover {
    background: #CCCBCA;
    /*color:#000000 !important;*/
    /*opacity: 0.3;*/
}

.treeview-menu>li>a {
    border-top: 1px solid #d8d8d8;
    padding: 10px 5px 12px 15px;
    text-transform: none;
}

.sidebar-menu>li.menu-open,
.skin-yellow-light .sidebar-menu>li.menu-open:hover>a,
.skin-yellow-light .sidebar-menu>li.menu-open.active>a {
    background: #d8d8d8;
}


/* General Layout - Content Header */

.content-header .btn {
    margin-left: 5px;
}


/* Filtro buscador */

.content .filter .box-buscar {
    padding-bottom: 55px;
}

.content .filter .box-buscar .input-group span:first-of-type .btn {
    margin-left: 15px;
}

.content .filter .box-buscar .input-group span:nth-of-type(2) .btn {
    margin-left: 5px;
}


/* Tables */

.table .header-tabla .order-column {
    position: relative;
    padding-right: 18px;
    cursor: pointer;
}

.table .header-tabla .order-column .img-sort {
    position: absolute;
    top: 0;
    right: 0;
}

.table-hover>tbody>tr:hover {
    background-color: #e8e8e8 !important;
}

.table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
    border: 1px solid #efefef;
}

.table-striped thead tr {
    background-color: #dcdcdc;
    color: #333;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f5f5f5;
}

.table-bordered>tbody>tr>td {
    vertical-align: middle;
}

.table .btn-actions {
    padding: 0 15px;
    background: transparent;
}

.box-survey tr.bg-darker,
.box-survey tr.bg-darker:hover {
    background-color: #dcdcdc !important;
    color: #333;
}

.box-survey tr.bg-darker-2,
.box-survey tr.bg-darker-2:hover {
    background-color: #bdbdbd !important;
    color: #333;
}

.box-survey label {
    margin-bottom: 0;
}


/* Paginación */

.pagination.resultado {
    font-size: 14px;
}

.pagination .btn {
    padding: 0;
    width: 30px;
    height: 30px;
}

.pagination .page-text {
    margin: 0 10px;
    font-size: 14px;
    /* vertical-align: middle; */
}

.pagination .seleccionar {
    border: 1px solid #ddd;
    font-size: 13px;
    background: #f4f4f4;
    height: 31px;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .pagination {
        width: 100%;
        text-align: center;
    }
    .pagination.pull-left {
        float: none !important;
    }
    .pagination.pull-right {
        float: none !important;
    }
    .pagination.resultado {
        margin-bottom: 15px !important;
    }
}


/* Custom checkboxex */

.box-custom-checkboxes {
    border-left: 1px solid #e5e5e5;
    /* border-top: 1px solid #e5e5e5;  */
}

.box-custom-checkboxes .box-item {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
}

label.custom-checkbox {
    height: 100%;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #626262;
    padding: 10px 15px 10px 50px;
    display: block;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    text-align: left;
    background: #ffffff;
    /* white-space: nowrap; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.custom-checkbox:hover {
    background: #f2f2f2;
}


/* Hide the browser's default checkbox */

label.custom-checkbox input.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

label.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40px;
    padding: 8px 0 0 12px;
    border-right: 1px solid #e5e5e5;
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* On mouse-over, add a grey background color */

label.custom-checkbox:hover input~.checkmark {
    background-color: transparent;
}


/* When the checkbox is checked, add a blue background */

label.custom-checkbox input:checked~.checkmark {
    background-color: transparent;
}


/* Create the checkmark/indicator (hidden when not checked) */

label.custom-checkbox .checkmark:after {
    content: "\f0c8";
    position: absolute;
    color: #d2d6de;
}


/* Show the checkmark when checked */

label.custom-checkbox input:checked~.checkmark:after {
    content: "\f14a";
    color: #3f77fd;
    font-weight: 700;
}

@media (min-width: 1200px) {
    .box-custom-checkboxes .box-item {
        width: 25%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .box-custom-checkboxes .box-item {
        width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-custom-checkboxes .box-item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .box-custom-checkboxes .box-item {
        width: 100%;
    }
}


/* Footer buttons */

.box-footer .btn {
    margin: 0 5px;
}

.box-footer .btn-lg {
    font-size: 16px;
}


/* Dropdowns (selects) reset*/

.bootstrap-select>.dropdown-toggle.btn-info {
    background: #fff;
    color: #555;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.dropdown-toggle.btn-info:hover,
.dropdown-toggle.btn-info:focus,
.dropdown-toggle.btn-info.focus,
.dropdown-toggle.btn-info:active,
.dropdown-toggle.btn-info.active,
.open>.dropdown-toggle.btn-info,
.bootstrap-select>.dropdown-toggle.btn-info.disabled {
    border-color: #999;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    background-color: #0B6063;
}

.dropdown-menu>.active>a span {
    color: #fff;
}

.dropdown-menu>li>a:hover {
    background-color: #f2f2f2;
    color: #555;
}

.bootstrap-select .dropdown-toggle:focus {
    border-color: #0B6063 !important;
    outline: none !important;
}


/* Autocomplete */

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    background-color: #0B6063 !important;
    border: 0 !important;
}


/* Table toolbar */

.table>tbody>tr>td:last-child {
    position: relative;
}

.table-toolbar {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background-color: #e8e8e8;
    height: 100%;
    padding: 0 10px;
    white-space: nowrap;
}

.table-hover>tbody>tr:hover .table-toolbar {
    display: -ms-flexbox;
    display: flex;
}

.table-toolbar .btn {
    line-height: 1;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    padding-top: 7px;
    margin: 0 0;
    color: #666;
}

.table-toolbar .btn:hover {
    background-color: #cfcfcf;
    color: #333;
}

.graph_container {
    display: block;
    width: 800px;
    height: 800px;
}

.sinfondo {
    background-color: transparent
}

.panel-heading {
    font-size: small;
    padding: 7px;
    text-align: center;
}

.encab {
    padding: 0px;
    margin-top: -8px;
}