.productPageSection{
    display: flex;
    gap: 40px;
}

.productPhotoAndText{
    width: 100%; display: flex; flex-direction: column; gap: 30px;
}
.productPhotoAndText img{
   height: 300px;
}

.productContent{
    width: 50%;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.h2Product{
    font-size: 30px;
}

.h3Product{
    text-align: center;
}

.tempFrmWrapper{
    margin: 0 !important;
    padding: 0;
}

thead,
tfoot {
    color: rgb(0, 0, 0);
}

ul {
    color: rgb(1, 1, 1); width: 90%;
    margin: auto;
}
li{
    list-style-type: disc;
    
}





/* Prisinfo */
tbody {
    background-color: #f9f9f9;
}

caption {
    padding: 10px;
    caption-side: bottom;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgb(200, 200, 200);
    letter-spacing: 1px;
    font-family: sans-serif;
    font-size: 0.8rem;
}


td,
th {
    border: 1px solid rgba(38, 38, 38, 0.399);
    padding: 5px 10px;
}

td {
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .productPageSection{
        flex-direction: column;
    }
    .productPhotoAndText img{
        height: 270px;
    }
    .productContent{
        width: 100%;
    }
}