/** Shopify CDN: Minification failed

Line 23:0 Unexpected "}"
Line 38:0 Unexpected "}"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
.banner_desktop {
        display: none;
    }

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  .banner_desktop{
width: 100%;
display: block;}
.banner_mobile{
display: none;}
}
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  .banner_desktop{
width: 100%;
display: block;}
.banner_mobile{
display: none;}
}
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  .banner_desktop {
        display: none !important;
    }
.banner_mobile{
width: 100%;
display: block;}
}