﻿/*
03_GLOBAL
Reset
	Firefox image display fix
	HTML5 display-role reset for older browsers
GLobal Content
	Text Elements
	Form Elements
	Buttons
*/

/*
====================
Reset
====================
*/

/* Firefox image display fix */
@-moz-document url-prefix(http), url-prefix(file) {
	img:-moz-broken {
		height: 75px;
		width: 100px;
		-moz-force-broken-image-icon: 1;
	}
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

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;
}

a {
	/*outline: 0;
	border: none;*/
}

a, a:active, a:focus {
	/*outline: none;*/
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

*::after, *::before {
	box-sizing: border-box;
}

/*
====================
GLOBAL CONTENT
====================
*/

body {
	color: #410e02;
	background-color: white;
	font-family: 'muliextrabold', Helvetica, sans-serif;
	font-size: 16px;
	font-size: 1rem;
}

#content {
	margin: 0;
}

#wpstore {
	margin: 0;
}

.hide {
	display: none;
}

/* Text Elements */

h1 {
}

h2 {
	font-size: 20px;
	font-size: 1.25rem;
	text-transform: uppercase;
}

h3 {
	text-transform: uppercase;
}

p {
}

/* Form Elements */

input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/* Buttons */

.btn,
.btn img {
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
}

.oos {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: button;
}
