@charset "UTF-8";
/* CSS Document */
button {
  display: inline-block;
  border-radius: 1px 1px 1px 1px;
  /*background-color: rgba(255, 71, 58, 0.90);*/
	background-color:#6495ed;
  color: #FFFFFF;
	/*color:navy;*/
  text-align: center;
  padding: 12px 16px;
  transition: all 0.5s;
  cursor: pointer;
  margin-bottom: 6px;
  width: 100%;
  border: 1px solid #fff;
  font-size: 15px;
}
button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
button span:after {
  /*content: '»';*/
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}
button:hover span {
  /*padding-right: 15px;*/
	color:yellow;
}
button:hover span:after {
  opacity: 1;
  right: 0;
}