@font-face{
	font-family:"roboto-regular";
	src:url("../fonts/roboto/Roboto-Regular.ttf");
}

@font-face{
	font-family:"roboto-italic";
	src:url("../fonts/roboto/Roboto-Italic.ttf");
}

@font-face{
	font-family:"roboto-bold";
	src:url("../fonts/roboto/Roboto-Bold.ttf");
}

@font-face{
	font-family:"roboto-light";
	src:url("../fonts/roboto/Roboto-Light.ttf");
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
    url(../fonts/MaterialIcons-Regular.woff) format('woff'),
    url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}
/* Rules for sizing the icon. */
.material-icons.md-14 { font-size: 14px; }
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-30 { font-size: 30px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
.material-icons.md-60 { font-size: 60px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

.roboto-regular{ font-family:'roboto-regular'; }
.roboto-italic{ font-family:'roboto-italic'; }
.roboto-bold{ font-family:'roboto-bold'; }
.roboto-light{ font-family:'roboto-light'; }

body{
    font-family: 'roboto-regular';
}

hr{
    border-color: #bb86fc;
}

#nav{
    background-image: linear-gradient(rgb(5,50,115), rgb(52,152,219))
}

.btn:active{
    background-color: rgb(97,185,64) !important;
}

.table{
    font-size:14px;
}

.flot-info{
    background-image: linear-gradient(rgb(0,180,0), rgb(0,255,0));
    position: absolute;
    bottom: 10px;
    right: 25px;
    padding: 5px 35px;
    border-radius:150px;
    border: 2px solid rgb(0,150,0);
    color: rgb(80,80,80);
    display: flex;
    justify-content: flex-end;
}

.align-v{
    display: flex;
    justify-content: center;
    align-items: center;
}

.seccion-background{
    background-image: linear-gradient(to right, rgb(210,210,210), rgb(245,245,245));
}

.sesion-box{
    background-color: rgb(245,245,245);
    padding: 25px 35px;
    box-shadow: 5px 10px 10px rgba(0,0,0,.5);

    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.shadow-box{
    background-color: rgb(250,250,250);
    padding: 25px 35px;
    color: rgb(10,10,10) !important;
    box-shadow: 5px 10px 10px rgb(150,150,150);
}

#alert{
    min-height: 35px !important;
    font-size:14px !important;
}

.form-control{
    border-radius: 0px !important;
}

.text{
    color: rgb(97,185,64) !important;
}

.campo{
    background-color: transparent;
    /*border-bottom: 1px solid rgb(65,224,0);*/
    border-bottom: 1.5px solid rgb(200,200,200);
    border-left: none;
    border-right: none;
    border-top: none;
    height: 30px;
    padding: 0px 5px;
    border-radius:0px;
    font-size:14px;
}

.campo:focus{
    border-bottom: 1.5px solid rgb(97,185,64);
    background-color: transparent;
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.campo:disabled{
    background-color: rgba(235,235,235,.75) !important;
    color: rgb(185,185,185) !important;
}

.campo:read-only{
    background-color: transparent;
    color: rgb(100,100,100) !important;
    /*color: rgb(0,170,205) !important;*/
}

.cambio_contraseña{
    height: 45px !important;
}

.btn-small{ 
    border: 2px solid rgb(97,185,64);
    border-radius:25px !important;
    background-color: rgb(97,185,64);
    padding: 2.5px 25px;
    color: rgb(255,255,255);
    transition: all .35s ease-in-out;
    
    font-size: 14px;
}

.btn-small:hover{
    background-color: rgb(255,255,255);
    border: 2px solid rgb(97,185,64);
    color: rgb(97,185,64) !important;
    cursor:pointer;
}

.btn-small:disabled{
    background-color: rgb(150,150,150);
    border: .5px solid rgb(185,185,185);
    color: rgb(220,220,220) !important;
    cursor:not-allowed;
}

.btn-small-cancelar{ 
    border: 2px solid #424949;
    border-radius:25px !important;
    background-color: #424949;
    padding: 2.5px 25px;
    color: rgb(255,255,255);
    transition: all .35s ease-in-out;
    
    font-size: 14px;
}

.btn-small-cancelar:hover{
    background-color: rgb(255,255,255);
    border: 2px solid #424949;
    color: #424949 !important;
    cursor:pointer;
}


.item-icon{
    background-color: rgb(255,255,255);
    border: 1px solid #3700b3 !important;
    border-radius: 50px;
    padding:2.5px;
    color:#3700b3 !important;
    cursor: pointer;
}

.item-icon:hover{
    background-color: #3700b3 !important;
    color: rgb(255,255,255) !important;
}

.item-eliminar:hover{
    background-color: rgb(255,0,0);
    color: rgb(255,255,255) !important;
    border-radius:50px;
    cursor:pointer;
}

.item-imagen:hover{
    cursor:pointer;
    transition: all .25s ease-in-out;
    filter: grayscale(80%);
    -webkit-transform:scale(1.05);
    transform:scale(1.05);
}

/* Jquery-ui */

.ui-autocomplete {
    max-height: 350px;
    border: none !important;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}

.ui-autocomplete-loading {
    background: white url("../jquery-ui/images/ui-anim_basic_16x16.gif") right center no-repeat;
}

.ui-menu-item{
    font-size: 12px !important;
    font-family: 'calibri' !important;
    border-bottom: .5px solid rgba(35,180,0,.75) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    background-color: rgb(245,245,245);
    padding: 5px 10px;
}


/* ESTILOS MENU FORMULARIO */

.material-icons-lens{
    color: #bb86fc !important;
    transition: all .25s ease-in-out;
}

.item-list{
    box-shadow: 5px 10px 10px rgb(150,150,150) !important;
    background-color: rgb(255,255,255) !important;
    color: rgb(0,0,0) !important;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

.material-icons-lens-active{
    color: #3700b3 !important;
    transition: all .25s ease-in-out !important;
}

.item-list-datos{
    background-color: rgb(255,255,255);
    border-radius: 0px !important;
    border-right: 0px;
    border-left: 7.5px solid rgb(255,0,153) !important;
    border-top: 0px;
    border-bottom: .5px solid #c0c0c0 !important;
    transition:all .25s ease-in-out;
    padding:5px;
    min-height: 40px;
    
    margin-bottom: 1.5px;
    font-size: 13px;
    font-weight:lighter;
    color: rgb(93, 109, 126);
}

.item-list-datos:hover{
    box-shadow: 3px 3px 3px #c0c0c0 !important;
    border-left: 7.5px solid rgb(0,255,0) !important;
    margin-left: -10px;
}

.badge-pink{
    background-color: #3700b3;
    color: #ffffff;
}

.active-menu{
    background-color:rgba(97,185,64);
    border-radius: 50px;
}

.text-activo{
    color: rgb(90, 90, 90);
}

.text-suspendido{
    color: rgb(212, 201, 36);
}

.text-eliminado{
    color: rgb(170, 0, 0);
}

.mi-hover{
    border-radius: 25px;
}

.mi-hover:hover{
    cursor: pointer;
    color: rgb(255,255,255) !important;
    border-radius: 100px;
    background-color: rgb(100,100,100) !important;
}

/* PAGINACION 23-05-2022 */

.item-paginacion{
    border: 1px solid rgb(240,240,240);
    background-color: rgb(240,240,240);
    width: 30px;
    height: 30px;
    color: rgb(150,150,150);
    border-radius: 5px;
    font-size: 12px;
    margin-left: 1px;
    cursor:pointer;
}

.item-paginacion:hover{
    background-color: rgb(150,150,150);
    border-color: rgb(150,150,150);
    color: rgb(255,255,255)
}

.item-paginacion-activo{
    background-color: rgb(150,150,150);
    border-color: rgb(150,150,150);
    color: rgb(255,255,255)
}

.card-personalizado{
    background-color: rgb(250,250,250);
    border-radius: 0px;
    border:.25px solid rgb(245,245,245);
    box-shadow: 5px 5px 5px rgb(245,245,245);
}

.card-personalizado:hover{
    border-color: rgb(35,180,0) !important;
    background-color: rgba(35,180,0,.05);
    box-shadow: 5px 5px 5px rgba(35,180,0, .25);
}


.item-order{
    padding:2.5px 15px;
    border: 1px solid rgb(35,180,0);
    border-radius:50px;
    text-align: center;
    cursor:pointer;
    margin-right: 5px;
}

.item-order:hover{
    padding:2.5px 15px;
    border: 1px solid rgb(35,180,0);
    background-color: rgb(97,185,64);
    border-radius:50px;
    text-align: center;
    cursor:pointer;
    color: rgb(255,255,255);
}

.item-order-active{
    padding:2.5px 15px;
    border: 1px solid rgb(35,180,0);
    border-radius:50px;
    text-align: center;
    cursor:pointer;
    margin-right: 5px;

    background-color: rgb(0,180,0);
    color: rgb(255,255,255);
}

.icon-ordenar:hover{
    cursor:pointer;
    color: rgb(0,0,0) !important;
    transition: all .25s ease-in-out;
}

.icon-ordenar:hover > #icon-order{
    transition: all .25s ease-in-out;
    transform: rotate(90deg) !important;
    color: rgb(255,255,255);
    background-color: rgb(0,0,0);
    border-radius: 5px;
}

#icon-order{
    margin-right:5px;
    transition: all .25s ease-in-out;
    transform: rotate(-90deg) !important;
}