@font-face{
	font-family:"poppins";
	src:url("../fonts/Poppins/Poppins-Regular.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: 'poppins';
}

.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;
}

#sesion-box{
    background-color: rgb(255,255,255);
    border-radius: 15px;
    border:1px solid rgb(240,240,240) !important;
    padding: 35px 25px;
    width: 500px;
    color: rgb(78,82,79) !important;
    box-shadow: 5px 10px 10px rgb(220,220,220);
}

.alert{
    min-height: 25px;
    font-size:14px;
}

.form-control{
    border-radius: 0px !important;
}

.campo{
    background-color: transparent;
    /*border-bottom: 1px solid rgb(65,224,0);*/
    border-bottom: 1px solid rgb(150,150,150);
    border-left: none;
    border-right: 1px solid rgb(150,150,150);
    border-top: none;
    height: 30px;
    padding: 0px 15px;
    border-radius:0px;
    font-size:14px;
    color: rgb(78,82,89) !important;
}

.campo:focus{
    border-color: rgb(255,255,255);
    border-bottom: 1px solid rgb(78,82,89);
    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: transparent;
    color: rgb(185,185,185) !important;
}

.campo:read-only{
    background-color: transparent;
    color: rgb(100,100,100) !important;
}

.campo-vaav{
    border: 1px solid rgb(200,200,200);
    border-radius: 30px !important;
    padding: 20px 30px;
    background-color: transparent;
    height: 30px;
    font-size:14px;
    color: rgb(78,82,89) !important;
}

.campo-vaav:focus{
    border: 1px solid rgb(100,100,100);
    border-radius: 30px !important;
    padding: 20px 30px;
    background-color: transparent;
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.item-list-datos-activo{
    background-color: transparent;
    border-radius: 0px !important;
    border-right: 0px;
    border-left: 7.5px solid rgb(52,152,219) !important;
    border-top: 0px;
    border-bottom: .5px solid rgb(5,50,115) !important;
    transition:all .25s ease-in-out;
    
    padding:5px;
    
    margin-bottom: 1.5px;
    font-size: 13px;
    font-weight:lighter;
    color: rgb(135,135,135);
}

.item-list-datos-activo:hover{
    background-color: rgba(52,152,219,.25);
    border-left: 7.5px solid rgb(5,50,115) !important;
    color: rgb(5,50,115);
}


.btn-primario{ 
    border: .5px solid rgb(120,120,120);
    border-radius:50px !important;
    margin-top:5px;
    padding: 5px 30px;
    color: rgb(120,120,120);
    transition: all .35s ease-in-out;
    
    font-size: 14px;
}

.btn-primario:hover{
    background-color: rgb(120,120,120);
    border: 1px solid rgb(120,120,120);
    box-shadow: 0px 5px 5px rgba(120,120,120,.5);
    color: rgb(255,255,255) !important;
    cursor:pointer;
}

.btn-primario:disabled{
    background-color: rgba(0,0,0,.0);
    border: 1px solid rgb(185,185,185);
    color: rgb(185,185,185) !important;
    cursor:not-allowed;
}

.btn-secundario{ 
    border: .5px solid rgb(50,50,50);
    background-color: rgb(50,50,50);
    border-radius:50px !important;
    margin-top:5px;
    padding: 5px 30px;
    color: rgb(255,255,255);
    transition: all .35s ease-in-out;
    
    font-size: 14px;
}

.btn-secundario:hover{
    background-color: rgb(120,120,120);
    border: 1px solid rgb(120,120,120);
    box-shadow: 0px 5px 5px rgba(120,120,120,.5);
    color: rgb(255,255,255) !important;
    cursor:pointer;
}

.item-icon{
    background-color: rgb(255,255,255);
    border: 1px solid rgb(200,200,200);
    border-radius: 50px;
    padding:5px;
    cursor: pointer;
}

.item-icon:hover{
    background-color: rgb(30,30,30);
    border: 1px solid rgb(30,30,30);
    color: rgb(255,255,255);
}

.item-imagen:hover{
    cursor:pointer;
    transition: all .25s ease-in-out;
    filter: grayscale(80%);
    -webkit-transform:scale(1.05);
    transform:scale(1.05);
}

.item-valores{
    background-color: transparent;
    border-radius: 0px !important;
    border: 5px solid rgb(200,200,200) !important;
    transition:all .25s ease-in-out;
    
    padding:5px;
    
    margin-bottom: 5px;
    font-size: 13px;
    font-weight:lighter;
    color: rgb(135,135,135);
}

/* 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;
}

/* WS */

@media not screen and (min-width: 600px) {
	.wsParrafo1{
	  color: rgb(27, 61, 54);
	  font-size: 1rem;
	  font-weight: 900;
	}
	.wsParrafo2{
	  color: rgb(250, 253, 252);
	  font-size: 1.3rem;
	  font-weight: 700;
	}
 }

 @media not screen and (max-width: 600px) {
	.wsParrafo1 {
	  color: rgb(39, 42, 49);
	  font-size: 1.5rem;
	  font-weight: 900;
	}
	.wsParrafo2{
		color: rgb(250, 253, 252);
		font-size: 1.5rem;
		font-weight: 700;
	  }
 }

 * {
	margin: 0;
  }

  html, body {
	height: 100%;
  }
  /* 
  .wrapper {
	min-height: calc(100% - 4rem);
  }
  .footer {
	height: 4rem;
	background-color: #e2e2e2
  }
 */


 .btn-localizar{
    background-color: rgb(0,83,109) !important;
    color: rgb(255,255,255) !important;
    border-color: rgb(255,255,255) !important;
}
.btn-localizar:hover{
    background-color: rgba(200,200,200,1) !important;
    color: rgb(0,83,109) !important;
    border-color: rgb(0,83,109) !important;
}