/** Shopify CDN: Minification failed

Line 17:14 Expected identifier but found whitespace
Line 18:12 Unexpected "{"
Line 19:20 Expected ":"
Line 28:18 Expected identifier but found whitespace
Line 29:16 Unexpected "{"
Line 30:24 Expected ":"
Line 38:18 Expected identifier but found whitespace
Line 39:16 Unexpected "{"
Line 40:24 Expected ":"
Line 48:18 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
.container {
    max-width: {
            {
            settings.container_desktop_width
        }
    }
    ;
    width:100%
}

@media (min-width:1200px) and (max-width:1525px) {
    .container {
        max-width: {
                {
                settings.container_small_desktop_width
            }
        }
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .container {
        max-width: {
                {
                settings.container_laptop_width
            }
        }
    }
}

@media (min-width:768px) and (max-width:991px) {
    .container {
        max-width: {
                {
                settings.container_tablet_width
            }
        }
    }
}

@media (max-width:767px) {
    .container {
        max-width: {
                {
                settings.container_mobile_width
            }
        }
    }
}