﻿
/*
-------------------
03_GLOBAL CONTENT
	508 Compliance
	Text Elements
	Links
	Buttons and Inputs
-------------------
*/

/* 508 Compliance */

a.skiptocontent {
	position: absolute;
	height: 1px;
	width: 1px;
	top: auto;
	left: -999px;
	overflow: hidden;
	z-index: -999;
}

a.skiptocontent:focus,
a.skiptocontent:active {
	top: auto;
	left: auto;
	height: auto;
	width: 30%;
	margin: 10px 35%;
	padding: 5px;
	overflow: auto;
	border-radius: 15px;
	border: 4px solid yellow;
	background-color: #000;
	color: #fff;
	font-size: 1.2em;
	text-align: center;
	z-index: 999;
}

*, *::before, *::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position: relative;
	padding: 0;
	margin: 0;
	font-family: "Gotham A", "Gotham B";
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.7;
}

body#default_page #body {
	width: 100%;
}

body#product_page #body,
body#policy_page #body,
body#cart_page #body {
}

body#category_page .hero-banner__list #default,
body#product_page .hero-banner__list #default,
body#information_page .hero-banner__list #default,
body#cart_page .hero-banner__list #default {
	display: none;
}

body#default_page #side_nav {
	display: none;
}

body#product_page .hero-banner__list {
	display: none;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

.col-xs, .row, legend {
	box-sizing: border-box;
}

.row {
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-moz-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-direction: normal;
	-webkit-box-orient: horizontal;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -.6875rem;
	margin-left: -.6875rem;
}

.col-xs-11,
.col-xs-12 {
	box-sizing: border-box;
	-webkit-box-flex: 0;
	padding-right: .6875rem;
	padding-left: .6875rem;
}

.col-xs-12 {
	-webkit-flex-grow: 0;
	-moz-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

.col-md-3,
.col-md-4 {
	box-sizing: border-box;
	-webkit-box-flex: 0;
	padding-right: .6875rem;
	padding-left: .6875rem;
}

.col-md-3 {
	-webkit-flex-grow: 0;
	-moz-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	max-width: 25%;
}

.center-xs {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-moz-justify-content: center;
	justify-content: center;
	text-align: center;
}

.middle-xs {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-moz-align-items: center;
	align-items: center;
}

.around-xs {
	-ms-flex-pack: distribute;
	-moz-justify-content: space-around;
	justify-content: space-around;
}

.d-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.start-md {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
	text-align: left;
}

.end-md {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-moz-justify-content: flex-end;
	justify-content: flex-end;
	text-align: right;
}

/* Text Elements */

p {
	margin: 0 0 10px 0;
}

h6 {
	font-size: 22px;
}

ul, ol {
	list-style: none;
}

img {
	max-width: 100%;
	border: 0;
	vertical-align: top;
}

.text-center {
	text-align: center;
}

/* Links */

a,
button,
[type="submit"],
[role="button"] {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: inherit;
	font-size: inherit;
	text-decoration: none;
}

/* Buttons and Inputs */

.wow {
	opacity: 0
}

.wow.animate {
	opacity: 1;
	transition: all .6s ease-in-out
}

.wow.fadeInUp.animate {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	animation-duration: 1s;
	animation-delay: .1s
}

.wow.fadeInRight.animate {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
	animation-duration: 1s;
	animation-delay: .1s
}

.wow.fadeInLeft.animate {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: .1s;
	animation-delay: .1s
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0,50%,0);
		transform: translate3d(0,50%,0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0)
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0,50%,0);
		transform: translate3d(0,50%,0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0)
	}
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(50%);
		transform: translateX(50%)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(50%);
		transform: translateX(50%)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.wow.fadeInRight.animate,
.wow.fadeInUp.animate {
	-webkit-animation-duration: 1s;
	-webkit-animation-delay: .1s
}

.btn_oos {
	margin-left: 10px;
	padding: 3px 10px;
	border: medium none;
	font-family: inherit;
	font-size: 14px;
}

#product_page #main-wrapper, #information_page #main-wrapper {
	margin-top: 80px;
}