@import url('https://fonts.googleapis.com/css?family=Poppins');
.fa-check{
    color: green;
    font-size: 20px;
}

.fa-times{
    color: red;
    font-size: 20px;
}

/****************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;
    padding: 8px 15px;
    border: 2px solid #174791;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.botones .kc_button:hover, .botones .kc_button:active, .botones .kc_button:focus {
    color: #ffffff;
    background-color: #174791;
    border: 2px solid #ffffff;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    outline: 0;
}

/****************SELECT****************/
select.form-control:focus,select.form-control:active{
    box-shadow: 0 0 0 0.05rem #174791;
}


/***********BOTONES COLLAPSE 1*************/
button.btn-link{
    text-decoration: none !important;
    color: #174791;
    font-weight: 600;
    font-size: 16px;
}

button.btn-link:hover{
    color: #1f639d;
}

/**********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: 50px;
}

/***************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;
}

/* a.descarga{
    color: #ffffff;
    background: #174791;
    padding: 3px 15px;
    font-family: 'Poppins', sans-serif;
}

a.descarga:hover, a.descarga:active,a.descarga:focus{
    color: #174791;
    background: #ffffff;
    border-left: 2px solid #174791;
    border-right: 2px solid #174791;
    transition: 0.8s;
    -webkit-transition: 0.8s;
} */

.descarga{
    color: #ffffff;
    background: #174791;
    padding: 3px 15px;
    transition: 0.8s;
    font-family: 'Poppins', sans-serif;
}

.descarga-action{
    color: #174791;
    background: #ffffff;
    border-left: 2px solid #174791;
    border-right: 2px solid #174791;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    padding: 3px 15px;
    font-family: 'Poppins', sans-serif;
} 

a.descarga:focus{
    color: #ffffff;
}

/* button.descarga{
    color: #ffffff;
    background: #174791;
    padding: 3px 15px;
    font-family: 'Poppins', sans-serif;
}

button.descarga:hover, button.descarga:active, button.descarga:focus{
    color: #174791;
    background: #ffffff;
    border-left: 2px solid #174791;
    border-right: 2px solid #174791;
    transition: 0.8s;
    -webkit-transition: 0.8s;
} */

a>i{
    font-size: 25px;
}


/****************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;
}

table thead th{
    text-align: center !important;
}

label{
    font-family: 'Poppins', sans-serif;
    color: #222222;
}

/**************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;
}

/************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;
}

div.dataTables_wrapper div.dataTables_info {
    white-space: pre-wrap;
}

select#tipo_servicio,select#tipo_servicio:active{
    border: none;
    border-bottom: 2px solid #174791;
    border-radius: 0;
    box-shadow: none;
    background: radial-gradient(transparent, #17479140);
    border-radius: 10px;
}