/*TABS*/

.tabs-wrapper {
	margin-top: 20px;
}
.tabs-header {
  display: flex;
  gap: 2px;
  /*border-bottom: 2px solid #ddd;*/
}

.tab {
  background: none;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  /*border-bottom: 3px solid transparent;*/
  font-weight: 600;
  border-radius: 15px 15px 0 0;
  border-top: 1px solid #f7f6ed;
  border-left: 1px solid #f7f6ed;
  border-right: 1px solid #f7f6ed;
  color: #0086CC;
}

.tab:hover {
	color:#FF8800;
}

.tab.is-active {
  /*border-color: #0d6efd;*/
  color:#FF8800;
  background: #f7f6ed;
}

.tab-panel {
  display: none;
  padding-top: 20px;
}

.tab-panel.is-active {
  display: block;
  background: #f7f6ed;
  padding: 20px;
  border-radius: 0 15px 0 0;
}

.tabs-content p{
  padding: 0 0 0 1em !important;
}

.tabs-content h2
{
  font-family: "Tahoma", "Arial", serif;
  font-size: 1.2em;
  font-weight: normal;
  padding: 0.4em 0;
  margin: 0;
}

.tabs-content h3
{
  font-family: "Tahoma", "Arial", serif;
  font-size: 1em;
  font-weight: normal;
  padding: 0.5em 0;
  margin: 0;
}

/*TABS end*/

/*Article*/

.article-item {
	display: flex;
	flex-direction: row;
}
.article-item.warning {
    font-weight: bold;
    color: #FF8800;
}
.article-warning{
    font-size: 0.8em;
    font-weight: bold;
    color: #FF8800;
    display: block;
    margin-left: 3em;
}

.header-title {
	padding: 7px;
}

.header-title::after {
  content: ":";
}

.header-value {
	padding: 7px;
}

.header-value ol {
	margin: 0;
	padding-left: 14px;
}

.header-value sup {
	font-size: 0.5em;
}

.full_link {
	margin: 0 0 10px 0;
}

/*Article end*/