.voedingsschema-widget-wrapper {}

.voedingsschema-widget-wrapper .d-none {
    display: none;
}

.voedingsschema-widget-wrapper .d-block {
    display: block;
}

.voedingsschema-widget-wrapper .d-flex {
    display: flex;
}

@media screen and (min-width: 767px) {
    .voedingsschema-widget-wrapper .d-m-none {
        display: none;
    }

    .voedingsschema-widget-wrapper .d-m-block {
        display: block;
    }

    .voedingsschema-widget-wrapper .d-m-flex {
        display: flex;
    }
}

.voedingsschema-widget-wrapper h2 {
    font-family: 'UniversTD', Sans-serif;
    font-weight: 950;
    font-size: 16px;
    line-height: 19.2px;
    text-transform: uppercase;
    font-style: italic;
}

.voedingsschema-maaltijden {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.voedingsschema-maaltijd {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    background-color: #303030;
}

.voedingsschema-maaltijd--final {
    background-image: var(--background);
    background-repeat: no-repeat;
    background-position: right;
}

.voedingsschema-maaltijd--final h2 {
    position: relative;
    width: fit-content;
    z-index: 1;
}

.voedingsschema-maaltijd--final h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #F42C88;
    z-index: -1;
}

.maaltijd-product {
    display: flex;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    background-color: #D9D9D9;
}

.maaltijd-totaal {
    background-color: #303030;
}

.product-data {
    display: flex;
    flex: 1;
    padding: 5px;
    text-align: center;
    color: #575757;
}

.product-data a:not(.btn-order) {
    color: #575757;
    text-decoration: underline;
}

.maaltijd-totaal .product-data {
    padding: 0;
    color: #ffffff;
}

.product-data-wide {
    flex: 2;
}

.product-data-start {
    text-align: start;
}

.product-data-end {
    text-align: end;
}

.btn-order {
    font-size: 16px;
    background-image: linear-gradient(60deg,
     #470BFA 0%,
     #FF0080 100%
    );
    border-radius: 100px 100px 100px 100px;
    box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.5);
    padding: 8px 20px 8px 20px;

    font-family: "Inter", Sans-serif;
    font-weight: 800;
    line-height: 1.3em;
    fill: #ffffff;
    color: #ffffff;
    text-align: center;
}

.btn-order.loading {
    position: relative;
    opacity: .25;
}

.btn-order.loading::after {
    font-family: WooCommerce;
    content: "\e01c";
    position: absolute;
    vertical-align: top;
    top: .618em;
    right: 1em;
    animation: spin 2s linear infinite;
}

.voedingsschema-maaltijd--final .btn-order {
    font-size: 18px;
}

.maaltijd-totalen {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voedingsschema-maaltijd--final .maaltijd-totalen {
    margin-right: 15%;
}

.maaltijd-totaal-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.maaltijd-totaal-price {
    font-size: 20px;
    font-weight: 500;
}

@media screen and (min-width: 767px) {
    .voedingsschema-toelichting {
        width: 33%;
    }
}

@media screen and (max-width: 767px) {    
    .maaltijd-product {
        flex-direction: column;
    }

    .product-data {
        text-align: start;
    }

    .maaltijd-totalen {
        flex-direction: column;
        align-items: start;
    }
}
