.hnpc_base {
  width: 470px;
  font-family: var(--font-main);
  color: var(--dunkeltext);
  line-height: 150%;
  font-size:13px;
  display: flex;
  flex-direction: column;
}

.hnpc_base i{
  text-transform:uppercase;
  letter-spacing: 1px;
  color: var(--headings-side);
  transition: 0.5s;
}

.hnpc_base b{
  background: var(--headings-side);
  padding:2px;
  color: var(--helltext);
}

.hnpc_base u{
     text-decoration: underline double var(--headings-side);
}

.hnpc_base a{
  text-transform: uppercase;
  color: var(--headings-body);
	transition: 0.5s;
}

.hnpc_base a:hover{
  text-transform: uppercase;
  color: var(--headings-header);
  text-decoration: none;
	transition: 0.5s;
}

.hnpc_boxg {
  background: var(--box-body);
  padding: 15px;
  overflow: auto;
  text-align: justify;
}

.hnpc_breit {
  width: auto;
  height: 140px;
  margin: 15px;
  text-align: justify;
}

.hnpc_schmal {
  min-width: 200px;
  margin:5px;
  height: 140px;
  overflow: auto;
}

.hnpc_kill {
	min-width: 300px;
	height: auto;
	margin: 5px;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: stretch;
	background: none!important;
    font-family: var(--font-head);
	font-size: 14px;
}

.hnpc_verl {
	background: var(--box-body);
	margin-right: 5px;
	text-align: center;
	padding: 5px 10px;
	flex: 1;
	border-top: 4px solid var(--headings-side);
}

.hnpc_verl::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 900;
    content: "\e37a";
	margin-right: 5px;
	font-size: 16px;
	color: var(--headings-body);
}

.hnpc_tot {
	background: var(--box-body);
	margin-right: 5px;
	text-align: center;
	padding: 5px 10px;
	flex: 1;
	border-top: 4px solid var(--headings-side);
}

.hnpc_tot::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 900;
    content: "\f54c";
	margin-right: 5px;
	font-size: 16px;
	color: var(--headings-body);
}

.hnpc_bild {
  margin:5px;
  height: 115px;
  background-image: url(https://via.placeholder.com/215x115);
min-width: 215px;
}

.hnpc_rotbox {
  background: var(--box-head);
  color: var(--dunkeltext);
  font-family: var(--font-head);
  text-transform: var(--ftransf-head);
  padding: 10px;
  margin:5px;
  width: 190px;
  overflow: auto;
  font-size: 13px;
  line-height: 145%;
	height: 95px;
}

.hnpc_anschluss{
  margin:15px;
  margin-top:-5px;
  padding: 5px;
  border: 0px solid var(--box);
  font-family: var(--font-sub);
  text-transform: lowercase;
  font-size: 16px;
  text-align: right;
}

.hnpc_heading {
  font-family: var(--font-head);
  text-transform: lowercase;
  color: var(--headings-body);
  font-size: 30px;
  margin-left: 50px;
  line-height:100%;
  margin-top: 20px;
}

.hnpc_sub {
  font-family: var(--font-sub);
  font-size: 12px;
  line-height:100%;
  margin-left: 70px;
  margin-right: 70px;
  text-transform: var(--ftransf-sub);
}

.hnpc_sr {
  margin-left: 70px;
  margin-right: 5px;
  font-size:11px;
}

.hnpc_sl {
  margin-right: 70px;
  margin-left: 5px;
    font-size:11px;
}

.hnpc_smol {
  font-size:26px;
  margin:5px;
  margin-bottom:3px;
}

.hnpc_sheading_r {
  border-right: solid 15px var(--box-head);
  margin: 30px 15px 5px;
  height: 60px;
  text-align:right;
}

.hnpc_sheading_l {
 border-left: solid 15px var(--box-head);
 margin: 30px 15px 5px;
 height: 60px;
 text-align:left;
}

.hnpc_balk {
  background: var(--bunt);
  width: 20px;
  height: 55px;
  margin:15px;
}

.hnpc_parent{
  background: var(--contain);
  height: auto;
  padding:10px;
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.hnpc_parent>* {
   flex: 1 1 100px;
}

.hnpc_anschlussi {
  position: relative;
  display: inline-block;
  font-size:16px;
}

.hnpc_anschlussi_cont {
  display: none;
  position: absolute;
  background-color: var(--box-body);
  color: var(--dunkeltext);
  width:185px;
  padding: 5px 10px;
  text-align:justify;
  z-index: 1;
  margin-left:-95px;
  margin-top:13px;
  font-size:13px;
  text-transform:none;
  font-family: var(--font-main);
}

.hnpc_anschlussi_cont:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-bottom-color: var(--box-body);
    border-top: 0;
    margin-left: -15px;
    margin-top: -15px;
}

.hnpc_anschlussi:hover .hnpc_anschlussi_cont {
  display: block;
}

.hnpc_anschlussi i:hover {
  color: var(--headings-header);
  transition: 0.5s;
}

