    /*
* BIOMES STATIC STYLE
*/
    /*
* Woocommerce Info Banner
*/

    .woocommerce-info {
        background-color: #E3EFF3;
        color: #000;
        margin-bottom: 1.25rem;
    }

    .woocommerce_checkout_coupon .woocommerce-info {
        background: #32288E !important;
        color: #4137a0 !important;
        font-size: 0.7rem !important;
        font-weight: normal !important;
        line-height: 1.5rem;
        padding: 0.1rem !important;
        position: relative;
        z-index: 0;
    }

    .woocommerce_checkout_coupon .woocommerce-info:before {
        background-image: none !important;
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin-right: -2.5px !important;
        width: 0px !important;
        height: 0px !important;
        margin-top: 0px !important;
    }

    .woocommerce_checkout_coupon .woocommerce-info:after {
        background-image: none !important;
        background-color: #FFFF !important;
        background-size: 130px 80px;
        border-radius: 0px !important;
        bottom: 0;
        content: '';
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

    /*

* Input steppers buttons (only for the cart table)

*/

    table.shop_table.cart td .quantity {
        display: inline-block;
    }

    table.shop_table.cart td .quantity .input-text.qty {
        width: 35px;
        height: 39px;
        padding: 0px;
        text-align: center;
        background-color: transparent;
        border-right: hidden;
        border-left: hidden;
    }

    table.shop_table.cart .quantity.buttons_added {
        text-align: left;
        position: relative;
        white-space: nowrap;
        vertical-align: top;
    }

    table.shop_table.cart .quantity.buttons_added input {
        display: inline-block;
        margin: 0;
        vertical-align: top;
        box-shadow: none;
    }

    table.shop_table.cart .quantity.buttons_added .minus,
    table.shop_table.cart .quantity.buttons_added .plus {
        padding: 7px 15px 7px;
        height: 41px;
        border: none;
        background-color: #ffffff;
        cursor: pointer;
    }

    table.shop_table.cart .quantity.buttons_added .minus {
        border-right: 0;
        overflow: hidden;
        border-radius: 20px 0px 0px 20px;
    }

    table.shop_table.cart .quantity.buttons_added .plus {
        border-left: 0;
        border-radius: 0px 20px 20px 0px;
        overflow: hidden;
    }

    table.shop_table.cart .quantity.buttons_added .minus:hover,
    table.shop_table.cart .quantity.buttons_added .plus:hover {
        background: #eeeeee;
    }

    table.shop_table.cart .quantity input::-webkit-outer-spin-button,
    table.shop_table.cart .quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
    }

    table.shop_table.cart .quantity.buttons_added .minus:focus,
    table.shop_table.cart .quantity.buttons_added .plus:focus {
        outline: none;
    }

    table.shop_table.cart .quantity.buttons_added.product_input_stepper {
        border-radius: 20px;
        border-color: #efefef;
        border: 1px solid #efefef;
    }

    table.shop_table.cart td .input-text.qty.text {
        border: none !important;
    }

    /* 
*      Woocommerce instant feedback Banner auf Products-Archive Seite 
*/

    #wc_banner_animation {
        -moz-animation: cssAnimation 1s ease-in 2s forwards;
        /* Firefox */
        -webkit-animation: cssAnimation 1s ease-in 2s forwards;
        /* Safari and Chrome */
        -o-animation: cssAnimation 1s ease-in 2s forwards;
        /* Opera */
        animation: cssAnimation 1s ease-in 2s forwards;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        font-size: 1rem;
    }

    @keyframes cssAnimation {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    @-webkit-keyframes cssAnimation {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    /* fix for tables in content on mobile view */

    .entry__content>figure.wp-block-table {
        width: 100%;
        overflow-y: auto;
    }

    /* fix for icon table */

    @media screen and (max-width: 32em) {
        .benefits__media svg {
            scale: 80%;
            left: 44%;
        }

        .benefits__content-lines .benefits__media svg {
            position: unset;
            transform: unset;
            padding: 0 1.2rem 0 0;
            scale: unset;
        }

        .benefits__content-lines .benefits__media--icon {
            align-self: center;
            padding: 0;
        }

        body .benefits__item-lines .benefits__header {
            font-size: 25px !important;
        }

        .benefits__item .benefits__item-lines .column {
            padding-left: 0;
            padding-right: 0;
        }

        .benefits__content {
            padding: 1rem;
        }
    }