/* .owc__iframe {
    aspect-ratio: 1/1;
    width: auto;

    margin-right: auto;
    margin-left: auto;

    max-height: 50vh;
}

@media screen and (max-width: 640px){
    .owc__iframe{
        max-height: 40vh;
    }
} */

.woocommerce-product-gallery .flex-control-thumbs {
    display: none;
}

/* disable transition effect */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    transition: none !important;
}

/* hide product image */
.woocommerce-product-gallery__wrapper [data-thumb-alt]:not([data-thumb-alt="owc_3d"]) {
    visibility: hidden;
}

/* hidden class for ui */
.hidden-composite-connector {
    position: fixed;
    left: -100%;

    opacity: 0;
    visibility: hidden;
}


/* prelaoder */
.preloader-area {
    pointer-events: none;
    position: relative;
}

.preloader-area:before,
.preloader-area:after {
    content: '';

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    opacity: 0.4;
}

.preloader-area:before {
    background-color: #ffffff;
}

.preloader-area:after {
    background-image: url('preloader.svg');
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* spreadsheet calculation */
.owc__calculation-spreadsheet-composite .attribute_options .reset_variations_wrapper_fixed{
    /* disable clear button */
    display: none;
}
.owc__price-container .owc__price:not(.owc__price-total){
    margin-top: 1em;
    color: #77a464;
}
.owc__price-total{
    display: flex;
    gap: 10px;
}
.owc__price-total + .owc__price-total{
    margin-top: 8px;
}
.owc__price-total--total_net{
    font-size: 0.8em;
}