/*http://alexpeattie.com/projects/feedback_button/*/

#feedback {
  height: 104px;
  width: 104px;
  position: fixed;
  top: 40%;
  /*This is set to 97% instead of 98% because it scales better for narrower screens.*/
  left: 97%;
  z-index: 999;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  /*float: right;*/
}

#feedback a {
  display: block;
  /*background: #3598DC;/!*metronic blue*!/*/
  background: #18375E;/*clearview blue*/
  width: 120px;
  /*This is set to 80px instead of auto so that the button always appear to be attached to the side, even on wider screens*/
  height: 80px;
  padding: 8px 16px;
  color: #fff;
  /*font-family: Arial, sans-serif;*/
  font-family: "Helvetica Neue", sans-serif;
  font-size: 17px;
  /*font-weight: bold;*/
  font-align: center;
  text-decoration: none;
  /*border-bottom: solid 1px #333;*/
  /*border-left: solid 1px #333;*/
  /*border-right: solid 1px #fff;*/
}

#feedback a:hover {
  /*background: #2386CA;/!*metronic blue hover*!/*/
  background: #1E4370;/*clearview blue hover*/
}