body{
    /*zoom: 0.9;*/
    background-color: #f2f2f2;
}
#modulo-container{
    max-width: 1024px;
    margin: auto;
    position: relative;
}

.form-error .form-control{
    border-bottom: 1px solid #ff0000 !important;
    color: #ff0000 !important;
    background-image: none !important;
}
.form-error .form-control-feedback{
    color: #ff0000 !important;
}

div.form-control {
    padding: 9px 0px !important;
}

.incorrecto{
    border-bottom: 2px solid #ff0000 !important;
    color: #ff0000 !important;
    background-image: none !important;
}
.incorrecto + label,
.incorrecto + .form-control-feedback{
    color: #ff0000 !important;
}
[type="checkbox"].incorrecto:not(:checked) + label::after {
    border-color: red !important;
}
.menu-option, a.link, .nav-item{
    cursor:pointer;
}

.topbar{
    position: fixed;
    width: 100%;
}

.container-fluid {
    padding: 0 30px 0px 30px;
    /*
    padding-top: 70px;
    margin-bottom: 0px;
    */
}

.card-round{
    margin-bottom: 0px;
    border-radius: 0px;
}

.card-round > div:first-child{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.card-round > div:last-child{
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.page-wrapper{
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    top: 0px;
    overflow-y: auto;
    height:auto;
}

.footer{
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 100;
    left: 240px;
    text-align: center;
    font-size: 12px;           
}


/*FORM CONTROL*/
.form-material .form-group{
    overflow: visible !important;
    position: relative;
}

.form-control{
    color: #455a64 !important;
    display: block;
    width: 100% !important;
}

.form-control-label{
    position: absolute;
    color: #b1b1b1;
    font-size: 12px;
    bottom: 24px;
    transition: all 0.2s ease-in-out;
    user-select: none;
    cursor: text;
}

.form-control-label.placeholder{
    bottom: 0px;
    font-size: 14px;
}
/*
.form-control[type='text']:focus + .form-control-label.placeholder,
.form-control[type='password']:focus + .form-control-label.placeholder,*/
.form-control:focus + .form-control-label.placeholder,
.form-control:valid + .form-control-label.placeholder{
    bottom: 24px;
    font-size: 12px;
}

/*FORM CONTROL*/

/*SIDEBAR*/
.sidebar-nav{
    height: 100%;
    overflow-y: auto;
}

/*badge modificado*/

.noti-badge {
    position: absolute;
    top: -20px;
    right: 1px;
    font-size: 50% !important;
}

.delete-noti {
    border-radius: 50px;
    float: right;
    margin-right: -25px;
    border: 0px solid #ff3636 !important;
    padding: .1rem .3rem;
    font-size: 10px;
}

.badge-azul {
    background-color: #003C71 !important;
    color: white !important;
}

.notify-blue .heartbit {
    border: 5px solid #003C71 !important;
}

.notify-badge .heartbit {
    top: -28px;
}

.scroll-sidebar{
    padding-bottom: 0px;
}

@media (min-width: 768px){
    .mini-sidebar.fix-sidebar .left-sidebar {
        position: fixed;
    }
 
    .mini-sidebar .sidebar-nav #sidebarnav > li:hover > a {
        width: 46px;
        background: #ff6b17;
        color: #ffffff;
        border-color: #ff6b17;
    }

    .mini-sidebar .footer{
        left:60px;
    }
}

@media (max-width: 767px){
    .mini-sidebar .page-wrapper {
        padding-top: 0px;
    }

    .footer{
        margin-top: 10%;
        position: inherit;
        left:0px;
    }
}
/*SIDEBAR*/



/* COLORES */
.color-black{
    color:#000000;
}
/* COLORES */



/* FUENTES */
.boldest{
    font-weight: 600;
}

.bold-letter{
    font-weight: bold;
    color:#000000;
}
/* FUENTES */


/*BADGETS*/
.badge{
    font-size: 90%;
}
/*BADGETS*/

/*PAGE-LOADER*/
.page-loader{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    background: #ff6b174d;
    z-index: 1100;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.page-loader.active{
    visibility: visible;
    opacity: 1;
}

.spinner{
    border-top: 16px solid #ff6b17;
    border-right: 16px solid #FFFFFF;
    border-bottom: 16px solid #ff6b17;
    border-left: 16px solid #FFFFFF;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    margin:auto;
    top: 50%;
    margin-top: -60px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-loader.active .main-panel{
    overflow:hidden;
}
/*PAGE LOADER*/


/*MOSTRAR - OCULTAR*/
.oculto{
    display: none;
}

.mostrar{
    display: block;
}
/*MOSTRAR - OCULTAR*/

/*Boton Notification*/
.topbar .navbar-light .navbar-nav .nav-item > a.nav-link:hover {
    color: #ff6b17 !important;
    background-color: #fff;
}

.notification-style {
    cursor: pointer;
    padding: 0px;
    border-radius: 8px;
    font-size: 22px !important;
}

/*BOTON LOGOUT*/
.custom-power-button{
    cursor: pointer;
    padding: 22px 14px 14px 14px;
    border-radius: 10px;
    color: #fff !important;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.custom-power-button:hover{
    background: #fff;
    color: #ff6b17 !important;
}
/*BOTON LOGOUT*/


/*Sombras*/
.shadow-bottom{
    box-shadow: 0px 6px 5px -4px rgba(0,0,0,0.3);
}
/*Sombras*/


/*BOTON SUCCESS MAS VERDE (Adinson)*/

.btn-success, .btn-success.disabled {
    background: #26da78;
    border: 1px solid #26da78;

}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success.focus:active,
.btn-success:active:focus,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success.focus,
.open > .dropdown-toggle.btn-success:focus,
.open > .dropdown-toggle.btn-success:hover,
.btn-success.focus,
.btn-success:focus,
.btn-success:hover, .btn-success.disabled:hover {
    background: #26da78;
    border: 1px solid #26da78;

}

/*LOGO LP*/
.navbar-brand .logo-icon{
    width: 60px;
}

/*BACKGROUND MODAL*/
.modal-dialog{
    margin-top: 150px;
}

.modal-content{
    border: 0px;
    border-radius: 0px;
}

.modal{
    top: 0px !important;
}

.modal-overlay{
    z-index: 1002;
    display: block;
    opacity: 0.5;
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    background: black;
    left: 0px;
 }

 .flex-center{
    justify-content: center;
    align-items: center;
 }
 /*color al tab*/
.customtab2 li a.nav-link {
    border: 0px;
    margin-right: 3px;
    color: #67757c; }
.customtab2 li a.nav-link.active {
    background: #ff6b17;
    color: #ffffff;
}
.customtab2 li a.nav-link:hover {
    color: #ffffff;
    background: #ff6b1780;
}

a.link{
    text-decoration: underline;
}

.table tr:nth-child(even){
    background: #eeeeee;
}



/*############################################   ICONOS   ########################################*/

@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?h4jrf6');
  src:  url('fonts/icomoon.eot?h4jrf6#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?h4jrf6') format('truetype'),
    url('fonts/icomoon.woff?h4jrf6') format('woff'),
    url('fonts/icomoon.svg?h4jrf6#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 20px;
  color: #9b9b9b;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-conos_Admin_Ajuste-de-Perfil:before {
  content: "\e900";
  color: #9b9b9b;
}
.icon-conos_Admin_Contactos:before {
  content: "\e901";
  color: #9b9b9b;
}
.icon-conos_Admin_Cuenta-de-Banco:before {
  content: "\e902";
  color: #9b9b9b;
}
.icon-conos_Admin_Dispositivo:before {
  content: "\e903";
  color: #9b9b9b;
}
.icon-conos_Admin_Enviar-Pagos-2 .path1:before {
  content: "\e904";
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos-2 .path2:before {
  content: "\e905";
  margin-left: -1.1494140625em;
  color: rgb(255, 255, 255);
}
.icon-conos_Admin_Enviar-Pagos-2 .path3:before {
  content: "\e906";
  margin-left: -1.1494140625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos-2 .path4:before {
  content: "\e907";
  margin-left: -1.1494140625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-P  agos-2 .path5:before {
  content: "\e908";
  margin-left: -1.1494140625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos-2 .path6:before {
  content: "\e909";
  margin-left: -1.1494140625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos .path1:before {
  content: "\e90a";
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos .path2:before {
  content: "\e90b";
  margin-left: -1.072265625em;
  color: rgb(255, 255, 255);
}
.icon-conos_Admin_Enviar-Pagos .path3:before {
  content: "\e90c";
  margin-left: -1.072265625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos .path4:before {
  content: "\e90d";
  margin-left: -1.072265625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos .path5:before {
  content: "\e90e";
  margin-left: -1.072265625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos .path6:before {
  content: "\e90f";
  margin-left: -1.072265625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos .path7:before {
  content: "\e910";
  margin-left: -1.072265625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Enviar-Pagos .path8:before {
  content: "\e911";
  margin-left: -1.072265625em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Multi-Pago .path1:before {
  content: "\e912";
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Multi-Pago .path2:before {
  content: "\e913";
  margin-left: -1.03125em;
  color: rgb(255, 255, 255);
}
.icon-conos_Admin_Multi-Pago .path3:before {
  content: "\e914";
  margin-left: -1.03125em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Multi-Pago .path4:before {
  content: "\e915";
  margin-left: -1.03125em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Multi-Pago .path5:before {
  content: "\e916";
  margin-left: -1.03125em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Multi-Pago .path6:before {
  content: "\e917";
  margin-left: -1.03125em;
  color: rgb(155, 155, 155);
}
.icon-conos_Admin_Negocio:before {
  content: "\e918";
  color: #9b9b9b;
}
.icon-conos_Admin_Pagar:before {
  content: "\e919";
  
}
.icon-conos_Admin_Pin:before {
  content: "\e91a";
  color: #9b9b9b;
}
.icon-conos_Admin_Productos:before {
  content: "\e91b";
  color: #9b9b9b;
}
.icon-conos_Admin_Retiro:before {
  content: "\e91c";
  color: #9b9b9b;
}

.border-redondo{
    border-radius: 50px;
}

.card > .card{
    margin-bottom: 0px;
}


.full-width{
    width: 100%;
}

/* #####################      Logos     ##################### */

.icono-estadistica {
    -webkit-mask: url("../images/iconos/estadisticas.svg") no-repeat 100% 100%;
    background-color: #08AEEA;
    background-image: linear-gradient(180deg, #08AEEA 57%, #15849f 74%);    
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    width: 30%;
    height: 50px;
}


.form-group.complete .notify{
    display:none;
}

.pointer{
    cursor: pointer;
}

.menu_alert{
    animation: menu_alert 0.5s infinite alternate;
}

@keyframes menu_alert {
    from {color: red;}
    to {color: #99abb4;}
}

.jq-toast-single{
    z-index: 9000 !important;
    background-color: #ffffff;
    color: #777777;
    font-size: 15px;
}

.jq-icon-success
{
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJlJREFUeNpiYBhowEiqhvLy8gQg1Q/lFrKQoXk+klA/EwWawYCJEs0gLzBCJeuB+AFIoLOz8wKRmhOBahcwQSUVgNgBiPcDNRgQqxkcC0BF/9EkPwCxIxAbENIMAqBYAHESkBQIAPF5HMGBohkEmI8ePbrRxsZGAWojPoChGWwAiCDCEKya4QYQMASnZhQDcBiCV/PgAAABBgBxHERdMR4MrgAAAABJRU5ErkJggg==');
}

.jq-icon-error,
.jq-icon-warning
{
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQJJREFUeNqkU7sRgkAUhNMCLIESKIAZtQOtQK1AiAiRkEjNzNTIMaMDMSC3BENDOtB9ujon3jnD8GZ23t29397COU5Lc22BOI59uBO3wyzLLqY89af5FrgSW1uSskwP4YTBjPB59mMdQ7EHdwA2oL0vy/IWBEEP+xD+iH2l53cNTZf0KZot3mtgytjYegUUDOBGQITpMqkv4DqSGHOsGohYBQp2dVo8K+qCKm260PU4yWYS87SrvRpQuDmwsn1vspDYSnJZ82Eg4lQUS7c1oVvK3KfYyiCcbhNCZ/ElqNKEyw2sz0T9KvlbUBdd7qRVNHxHwjyRH0m6JURTy9u+ZuchwACyFF9fmeE3vgAAAABJRU5ErkJggg==');
}

.datepicker-dropdown{
    z-index: 1051 !important;
}
.datepicker .today.day:hover{
    background-color: #c7c7c7 !important;
}

.selectric{
    height: 37px;
}

.selectric .selectric-icon{
    height: 32px;
    width: 32px;
    display: inline-block;
    vertical-align: middle;
}

.selectric-items .selectric-icon{
    height: 48px;
    width: 48px;
    display: inline-block;
    vertical-align: middle;
}

.list-group a.list-group-item.contact:hover{
    background: #ff6b17;
    color: white;
    cursor: pointer;
}

/** input file vacio **/
.file_vacio{
    border: 3px solid red;
}
/*** linea hr **/
hr{
  background-color: #ff6b17;
}
/*** carusel del saldo info user **/
.button{
  /*margin-top:50px;*/
  float:left;
  height:10px;
  width: 10px;
  text-align: center;
  cursor: pointer;
}
.saldo{
  float:left;
  margin-right:20px;
  margin-left:20px;
  margin-top: 0px;
  margin-bottom: 0px;
  /*width: 60%;*/
  text-align: center;
}
.monto{
  font-size: 24px;
}

.btn.btn-mini{
  width: 22px;
  height: 22px;
  padding: 2px;
  margin-top: 7px;
  background-color: #038ee1;
}
.flecha{
  color: #ffffff !important;
}
/*** carusel del saldo info user **/
.badge-success {
  background-color: #26da78;
}

.badge-danger {
    background-color: #ff3636;
}
  

/*** si la pantalla es igual o menor a 600px se cambia el titulo ***/
@media only screen and (max-width: 600px) {
  .tituloPrincipal {
    display: none;
  }
}

.text-negrita{
  color: #000;
}

.text-success{
    color: #26da78 !important;
}

/*** tootlip de mensajes de ayudas  ***/
a.mytooltip {
  font-weight: 500;
  color: #038ee1;
  float: right;

}
a.mytooltip{
  cursor: help;
  position: relative;
}
.tooltip-content3::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  margin-left: -8px;
  top: 100%;
  background: #ff6b17;
  -webkit-transform: translate3d(0, -60%, 0) rotate3d(0, 0, 1, 45deg);
  transform: translate3d(0, -60%, 0) rotate3d(0, 0, 1, 45deg); 
  
}
.tooltip-content3{
  background: #ff6b17;
  position: absolute;
  background-size: 100% 100%;
  border-radius: 25px;
  padding: 10px 15px;
  z-index: 9999;
  cursor: help;
  font-size: 12px;
  line-height: 15px;
  text-align: justify;
  text-indent: 1em;
  color: #ffffff;
  width: 250px;
  margin-left: -130px;
  bottom: 150%;
  left: 100%;
}

.form-group .btn-circle{
    width: 38px;
    height: 38px;
}

.btn-circle {
    padding: 7px 12px;
}

.modal-line{
    border-bottom: 1px solid #e9ecef;
    width: 100%;
    margin: 20px 0px;
}

.btn-label-file{
    margin: 0px !important;
}
.datepicker{
    padding: 0px !important;
}
.nav-text{
    cursor: default !important;
}

.password-eye{
    position: absolute;
    bottom: 2px;
    right: 0px;
    display: inline-block;
    width: 36px;
    text-align: center;
    cursor: pointer;
    color: #ff6b17;
    border-radius: 50px;
    height: 36px;
    /* background: red; */
    padding: 6px;
}

.row > .form-group > .password-eye{
    right: 15px;
}

.info_button{
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 30;
    /**/
    display: none;
    /**/
}

.text-librepago{
    color: #ff6b17;
}

.text-justify{
    text-align: justify;
}

/*ACTIVITY CARD*/
.activity-card{
    margin-bottom: 30px;
    background-position: center center; background-size: cover;
    clear:both;
    cursor: pointer;
}

.activity-card:hover{
    box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.3);
}

.activity-card::after{
    content: '';
    display: block;
}

.activity-card .activity-icon{
    padding: 24px;
    height: 80px;
    width: 80px;
    background-color: #fff;
    font-size: 32px;
    line-height: 0px;
    color: #ff6b17 !important;
}

.activity-card .activity-text{
    height: 80px;
    padding: 15px 15px;
    color: #fff;
    width: 100%;
}

.activity-card .activity-text .text-type{
    border-bottom: 2px solid #fff
}

.activity-card .activity-search{
    width: 70px;
    background: transparent !important;
    color: #fff;
    padding: 30px 0px;
    text-align: center;
    font-size: 26px;
}

/*INFO CARD*/
.info-card{
    /*width: 250px;*/
    background: #fff;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    /*border-radius: 15px;*/
}

.info-card:hover {
    /*box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.01);*/
    /*-webkit-box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.01);*/
    box-shadow: inset 0 0 0 2000px #ff6b1733;
}

.info-card:after{
    content: "";
    display: block;
    clear: both;
}

.info-card .info-card-icon{
    background: #ff6b17;
    padding: 10px;
}

.info-card .info-card-icon img{
    width:40px;
}
.info-card .info-card-title{
    width: 100%;
    text-align: center;
    color: #ff6b17;
    font-size: 20px;
    padding: 15px;
    font-weight: 400;
}
.info-card .info-card-body{
    display: flex;
    border-top: 2px solid #ff6b17;
    min-height: 160px;
}
.info-card .info-card-text{
    width: 100%;
    padding: 10px 10px;
    text-align: center;
    margin: auto;
    color: #ff6b17;
}

.check_mark_box{
    display: inline-block;
    text-align: center;
    width: 20px;
}

/*STEPS*/

.wizard-stepper{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    position: relative;
}

.wizard-stepper .step-line{
    position: absolute;
    width: 98%;
    transform: translateY(13px);
    z-index: 1;
    background-color: #c7c7c7;
}

.wizard-stepper .step-line .inner{
    height: 2px;
    width: 0%;
    background-color: #ff6b17;
    transition: all 250ms ease-in-out;
}

.wizard-stepper .step-dots{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.step-dots .dots{
    padding: 2px 9px;
    border: 1px solid #c7c7c7;
    background-color: #ffffff;
    border-radius: 50px;
    text-align: center;
    z-index: 2;
    user-select: none;
    line-height: 23px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    font-family: sans-serif;
}

.wizard-stepper .step-dots .dots.current{
    border-color: #ff6b17;
    color: #ff6b17;
    box-shadow: 0 0 0 0 #ff6b17;
    animation: pulse 1s infinite;
}

.wizard-stepper .step-dots .dots.done{
    background-color: #ff6b17;
    border-color: #ff6b17;
    color: #ffffff;
}

.input-group .selectric-wrapper{
    display: flex;
    flex: 1;
}

.input-group .selectric,
.input-group .selectric-items
{
    width: 100%;
}

.input-group .clean{
    background-color: transparent;
    border: 0px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 23, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 23, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 23, 0);
    }
}

[type="radio"] + label.wrap-form-control{
    display: block;
    height: 36px;
}

[type="radio"] + label.wrap-form-control:before,
[type="radio"] + label.wrap-form-control:after{
    margin-top: 10px;
}

[type="radio"] + label.wrap-form-control div.form-control{
    padding: 0.5rem 0rem;
}

.force-opacity{
    opacity: 1 !important;
}

.paginator .btn {
    margin: 0px 3px;
}

/*INPUT-FILE*/
.input-file .input-field{
    display: flex;
}

.input-file .input-field .input-button{
    display: flex;
    align-items: center;
}

.input-file .input-hidden{
    display: none;
    visibility: hidden;
}

.input-file .input-preview{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    border: 1px solid #e7e7e7;
    margin-top: 15px;
    position: relative;
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    transition: all 100ms linear;
}


.input-file .input-preview:hover{
    background-color: #f7f7f7;
}

.input-file .input-preview .input-preview-close{
    font-family: sans-serif !important;
    cursor: pointer;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 20px;
    font-size: 30px !important;
    color: #888888;
    
}


.input-file .input-preview .input-preview-close:after {
    content: "×";
    display: block;
    position: absolute;
    top: -12px;
    right: 0px;
}

.input-file .input-preview:hover .input-preview-close{
    display: block;
}

.input-file .input-preview .input-preview-close:hover{
    color: #666666;
}

.input-file .input-preview img{
    max-width:100%;
    margin:auto;
    max-height: 100%;
}
/*INPUT FILE*/

/*INPUT EDITABLE*/
.input-editable{
    position: relative;
    /* display: flex; */
    width: 100%;
    max-width: 100%;
}
.input-editable .fa:hover{
    color:#ff6b17;
    cursor: pointer;
}
/*INPUT EDITABLE*/

/*ROUND BUTTONS*/
.sidebar-nav {
    padding: 5px;
}
.sidebar-nav ul li a{
    border-radius: 3px !important;
}

.btn{
    border-radius: 3px;
}

.sweet-alert button{
    border-radius: 3px !important;
    padding: 6px 20px;
}
/*ROUND BUTTONS*/

.text-tt-blue{
    color: #003c71;
}

/*FAQ*/
.accordeon .item {
    margin-bottom: 15px;
    position: relative;    
}

.accordeon .item .item-title.text-secondary {
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px solid #003c71;
    cursor: pointer;
    color: #003c71 !important;
    padding: 5px 0px;
    font-weight: 500;
}

.accordeon .item .item-title.text-secondary:hover{
    background-color: #003c7122;
}

.accordeon .item .item-arrow {
    position: absolute;
    right: 4px;
    top: 8px;
    transition: all 150ms ease-in-out;
}

.accordeon .item.active .item-arrow {
    transform: rotateZ(90deg);
}

.accordeon .item .item-content{
    display: none;
    padding: 20px 20px;
    text-align: left;
}

.accordeon .item .item-content p{
    text-indent: 30px;
    text-align: justify;
}
/*FAQ*/

.carousel{
    width: 850px !important;
    margin: auto;
    background: #fff;
    max-width: 100%;
}

.carousel::after {
    display: block;
    content: "";
    clear: both;
}

.carousel-inner{
    height: 100%;
}

.carousel-indicators li{
    cursor: pointer;
}