
  .f-modal-alert {
    position: fixed;
    bottom: 0px;
    right: 20px;
    z-index: 100;
  }
  .f-modal-alert .f-modal-icon {
    border-radius: 50%;
    border: 4px solid gray;
    box-sizing: content-box;
    height: 80px;
    margin: 20px auto;
    padding: 0;
    position: relative;
    width: 80px;
  }

  .f-modal-alert .f-modal-icon.f-modal-warning {
    border-color: #82af4a;
  }
  .f-modal-alert .f-modal-icon.f-modal-warning:before {
    animation: pulseWarning 2s linear infinite;
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 100%;
    opacity: 0;
    position: absolute;
    width: 100%;
  }
  .f-modal-alert .f-modal-icon.f-modal-warning:after {
    background-color: #fff;
    border-radius: 50%;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .f-modal-alert .f-modal-icon.f-modal-warning .f-modal-body {
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: 5px;
    border-radius: 2px;
    z-index: 2;

    font-size: 50px;
    color: #82af4a;
  }
  .f-modal-alert .f-modal-icon.f-modal-warning .f-modal-dot {
    background-color: #82af4a;
    border-radius: 50%;
    bottom: 10px;
    height: 7px;
    left: 50%;
    margin-left: -3px;
    position: absolute;
    width: 7px;
    z-index: 2;
  }
  .f-modal-alert .f-modal-icon + .f-modal-icon {
    margin-top: 50px;
  }
 
  .scaleWarning {
    animation: scaleWarning 0.75s infinite alternate;
  }

.bubble {
    position: fixed;
    bottom: 129px;
    right: 20px;
    z-index: 100;
}

.bubble h1{
    font-size: 25px;
}

.bubble-text{
    background:white; 
    color:#82af4a; 
    padding:7px 15px; 
    border-radius:20px; 
    width:350px;

    border: solid #82af4a;
    border-width: 4px;
}

.bubble-text h1, p{
    padding: 10px;
}

.bubble-text a{
    color: #82af4a;
}

.bubble-text a:hover{
    color: #5e8036;
}

.bubble-text::after{
    content:""; 
    border-left:20px solid transparent;
    border-right:20px solid transparent;
    border-top: 20px solid #82af4a;
    position: absolute;
    right: 22px;
    bottom: -20px;
}


  @keyframes scaleWarning {
    0% {
      transform: scale(1);
    }
    30% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes pulseWarning {
    0% {
      background-color: #fff;
      transform: scale(1);
      opacity: 0.5;
    }
    30% {
      background-color: #fff;
      transform: scale(1);
      opacity: 0.5;
    }
    100% {
      background-color: #82af4a;
      transform: scale(2);
      opacity: 0;
    }
  }
  

  @media (max-width: 585px) {
    .f-modal-alert .f-modal-icon {
        height: 50px;
        width: 50px;
    }

    .f-modal-alert .f-modal-icon.f-modal-warning .f-modal-body {
        font-size: 35px;
        margin-left: -4px;
        top: 2px;
    }

    .bubble {
        bottom: 100px;
    }
    
    .bubble-text {
        width: 310px;
    }

    .bubble-text::after {
        right: 9px;
        bottom: -17px;
    }
}

