.tabs-container {
  margin-top: 10px;
  width: 100%;
}

  .tabs-container ul {
    list-style: none;
    display: flex;
    padding: 0;
  }

    .tabs-container ul li {
      margin-right: 5px;
    }

      .tabs-container ul li a {
        display: block;
        padding: 8px 15px;
        background: #e8e8e8;
        border-radius: 5px 5px 0 0;
        text-decoration: none;
        color: #333;
      }

      .tabs-container ul li.ui-tabs-active a {
        background: white;
        border: 1px solid #ccc;
        border-bottom: none;
        font-weight: bold;
      }

.tab-pane {
  padding: 10px;
  border: 1px solid #ccc;
  background: white;
  max-height: 700px;
}

.tab-content .slick-viewport {
    max-height: 500px !important;
}