﻿/*

Copyright WorldPantry.com ------

*/

/*
Table of contents:
====================
00_RESET
-------------------
01_FONTS
-------------------
02_COLORS
-------------------
03_GLOBAL
	from partner site
	Text Elements
	Links
	Buttons and Inputs
-------------------
04_HEADER FOOTER
	Header
	Minicart
	If Dropdown Is Disabled
	Footer
-------------------
05_SIDE NAVIGATION
-------------------
06_DEFAULT
-------------------
07_CATEGORY
	Grid
	Product On Sale
-------------------
08_PRODUCT
	Product On Sale
	Variant Display
	Related Products
-------------------
09_SHOPPING CART
-------------------
10_POLICY
-------------------
11_MISC
	Remodal
====================
*/


/*
----------------------------------------
FIRST FIX FOR FIREFOX TO DISPLAY
MISSING IMAGES
----------------------------------------
*/
@-moz-document url-prefix(http), url-prefix(file) {
    img:-moz-broken {
        -moz-force-broken-image-icon: 1;
        width: 100px;
        height: 75px;
    }
}

/*
----------------------------------------
NEXT WE'LL RESET EVERYTHING
----------------------------------------
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* Chrome input border fix */

input[type=submit], textarea {
	-webkit-appearance: initial;
	-webkit-border-radius: 0;
}

input[type="radio"] {
	-webkit-appearance: radio;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox	{
	-webkit-appearance: none;
	border-radius: 0;
}


*::before, *::after {
    box-sizing: border-box;
}