#site-editor-helper {
    position: fixed;
    z-index: 9999;
    bottom: 10pt;
    left: 10pt;
    padding: 0.8rem;
    font-family: sans-serif;
    border-radius: 5px;
    box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    background-color: #fff;
    transition: transform .5s ease;
  }
  #site-editor-helper.close-helper {
    transform: translatex(-150%);
  }
  #site-editor-helper i {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  #site-editor-helper span a {
    text-decoration: underline;
    color: blue !important;
  }
  