/*
 * NEUER FINANZPLAN
 */

/* Box */
.list-finanzplan-varianten {
    margin-left: -1px;
    margin-right: -1px;
    display: flex;
    flex-wrap: wrap;
}
.list-finanzplan-varianten > div {
    padding-left: 0;
    padding-right: 0;
    margin-left: 1px;
    margin-right: 1px;
    width: calc(100% / 3 - 2px);
}
.list-finanzplan-varianten .package-item {
    max-height: unset;
    height: 100%;
    cursor: unset;
}

/* Head */
.list-finanzplan-varianten .package-item-head {
    margin-bottom: 19px;
}
.list-finanzplan-varianten .package-item-head h3 {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

/* Preis */
.list-finanzplan-varianten .finanzplan-item-preis {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
}
.list-finanzplan-varianten .finanzplan-item-preis .preis {
    font-size: 14px;
}
.list-finanzplan-varianten .finanzplan-item-preis .number {
    font-size: 35px;
    font-weight: bold;
}
.list-finanzplan-varianten .finanzplan-item-preis .mwst {
    font-size: 11px;
}

/* Button */
.list-finanzplan-varianten .finanzplan-item-button {
    text-align: center;
    height: 50px;
    width: 80%;
    margin: auto;
    border-radius: 5px;
    display: table;
    overflow: hidden;
}
.list-finanzplan-varianten .finanzplan-item-button > div {
    display: table-cell;
    vertical-align: middle;
}
a.finanzplan-item-button-link {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

/* Trennlinie */
.list-finanzplan-varianten .finanzplan-item-trennlinie {
    border-top: 1px solid #f4f3f0;
    margin-top: 35px;
    margin-bottom: 35px;
}

/* Link Alle Funktionen */
.list-finanzplan-varianten .finanzplan-item-link {
    margin-top: 23px;
}
.list-finanzplan-varianten .finanzplan-item-link a {
    color: #67b0d7;
    font-weight: bold;
    font-size: 15px;
}

/* Text (von Label) */
.finanzplan-item-text ul {
    padding-left: 20px;
}
.finanzplan-item-text ul li:before, .finanzplan-item-angebot ul li:before, .finanzplan-item-funktionen ul li:before {
    content: "\4e";
    margin-left: -20px;
    padding-right: 5px;
}
.finanzplan-item-text a, .finanzplan-item-angebot a {
    text-decoration: underline;
}

.finanzplan-item-text, .finanzplan-item-angebot,.finanzplan-item-funktionen{
   padding: 0 0 2em;
}

.finanzplan-item-text p, .finanzplan-item-funktionen p{
    padding: 0 0 1em;
}


/* Farben */
.color-180,.color-249 {
    color: #d0c18b;
}
.color-181,.color-250 {
    color: #b16b76;
}
.color-182,.color-251 {
    color: #a81f73;
}
.background-180,.background-249 {
    background: #d0c18b;
}
.background-181,.background-250 {
    background: #b16b76;
}
.background-182,.background-251 {
    background: #a81f73;
}

/*
 *  Finanzplan Tabelle
 */
.finanzplan-table {
    padding: 2px;
    font-size: 14px;
    border-collapse:collapse;
}
#finanzplan-table {
    width:100%;
}

.finanzplan-table th, .finanzplan-table td {
    border: 1px solid #e0dfdd;
    padding: 5px;
    font-size: 14px;
    font-weight: normal;
}
#header-fixed {
  position: fixed;
  top: 154px;
  display: none;
  background: #f4f3f0;
}
.finanzplan-table .th-head * {
    border:none;
}
.finanzplan-table .th-head td {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
}

.finanzplan-table th {
    text-align: left;
    width:1%;
    white-space: nowrap;
    color: #173b61;
}
.finanzplan-table th.th-titel {
    font-weight: bold;
    padding: 10px 5px;
    font-size: 14px;
}
.finanzplan-table td {
    text-align: center;
    width: auto;
    min-width: 60px;
}

.finanzplan-table .mobile-row {
    display: none;
}

/*.finanzplan-table .checkmark:before {
    content: "\4e";
    font-family: 'ElegantIcons';
}*/
.finanzplan-table .checkmark {
    width: auto;
    height: 18px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
}
.finanzplan-table .checkmark.color-180 {
    background-image: url(../images/ico-check-basis.svg);
}
.finanzplan-table .checkmark.color-181 {
    background-image: url(../images/ico-check-plus.svg);
}
.finanzplan-table .checkmark.color-182 {
    background-image: url(../images/ico-check-pro.svg);
}

@media only screen and (max-width:1350px){
    .mobile-row {
        display: table-row !important;
    }
    .mobile-row th {
        width: 100%;
        /*background: #e0dfdd;*/
        /*background: #b1a97e;*/
    }
    .desktop-row th {
        display: none;
    }
    .desktop-row td {
        width: 33.33333%;
    }
    .finanzplan-table th {
        white-space: normal;
    }
    .finanzplan-table th, .finanzplan-table td {
        padding: 1px 5px;
    }
    .finanzplan-table th.th-titel {
        padding: 10px 5px;
    }
}

@media only screen and (max-width:767px){
    .list-finanzplan-varianten > div {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .list-finanzplan-varianten {
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media screen and (max-width: 414px) {
    .finanzplan-variante-item .business-head h3 {
         max-width: unset !important;
    }
}


/*
 *  DETAILSEITE
 */

.cms_column img {
  max-width: 100%;
}


/*
 *  FORMULAR FINANZPLAN
 */
.formular-finanzplan .input-full-width {
  margin-bottom: 20px
}
.formular-finanzplan .input-half-width {
  margin-bottom: 20px;
  width: 49%;
}
.formular-finanzplan .margin-right {
  margin-right: 2%;
}
.submit-button {
  cursor:pointer;
  -webkit-appearance: none;
  border-radius:none;
  color: #333333 !important;
  background: #c0c0c0 !important;
}


.pic-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.pic-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
}



/* ALLGEMEIN */
@media screen and (max-width: 767px) {
    .page-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}