@font-face {
  font-family: 'Baloo';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/baloo/v13/6xKhdSpJJ92I9MWPCms.ttf) format('truetype');
}
@font-face {
  font-family: 'kittens';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Kitten-Slant-Monoline.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
}
.float-button {

  background: url(../img/donarpas.png) center right no-repeat;
  position: fixed;
  overflow: hidden;
  width: 82px;
  height: 141px;
  /*border-radius: 85px;*/
  right: 10px;
  bottom: 54px;
  transition: 0.4s all;
  z-index: 20000;
}
.float-button .complete {
  display: flex;
  left: -590px;
  top: -590px;
  position: absolute;
  height: 100%;
  width: 100%;
  flex-direction: column;
  transition: 0.4s all;
}
.float-button .complete .content {
  display: flex;
  height: 100%;
  flex-direction: row;
  flex: 1;
}
.float-button .complete .content .info {
  display: flex;
  height: 100%;
  flex-direction: column;
  flex: 1;
  align-items: flex-end;
  padding-top: 93px;
  padding-right: 50px;
  background-position-x: 189px;
  background-position-y: 60px;
}
.float-button .complete .content .info .title {
  font-family: 'kittens';
  font-size: 25px;
  color: white;
}
.float-button .complete .content .info .desc {
  font-family: 'Patrick Hand', sans-serif;
  color: white;
  font-size: 5em;
  text-align: right;
  line-height: 90px;
  margin-top: -19px;
}
.float-button .complete .options {
  display: flex;
  justify-content: space-around;
  align-items: center;

  height: 77px;
  padding: 15px 45px 0 161px;
}
.float-button .complete .options .button {
  cursor: pointer;
    font-size: 20px;
    /* background: transparent; */
    border: 1px solid blue;
    border-radius: 5px;
    color: blue;
    text-transform: uppercase;
    text-decoration: none;
    width: 160px;
    height: 42px;
    transition: 0.3s all;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-bottom: 70px;
}
.float-button .complete .options .button:hover {
  background: white;
  color: #457141;
}
.float-button .reduced {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 42px;
  opacity: 0.9;
  transition: 0.4s all;
  position: absolute;
  width: 85px;
  right: 0;
  bottom: 0;
}
.float-button:hover,
.float-button.active {
  bottom: 0;
  right: 0;
  width: 560px;
  height: 400px;
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.float-button:hover:before,
.float-button.active:before {
  content: '';
  position: absolute;
  width: 591px;
  height: 591px;
  background-color: rgba(84, 193, 74, 0.9);
  border-radius: 395.5px;
  border: 1px solid white;
  box-shadow: 0 0px 3px 0 #CCC;
}
.float-button:hover .reduced,
.float-button.active .reduced {
  right: -490px;
  bottom: -490px;
}
.float-button:hover .complete,
.float-button.active .complete {
  left: 0;
  top: 0;
}