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

.button_set {
  background-color: #d7c08b; /*d7c08b */
  border: none;
  border-radius: 12px;
  color: #660033;
  padding: 6px 12px;
  text-align: center;
  font-weight:bold;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
/*  width: 250px;*/
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
  width: 110px;  
}

.button_set:hover {
  background-color: #969696;
  color: #ffffff;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
