/*button design by:http://red-team-design.com/css3-patterned-buttons/*/
.button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.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: -webkit-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0)),url();
  background-image: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0)),url();
  -webkit-transition: background-color .2s ease-out;  
  transition: background-color .2s ease-out;
  background-clip: padding-box; /* Fix bleeding */
  border-radius: 5px;
  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);  
  
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.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;
}

.button[disabled], 
.button[disabled]:hover, 
.button[disabled]:active {
  border-color: #eaeaea;
  background: #fafafa;
  cursor: default;
  position: static;
  color: #999;
  /* Usually, !important should be avoided but here it's really needed :) */
  box-shadow: none !important;
  text-shadow: none !important;
}

/* Smaller buttons styles */

.button.small {
  padding: 4px 12px;
}

/* Larger buttons styles */

.button.large {
  padding: 12px 30px;
  text-transform: uppercase;
}

.button.large:active {
  top: 2px;
}

/* Colored buttons styles */

.button.color {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
  background-image: -webkit-linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,0)),
                    url();
  background-image: linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,0)),
                    url();  
}

/* */

.button.claret {
  background-color: #941f57;
  border-color: #6c272d;
}

.button.claret:hover {
  background-color: #eb6ea0;
}

.button.claret:active {
  background: #941f57;
}

/* */

.button.sapphire_blue {
  background-color: #0068b7;
  border-color: #043c78;
}

.button.sapphire_blue:hover {
  background-color: #68a4d9;
}

.button.sapphire_blue:active {
  background: #0068b7;
}

/* */

.button.sepia {
  background-color: #622d18;
  border-color: #6f5436;
}

.button.sepia:hover {
  background-color: #e8c59c;
}

.button.sepia:active {
  background: #622d18;
}

/* */

.button.pannsy {
  background-color: #4d4398;
  border-color: #192f60;
}

.button.pannsy:hover {
  background-color: #a4a8d4;
}

.button.pannsy:active {
  background: #4d4398;
}

/* */

.button.burnt_umber {
  background-color: #6f5436;
  border-color: #6f5436;
}

.button.burnt_umber:hover {
  background-color: #c49a6a;
}

.button.burnt_umber:active {
  background: #6f5436;
}

/* */

.button.olivegreen {
  background-color: #5f6527;
  border-color: #5f6527;
}

.button.olivegreen:hover {
  background-color: #a7d28d;
}

.button.olivegreen:active {
  background: #5f6527;
}

/* */

.button.orange {
  background-color: #ee7800;
  border-color: #ee7800;
}

.button.orange:hover {
  background-color: #f7b977;
}

.button.orange:active {
  background: #ee7800;
}

/* */

.button.winered {
  background-color: #b33e5c;
  border-color: #b33e5c;
}

.button.winered:hover {
  background-color: #ea618e;
}

.button.winered:active {
  background: #b33e5c;
}

/* */

.button.purple {
  background-color: #734E93;
  border-color: #5a4498;
}

.button.purple:hover {
  background-color: #9C7EB6;
}

.button.purple:active {
  background: #734E93;
}

/* */

.button.green {
  background-color: #57a957;
  border-color: #57a957;
}

.button.green:hover {
  background-color: #62c462;
}

.button.green:active {
  background: #57a957;
}

/* */

.button.red {
  background-color: #c43c35;
  border-color: #c43c35;
}

.button.red:hover {
  background-color: #ee5f5b;
}

.button.red:active {
  background: #c43c35;
}

/* */

.button.blue {
  background-color: #269CE9;
  border-color: #269CE9;
}

.button.blue:hover {
  background-color: #70B9E8;
}

.button.blue:active {
  background: #269CE9;
}

/* */

.claret[disabled], 
.claret[disabled]:hover, 
.claret[disabled]:active {
  border-color: #6c272d;
  background: #c70067;
  color: #f5ecf4;
}

.sapphire_blue[disabled], 
.sapphire_blue[disabled]:hover, 
.sapphire_blue[disabled]:active {
  border-color: #043c78;
  background: #0068b7;
  color: #bbdbf3;
}

.sepia[disabled], 
.sepia[disabled]:hover, 
.sepia[disabled]:active {
  border-color: #6f5436;
  background: #622d18;
  color: #cc917a;
}

.pannsy[disabled], 
.pannsy[disabled]:hover, 
.pannsy[disabled]:active {
  border-color: #192f60;
  background: #4d4398;
  color: #bcb7e5;
}

.burnt_umber[disabled], 
.burnt_umber[disabled]:hover, 
.burnt_umber[disabled]:active {
  border-color: #6f5436;
  background: #6f5436;
  color: #c49a6a;
}

.olivegreen[disabled], 
.olivegreen[disabled]:hover, 
.olivegreen[disabled]:active {
  border-color: #5f6527;
  background: #5f6527;
  color: #a7d28d;
}

.orange[disabled], 
.orange[disabled]:hover, 
.orange[disabled]:active {
  border-color: #ee7800;
  background: #ee7800;
  color: #edd5bd;
}

.winered[disabled], 
.winered[disabled]:hover, 
.winered[disabled]:active {
  border-color: #b33e5c;
  background: #b33e5c;
  color: #522B72;
}

.purple[disabled], 
.purple[disabled]:hover, 
.purple[disabled]:active {
  border-color: #734E93;
  background: #734E93;
  color: #d0b7e5;
}

.green[disabled], 
.green[disabled]:hover, 
.green[disabled]:active {
  border-color: #57A957;
  background: #57A957;
  color: #D2FFD2;
}

.red[disabled], 
.red[disabled]:hover, 
.red[disabled]:active {
  border-color: #C43C35;
  background: #C43C35;
  color: #FFD3D3;
}

.blue[disabled], 
.blue[disabled]:hover, 
.blue[disabled]:active {
  border-color: #269CE9;
  background: #269CE9;
  color: #93D5FF;
}

/* Group buttons */

.button-group,
.button-group li {
  display: inline-block;
  /*display: inline;
  zoom: 1;*/
}

.button-group {
  font-size: 0; /* Inline block elements gap - fix */
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, .04);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  padding: 7px;
  border-radius: 7px; 
}

.button-group li {
  margin-right: -1px; /* Overlap each right button border */
}

.button-group .button {
  font-size: 13px; /* Set the font size, different from inherited 0 */
  border-radius: 0; 
}

.button-group .button:active {
  box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 
              5px 0 5px -3px rgba(0, 0, 0, .2) inset, 
              -5px 0 5px -3px rgba(0, 0, 0, .2) inset;   
}

.button-group li:first-child .button {
  border-radius: 3px 0 0 3px;
}

.button-group li:first-child .button:active {
  box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 
              -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
}

.button-group li:last-child .button {
  border-radius: 0 3px 3px 0;
}

.button-group li:last-child .button:active {
  box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 
              5px 0 5px -3px rgba(0, 0, 0, .2) inset;
}
/* Hexadecimal entities for the icons */

.add:before {
    content: "\271A";
}

.edit:before {
    content: "\270E";        
}

.delete:before {
    content: "\2718";        
}

.save:before {
    content: "\2714";        
}

.email:before {
    content: "\2709";        
}

.like:before {
    content: "\2764";        
}

.next:before {
    content: "\279C";
}

.star:before {
    content: "\2605";
}

.spark:before {
    content: "\2737";
}

.play:before {
    content: "\25B6";
}
