div.fixed {
    position: fixed;
    top: 150px;
    right: 20px;
    width: 200px;
    background-color: #ff5f13;
    border-radius: 30px;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
    z-index: 9999;
    opacity: 0.9;
    vertical-align: middle;
    text-align: center;
  }

  .fixed-text {
    vertical-align: middle;
    z-index: 2;
    position: relative;
    color: #ffffff;
    font-size: 1.5rem;
    text-align: center;
  }

  .fixed-text-small {
    vertical-align: middle;
    z-index: 2;
    position: relative;
    color: #ffffff;
    text-align: center;
  }

  div.fixed :hover {
    background-color: #ce0303;
    border-radius: 30px;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
    opacity: 0.9;
    vertical-align: middle;
    text-align: center;
  }