@charset "utf-8";
/* CSS Document */

.button {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button {
  background-color: #FF9800;
  color: #fff;
	font-weight: bold;
	border-radius: 100px;
}
.button:hover {
  background-color: #59b1eb;
}

/********************************/


.button2 {
  background-color: #fff;
	color: #000000;
}



@media screen and (max-width: 768px) {

.button {
    display: inline-block;
    width: 140px;
    height: 34px;
    text-align: center;
    text-decoration: none;
    line-height: 34px;
    outline: none;
}
	
}