#menu-posts-podcast {
  .wp-menu-image {
    display: flex;
    align-items: center;
    margin-left: 5px !important;
    width: auto !important;

    &:before {
      background: #5996ff;
      height: 8px;
      line-height: 0;
      border-radius: 15px;
      width: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff !important;
      font-size: 15px;
    }
  }
}

a[href='edit.php?post_type=podcast&page=podcast-box-get-started'] {
  color: #5996ff !important;
  font-weight: 600;
}

.tab-wrap {
  --podcast-box-brand-color: #5996ff;

  display: flex;
  border: 1px solid #ddd;
  flex-flow: row;

  /*------------- tab links ------------*/
  .tab-links {
    width: 20%;
    display: flex;
    flex-flow: column;

    .tab-link {
      padding: 12px;
      background: #0073aa;
      color: #fff;
      display: flex;
      align-items: center;
      text-decoration: none;
      border-bottom: 1px solid #fff;
      font-size: 14px;

      img, i {
        width: 24px;
        margin-right: 5px;
      }

      &.active {
        background: #fff;
        color: #0073aa;
      }

      .badge {
        margin-left: auto;
        font-size: 12px;
        font-weight: normal;
        background: #ffc107;
        border-radius: 5px;
        padding: 1px 3px;
        color: #555;
      }

    }
  }

  //tab content
  .tab-content {
    flex: 1;
    padding: 15px;
    background: #F7FCFE;
    display: none;
    font-size: 1rem;

    code {
      color: darkred;
    }

    &-title {
      font-size: 20px;
      margin: 0 0 20px;
      border-bottom: 1px solid #777;
      padding: 10px 0 20px 0;
    }

    &.active {
      display: block;
    }

    p {
      line-height: 1.5;
      margin: 10px 0 15px;
      font-size: 1rem;
      max-width: 800px;
    }

    img {
      box-shadow: 0 0 5px #555;
      border-radius: 8px;
      margin: 15px auto;
      display: block;
      max-width: 100%;
    }

    .img-caption {
      color: #988;
      display: block;
      text-align: center;
      margin-bottom: 25px;
    }

  }

  /*----------- tab content section --------*/
  .tab-content-section {
    border: 1px solid #999;
    padding: 15px;
    border-radius: 7px;
    margin-bottom: 15px;

    &-title {
      font-size: 20px;
      margin: 0;
      border-bottom: 1px solid #eee;
      background: #0073aa;
      color: #fff;
      padding: 15px 10px;
      border-radius: 8px;
    }

    blockquote {
      &:before, &:after {
        font-size: 18px;
        font-weight: bold;
        color: cornflowerblue;
      }

      &:before {
        content: '“';
      }

      &:after {
        content: '”';
      }
    }

    .badge {
      margin-right: auto;
      font-size: 12px;
      font-weight: normal;
      margin-left: 12px;
      background: #ffc107;
      border-radius: 5px;
      padding: 1px 5px;
      color: #555;
    }

  }

  /*----------- change logs -----------*/
  .logs {

    .log {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      padding-bottom: 5px;
      border-bottom: 1px solid #ddd;

      i {
        background: #0073aa;
        color: #fff;
        padding: 2px;
        margin-right: 5px;
        border-radius: 18px;
        width: auto;
        height: auto;
        font-size: 13px;
      }

      .badge {
        background: #9B59B6;
        padding: 3px 8px;
        color: #fff;
        border-radius: 3px;
        margin-right: 10px;
        min-width: 50px;
        text-align: center;
        font-size: .9rem;
      }
    }
  }

}

#faq, #shortcodes {
  .tab-content-section {

    &-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;

      code {
        color: greenyellow;
      }

      i {
        margin-left: auto;
      }

    }

    p {
      display: none;
    }

    &.active {

    }

  }
}

//addons
.addon-banner {
  text-align: center;
}

.addon-meta {
  background: #555;
  border-radius: 7px;

  a {
    display: flex;
    align-items: center;
    border: 1px solid deepskyblue;
    margin: 10px 0 20px 0;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;

    img {
      margin-right: 15px;
      width: 200px;
      border-radius: 5px;
    }
  }

  h3 {
    color: #fff;
  }
}

.addon-desc {
  p {
    font-size: 17px;
  }
}

.addon-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  a {
    margin: 20px 0;
    border: 1px solid deepskyblue;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
  }
}

.addon-features {
  li {
    margin: 22px 0;
    line-height: 1.5;

    h3 {
      border-bottom: 1px solid deepskyblue;
      padding-bottom: 10px;
    }
  }
}

//log
.log-wrap {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;

  h4 {
    margin: 0;
    background: #0073AA;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  &:not(:nth-child(2)) {

    .logs {
      display: none;
    }
  }

}
