@font-face{
	font-family:"baush";
	src:url("../fonts/baush.ttf");
}

@font-face{
	font-family:"salvo";
	src:url("../fonts/SalvoSans_1/SalvoSans-Black.otf");
}

@font-face{
	font-family:"bebas";
	src:url("../fonts/bebas/bebas.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); }

body{
    font-family: 'calibri';
}

#nav{
    background: linear-gradient(to left , rgb(215,215,215) 25%, rgba(35,35,35, 1) 100%);
    /*background-color: rgb(180,180,180);*/
}

.bebas{
    font-family: 'bebas';
}

.align-v{
    display: flex;
    justify-content: center;
    align-items: center;
}

#sesion-box{
    background-color: rgb(245,245,245);
    padding: 35px 25px;
    color: rgb(245,245,245) !important;
    box-shadow: 5px 10px 10px rgb(0,83,73);
}

.alert{
    height: 25px;
    font-size:14px;
}

.contenedor-datos{
    /* background-color: rgb(255,255,255); */
    border: .5px solid rgb(185,185,185);
    border-radius: 5px;
    padding: 10px;
    margin-top:5px;
    margin-bottom:5px;
}

.form-control{
    border-radius: 0px !important;
}

.campo{
    background-color: transparent;
    /*border-bottom: 1px solid rgb(65,224,0);*/
    border-bottom: 1.5px solid rgb(0,83,73);
    border-top: none;
    border-left: none;
    border-right: none;
    height: 30px;
    padding: 0px 15px;
    border-radius:0px;
    font-size:14px;
    color: rgb(0,135,120) !important;
}

.campo:focus{
    border-color: rgb(255,255,255);
    border-bottom: 1px solid rgba(0,135,120);
    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(200,200,200,.25) !important;
    color: rgb(185,185,185) !important;
}

.campo:read-only{
    background-color: transparent;
    color: rgb(175,175,175) !important;
}

.text-ekus{
    color: rgb(0,83,73) !important;
}


.item-list-activo{
    background-color: transparent;
    border-radius: 0px !important;
    border-right: 0px;
    border-left: 7.5px solid rgb(5,50,115) !important;
    border-top: 0px;
    border-bottom: .5px solid rgb(215,215,215) !important;
    transition:all .25s ease-in-out;
    
    margin-bottom: 1.5px;
    font-size: 13px;
    font-weight:lighter;
    color: rgb(135,135,135);
}

.item-list-vendido{
    background-color: transparent;
    border-radius: 0px !important;
    border-right: 0px;
    border-left: 7.5px solid rgb(30,200,30) !important;
    border-top: 0px;
    border-bottom: .5px solid rgb(215,215,215) !important;
    transition:all .25s ease-in-out;
    
    margin-bottom: 1.5px;
    font-size: 13px;
    font-weight:lighter;
    color: rgb(135,135,135);
}

.btn-small{ 
    border: .5px solid rgb(185,185,185);
    border-radius:25px !important;
    margin-top:5px;
    padding: 2.5px 15px;
    color: rgb(185,185,185);
    transition: all .35s ease-in-out;
    
    font-size: 12px;
}

.btn-small:hover{
    background-color: rgb(0,83,73);
    border: .5px solid rgb(46,134,193);
    color: rgb(255,255,255) !important;
    cursor:pointer;
}

.btn-small:disabled{
    background-color: rgba(0,0,0,.0);
    border: .5px solid rgb(185,185,185);
    color: rgb(185,185,185) !important;
    cursor:not-allowed;
}

.btn-small-invertido{ 
    border: .5px solid rgb(0,83,73);
    border-radius:25px !important;
    color: rgb(255,255,255) !important;
    margin-top:5px;
    padding: 2.5px 15px;
    background-color: rgb(0,83,73);
    transition: all .35s ease-in-out;
    
    font-size: 12px;
}

.btn-small-invertido:hover{
    border: .5px solid rgb(0,83,73);
    color: rgb(0,83,73) !important;
    background-color: rgb(255,255,255);
    
    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;
}