/** Shopify CDN: Minification failed

Line 24:2 Unexpected "<"
Line 34:0 Unexpected "<"
Line 39:2 Unexpected "<"
Line 49:0 Unexpected "<"
Line 54:2 Unexpected "<"
Line 64:0 Unexpected "<"
Line 69:2 Unexpected "<"
Line 79:0 Unexpected "<"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
#shopify-section-template--16624990912760__161bbea8-3f3e-4152-a068-7debe0757acd .bee-container, #shopify-section-template--16624990912760__667e7cb2-530b-4886-b47e-78f8e55cb171 .bee-container, #shopify-section-template--16624990912760__161bbea8-3f3e-4152-a068-7debe0757aca .bee-container, #shopify-section-template--16624990912760__667e7cb2-530b-4886-b47e-78f8e55cb17b .bee-container , #shopify-section-template--16624990912760__161bbea8-3f3e-4152-a068-7debe0757acc .bee-container, #shopify-section-template--16626485592312__55cb275c-d1be-44da-9fdd-7b276c22c258 .bee-container{
max-width: 1160px;
width: 100%
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  <style>
/* Change sale price color */
.price--sale {
    color: #FF0000 !important; /* Red for sale price */
}

/* Change regular price color */
.price {
    color: #000000 !important; /* Black for regular price */
}
</style>
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  <style>
/* Change sale price color */
.price--sale {
    color: #FF0000 !important; /* Red for sale price */
}

/* Change regular price color */
.price {
    color: #000000 !important; /* Black for regular price */
}
</style>
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  <style>
/* Change sale price color */
.price--sale {
    color: #FF0000 !important; /* Red for sale price */
}

/* Change regular price color */
.price {
    color: #000000 !important; /* Black for regular price */
}
</style>
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  <style>
/* Change sale price color */
.price--sale {
    color: #FF0000 !important; /* Red for sale price */
}

/* Change regular price color */
.price {
    color: #000000 !important; /* Black for regular price */
}
</style>
}