.hide-wrapper {
    display: none;
  }
  .show-wrapper {
    display: block;
  }
  .dimmer {
    background: #000;
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
  }
  .popup {
    position: absolute;
    background-color: #34323b;
    color:white;
    z-index: 101;
    padding: 20px;
    border-radius: 5px;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
  }
  .popup-button {
    background-color: transparent;
    border: none 0px transparent;
    color: white;
    float: right;
  }
  .no-scroll {
    overflow: hidden;
  }