/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Jan 10, 2021, 9:07:25 AM
    Author     : rcanales
*/

.modal .fade .in {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.nav-tabs {
    padding-left: 15px;
    margin-bottom: 0;
    border: none;
}

.tab-content {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}

.ui-autocomplete
{
    position:absolute;
    cursor:default;
    z-index:1500 !important
}

.ui-autocomplete-loading {
    background:url("../image/ui-anim_basic_16x16.gif") no-repeat right center
}

.loading {
    z-index: 20;
    position: absolute;
    top: 0;
    left:-5px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.loading-content {
    position: absolute;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 40%;
    left:50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .table-responsive .dropdown-menu {
        position: static !important;
    }
}

@media (min-width: 768px) {
    .table-responsive {
        overflow: visible;
    }
}
