.htmlpress-slot-debug {
  display: inline !important;
  position: absolute !important;
  height: 0px;
  width: 0px;

  .htmlpress-slot-debug-inner {
    z-index: 1000;
    display: none;
    opacity: 0.25;
    position: fixed;
    bottom: 0px;
    right: 0px;
    height: 15px;
    background-color: rgba(255, 255, 255, 1.0);
    color: #000 !important;
    font-size: 10px !important;
    line-height: 1.25em;
    width: 350px;
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
    padding: 10px 15px;
    text-align: left;
    font-weight: normal;
    font-family: 'sans-serif';

    * {
      color: inherit;
      font-size: inherit;
      font-weight: inherit;
      font-family: inherit;
      text-align: inherit;
      line-height: inherit;
      cursor: default;
    }

    ol, ul, li {
      margin: 0px;
      padding: 0px;
      list-style-type: none;
    }

    .htmlpress-slot-nav {
      position: absolute;
      top: -5px;
      right: 15px;

      .htmlpress-slot-nav-link {
        display: inline-block;
        padding: 15px;
        cursor: pointer;

        &:hover {
          color: red;
        }
      }
    }

    .htmlpress-slot-heading {
      font-size: 12px;
      margin: 0px;
      margin-bottom: 10px;
      margin-right: 50px;
    }

    &:hover {
      opacity: 1;
      height: auto;

      .htmlpress-slot-nav {
        top: auto;
        bottom: 0px;
      }
    }
  }
}

[name="htmlpress-slot-debug-radio"] {
  display: none;

  &:checked {
    + .htmlpress-slot-debug {
      width: 100%;
      min-width: 50px;
      height: 1px;
      background-color: red;

      > .htmlpress-slot-debug-inner {
        display: block;
      }
    }
  }
}