@import url('https://fonts.googleapis.com/css?family=Poppins');

body {
    font-family: 'Poppins', sans-serif;
}

/****************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; 
}

/*********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: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 COLLAPSE 1*************/
button.btn-link{
    text-decoration: none !important;
    color: #174791;
    font-weight: 600;
    font-size: 16px;
}

button.btn-link:hover{
    color: #174791;
}

.card-header .btn.focus, .btn:focus{
    box-shadow: 0 0 0 2px transparent;
}
/**********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;
}

/***************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; 
}

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;
}

/***************/
.card-header{
    padding: 0.25rem 1.25rem;
}

.cl-effect-20 a {
    cursor: pointer;
    color: #ffffff !important;
}

/***************/