/** Shopify CDN: Minification failed

Line 62:0 Unexpected "{"
Line 62:1 Expected identifier but found "%"
Line 71:2 Unexpected "{"
Line 71:3 Expected identifier but found "%"

**/
infinite-scroll {
    position: relative;
    width: 100%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
infinite-scroll h2{
    margin: 0;
    font-size: 1.6rem;
    line-height: 2.1rem;
    font-weight: 300;
}
.loadingBox {
    position: relative;
    width: 20rem ;
    height: 28px;
    margin: auto;
}
.loadingScroll {
    position: absolute;
    top: 0;
    background-color: rgb(0, 0, 0);
    width: 1.3rem;
    height: 1.3rem;
    animation-name: loading_animation;
    -o-animation-name: loading_animation;
    -ms-animation-name: loading_animation;
    -webkit-animation-name: loading_animation;
    -moz-animation-name: loading_animation;
    animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    transform: scale(0.3);
    -o-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
}
{% comment %} .scrollToTopButton {
    position: fixed;
    bottom: 20px;
    right: 149px;
    background: #ececec;
    padding: 5px 10px;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px;
} {% endcomment %}
#loading_1 {
    left: 0;
    animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}
#loading_2 {
    left: 29px;
    animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
}
#loading_3 {
    left: 58px;
    animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
}
#loading_4 {
    left: 88px;
    animation-delay: 1.05s;
    -o-animation-delay: 1.05s;
    -ms-animation-delay: 1.05s;
    -webkit-animation-delay: 1.05s;
    -moz-animation-delay: 1.05s;
}
#loading_5 {
    left: 117px;
    animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
}
#loading_6 {
    left: 146px;
    animation-delay: 1.35s;
    -o-animation-delay: 1.35s;
    -ms-animation-delay: 1.35s;
    -webkit-animation-delay: 1.35s;
    -moz-animation-delay: 1.35s;
}
#loading_7 {
    left: 175px;
    animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
}
#loading_8 {
    left: 205px;
    animation-delay: 1.64s;
    -o-animation-delay: 1.64s;
    -ms-animation-delay: 1.64s;
    -webkit-animation-delay: 1.64s;
    -moz-animation-delay: 1.64s;
}

/* Pristege */
[class^="pagination"], [class^="Pagination"], .pagination {
    display: none !important;
}

.js .features--show-element-staggering .ProductList--grid div.ProductItem {
    visibility: visible;
}

.js .product-card[reveal-on-scroll="true"] {
    opacity: 1;
}

@keyframes loading_animation {
    0% {
    transform: scale(1);
    background-color: rgb(0, 0, 0);
    }
    100% {
    transform: scale(0.3);
    background-color: rgb(255, 255, 255);
    }
}
@-o-keyframes loading_animation {
    0% {
    -o-transform: scale(1);
    background-color: rgb(0, 0, 0);
    }
    100% {
    -o-transform: scale(0.3);
    background-color: rgb(255, 255, 255);
    }
}
@-ms-keyframes loading_animation {
    0% {
    -ms-transform: scale(1);
    background-color: rgb(0, 0, 0);
    }
    100% {
    -ms-transform: scale(0.3);
    background-color: rgb(255, 255, 255);
    }
}
@-webkit-keyframes loading_animation {
    0% {
    -webkit-transform: scale(1);
    background-color: rgb(0, 0, 0);
    }
    100% {
    -webkit-transform: scale(0.3);
    background-color: rgb(255, 255, 255);
    }
}
@-moz-keyframes loading_animation {
    0% {
    -moz-transform: scale(1);
    background-color: rgb(0, 0, 0);
    }
    100% {
    -moz-transform: scale(0.3);
    background-color: rgb(255, 255, 255);
    }
}