#firstTitle{
    margin-top: 10px;
}

.tPRcont{
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 5px;
    margin-top: 75px;
}

.tPRimg{
    width: 100%;
}

#preisrechnerText a{
    text-decoration: none;
}

.tPRform{
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: Roboto, Geneva, Tahoma, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
}

.preisCont{
    font-size: 0.875rem;
}

.form{
    display: flex;
    flex-direction: column;
}

.preisCont{
    display: flex;
    align-items: flex-end;
    height: 100%;
}


.tPRform label{
    margin-bottom: 10px;
}

.tPRform select{
    margin-bottom: 25px;
}

.dropdown{
    border-radius: 0;
    border: 2px solid rgba(128,44,140, 0.25);
    background-color: white;
    padding: 4px;
}

.tSGcont{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.tSGimg{
    width: 100%;
    max-height: 100%;
    cursor: pointer;
}

.tarifeimg img{
    display: block;
    width: 100%;
}

.modal{
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.modal-content img {
    max-width: 400px;
    height: auto;
}

.close{
    position: absolute;
    right: 5px;
    font-size: 1rem;
    color: black;
    cursor: pointer;
}

.mainBody a{
    color: rgba(128,44,140, 1);
}

.mainBody a:hover{
    color: rgba(130,230,222,255);
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    .tPRcont{
        display: flex;
        flex-direction: column-reverse;
    }

    .tPRform select{
        margin-bottom: 10px;
    }

    .tSGcont{
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 600px) {
    .form{
        font-size: 0.625rem;
    }

    .preisCont{
        font-size: 0.75rem;
    }

    .tSGcont{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 400px) {
    .modal-content img {
        max-width: 300px;
        height: auto;
    }
}



