

.section_inicio_categs{
  position: relative;

  height: 100px;
}



.inicio_categ_linea_sup{
  width: 100%;
  height: 30px;

  box-shadow: 0px 6px 9px -3px #00000012;

  /*border-bottom: 1px solid green;*/
  opacity: .4;

  margin-bottom: 5px;
}


.inicio_categ_linea_inf{
  width: 100%;
  height: 30px;

  box-shadow: 0px -6px 9px -3px #00000012;

  /*border-top: 1px solid green;*/
  opacity: .4;

  margin-top: 5px;
}








#inicio_cont_categs_gral{
  display: flex;
  align-items: center;

  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;



  /*transition: .3s*/
}


/* SCROLLBAR */

/* Fondo */
#inicio_cont_categs_gral::-webkit-scrollbar {
  height: 6px;
  display: none;
  opacity: 0.1;
}

/* Barra */
#inicio_cont_categs_gral::-webkit-scrollbar-thumb{
  /*background-color: #e2e2e2;*/
  border-radius: 10px;
}

/* Barra Hover */
#inicio_cont_categs_gral::-webkit-scrollbar-thumb:hover{
  background-color:  var(--main-color_principal);
}

/* Botones */
#inicio_cont_categs_gral::-webkit-scrollbar-button{
  background-color: transparent;

}













.inicio_a_categ_cont{
  width: auto;
  height: 50px;

  /*margin-right: 15px;*/
  margin: auto;
  display: flex;
  align-items: center;

  
  scroll-snap-align: center;

}





.inicio_categ_cont{
	position: relative;
  z-index: 10;
	height: 100%;
	
  
  padding: 0px 30px;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

	/*opacity: .5;*/

  overflow: initial;

  font-family: "roboto-400";
  font-size: 13px;
  color: black;

  border-radius: 4px;
}



.fondo_categ_cont{
  position: absolute;
  z-index: -1;
  
  width: 100%;
  height: 100%;

  border-radius: 4px;

 /* -webkit-box-shadow: 0px 2px 6px 0px #00000021;/
  box-shadow:         0px 2px 6px 0px #00000021;*/

  /*background-color: var(--main-color_principal);*/
  opacity: .7;


}
  .inicio_categ_cont:hover {

    font-weight: 600;
    color: var(--main-color_principal);
  }

/* Si es mayor a */
@media (min-width: 600px){
  
  .fondo_categ_cont{
    opacity: .4;
  }

  #inicio_cont_categs_gral{
    height: 50px;
  }


  /* SCROLLBAR */
  /* Fondo */
  #inicio_cont_categs_gral::-webkit-scrollbar {
    display: block;
  }


  .inicio_categ_linea_sup {
    margin-bottom: 17px;
  }
}






