.orderwrapper{
    padding: 50px;
    border: 3px solid red;
    box-shadow: 4px 4px black;
    border-radius: 50px;
    background-color: white;
}
.ordercontainer{
    padding: 50px;
}
body{
    background-image: url('/static/images/kai-pilger-Ef6iL87-vOA-unsplash.jpg');
}
.ofw{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.labelinput{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.orderbottom{
    display: flex;
    justify-content: center;
}
.ordersubmit{
    margin-top: 20px;
    background-color: darkred;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 3px 3px black;
    border: none;
    color: whitesmoke;
    justify-self: end;
    font-size: xx-large;
}
.dec,.inc{
    border: none;
    background-color: white;
}
.decimg{
    width: 20px;
}
.orderinput{
    padding: 5px;
    border-radius: 10px;
    border: 1px solid black;
    width: 300px;
}
.orderheader{
    color: red;
    padding: 20px;
    border-bottom: 5px solid black;
    letter-spacing: 1.5rem;
}
.orderinput:focus{
    outline: none;
}
.error{
    margin: 0;
}
.orderheader{
    font-size: 36px;
}
.orderinfo,.itemhead,.price,.counter{
    font-size: 20px;
}
.total{
    font-size: 32px;
}
label{
    font-size: 20px;
}
.orderheader,.itemhead,.total{
    font-weight: normal;
}
.ordercard{
    display: flex;
    border: 3px solid black;
    box-shadow: 2px 2px black;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 50px;
}
.ordertop{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quantity{
    display: flex;
    gap: 20px;
}
.quant{
    font-weight: normal;
    font-size: 20px;
}
.ordercards{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}
.cost{
    font-weight: bold;
}
.toolboximg{
    width: 40%;
}
.bundleimg{
    width: 40%;
}
.pkimg{
    width: 40%;
}
@media (max-width: 600px){
    .orderwrapper{
        padding: 5px;
    }
    .orderinput{
        width: 75%;
    }
}
@media (max-width: 400px){
    .ordercontainer{
        padding: 20px;
    }
}
@media (min-width: 1500px) and (min-height: 1000px) {
    .ordercontainer{
        padding-left: 25vw;
        padding-right: 25vw;
    }
}