.tag {
  font-family: viga;
  margin: 40px;
  font-weight: bold;
  font-size: 24px;
  color: white;
  background-color: #cc1212;

  background: -moz-linear-gradient(top, #cc1212 0%, #d62304 34%, #a00303 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cc1212), color-stop(34%, #d62304), color-stop(100%, #a00303));
  background: -webkit-linear-gradient(top, #cc1212 0%, #d62304 34%, #a00303 100%);
  background: -o-linear-gradient(top, #cc1212 0%, #d62304 34%, #a00303 100%);
  background: -ms-linear-gradient(top, #cc1212 0%, #d62304 34%, #a00303 100%);
  background: linear-gradient(to bottom, #cc1212 0%, #d62304 34%, #a00303 100%);
  text-shadow: 0 -1px 1px black;
  padding: 8px 8px 8px 17px;
  display: inline-block;
  border-radius: 6px;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.75);
  position: relative;
    

  cursor: pointer;
  color:#fff;
  position:fixed;
  top:50px;
    

  left: 55%;
    
    
}
.tag:before {
  content: ' ';
  display: block;
  position: absolute;
  height: 12px;
  width: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.75);
  left: -5px;
  top: 16px;
  z-index: 22;
}
.tag:after {
  content: ' ';
  display: block;
  position: absolute;
  z-index: 20;
  height: 35px;
  width: 35px;
  border-radius: 6px;
  background-color: #cc1212;

  background: -moz-linear-gradient(top left, #cc1212 0%, #d62304 34%, #a00303 100%);
  background: -webkit-gradient(linear, top left, bottom right, color-stop(0%, #cc1212), color-stop(34%, #d62304), color-stop(100%, #a00303));
  background: -webkit-linear-gradient(top left, #cc1212 0%, #d62304 34%, #a00303 100%);
  background: -o-linear-gradient(top left, #cc1212 0%, #d62304 34%, #a00303 100%);
  background: -ms-linear-gradient(top left, #cc1212 0%, #d62304 34%, #a00303 100%);
  background: linear-gradient(to bottom right, #cc1212 0%, #d62304 34%, #a00303 100%);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 5px;
  left: -13px;
  box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.75);
}
.tag span {
  position: relative;
  z-index: 25;
}