.flex-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.grupo-menu{
  display: flex;
  flex-direction: row;
}

.menu{
  background-color: #17a2b8;
  transition: all .3s ease-in-out;
  padding-top: 15px;
}

.menu:hover{
  background-color: #248999;
  cursor: pointer;
}

.ico-menu{
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  font-size: 1rem;
  
}

.ico-menu i{
  font-size: 1.5rem;
  /* color: steelblue; */
  /* color: #c2c7d0; */
  color: white;
  transition: all .2s ease-in-out;
}

.ico-menu:hover{
  cursor: pointer;
}

.text-menu{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: white;
}

.text-menu p{
  text-align: center;
}

.receta-column{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

label{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#tipoRecargo{
  /* background-color: rgb(226, 247, 255); */
  border: 1px solid rgb(180, 180, 180);
  height: 100%;
  min-height: 100px;
  overflow-y: scroll;

}

/* columnas tipo de recargo */
.tr-column{
  font-size: .8rem;
  text-align: center;
  /* font-weight: bold; */
  border: 1px solid silver;
  background-color: rgb(226, 247, 255);

  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.tr-row{
  font-size: .8rem;
  border: 1px solid rgb(230, 230, 230);
}

.tr-row:hover{
  background-color: rgb(205, 242, 248);
  cursor: pointer;
}

.btn-ico{
  background-color: transparent;
  border-style: none;
}

/* quitar borde de botón que aparecia al momento de hacer click sobre el */
.btn-ico:focus{
  outline: none;
}

/* buscar cliente/medico */
.tr-cliente:hover, .tr-medico:hover{
  background-color: #17a2b8 !important;
  /* color: whitesmoke; */
  cursor: pointer;
  transition: background-color .3s ease-in;
  /* transition: color .5s ease-in; */
}

#btnScrollToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#btnScrollToTop:hover {
  background-color: #555;
}

.mandatory{
  color: red;
}

.optional{
  font-weight: 100;
}