/* body{
    font-family: 'Open Sans', sans-serif;
}
.cursor-pointer{
    cursor: pointer;
}

label{
    font-size: .8rem;
    color: #9e9e9e;
}

textarea{
    resize: none!important;
} */

@import url('https://fonts.googleapis.com/css?family=Poppins');
@import url('https://fonts.googleapis.com/css?family=Hind:300');
/********************************STYLE PAGINA WEB************************************/
/****************SCROLL************/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
    background: #888; 
}

::-webkit-scrollbar-thumb:hover {
    background: #174791; 
}
::-webkit-scrollbar-thumb:active {
    background: #174791; 
}

ul.pagination>li, button {
    margin: 3px;
    background-color: #174791;
    color: #ffffff;
    border-radius: 5px;
}

ul.pagination>li, button:hover {
    background-color: #ffffff;
    color: #174791;
}
/*********BOTONES*********/
.botones .kc_button {
    font-size: 15px;
    font-weight: 600;
    background-color: #ffffff;
    color: #174791 !important;
    padding: 8px 15px;
    border: 2px solid #174791;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.botones .kc_button-cancel {
    font-size: 15px;
    font-weight: 600;
    background-color: #ffffff;
    color: #F44336 !important;
    padding: 8px 15px;
    border: 2px solid #F44336;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.botones .kc_button:hover,
.botones .kc_button:active,
.botones .kc_button:focus {
    color: #ffffff !important;
    background-color: #174791;
    border: 2px solid #ffffff;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    outline: 0;
}

.botones .kc_button-cancel:hover,
.botones .kc_button-cancel:active,
.botones .kc_button-cancel:focus {
    color: #ffffff !important;
    background-color: #F44336;
    border: 2px solid #ffffff;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    outline: 0;
}
/****************SELECT, INPUT, TEXTAREA****************/
select.form-control:focus,select.form-control:active{
    box-shadow: 0 0 0 0.05rem #174791;
}
input.form-control:focus,input.form-control:active{
    box-shadow: 0 0 0 0.05rem #174791;
}
input.custom-file:focus,input.custom-file:active{
    box-shadow: 0 0 0 0.05rem #174791;
}
textarea.form-control:focus,textarea.form-control:active{
    box-shadow: 0 0 0 0.05rem #174791;
}
/**********TEXTOS************/
p{
   font-family: 'Hind', sans-serif;
    font-size: 16px;
    color: #848484;
    line-height: 26px;
    font-weight: 300;
}
/**********TITULOS************/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #222222;
    margin: 0;
}

h1{
	font-weight: 500;
	line-height: 1.1;
    font-size: 36px;
}

.kc_title{
	text-align: center;
    padding-bottom: 20px;
}
/***************ENLACES****************/
a{
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 15px;
    color: #174791;
}

a:hover,a:focus,a:active{
    text-decoration: none;
}
/****************TABLA*****************/
iframe{
    overflow-Y: scroll; 
}

table{
    color: #848484;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    overflow: auto;
}

table>thead{
    font-family: 'Poppins', sans-serif;
    color: #222222;
    font-size: 14px;
}

label{
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    color: #9e9e9e;
}
/**************ANIMACION FADEINUP***************/
@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0);
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0);
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.animated-up{
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

/**************ANIMACION FADEINDOWN***************/
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}
    
@keyframes fadeInDown {
    0% {
        opacity: 0;
        /* transform: translateY(-20px); */
        transform: translate3d(0,-40px,0);
    }
    100% {
        opacity: 1;
        /* transform: translateY(0); */
        transform: translate3d(0,0,0);
    }
}

.animated-down {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
/********************************END STYLE PAGINA WEB************************************/
/************SWAL STYLE*************/
.loading {
    display: flex;
    justify-content: center;
    margin-bottom: -1rem;
  }
.loading div {
    width: 1rem;
    height: 1rem;
    margin: 2rem 0.3rem;
    border-radius: 50%;
    -webkit-animation: 0.9s bounce-new infinite alternate;
    animation: 0.9s bounce-new infinite alternate;
}
.loading div:nth-child(2) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.loading div:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
@keyframes bounce-new {
    to {
        opacity: 0.3;
        -webkit-transform: translate3d(0, -1rem, 0);
        transform: translate3d(0, -1rem, 0);
    }
}
.loading-swal .swal2-content>.lds-dual-ring {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.default-background{
    background-color: #174791;
}
@media only screen and (max-width: 1024px){
 .style-modal-default {
    width: 80%;
  }
}
/****************BOTON INFO EMPLEADOS****************/
#headingOne button.btn-link{
    text-decoration: none;
    color: #174791;
    font-weight: 600;
    letter-spacing: 0.5px;
}
/****************BOTON ADJUNTAR ARCHIVO****************/
.custom-file-label::after{
    content: "Clic" !important;
    /* color: #ffffff !important; */
    /* background-color: #174791 !important; */
}

/********************************STYLE JULIO************************************/
.hover-item-list:hover {
    background-color: #d6d6d6;
}
.c-pointer {
    cursor: pointer!important;
}
.styleIconSearch{
    position: absolute;
    top: 45px;
    right: 25px;
    color: #174791;
}
.style-btn-close {
   position: absolute;
   width: 50px;
   font-size: 50px;
   right: 0px;
   top: -10px;
}
.style-modal-default {
    width: 50%;
    margin: 0 auto;
    padding-top: 100px;
}
.style-table-default {
    height: 350px;
    overflow: auto;
}
.arr{
    background-color: rgba(86, 167, 234, 0.26);
}
.green-text {
    color: #4CAF50 !important;
}
.red-text {
    color: #F44336 !important;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #fff;
    opacity: 1;
}

.progress-new {
    margin: 100px auto;
}

.progress-new img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

ul {
    text-align: center;
}

ul li {
    display: inline-block;
    width: 250px;
    position: relative;
}


ul li .fas {
    background: #ccc;
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    padding: 5px;
}

ul li .fas::after {
    content: '';
    background-color: #ccc;
    height: 5px;
    width: 255px;
    display: block;
    position: absolute;
    left: 0;
    top: 133px;
    z-index: -1;
}

ul li .fas.current {
    background: #148e14;
}

ul li .fas.current::after {
    background: #148e14;
}

ul li .fas.error {
    background: #c80303;
}

ul li .fas.error::after {
    background: #c80303;
}

.table1,
.table1 tr th,
.table1 tr td {
    /* border: .5px solid black; */
    border-collapse: collapse;
    font-size: 10px;
    border-spacing: 0 0 !important;
    color:black
    /* display: none; */
}
/********************************END STYLE JULIO************************************/
