/* Product list 
--------------------*/
@media screen {
    .product_list {
        clear: both;
        --gap: 1rem;
    }

    .product form,
    .product form div.formbody {
        margin: 0;
    }

    .product_list form,
    .product_list form div.formbody {
        height: 100%;
        display: flex;
        flex-direction: column;        
    }

    .product_list .product {
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 1rem;
        overflow: hidden;
    }

    .product_list .image_container {
        width: 100%;
        align-items: center;
        margin-bottom: 0;
    }

    .product_list .image_container img {
        margin: auto;
        display: block;
        width: auto;
        min-height: 300px;
        max-height: 300px;
    }

    .product_list .content-div {
        margin-top: 0.15rem;
        padding: 1rem;
        border-radius: 0.5rem;

        display: flex;
        flex-direction: column;
        height: 100%;        
    }

    .product_list .sku {
        display: none;
    }    
    
    .product_list .offer {

    }
        

    .mod_iso_checkout tfoot td.price,
    .mod_iso_orderdetails tfoot td.price,
    .product .price {
        font-weight: 700;
        font-size: 2rem;
    }

    .mod_iso_checkout tfoot td .currency,
    .mod_iso_orderdetails tfoot td .currency,
    .product .price .currency {
        font-weight: 400;
        font-size: 70%;
    }

    .product_list .teaser { 
        margin-bottom: 1rem;
        display: none;
    }

    .product .content-div h2,
    .product .content-div h3 {
        margin: 0;
    }

    .product_list .details {
        margin: auto 0 1rem 0;
    }

    .product_list .details a {
    }


    .auf_vorbestellung {
        margin-bottom: 0.5rem;
    }

    .auf_vorbestellung span{
        display: flex;
        align-items: center;
    }

    .auf_vorbestellung span::before {
        content: "";
        display: inline-block;
        width: 1.6rem;
        height: 1.4rem;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        background-image: url(../images/icons/calender.svg);
    }

}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
    
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {

}


/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {
    .product_list {
        --gap: 1.5rem;
    }

    .product_list .content-div {
        padding: 1rem 2rem;
    }    
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Product list ends */




/* Product Detail
--------------------*/
@media screen {
    .quantity_container {
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .quantity_container input {
        display: block;
        float: none;
        max-width: 200px;
    }


    .mod_iso_productreader .formbody {
        --gap: 1rem;
    }

    .mod_iso_productreader h1 {
        margin-bottom: 0;
    }

    .mod_iso_productreader .image_container {
        background: #fff;
        border-radius: 1rem;
        text-align: center;
        overflow: hidden;
    }

    .mod_iso_productreader .image_container img {
        width: auto;
        max-height: 50vh;
    }

    .button_checkout,
    .next,
    .confirm,
    .add_to_cart {
        --btn_color: inherit;
        --btn_color: #fff;
        --btn_hover_color: #fff;
        --btn_bg: var(--wildenau-blue);
        --btn_hover_bg: var(--wildenau-darkblue);
        --border_col: var(--wildenau-blue);
        --border_hover_col: var(--wildenau-darkblue);
    }

    .add_to_cart:before {
        content: "\e902";
        font-family: 'wildenau' !important;
        display: inline-block;
        margin-right: 0.5rem;
    }

    input + input {
        margin-left: 1rem;
    }

}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
    .mod_iso_productreader .formbody {
        --gap: 1rem;
    }

}


/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
    .mod_iso_productreader .formbody {
        --gap: 2rem;
    }


}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Product Detail ends
--------------------*/





/* Cart 
--------------------*/
@media only screen and (max-width:768px) {
    div.mod_iso_cart .formbody {
        overflow-x: scroll;
    }
}

