.mwm-header {
    text-align: center;
    background: #f9f9f9;
    padding: 20px 0px;
  }
  
  .mwm-header p {
    font-size: 24px;
    line-height: 24px;
    margin: 0px;
    color: #999;
  }
  
  body {
    --titleweight: 500;
    --subtitleweight: 400;
    --titlestyle: capitalize;
    --subtitlestyle: capitalize;
    --color0: #333;
    --color0b: #fff;
    --color1: #bd1819;
    --color2: #850506;
    --color3: #333;
    --color3b: #fff;
    --color4: #fff;
  }
  
  .fold-label {
    position: absolute;
    top: 20px;
    left: 50px;
    padding: 10px;
    background: #f9f9f9;
    width: 120px;
    text-align: center;
    border: solid 2px #eee;
    display: block;
    z-index: 7;
  }
  
  .fold-wrapper {
    position: relative;
    min-height: 200px;
  }
  
  .fold-label p {
    margin: 0;
    color: #999;
  }
  
  .category-button {
      position: absolute;
      top: 0;
      height: 100%;
      display: block;
      background: whitesmoke;
      pointer-events: all;
      opacity: 0.75;
      transition: all .5s ease;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }
  
  .category-wrapper {
      position: relative;
      min-height: 100px;
      z-index: 3;
  }
  
  .category-button i {
      font-size: 20px;
      padding: 10px;
  }
  
  .category-next{
      right: 0;
  }
  
  .category-prev{
      left: 0;
  }
  
  .ui-elem.fold-menu {
      position: absolute;
      bottom: 20px;
      left: 50px;
      padding: 10px;
      background: var(--color1);
      border-radius: 10px;
      cursor: pointer;
      z-index: 10;
  }
  
  .ui-elem.fold-menu i {
      color: var(--color0b);
  }
  
  .hide{
      display: none;
  }
  
  .seperator {
      display: block;
      width: 100%;
      height: 2px;
      background: #eee;
      z-index: 8;
      position: relative;
  }


  /**POPUP**/
  .resources-inner {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    min-height: 400px;
}

.resources-tab {
    background: whitesmoke;
    padding: 10px;
    cursor: pointer;
}

.resources-tabs {
    flex: 0 0 200px;
}

.resources-tab p {
    margin: 0;
}

.resources-tab.active {
    background: var(--popup-color2);
    color: white;
}

.resource-bodies {
    flex: 0 0 calc(100% - 220px);
    overflow: hidden;
    display: flex;
}

.resources-body {
    padding: 0px;
    display: none;
    position: relative;
    flex: 0 0 100%;
    overflow: hidden;
}

.resources-body pre {
    width: 100%;
    height: 100%;
    background: whitesmoke;
    margin: 0;
    height: 400px;
    border-radius: 5px;
    overflow-y: scroll;
    padding: 10px;
    text-align: left;
    overflow-x: hidden;
}

.resources-body.active {
    display: block;
}

.resources-body .copy {
    position: absolute;
    background: var(--popup-color2);
    padding: 10px;
    color: white;
    border-radius: 5px;
    top: 10px;
    cursor: pointer;
    right: 10px;
}

.category-wrapper pre {
  display: none;
}