body{
    margin: 0;
    background-color: white;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    height: 100%
}
html{
    overflow-x: hidden
}
#meny{
    background-color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    gap: 3vw;
    height: 50px;
    overflow-x: auto;
}
#logo {
    height: clamp(25px, 3.5vw, 45px);
    width: auto;
    display: block;
}
#logobutton {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menybutton{
    font-size: clamp(10px, 1.2vw, 20px);
    padding: 0.6vw;
    background-color: black;
    color: white;
    border: none;
    
}
.productpage{
    background-color: white;
    display: none;
    padding: 15px;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1000;
}
.productflexpage{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center
}
@media (max-width: 800px) {
    .productflexpage {
        flex-direction: column;
        align-items: flex-start;
    }
    .productcontent {
        width: 100%;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }
    .productpage {
        width: auto;
        align-items: left;
        font-size: clamp(12px, 1.5vw, 20px);
    }
    .productpagebutton{
        width: 100%;
        text-align: left;
        font-size: clamp(12px, 1.5vw, 20px);
    }
    .faqpage{
        font-size: clamp(10px, 1.3vw, 20px);
    }
    .faqflexpage{
        flex-direction: column;
        align-items: flex-start;
    }
}
h3{
    margin:0
}
button:hover {
    text-decoration: underline
}
.productcontent{
    display: flex;
    flex-direction: column;
    text-align: left
}
.productpagebutton{
    background-color:white;
    color: black;
    border: none;
    margin: 5px 0 0 0;
    align-self: flex-start;
    padding: 0
}
#welcomediv{
    display: flex;
    justify-content: center;
    font-size: clamp(18px, 2.5vw, 35px)
}
#startproductflex{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 1400px
}
.startproduct{
    background-color: black;
    border-radius: 10px;
    height: auto;
    color: white;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    flex: 1 1 200px;
    max-width: 250px;
    margin: 10px;
}
.productimgdiv{
    width: 100%;
    height: 200px;
    background-color: purple;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.productimg{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}
.producttitle{
    margin: 10px 0 0 10px; ;
    font-size: clamp(18px, 2.0vw, 30px)!important;
}
.producttext{
    margin: 0 0 0 10px;
    padding: 0;
    font-size: clamp(14px, 1.5vw, 16px);
}
.viewproduct{
    margin: 5px;
    width: 90%;
    padding: 10px;
    background-color: darkorange;
    color: white;
    border: none;
    border-radius: 5px;
    align-self: center
}
.buynow{
    margin: 5px;
    width: 90%;
    padding: 10px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    align-self: center
}
.productline{
    color: white;
    margin: 10px 0 10px 0;
    padding: 0;
    width: 100%
}
.productprice{
    color: white;
    padding: 0;
    margin: 0 0 10px 10px;
    font-size: 120%
}
.shippingtime{
    font-size: 80%;
    color: lightgreen;
    margin: 10px
}
.page {
    display: none;
    min-height: 80vh;
}
.page.activepage {
    display: block;
}
.indproductpage.activepage {
    display: flex;
    flex-direction: row;
    width: 100%;
}
@media (max-width: 600px) {
    .indproductpage.activepage{
        display: flex;
        flex-direction:column
    }
    #meny{
        justify-content: center;
        gap: 2vw
    }
}
.indimgpage{
    width: 60%;
    height: 100%
}
.inddatapage{
    width: 40%;
    height: 100%;
    margin-top: 30px;
}
.indproductimg{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0
}
.datatext{
    margin: 15px;
    padding: 0;
    font-size: clamp(12px, 1.5vw, 20px)
}
.datatitle{
    margin: 15px;
    padding: 0;
    font-size: clamp(30px, 2.5vw, 40px)

}
.inddeliverytime{
    margin: 15px;
    padding: 0px;
    color: green
}
.indproductprice{
    margin: 15px;
    padding: 0px;
    font-size: 150%
}
.faqpage{
    background-color: white;
    display: none;
    padding: 15px;
    width: auto;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1000;
}
.faqflexpage{
    display: flex;
    justify-content:space-around;
    gap: 0 20px
}
.questionpage{
    display: flex;
    flex-direction: column;
}
.question{
    font-size: 100%
}
.answer{
    font-size: 80%
}
.aboutuspage{
    width: 100%;
}

.aboutusflexpage{
    display: flex;
    flex-direction: column;
    max-width: 800px;
    min-width: 200px;
    margin: 0 auto;
}
.yap{
    width: 80%;
    text-align: center;
    margin: 10px 25px;
}
footer{
    bottom: 0;
    padding: 15px;
    width: 100%;
    background-color: black;
}
.contacttext{
    color: white;
    font-size: clamp(10px, 1.5vw, 16px);
}
.comparepage {
    display: none;
    width: 80%;
    align-self: center;
    background-color: white;
    justify-content: center;
    gap: 5vw
}
@media(max-width: 700px){
    .comparepage{
    justify-content: center;
    gap: 1vw
    }
}
.comparepage.activepage {
    display: flex;
}
#optionfans,
#optionradiators,
#optionpumps {
    display: none;
    font-size: clamp(8px, 1.5vw, 20px)
}
[id*="data"] {
    display: none;
    font-size: clamp(8px, 1.5vw, 20px)
}
.compareproducttitle{
    font-size: clamp(10px, 2vw, 30px);
    margin: 5px
}
#producttype{
    font-size: clamp(10px, 1.5vw, 30px);
    padding: 0.5vw;
    color: white;
    background-color: black;
    border-radius: 0
}
#productone{
    font-size: clamp(10px, 1.5vw, 30px);
    padding: 0.5vw;
    color: white;
    background-color: black;
    border-radius: 0
}
#producttwo{
    font-size: clamp(10px, 1.5vw, 30px);
    padding: 0.5vw;
    color: white;
    background-color: black;
    border-radius: 0
}
.contactpage {
    width: 100%;
}
.contactflexpage {
    width: 100%;
    display: flex;
    justify-content: center;
}
.contactform{
    width: 100%;
    max-width: 600px;
    margin-left: 15px
}
.textinput{
    border: 2px solid black;
    border-radius: 0;
    height: 15px;
    padding: 10px;
    width: 90%;
}
#message{
    height: 80px;
    padding: 10px;
}
#submitsupport{
    background-color: black;
    color: white;
    border-radius: 0;
    border: none;
    padding: 5px;
    width: 20%;
    margin: 5px;
}
.purchasepage{
    width: 100%;
}
.purchaseflexpage{
    width: 100%;
    display: flex;
    justify-content: center;
}
.purchaseform{
    width: 100%;
    max-width: 600px;
    margin-left: 15px;
}
.numberinput{
    border: 2px solid black;
    border-radius: 0;
    height: 15px;
    padding: 5px;
}
.labelflex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
}
.numberinputlabel{
    flex: 1;
}
#completepurchase{
    background-color: black;
    color: white;
    border-radius: 0;
    border: none;
    padding: 5px;
    width: 20%;
    margin: 5px;
}
.thankyoupage{
    margin-left: 20px;
    display: none
}