#btndisclaimer {
  position: fixed;
  right: 5px;
  bottom: 5px;
}

.buttonP {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.buttonP span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.buttonP span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.buttonP:hover span {
  padding-right: 25px;
}

.buttonP:hover span:after {
  opacity: 1;
  right: 0;
}

.link:hover {
        cursor: default;
      }

/*Floating Back-To-Top Button*/
#myBtn {
        position: fixed;
        bottom: 10px;
        left: 10px;
        background-color: #f4511e;
        padding: .5px;
        border-radius: 4px;
    }