.logo {
    max-height: 48px;
}

#labelprint {
    display: none !important;
}


.kt-no-border {
    border: none !important;
}

@media print {


    #svg_label {

        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        /*scale the svg to fit the page */
        width: 100%;
        height: 100%;
        /* maak de svg responsive */
        max-width: 100%;
        max-height: 100%;
        /* center the svg */
        margin: auto;
        /* maak de svg een flex container */

        /* center the svg */
        display: flex;
        align-items: center;
        justify-content: center;
        /* maak de achtergrond wit */
        background-color: white;

    }

    /* de print zelf is
                                                                                                    /* Verberg alle andere elementen behalve de SVG */
    main,
    .kt-container-fixed,
    .kt-card,
    .kt-input,
    .kt-btn,
    .kt-badge,
    .kt-rating,
    .kt-drawer,
    .product_card,
    #print,
    #print_close_button,
    #print_label_button,
    #label_image,
    #label_title,
    #label_category_input,
    #label_external_id,
    #label_source,
    #label_price_input,
    #label_price,
    #label_old_price,
    #label_rating,
    #label_source,
    #label_price_input,
    #label_price,
    #label_old_price,
    #label_image,
    #label_title,
    #label_category_input,
    #label_external_id,
    #label_source,
    #label_price_input,
    #label_price,
    #label_old_price,
    #label_rating,
    #product_card,
    {
    display: none;
}



}


.refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear;
    color: var(--color-blue-500);
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}