.debugger-modal-window {
  position: fixed;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 1000;
  margin: auto;
  padding: 2rem;
  width: 90%;
  height: 70vh;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);

  .js-debugger-close-button {
    position: absolute;
    font-size: 15px;
    padding: 6px;
    text-align: center;
    width: 25px;
    height: 25px;
    right: -11px;
    top: -11px;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1001;

    &:hover {
      color: #0bba16;
    }
  }

  .debugger-tabs {
    .debugger-tab {
      display: inline-block;
      background: #eee;
      padding: 10px;
      border: 1px solid #ccc;
      border-bottom: none;
      margin-left: -1px;
      position: relative;
      left: 1px;
      cursor: pointer;

      &.active {
        background: #fff;
      }
    }
  }

  .debugger-content {
    padding: 20px;
    border: 1px solid #ccc;
    height: calc(100% - 30px);
    overflow: scroll;

    .debugger-table {
      width: 100%;
      border: 1px solid #ccc;
      border-collapse: collapse;
      border-spacing: 0;

      td,
      th {
        border: 1px solid #ccc;
        padding: 5px 8px;
      }
    }

    .debugger-search {
      padding: 9px;
      border: 2px solid black;
      width: 350px;
      margin-bottom: 20px;
      margin-left: 10px;
    }
  }

  [type=radio]:checked ~ label {
    background: white;
    border-bottom: 1px solid white;
    z-index: 2;
  }

  [type=radio]:checked ~ label ~ .expl-debugger-content {
    z-index: 1;
  }

}
