.bootstrap-tabs .nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.bootstrap-tabs .nav > li {
  position: relative;
  display: block;
}

.bootstrap-tabs .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.bootstrap-tabs .nav > li > a:hover,
.bootstrap-tabs .nav > li > a:focus {
  text-decoration: none;
  color: var(--sec_button_hover_text);
  cursor: default;
  background-color: var(--sec_button_hover_bg);
  border: 1px solid var(--sec_button_hover_bg);
}

.bootstrap-tabs .nav > li.disabled > a {
  color: #777;
}

.bootstrap-tabs .nav > li.disabled > a:hover,
.bootstrap-tabs .nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

.bootstrap-tabs .nav .open > a,
.bootstrap-tabs .nav .open > a:hover,
.bootstrap-tabs .nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}

.bootstrap-tabs .nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.bootstrap-tabs .nav > li > a > img {
  max-width: none;
}

.bootstrap-tabs .nav-tabs {
  border-bottom: 1px solid var(--sec_button_bg);
}

.bootstrap-tabs .nav-tabs:after {
  content: ' ';
  display: table;
  clear: both;
}

.bootstrap-tabs .nav-tabs > li {
  float: left;
  position: relative;
  margin-bottom: -1px;
}

.bootstrap-tabs .nav-tabs > li > a {
  margin-right: 5px;
  line-height: 1.42857143;
  border: 1px solid var(--sec_button_bg);
  background: var(--sec_button_bg);
  color: var(--sec_button_text);
}

.bootstrap-tabs .nav-tabs > li > a:hover {
  border-color: var(--sec_button_hover_bg);
  cursor: pointer;
}

.bootstrap-tabs .nav-tabs > li.active {
  background-color: transparent;
  color: var(--sec_button_hover_text);
}

.bootstrap-tabs .nav-tabs > li.active > a,
.bootstrap-tabs .nav-tabs > li.active > a:hover,
.bootstrap-tabs .nav-tabs > li.active > a:focus {
  color: var(--sec_button_hover_text);
  cursor: default;
  background-color: var(--sec_button_hover_bg);
  border: 1px solid var(--sec_button_hover_bg);
  border-bottom-color: transparent;
}

.bootstrap-tabs .tab-content {
  clear: both;
  padding-top: 0;
}

.bootstrap-tabs .tab-content > .tab-pane{
  padding: 5px 15px;
}

.bootstrap-tabs .tab-content > .tab-pane {
  display: none;
}
.view-content .tab-content > .active{
  border: none;
}
.bootstrap-tabs .tab-content > .active {
  display: block;
  border: 1px solid var(--sec_button_bg);
  border-top-width: 0;
}

.bootstrap-tabs .tab-content > .active > .tab-pane-content {
  min-height: 30px;
}

