@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
  font-family: PoppinsL;
  src: url(../fonts/Poppins-Light.ttf);
}

/*
* Estilo para Movil
*/
@media only screen and (max-width: 600px){
    .showCabPC{
        display:none;
    }
    .showCabMov{
        display:inline;
    }
}

/*
* Estilo para PC
*/
@media only screen and (min-width: 601px){
    .showCabPC{
        display:inline;
    }
    .showCabMov{
        display:none;
    }
}

/*
* Estilo General
*/

body, html, div{
    font-family:Poppins;
}

.logoFondo{
  background: rgba(255, 255, 255, 1);
  border-radius: 12px;
}

.hide{
  display:none;
}

a.linkBlanco:link {
  color: #FFFFFF;
}
a.linkBlanco:visited {
  color: #FFFFFF;
}
a.linkBlanco:hover {
  color: #FFFFFF;
}
a.linkBlanco:active {
  color: #FFFFFF;
}

a.btnIcon:link {
  color:rgba(66,94,154,1);
}
a.btnIcon:visited {
  color:rgba(66,94,154,1);
}
a.btnIcon:hover {
  color:rgba(66,94,154,1);
}
a.btnIcon:active {
  color:rgba(66,94,154,1);
}

.btnInicio{
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    width:240px;
    height:50px;
    font-family:Poppins;
    color: #FFF;
    background-image: radial-gradient(rgba(116,165,206,1) , rgba(66,94,154,1));
    border-color: #ccc;
}
.botonAzul {
    margin-top: 1vh;
    background-image: radial-gradient(rgba(116,165,206,1) , rgba(66,94,154,1));
    color: #FFF;
    text-align: center;
    border: none;
    padding: 6px 12px;
    border-radius: 10px;
    font-family:Poppins;
    font-size: 12px;
}

.centrar {
    text-align:center;
}
.redondeado {
    border-radius: 5px !important;
}
.formulario {
    margin-top: 1vh;
    width: 80%;
    font-family:Poppins;
}
.formularioNumero {
    margin-top: 1vh;
    width: 35%;
    font-family:Poppins;
    text-align:right;
}

/*
* Style para busqueda
*/

.autocomplete {
  position: relative;
  display: block;
  width: 100%;
}

/*
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}

input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}
*/
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  display: inline-block;
  /*position the autocomplete items to be the same width as the container:*/
  top: 400;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}
/*
* Fin Style para busqueda
*/

/*
* INICIO Breadcrumb style
*/
/* Style the list */
ul.breadcrumb {
  padding: 5px 8px;
  list-style: none;
  background-color: rgba(116, 165, 206, 0);
  font-family: Poppins;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 11px;
  color:rgba(66, 94, 154, 1);
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 2px;
  color: rgba(66, 94, 154, 1);
  content: "\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: rgba(66, 94, 154, 1);
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: rgba(66, 94, 154, 1);
  text-decoration: underline;
}
/*
* FIN Breadcrumb style
*/