/* Common Buttons */
button::-moz-focus-inner {
  border: 0;
}

a.button, button {
	color: #576a75;
	text-decoration: none;
	/*padding: 8px 12px;*/
	padding: 0 16px;
	margin: 5px;
	height: 34px;
	/*line-height: 8px;*/
	display: inline-block;
	-webkit-transition: ease-in-out .2s;
	-moz-transition: ease-in-out .2s;
	-o-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
	background: #fff;
	border: 1px solid  #dcdcdc;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	cursor: pointer;
	vertical-align: middle;
	outline: none;
}

a.button:hover, button:hover {
	color: #2c343a;
	border-color: #999;
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow:0 0 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

a.button:active, button:active, a.button:focus, button:focus {
  	color: #000;
	border-color: #2f90ad;
}

a.button:active, button:active {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

a.button:disabled, button:disabled {
  	color: #ccc;
	border-color: #ebebeb;
	background-color: #fff;
	box-shadow: none;
	cursor: default;
}

/* TODO: hace falta esto? */
/*a.button:disabled:after, button:disabled:after {*/
/*  content: "";*/
/*  position: fixed;*/
/*  top: 0; bottom: 0; left: 0; right: 0; */
/*  background: rgba(255, 255, 255, 0.3);*/
/*  pointer-events: none;*/
/*}*/


/* Small */
button.small {
	width: 22px !important;
	height: 22px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	box-shadow: none !important;
	background-color: transparent !important;
	background-position: center;
	background-repeat: no-repeat;
	transition: ease 0.3s;
	filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
}

button.small:hover {
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

button.icon-only, button.icon-only:hover {
	background-position: center !important;
	padding: 0 !important;
	height: 32px;
	width: 32px;
}

/* Para pagination */
/* Rounded */
button.rounded {
	background-position: center !important;
	padding: 0;
	border-radius: 22px;
	width: 30px;
	height: 30px;
}

/* Square */
button.square {
	background-position: center !important;
	padding: 0 5px;
	min-width: 30px;
	width: auto;
	height: 30px;
	font-weight: bold;
}

button.square.current {
	background: #fff;
	border: 1px solid #3aa9ca;
	box-shadow: 0 0 2px #3aa9ca;
}
