@keyframes heartbeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}


#contact-modal input {
    height: 48px;
    line-height: 48px;
    margin-top: .5rem;
    padding: 0 1rem;
    border: var(--bs-border-width) solid var(--bs-border-color)
}

#contact-modal input[type='submit']{
  border: 0;
}

#contact-modal .modal-body {
  position: relative;
  color: #fff;
  border-radius: 0 0 var(--bs-modal-border-radius) var(--bs-modal-border-radius);
  overflow: hidden;
}

#contact-modal .modal-body::before{
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

#contact-modal .modal-body::after{
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/template-media/contact-form-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

#contact-modal .modal-body .row {
    z-index: 10;
    position: relative;
}


#contact-modal h3{
  color: #00862F;
}

#contact-modal button.close {
  border: 0;
  font-size: 40px;
}

.floating-contact-btn {
	animation: heartbeat 1.5s ease-in-out 0s infinite both;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

}

.floating-contact-btn .img-holder {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #00862F;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px 3px #00000029;
}

.floating-contact-btn .img-holder svg{
  width: 60%;
}

.floating-contact-btn .description {
  background: white;
  margin-right: -32px;
  padding: .5rem 2.5rem .5rem 1rem;
  border-radius: 32px 0 0 32px;
  border: 3px solid #00862F;
}

.floating-contact-btn .description{
  box-shadow: 0 0 3px 3px #00000029;
}

.floating-contact-btn .description p {
  margin: 0;
  font-size: 14px;
}

.floating-contact-btn .description p:first-child {
  font-size: 16px;
  font-weight: bold;
  color: #00862F;
}

@media (max-width: 576px){
  .floating-contact-btn .description{
    display: none;
  }

  .floating-contact-btn .img-holder{
    width: 64px;
    height: 64px
  }

  .floating-contact-btn .img-holder svg{
    width: 50%;
  }
}


#description p {
    line-height: 29px;
}
