﻿@import url(//fonts.googleapis.com/css?family=Open+Sans:400,700);


.buttons {
  border: 0 none;
  border-radius: 25px;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  font-family: Arial,sans-serif;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 10px;
  padding: 7px 10px;
  text-transform: none;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  /*width: auto; /* auto */
  /*text-align: center; /* DELETE WHEN WIDTH AUTO */
}
.buttons.red {
  background: none repeat scroll 0 0 #E0645C;
  color: #FFFFFF;
}
.buttons.red:hover {
  background: none repeat scroll 0 0 #888888;
  color: #FFFFFF;
}
.buttons.dark {
  background: none repeat scroll 0 0 #444444;
  color: #FFFFFF;
}
.buttons.dark:hover {
  background: none repeat scroll 0 0 #46b98a;
  color: #FFFFFF;
}
.buttons.light {
  background: none repeat scroll 0 0 #999999;
  color: #FFFFFF;
}
.buttons.light:hover {
  background: none repeat scroll 0 0 #AE585C;
  color: #FFFFFF;
}
.buttons.green {
  background: none repeat scroll 0 0 #46b98a;
  color: #FFFFFF;
}
.buttons.green:hover {
  background: none repeat scroll 0 0 #444444;
  color: #FFFFFF;
}
.buttons.blue {
  background: none repeat scroll 0 0 #2DB6CF;
  color: #FFFFFF;
}
.buttons.blue:hover {
  background: none repeat scroll 0 0 #444444;
  color: #FFFFFF;
}