﻿.subbtn {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
  padding: 4px 8px;
  border: 1px solid rgba(5,35,56,1);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font: normal 12px/normal Arial, Helvetica, sans-serif;
  color: rgba(255,255,255,0.9);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #0a3c5f;
  -webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
}
.subbtn:hover {
    color: rgba(255,255,255,0.9);
    text-decoration:none;
    background: #3c7ba7;
}
.redsubbtn {
    display: inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    padding: 4px 8px;
    border: 1px solid rgba(5,35,56,1);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font: normal 12px/normal Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,0.9);
    -o-text-overflow: clip;
    text-overflow: clip;
    background: #5f0a10;
    -webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
}

    .redsubbtn:hover {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        background: #5f0a10;
    }