.boton {
	border-radius: 25px; background: #99def9;
	cursor: pointer;
	padding: 5px 1em 5px 1em;
	widt_h: 7em; hei_ght:2.5em;
	text-align: center; color:#2e3192;
	display:flex;flex-direction:column;justify-content:center;
}
.botonEstrecho {
	border-radius: 25px; background: #99def9;
	cursor: pointer;
	padding: 5px 1em 5px 1em;
	width: 7em; hei_ght:2.5em;
	text-align: center; color:#2e3192;
	display:flex;flex-direction:column;justify-content:center;
}
.botonMaterial {
	position: relative;
	display: block;
	margin: 15px auto;
	padding: 0;
	overflow: hidden;
	border-width: 0;
	outline: none;
	border-radius: 2px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
	background-color: #2ecc71;
	color: #ecf0f1;
	transition: background-color .3s;
}
.botonMaterial.gris {
  background-color: #a0a0a0;
}
.botonMaterial:hover, .botonMaterial:focus {
  background-color: #27ae60;
}
.botonMaterial > * {
  position: relative;
}
.botonMaterial span {
  display: block;
  padding: 12px 24px;
}
.botonMaterial:before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 0;
  padding-top: 0;

  border-radius: 100%;

  background-color: rgba(236, 240, 241, .3);

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.botonMaterial:active:before {
  width: 120%;
  padding-top: 120%;

  transition: width .2s ease-out, padding-top .2s ease-out;
}
