button.open-help {
    position: fixed !important;
    z-index: 222;
    /* zoom: 1.5; */
    bottom: 50px;
    right: 10%;
    min-width: auto;
  }
  
  .modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5000000;
  }
  
  .smoke-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 22;
    height: 100%;
    background: var(--background-light);
    opacity: 0.8;
  }
  
  .modal-content-wrapper {
    max-width: 900px;
    min-width: 250px;
    width: 90%;
    position: absolute;
    left: 0;
    right: 0;
    background: var(--background-extralight);
    box-shadow: var(--box-shadow);
    z-index: 23;
    margin: 10% auto;
  }
  
  .modal-header {
    padding: 20px;
    border-radius: 10px 10px 0px 0px;
  }
  
  .modal-content {
    padding: 20px 20px 60px;
  }
  
  .modal-content ul {
    margin-left: 20px;
  }
  
  .modal-footer {
    bottom: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid var(--background-dark);
  }
  