/* button div */
#buttons {
  padding-top: 50px;
  text-align: center;
}

/* start da css for da buttons */
.btn {
  border-radius: 5px;
  margin-top: 10px;
  /*padding: 15px 25px; */
  font-size: 22px;
  text-decoration: none;
  /*margin: 20px; */
  color: rgba(0,0,0,1.0); /*#fff; */
  position: relative;
  display: inline-block;
}

.btn:active {
  transform: translate(0px, 5px);
  -webkit-transform: translate(0px, 5px);
  box-shadow: 0px 1px 0px 0px;
}

.blue {
  /*background-color: rgba(195,195,195,0.9);*/ /* #55acee; */
  /*box-shadow: 0px 5px 0px 0px rgba(195,195,195,1.0);*/ /*#3C93D5; */
  background-color: rgba(250,250,250,0.9); /* #55acee; */
  box-shadow: 0px 5px 0px 0px rgba(195,195,195,1.0); /*#3C93D5; */
}

.blue:hover {
  background-color: rgba(195,195,195,0.7); /*#6FC6FF;*/
  color: rgba(255,255,255,1.0); /*#fff; */
}

.green {
  background-color: #2ecc71;
  box-shadow: 0px 5px 0px 0px #15B358;
}

.green:hover {
  background-color: #48E68B;
}

.red {
  background-color: #e74c3c;
  box-shadow: 0px 5px 0px 0px #CE3323;
}

.red:hover {
  background-color: #FF6656;
}

.purple {
  background-color: #9b59b6;
  box-shadow: 0px 5px 0px 0px #82409D;
}

.purple:hover {
  background-color: #B573D0;
}

.orange {
  background-color: #e67e22;
  box-shadow: 0px 5px 0px 0px #CD6509;
}

.orange:hover {
  background-color: #FF983C;
}

.yellow {
  background-color: #f1c40f;
  box-shadow: 0px 5px 0px 0px #D8AB00;
}

.yellow:hover {
  background-color: #FFDE29;
}


/* -------------------------*/
/* Smaller buttons styles */
.button.small{
  padding: 4px 12px;
}
 
/* Larger buttons styles */
.button.large{
  padding: 12px 30px;
  text-transform: uppercase;
}
 
.button.large:active{
  top: 2px;
}


.button{
  display: inline-block;
  *display: inline;
  zoom: 1;
  padding: 6px 20px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #bbb;
  overflow: visible;
  font: bold 13px arial, helvetica, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  color: #555;
  background-color: #ddd;
  background-image: linear-gradient(top, rgba(255,255,255,1),
                                         rgba(255,255,255,0)),
                    url(data:image/png;base64,iVBORw0KGg[...]QmCC); 
  transition: background-color .2s ease-out;
  background-clip: padding-box; /* Fix bleeding */
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .3),
              0 2px 2px -1px rgba(0, 0, 0, .5),
              0 1px 0 rgba(255, 255, 255, .3) inset;
  text-shadow: 0 1px 0 rgba(255,255,255, .9);  
}
 
.button:hover{
  background-color: #eee;
  color: #555;
}
 
.button:active{
  background: #e9e9e9;
  position: relative;
  top: 1px;
  text-shadow: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
}