body {position:relative}

.trigger-float-btn-content {
	 -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
	opacity:0;display:none;
}

.trigger-float-btn-content.trigger-btn-content-block {display:block}
.trigger-float-btn-content.trigger-btn-content-shown {opacity:1;}

.trigger-float-btn-holder {
    z-index: 100;
}
.trigger-float-btn a {
    position: absolute;
    z-index: 500;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
}
div#offerte-aanvragen {
    max-width: 500px;
    padding: 35px;
}


.trigger-float-btn-holder.top-left, .trigger-float-btn-holder.bottom-left{left:30px}
.trigger-float-btn-holder.top-right, .trigger-float-btn-holder.bottom-right{right:30px}

.trigger-float-btn-content {
    position: absolute;
    width: 130px;
    right: 0;
    right: calc(50% - 65px);
    text-align: center;
    top: -65px;
    font-size: 18px;
    color: #000;
    line-height: 1.3;
    opacity: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.trigger-float-btn {
    text-align: center;
    position: relative;
    width: 80px;
    height: 80px;
    border: none;
    box-shadow: 0 0 0 0 rgb(241, 165, 23);
    border-radius: 50%;
    background-color: #f1a516;
    cursor: pointer;
    -webkit-animation: pulse 5s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 5s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 5s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.trigger-float-btn:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0px 6px 14px 0px rgba(0,0,0,0.38);
    -moz-box-shadow: 0px 6px 14px 0px rgba(0,0,0,0.38);
    box-shadow: 0px 6px 14px 0px rgba(0,0,0,0.38);
}
.trigger-float-btn .trigger-float-btn-content i {
    color: #000;
    margin-top: 0;
    position: absolute;
    bottom: -40px;
    left: 0;
    left: calc(50% - 14px);
    font-size: 32px;
	 -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.trigger-float-btn .trigger-float-btn-content i {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

.trigger-float-btn i {
    font-size: 49px;
    color: #fff;
    margin-top: 16px;
}
.trigger-float-btn:hover .trigger-float-btn-content  {opacity:1;}


.trigger-float-btn:hover 
{
  -webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}

@-webkit-keyframes pulse {to {box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);}}


@media screen and (max-width:700px){.trigger-float-btn-holder{display:none}}