

.icon-pstrom-normal,
.icon-pstrom-hover,
.icon-hgas,
.icon-pfeil-rechts:before {
  font-family: 'vonovia-icons' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-pstrom-normal,
.icon-pstrom-hover,
.icon-hgas {
  display: inline-block;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.icon-pstrom-normal:before {
  content: "\e91f";
}

.icon-pstrom-hover:before {
  content: "\e91e";
}

.icon-hgas:before {
  content: "\e91d";
}

.icon-pfeil-rechts:before {
  content: "\e903";
}

.tr-wrap {
    width: 100%;
    max-width: 980px;
    margin: 30px auto;
    font-family: inherit;
}

.tr-card {
	background: #fff !important;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.icon-pfeil-rechts:before {
	font-size:1.3rem !important;
	line-height:1rem !important;
}
.tr-tabs {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 12px solid #ececec;
}

.tr-tab {
    position: relative;
    z-index: 2;
    width: 50%;
    background: transparent;
    border: 0;
    padding: 18px 20px 14px;
    font-size: 20px;
    font-weight: 700;
    color: #979797;
    cursor: pointer;
    text-align: center;
}

.tr-tab.active {
    color: #B25296;
}

.tr-tab-line {
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 50%;
    height: 12px;
    background: #B25296;
    border-radius: 0 0 14px 0;
    transition: transform 0.25s ease;
}

.tr-tabs.is-gas .tr-tab-line {
    transform: translateX(100%);
    border-radius: 0 0 0 14px;
}

.tr-panel {
    display: none;
    padding: 42px 46px 44px;
}

.tr-panel.active {
    display: block;
}

.tr-form {
    display: grid;
    align-items: center;
    gap: 18px;
}

.tr-form-strom {
    grid-template-columns: 1.25fr 1fr 1.05fr 1.15fr;
}

.tr-form-gas {
    grid-template-columns: 1.1fr 1fr 1.1fr 1.15fr;
}

.tr-field,
.tr-icon-selector {
    min-width: 0;
}

.tr-input {
    width: 100%;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #7e7e7e;
    border-radius: 26px;
    background: #f6f6f6;
    font-size: 16px;
    color: #4e4e4e;
    outline: none;
    box-sizing: border-box;
}

.tr-input::placeholder {
    color: #555;
    opacity: 1;
}

.tr-input:focus {
    border-color: #B25296;
    box-shadow: 0 0 0 1px rgba(176, 83, 160, 0.12);
}

.tr-submit-btn {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 24px;
    background: #B25296;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 0 20px;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: center;
}

.tr-submit-btn span {
    white-space: nowrap;
}

.tr-submit-btn .icon-pfeil-rechts {
    flex-shrink: 0;
}

span.icon-pfeil-rechts
{
    padding-top: 7px;
}

.tr-submit-btn:hover {
    background: #9c438d;
}

.tr-icon-selector {
    text-align: center;
}

.tr-icon-label {
    margin-top: 6px;
    font-size: 16px;
    color: #555;
    line-height: 1.2;
}

.tr-person-icons,
.tr-house-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 30px;
}

.tr-person-item,
.tr-house-item {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 1;
}

.tr-person-item:focus,
.tr-house-item:focus {
    outline: none;
}

/* Standardzustand Personen */
.tr-person-item .icon-pstrom-normal {
    color: #bdbdbd;
    opacity: 1;
}

/* aktive Personen per echtes Hover/Filled-Icon */
.tr-person-item .icon-pstrom-hover {
    color: #B25296;
    opacity: 1;
}

/* Gas Standard */
.tr-house-item .icon-hgas {
    color: #7a7a7a;
    opacity: 0.45;
}

/* leichte Bewegung */
.tr-person-item:hover .icon-pstrom-normal,
.tr-person-item:hover .icon-pstrom-hover,
.tr-house-item:hover .icon-hgas {
    transform: translateY(-1px);
}

/* Gas aktiv */
.tr-house-item.is-active .icon-hgas,
.tr-house-item.active .icon-hgas {
    color: #B25296;
    opacity: 1;
}

.tr-area-value {
    color: #B25296;
    font-weight: 700;
}

@media (max-width: 900px) {
    .tr-panel {
        padding: 28px 22px 32px;
    }

    .tr-form-strom,
    .tr-form-gas {
        grid-template-columns: 1fr;
    }

    .tr-submit-btn,
    .tr-input {
        width: 100%;
    }

    .tr-icon-selector {
        text-align: left;
    }

    .tr-person-icons,
    .tr-house-icons {
        justify-content: flex-start;
    }
}