  .bubble-container{
    position: fixed;
    bottom: 120px;
    right: 40px;
    right: 0%;
    z-index: 11;
}


.bubble {
    position:absolute;
    width: 50px;
    height: 50px;
    right: 10px;
    cursor: pointer;
    border-radius: 50%;
    margin-bottom: 5px;
    transition: all 0.4s cubic-bezier(0.1, 1.35, 1, 0.95);
    z-index: 1;
  }

  .bubble-wrapper {
    width: 768px;
    bottom: 0;
  }


  .bubble-form {
    background: #D82F5A;
    color: white;
    display: grid;
    place-content: center;
    bottom: 5px;
    font-size: .8rem;
  }

  .bubble-etc {
    background: #0068B3;
    color: white;
    display: grid;
    place-content: center;
    bottom: 5px;
    font-size: .8rem;
  }

  .bubble-open {
    background: rgb(0, 0, 0,.8);
    bottom: 5px;

    display: grid;
    place-content: center;
  }

  .bubble-close {
    background: #777;
    bottom: 5px;
    display: none;
  }
  .bubble-close:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 20px;
    background: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .bubble-close:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 20px;
    background: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

