body {
    background-color: transparent;
    padding: 0px !important;
}

.container-logo {
    max-width: 270px;
    max-height: 270px;
}

.chart-container,
.chart-container-pie {
    height: 520px;
}

/* CSS PARA EL SPIN OVERLAY LOADING */
#loading_overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.68);
    /* Black background with opacity */
    cursor: none;
    /* Add a pointer on hover */
    z-index: 99999;
    /* Specify a stack order in case you're using a different order for other elements */
}

.loading_container {
    position: fixed;
    top: 20%;
    left: 50%;
}

.loading {
    height: 360px;
    position: relative;
    left: -50%;
    animation: rotation 2s infinite linear;
    -webkit-animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        -webkit-transform: rotateY(0deg);
    }

    to {
        -webkit-transform: rotateY(359deg);
    }
}

.loading_container .text {
    font-size: 30px;
    color: #e4e4e3;
    transform: translate(-50%, -10%);
    -ms-transform: translate(-50%, -10%);
    position: absolute;
}

/* puntos en el loading */
.loading_container .text:after {
    content: '.';
    animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        color: rgba(0, 0, 0, 0);
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    40% {
        color: white;
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    60% {
        text-shadow:
            .25em 0 0 white,
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    80%,
    100% {
        text-shadow:
            .25em 0 0 white,
            .5em 0 0 white;
    }
}

/* ./CSS PARA EL SPIN OVERLAY LOADING */

/* 
@media (min-width:320px)  { 
    .chart-container {
        height: 400px;
    }

    .chart-container-pie {
        height: 800px;
    }
} */

@media (min-width:480px) {

    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
    .chart-container {
        height: 350px;
    }

    .chart-container-pie {
        height: 880px;
    }
}

table {
    font-size: 9pt;
}

.table {
    width: 100% !important;
}

.btn-circle.btn-xl {
    width: 70px !important;
    height: 70px !important;
    padding: 10px 16px !important;
    border-radius: 35px !important;
    font-size: 24px !important;
    line-height: 1.33 !important;
}

.btn-circle.btn-lg {
    width: 60px !important;
    height: 40px !important;
    padding: 6px 0px !important;
    border-radius: 20px !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.42857 !important;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px !important;
    border-radius: 15px !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.42857 !important;
}

.select2-container {
    width: 100% !important;
}

textarea {
    resize: none;
}

.disabled-select {
    background-color: #d5d5d5;
    opacity: 0.5;
    border-radius: 3px;
    cursor: not-allowed;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

select[readonly].select2-hidden-accessible+.select2-container {
    pointer-events: none;
    touch-action: none;
}

select[readonly].select2-hidden-accessible+.select2-container .select2-selection {
    background: #eee;
    box-shadow: none;
}

select[readonly].select2-hidden-accessible+.select2-container .select2-selection__arrow,
select[readonly].select2-hidden-accessible+.select2-container .select2-selection__clear {
    display: none;
}

.sidenav-header {
    white-space: nowrap;
    text-overflow: clip;
    font-size: .9rem;
    padding: .5rem;
}

.sidenav-link {
    display: block;
    padding: .5rem 1rem;
    position: relative;
    color: #c2c7d0;
    margin-bottom: .2rem;
    border-radius: .25rem;
}

.sidenav-link p {
    display: inline-block;
    margin: 0;
}

.sidenav-link>p>.right {
    position: absolute;
    right: 1rem;
    top: .7rem;
}

.navbar-badge {
    top: 1 !important;
    font-size: 0.7rem !important;
    font-weight: bold;
}

.swal2-modal {
    min-width: 32em;
    width: auto !important;
}

/* ESTILOS PARA EL MENU DE LA DERECHA */
.nested {
    display: none !important;
}

.showing {
    display: block !important;
}

.control-sidebar {
    width: 325px;
    font-size: 90%;
    overflow: hidden scroll;
}

.control-sidebar li a p {
    color: #c2c7d0;
}

.control-sidebar .nav-pills .nav-link {
    color: #c2c7d0;
}

.sdnvc-title {
    color: #ececec;
    margin-left: 5%;
    font-style: italic;
    font-size: 13px;
}

/* CSS Para ocultar el escrito del boton al hacer collapse al sidebar */

@media (min-width: 992px) {
    .sidebar-mini.sidebar-collapse .sidebar .user-panel button>span {
        margin-left: -80px;
        -webkit-animation-name: fadeOut;
        animation-name: fadeOut;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        visibility: hidden;
    }

    .sidebar-mini.sidebar-collapse .main-sidebar:hover button>span {
        display: inline-block;
        margin-left: 0;
        -webkit-animation-name: fadeIn;
        animation-name: fadeIn;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        visibility: visible;
    }
}

/* CSS Para ocultar el escrito del boton al hacer collapse al sidebar */

/* CSS Para divisores bootstrap */
hr.dashed {
    border-top: 2px dashed #999;
}

hr.dotted {
    border-top: 2px dotted #999;
}

hr.solid {
    border-top: 2px solid #999;
}


hr.hr-text {
    position: relative;
    border: none;
    height: 1px;
    background: #999;
}

hr.hr-text::before {
    content: attr(data-content);
    display: inline-block;
    background: #f4f6f9;
    font-weight: bold;
    font-size: 0.85rem;
    color: #212529;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CSS Para divisores bootstrap */

[class*=icheck-]>input:first-child+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child+label::before {
    border: 1px solid #696969;
    background-color: white;
}

.custom-file-label::after {
    cursor: pointer;
    content: "Buscar" !important;
}


.drag-container {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}

.board {
    position: relative;
    height: initial !important;
}

.board-column {
    transform: initial !important;
    padding: 5px;
    /* position: absolute;
    left: 0;
    top: 0;
    padding: 0 10px;
    width: calc(100% / 3);
    z-index: 1; */
}

.board-column.muuri-item-releasing {
    z-index: 2;
}

.board-column.muuri-item-dragging {
    z-index: 3;
    cursor: move;
}

.board-column-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    /* padding: 8px; */
    box-shadow: 0px -1px 9px 1px rgba(0, 0, 0, 0.32);
    -webkit-box-shadow: 0px -1px 9px 1px rgba(0, 0, 0, 0.32);
    -moz-box-shadow: 0px -1px 9px 1px rgba(0, 0, 0, 0.32);
}

.board-column-header {
    position: relative;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    padding: 0 20px;
    text-align: center;
    background: #333;
    color: #fff;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.board-column.todo .board-column-header {
    background: #4A9FF9;
}

.board-column.working .board-column-header {
    background: #f9944a;
}

.board-column.done .board-column-header {
    background: #2ac06d;
}

.board-column-content-wrapper {
    position: relative;
    padding: 8px;
    background: #f0f0f0;
    height: calc(100vh - 300px);
    overflow-y: auto;
    border-radius: 0 0 5px 5px;
}

.board-column-content {
    position: relative;
    min-height: 100%;
}

.board-item {
    position: absolute;
    width: calc(100% - 16px);
    margin: 8px;
}

.board-item.muuri-item-releasing {
    z-index: 9998;
}

.board-item.muuri-item-dragging {
    z-index: 9999;
    cursor: move;
}

.board-item.muuri-item-hidden {
    z-index: 0;
}

.board-item-content {
    position: relative;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    -webkit-box-shadow: 0px 1px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 3px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .board-item-content {
        text-align: center;
    }

    .board-item-content span {
        display: none;
    }
}

@media (min-width: 768px) {
    .modal-xxl {
        width: 95%;
        max-width: 1200px;
    }
}

.tableFixHead {
    overflow: auto;
    height: 100px;
}

.tableFixHead thead th, .tableFixHead thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}