  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #fff;
  }
  
  .outer {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border: 1px solid #4b4b4b;
    border-radius: 5px;
    background-color: #ffffff;
  }
  
  #panzoom {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  
  #panzoom .inner {
    position: relative;
  }
  
  #main-svg {
    position: relative;
    top: -80px;
    width: auto;
    height: 100vh;
    vertical-align: middle;
    overflow: visible;
  }

  @media screen and (max-width: 960px){
    #main-svg {
      width: auto;
      height: 100vh;
    }
  }
  
  .zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  
  .zoom > * {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 2px;
    font-size: 1.2em;
    background-color: #fff;
    color: #10695f;
    border: 3px solid #10695f;
    border-radius: 8px;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
  }

  #zoomOut {
    padding-bottom: 2px;
  }