@media screen {
    div.mod_iso_cart table {
        width : 100%;
        display: table;
    }

    div.mod_iso_cart td,
    div.mod_iso_checkout td,
    div.mod_iso_orderdetails td {
        border-bottom : 1px solid var(--wildenau-darkgrey);
        vertical-align: middle;
        padding-top: 0.75rem;
        padding-bottom: 0.35rem;
        box-sizing: border-box;
    }

    div.mod_iso_cart tr td.col_last {
        text-align: right;
    }

    div.mod_iso_checkout td.image figure,
    div.mod_iso_orderdetails  td.image figure,
    div.mod_iso_cart td.image figure {
        padding-bottom: 1px;
        padding-right: 3px;        
        margin-bottom: 0.25rem !important;
    }

    div.mod_iso_checkout div.review figure img,
    div.mod_iso_orderdetails  td.image figure img,
    div.mod_iso_cart img {
        width : 6rem;
        max-width: unset;
        border-radius: 0.25rem;
    }

    td.price {
        text-align: right;
    }

    div.mod_iso_checkout td.col_0.image,
    div.mod_iso_cart td.col_0.image {
        max-width: 150px;
    }


    div.mod_iso_orderdetails td.col_1.name,
    div.mod_iso_checkout td.col_1.name,
    div.mod_iso_cart td.col_1.name {
        min-width: 250px;
        max-width: 350px;
    }
    
    .col_1.name li,
    .col_1.name strong {
        font-size: 1rem;
        font-weight: 400;
    }

    .col_1.name > a:first-child {
        font-weight: bold;
    }

    div.mod_iso_cart td.col_2.quantity {
        width: 2.5em;
        margin-right: 1rem;
    }

    div.mod_iso_cart tbody td.col_3,
    div.mod_iso_cart tbody td.col_4{
        padding: 0.5em 0.2em;
        text-align: right;
    }


    div.mod_iso_orderdetails tbody td.price,
    div.mod_iso_checkout tbody td.price,
    div.mod_iso_cart tbody td.price,
    div.review tbody td.price {
        font-size: 90%;
    }

    div.mod_iso_cart tbody td.price .currency,
    div.review tbody td.price .currency {
        display: inline;
    }

    div.mod_iso_cart td.quantity input {
        min-width: 40px;
        width: 100%;
        padding :0;
        text-align: center;
        border-radius: 0.25rem;
    }

    div.mod_iso_cart .actions .edit {
        display: none;
    }

    div.mod_iso_cart td a.remove {
        border: none;
        width: 1rem;
        margin-left: 1rem;
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        text-indent: -9000px;
    }

    div.mod_iso_cart td a.remove:after {
        content : '';
        width : 1em;
        height : 1em;
        display: inline-block;
        background: url(../images/icons/cross.svg) center center no-repeat;
        background-size: cover;
        background-size: 80% 80%;
    }

    div.mod_iso_cart td a.remove:hover:after {
        background-size: 100%;
    }

    div.mod_iso_cart tfoot td,
    div.mod_iso_checkout tfoot td,
    div.mod_iso_orderdetails tfoot td {
        padding : 0.5em 0;
        font-size: 1.5em;
        font-weight: bold;
    }


    div.mod_iso_orderdetails tfoot tr.subtotal,
    div.mod_iso_checkout tfoot tr.subtotal,
    div.mod_iso_cart tfoot tr.subtotal {
        display: none;
    }

    div.mod_iso_cart div.submit_container {
        margin : 1em 0;
    }


}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
}


/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Cart ends
--------------------*/

/* Steps Query
--------------------*/
@media screen {
    div.steps li {
        float : left;
        font-size: 0.85em;
        margin-right: 0.25rem;
    }

    div.steps li > span.active {
        color: var(--wildenau-green);
    }

    div.steps li > a:after,
    div.steps li > span:after {
        content : ">";
        margin-left: 0.5rem;
    }

    div.steps li:last-child > span:after {
        display:none;
    }

    div.steps a {
        border: none;
    }

}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
}


/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {
    div.steps li {
        margin-right: 0.5rem;
    }
    
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Steps ends
--------------------*/




/* Add2cart Popup Message Query
--------------------*/
@media screen {
    #iso_ajaxBox {
        width: 90%;
        max-width: 500px;
        padding: 0;
        margin: auto;
        left: 0;
        right: 0;
        border: 1px solid #000;
        border-radius: 1rem;
    }

    .mod_iso_messages.block {
        margin: 0;
    }
}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Add2cart Popup Message ends
--------------------*/