
table{
    width: 100%;
    font-size: 24px;
    text-align: center;
}
.titelContainerHS{
    position: relative;
    transform:translate(-50%, 0%);
    left: 50%;

    display: table;

    top:0;

    height: 20%;

    font-size: 65px;
    font-weight: bold;
    text-align: center;

    z-index: 1005;
}
.titelHS{
    display: table-cell;
    vertical-align: middle;
}

.tarif{
    position: static;
    display: none;
}

#tarifrechnerContainer{
    position: relative;
    transform:translate(-50%, 0%);
    left: 50%;

    height: auto;
    min-height: 400px;
    max-width: 800px;

    z-index: 510;
}

#tarifContainer{
    position: relative;

    text-align: left;
    width: 100%;
    height: auto;

    border: none;
    overflow: auto;

    background-color: transparent;

    z-index: 505;
}

#tarifErgebnisContainer{
    position: relative;
    display: none;

    text-align: center;
    width: 100%;
    height: auto;

    font-size: 36px;
    padding: 0;

    overflow-x: auto;
    overflow-y: hidden;
    background-color: transparent;
    color: var(--dunkel);

    z-index: 509;
}
.tarifInput{
    position: relative;

    width: 60%;
    height: 60px;

    border: solid 2px var(--dunkel);
}

#tarifButton{
    position: relative;

    height: 60px;
    width: calc(40% - 25px);

    right: 0px;

    background-color: var(--dunkel);
    color: var(--hell);
    border: none;
    cursor: pointer;

    font-family: sans-serif;
    font-size: 32px;


    transition: 0.4s;

}
#tarifButton:hover{
    color: var(--dunkelFix);
    background-color: var(--akzent);
    border: none;
}