.md-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    z-index: 9999;
  }
   
  .md-contents{
    display: none;
    position: fixed;
    top: 10px;
    left: 50%;
    width: 95%;
    height: auto;
    max-height: 95%;
    overflow: hidden;
    transform: translateX(-50%);
    z-index: 10000;
    overflow: scroll;
  }
   
   
  .md-inner{
    padding: 24px 40px;
    background-color: #9bc2e2;
    max-height: max-content;
    min-height: 100%;
  }
   
   
   
  .md-xmark{
    position: absolute;
    top: 34px;
    right: 20px;
    width: 25px;
    height: 22px;
    z-index: 9999;
    cursor: pointer;
  }
   
  .md-xmark span {
    height: auto;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
  }
   
  .md-xmark span:nth-of-type(1) {
    top: 0;
    transform: translateY(10px) rotate(-45deg);
  }
   
   
  .md-xmark span:nth-of-type(2) {
    bottom: 0;
    transform: translateY(-10px) rotate(45deg);
  }

  