/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/************************************/
/* RESET */
/************************************/

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, em, 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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

img {
  width: 100%;
}

:focus {
	outline: none;
}

.clearFix {
	clear: both;
}

/************************************/
/* END RESET */
/************************************/

:root {
	/* fonts */
	--baseTextColor: #333;
	--baseLinkColor: #2a4b80;
	--baseYellow: #ffc81a;

	/* forms */
	--formBackgroundColor: #fff;
	--formBorder: 1px solid #ccc;
	--formCheckedColor: #2a4b80;
	--formDropDownOptionHoverBackgroundColor: #2a4b80;
	--formDropDownOptionHoverTextColor: #fff;

	font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--baseTextColor);
	background: #fff;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1600px;
  position: relative;
  margin: auto;
	padding: 0 3vw;
}

.size56 { font-size: 56px; }
.size36 { font-size: 36px; }
.size24 { font-size: 24px; }
.size18 { font-size: 18px; }

section {
	width: 100%;
	padding: 1vh 0 0 0;
	position: relative;
}

@media (max-width:1200px) {

	.size56 { font-size: 48px; }
	.size36 { font-size: 30px; }
	.size24 { font-size: 20px; }
	.size18 { font-size: 18px; }


}

@media (max-width:767px) {

	.size56 { font-size: 36px; }
	.size36 { font-size: 24px; }
	.size24 { font-size: 18px; }
	.size18 { font-size: 16px; }

}

a {
  color: var(--baseLinkColor);
	text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/************************************/
/* GRAPHIC ELEMENTS */
/************************************/

/* CALL TO ACTION */

.cta {
	background: var(--baseLinkColor);
	color: #fff;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 3px;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	border: 1px solid var(--baseLinkColor);
}

.cta:hover {
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 20px;
	text-decoration: none;
}

.ctaYellow {
	background: var(--baseYellow);
	color: #333;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 3px;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

button.ctaYellow {
	border: none;
}

.ctaYellow:hover {
	background: var(--baseLinkColor);
	color: #fff;
	border-radius: 20px;
	text-decoration: none;
}

.ctaYellowSelected {
	background: var(--baseLinkColor);
	color: #fff;
	border-radius: 20px;
	text-decoration: none;
}

.ctaYellowSelected a {
	color: #FFF;
}

.ctaGrey {
	background: #f2f2f2;
	color: #333;
	display: inline-block;
	padding: 10px;
	min-width: 40px;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.ctaGrey:hover {
	background: var(--baseLinkColor);
	color: #fff;
	border-radius: 20px;
	text-decoration: none;
}

.ctaSubmit {
	position: absolute;
	right: 5px;
	width: 30px;
	height: 30px;
	border: none;
	top: 5px;
	cursor: pointer;
	background: #fff;
}

.ctaSubmit::after {
	content: "\e815";
	font-family: "icomoon";
	position: absolute;
	left: 10px;
	opacity: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.ctaSubmit:hover::after {
	left: 15px;
	opacity: 1;
}

.topic {
  max-width: 1200px;
  margin: 30px auto;
}

.topicTitle {
  padding: 0 0 20px 0;
}

.topicTxt {
  padding: 0 0 10px 0;
}


/* TRANSITION STYLE */

.transition {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

/* FORMS */

/* input */

.formStyle .fsInput {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	color: var(--baseTextColor);
	padding: 10px;
	width: 100%;
	font-size: 14px;
	margin-bottom: 10px;
	min-height: 40px;
	border-radius: 3px;
}

/* dropdown */

.formStyle .fsDropDown {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	min-height: 40px;
	cursor: pointer;
	border-radius: 3px;
}

.formStyle .fsDropDown::after {
	color: var(--baseTextColor);
	content: '\e813';
  font-family: 'icomoon';
  speak: none;
	position: absolute;
	top: 14px;
	right: 10px;
	font-size: 14px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.formStyle .fsDropHover::after {
	transform: rotate(180deg);
}

.formStyle .fsDropDown li {
	position: relative;
}

.formStyle .fsDropDown .fsSelected {
	background: var(--formBackgroundColor);
	color: var(--baseTextColor);
	border: var(--formBorder);
	width: 100%;
	display: block;
	padding: 10px 30px 10px 10px;
	text-align: left;
}

.formStyle .fsDropDown .fsOptions {
	background: var(--formBackgroundColor);
	position: absolute;
	box-shadow: 0 0 2px rgba(0,0,0,.2);
	min-width: 100%;
	display: none;
	z-index: 1;
	white-space: nowrap;
}

.formStyle .fsDropDown .fsOptions > li {
	border-bottom: var(--formBorder);
	position: relative;
	padding: 10px;
	text-align: left;
	cursor: pointer;
}

.formStyle .fsDropDown .fsOptions > li:hover {
	color: var(--formDropDownOptionHoverTextColor);
	background: var(--formDropDownOptionHoverBackgroundColor);
}

/* checkbox */

.formStyle .fsCheckbox {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	width: 30px;
	height: 30px;
	padding: 8px;
	margin: 5px 0 15px 0;
	display: inline-block;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
}

.formStyle .fsCheckbox.fsChecked {
	background: #f1f1f1;
}

.formStyle .fsCheckbox.fsChecked::after {
	background: var(--formCheckedColor);
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 1px;
	display: block;
}

/* radiobutton */

.formStyle .fsRadio {
	background: var(--formBackgroundColor);
	border: var(--formBorder);
	width: 30px;
	height: 30px;
	padding: 8px;
	margin: 5px 0 15px 0;
	display: inline-block;
	cursor: pointer;
	position: relative;
	border-radius: 50%;
	vertical-align: middle;
}

.formStyle .fsRadio.fsChecked {
	background: #f1f1f1;
}

.formStyle .fsRadio.fsChecked::after {
	background: var(--formCheckedColor);
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: block;
}

/* input file */
.formStyle .fsFile {
	position: relative;
	margin-bottom: 10px;
}

.formStyle .fsFile input[type="file"]{
	display: none;
}

.formStyle .fsFile .fsFileLabel{
  cursor: pointer;
	display: inline-block;
}

.formStyle .fsFile .fsFileText{
  display: inline-block;
	padding: 5px;
}

/* form error */

.formStyle .fsError {
	border: 1px solid #ff0000;
	box-shadow: 0 0 2px #ff0000;
}

/* END FORMS */

/* PRODUCT */

.productBox {
	position: relative;
	background: #fff;
}

.productBox a {
	text-decoration: none;
}

.productBox .productImage {
	width: 100%;
	overflow: hidden;
	position: relative;
	border: 0px solid var(-baseLinkColor);
}

.image {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.productBox .productTitle{
	display: block;
	padding: 10px;
	color: #333;
	font-weight: 700;
	position: relative;
}

.productBox .productPrice{
	display: inline-block;
	padding: 3px 10px;
	border-top-right-radius: 3px;
	background: var(--baseYellow);
	color: #333;
	position: absolute;
	bottom: calc(100% - 10px);
	left: 0;
}

.productBox .since {
	font-weight: 400;
	font-size: 15px;
}

.productBox .productPrice::before {
	content: "\e818";
	font-family: "icomoon";
	padding: 10px;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	background: var(--baseLinkColor);
	font-size: 20px;
	color: #fff;
	position: absolute;
	bottom: 100%;
	left: 0;
}

.productBox a.active .productImage {
	border: 10px solid var(--baseLinkColor);
}
/*@media screen and (max-width: 1100px){*/
.productBox a.active .productImage {
	border: 0!important;
/*}*/
}

.productBox a.active .image {
	width: 120%;
}

.productBox a.active .productPrice {
	background: var(--baseLinkColor);
	color: #fff;
}

#header .productBox.mobile {
	padding: 0 10px;
}

.productBox.mobile .productImage {
	width: 30%;
	display: inline-block;
	vertical-align: middle;
}

.productBox.mobile .productTitle {
	width: 60%;
	display: inline-block;
	vertical-align: middle;
}

.productBox.mobile .productPrice{
	border-radius: 3px;
	position: relative;
	bottom: initial;
	left: initial;
}

.productBox.mobile .productPrice::before {
	display: none;
}

.productBox .productImage.megaMenuHeight {
	height: 12vw;
	max-height: 180px;
}

.productBox.mobile .productImage.megaMenuHeight {
	height: 18vw;
}

.productBox .productImage.col5 {
	height: 14.5vw;
	max-height: 230px;
}

@media (max-width:1200px) {
	.productBox .productImage.col5 {
		height: 18vw;
	}
}

@media (max-width:900px) {
	.productBox .productImage.col5 {
		height: 24vw;
	}
}

@media (max-width:700px) {
	.productBox .productImage.col5 {
		height: 36vw;
	}
}

@media (max-width:600px){

	.productBox.mobile .productImage {
		width: 40%;
	}

	.productBox.mobile .productTitle {
		width: 60%;
	}

	.productBox.mobile .productImage.col5 {
		height: 28vw;
	}

	.productBox.mobile .productImage.megaMenuHeight {
		height: 26vw;
	}
}

/* END PRODUCT */

.validationCheck {
	padding: 10px 0 0 0;
	border-top: 2px solid var(--baseLinkColor);
	border-bottom: 2px solid var(--baseLinkColor);
}

/************************************/
/* END GRAPHIC ELEMENTS */
/************************************/

/************************************/
/* HEADER */
/************************************/

#header {
	position: fixed;
	width: 100%;
	z-index: 10;
	background: #fff;
}

#header .topBox {
	background: #fff;
}

#header .slogan {
	display: inline-block;
	font-size: 20px;
	font-family: 'Nothing You Could Do', cursive;
	color: var(--baseLinkColor);
	padding: 5px 0;
	vertical-align: middle;
	width: 55%;
}
#header .telefoneverde{
	display: inherit;
	float: inherit;
	margin-left:10px;
}
#header .telefoneverde a:link{
	color: #21dc0a;
	font-family: initial;
	font-size: 17px;
}


#header .utilsBox {
	display: inline-block;
	padding: 5px 0;
	vertical-align: middle;
	width: 45%;
	text-align: right;
	position: relative;
}

#header .utilsBox .utils {
	display: inline-block;
	padding: 0 2vw 0 0;
	vertical-align: middle;
}

#header .utilsBox .utils:last-child {
	padding: 0;
	text-align: right;
}

#header .formStyle {
	position: relative;
}

#header .formStyle .fsInput {
	margin: 0;
}

#header .searchMobile, #header .icon-search {
	display: none;
}

#header .cartBox {
	position: relative;
	text-decoration: none;
}

#header .cartBox:hover {
	color: var(--baseYellow);
}

#header .icon-cart {
	font-size: 30px;
	padding: 5px;
}

#header .number {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20px;
	height: 20px;
	background: var(--baseLinkColor);
	color: #fff;
	font-size: 10px;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #fff;
}

#header .main {
	position: relative;
	background: linear-gradient(to bottom, #2b4c7f, #1d3152);
}

#header .logo {
	display: inline-block;
	width: 60vw;
	max-width: 270px;
	position: absolute;
	top: 50%;
	padding: 0 20px 0 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 13;
}

#header .burger {
	display: inline-block;
	width: 40px;
	height: 37px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #fff;
	border-radius: 2px;
	z-index: 20;
	right: 0;
}

#header .burger li {
	display: inline-block;
	width: 26px;
	height: 2px;
	position: absolute;
	border-radius: 1px;
	background: var(--baseLinkColor);
	top: 17px;
	left: 7px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

#header .burger li:first-child {
	top: 9px;
}

#header .burger li:last-child {
	top: 25px;
}

#header .burger.open {
	background: rgba(255,255,255,0);
}

#header .burger.open li {
	background: #fff;
}

#header .burger.open li:nth-child(2) {
	transform: rotate(45deg);
}

#header .burger.open li:nth-child(3) {
	transform: rotate(-45deg);
}

#header .burger.open li:first-child {
	opacity: 0;
}

#header .burger.open li:last-child {
	opacity: 0;
}

#header .headNav {
	display: inline-block;
	position: relative;
	width: 100%;
	vertical-align: middle;
	text-align: right;
	height: 17vw;
	max-height: 100px;
}

#header .link0Box {
	display: inline-block;
	height: inherit;
	vertical-align: middle;
}

#header .link0 {
	display: inline-block;
	border-right: 1px solid #556f99;
	height: inherit;
	vertical-align: middle;
	max-width: 125px;
	/*margin-right: -4px;*/
}

#header .link0:first-child {
	border-left: 1px solid #556f99;
}

#header .link0 > .link {
	position: relative;
	display: block;
	padding: 30px .6vw;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	text-align: center;
	height: inherit;
}

#header .link0 > .link:hover {
	color: var(--baseYellow);
}

#header .link0Box.open {
	display: block;
	position: fixed;
	right: 0;
	width: 70vw;
	min-width: 300px;
	z-index: 15;
	background: #f2f2f2;
	padding: 20px 0;
	overflow: auto;
	box-shadow: 0 0 5px rgba(0,0,0,.5);
}

#header .link0Box.open::-webkit-scrollbar {
    display: none;
}

#header .link0Box.open .link0 {
	display: block;
	border-right: none;
	height: auto;
	max-width: initial;
	position: relative;
}

#header .link0Box.open .link0:first-child {
	border-left: none;
}

#header .link0Box.open .link0 > .link {
	position: relative;
	display: block;
	padding: 10px 40px;
	color: var(--baseLinkColor);
	height: auto;
}

#header .link0Box.open .link0:hover {
	background: #fff;
}

#header .headNav .icon-down {
	padding: 10px;
	position: absolute;
	top: 2px;
	right: 5px;
	cursor: pointer;
	background: #fff;
}

#header .link1Box {
	position: absolute;
	left: 0;
	display: none;
	width: 100%;
	background: #fff;
	padding: 0;
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	text-align: left;
	vertical-align: top;
	min-height: 320px;
	overflow-y: auto;
}

#header .link1Box_child {
	position: absolute;
	left: 25%;
	top: 0;
	display: none;
	width: 75%;
	background: #fff;
	padding: 0;
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	text-align: left;
	vertical-align: top;
	min-height: 320px;
	overflow-y: scroll;
}

#header .link0Box.open .link1Box {
	position: relative;
	box-shadow: none;
	text-align: center;
	min-height: initial;
}

#header .link0Box.open .link1Box_child {
	position: relative;
	box-shadow: none;
	text-align: center;
	min-height: initial;
	left: 0;
	width: 100%;
}

#header .sublink {
	padding: 10px 10px 10px 3vw;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	display: block;
	position: relative;
	width: 25%;
	background: #f2f2f2;
}

#header .sublink:hover {
	background: #fff;
}

#header .sublink::after {
	content: "\e815";
	font-family: "icomoon";
	position: absolute;
	top: 12px;
	right: 5px;
}

#header .noAfter::after {
	content: "";
	display: none;
}

#header .link1Box::before {
	content: "";
	width: 25%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #f2f2f2;
}

#header .link1Box_child::before {
	content: "";
	width: 25%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #f2f2f2;
}

#header .link0Box.open .link1 {
	position: relative;
}

#header .link0Box.open .link1Box::before {
	display: none;
}

#header .link0Box.open .link1Box_child::before {
	display: none;
}

#header .link0Box.open .sublink {
	padding: 10px 40px;
	width: 100%;
	background: #fff;
}

#header .link0Box.open .sublink:hover {
	background: #f2f2f2;
}

#header .link0Box.open .sublink::after {
	content: "";
	display: none;
}

#header .featureBox {
	width: 75%;
	position: absolute;
	left: 25%;
	top: 0;
	padding: 20px 3vw;
	height: 100%;
	display: none;
}

#header .link0Box.open .featureBox {
	width: 100%;
	position: relative;
	left: 0;
	top: initial;
	padding: 5px 0;
	height: auto;
}

#header .feature {
	width: 25%;
	display: inline-block;
	padding: 0 10px;
	height: 100%;
	position: relative;
	/*border-right: 1px solid #ccc;*/
	vertical-align: top;
	margin-right: -4px;
}

#header .feature:last-child {
	border-right: none;
}

#header .link0Box.open .feature {
	width: 100%;
	display: block;
	padding: 10px 0;
	height: auto;
	border-right: none;
	/*border-bottom: 1px solid #ccc;*/
	text-align: left;
}

#header .link0Box.open .feature:last-child {
	border-right: none;
}

@media (max-width: 1150px){
	#header .slogan {
		display: block;
		width: 100%;
		text-align: center;
	}

	#header .utilsBox {
		display: block;
		width: 100%;
		text-align: center;
	}

	#header .utils:first-child {
		width: calc(100% - 300px);
	}
}

@media (max-width: 640px){
	#header .slogan {
		display: none;
		font-size: 14px;
	}
	#header .telefoneverde a:link {
	display: block;
	visibility: visible;
    font-size: 16px;
	}

	#header .utils:first-child {
		width: auto;
	}
}

@media (max-width: 480px){

	#header .searchDesktop {
		display: none;
	}

	#header .searchMobile {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: #fff;
		z-index: 30;
	}

	#header .searchMobile .formStyle {
		top: 40%;
	}

	#header .searchMobile .icon-close {
		font-size: 30px;
		padding: 10px;
		cursor: pointer;
	}

	#header .searchMobile .icon-close:hover {
		color: var(--baseLinkColor);
	}

	#header .icon-search {
		display: block;
		padding: 10px;
		border: 1px solid #ccc;
		cursor: pointer;
		border-radius: 3px;
	}

#header .topBox {
		text-align: right;
	}

	#header .utilsBox {
		width: auto;
		display: inline-block;
	}
}

/************************************/
/* END HEADER */
/************************************/

/************************************/
/* FOOTER */
/************************************/

#footer {
	width: 100%;
	padding: 9vh 0;
}

#footer .footerNav {
	border-top: 3px solid #7f93b3;
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

#footer .footerBurger {
	display: none;
	width: 40px;
	height: 37px;
	background: #fff;
	border-radius: 2px;
	position: relative;
}

#footer .footerBurger li {
	display: inline-block;
	width: 26px;
	height: 2px;
	position: absolute;
	border-radius: 1px;
	background: var(--baseLinkColor);
	top: 17px;
	left: 7px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

#footer .footerBurger li:first-child {
	top: 9px;
}

#footer .footerBurger li:last-child {
	top: 25px;
}

#footer .footerBurger.open {
	background: rgba(255,255,255,0);
}

#footer .footerBurger.open li:nth-child(2) {
	transform: rotate(45deg);
}

#footer .footerBurger.open li:nth-child(3) {
	transform: rotate(-45deg);
}

#footer .footerBurger.open li:first-child {
	opacity: 0;
}

#footer .footerBurger.open li:last-child {
	opacity: 0;
}

#footer .footerLink {
	display: inline-block;
	border-left: 1px solid #7f93b3;
}

#footer .footerLink:last-child {
	border-right: 1px solid #7f93b3;
}

#footer .link {
	padding: 10px 20px 0 20px;
	display: block;
	text-transform: uppercase;
	font-weight: 700;
}

#footer .socialBox {
	padding: 3vh 0;
	text-align: center;
}

#footer .formStyle {
	display: inline-block;
	width: 100%;
	max-width: 290px;
	position: relative;
	margin: 10px 10px 0 10px;
	vertical-align: top;
}

#footer .consentWrap {
	text-align: left;
	margin-top: 5px;
}

#footer .formStyle .fsInput {
	margin: 0;
}

#footer .networkBox {
	margin: 10px 10px 0 10px;
	display: inline-block;
	vertical-align: middle;
}

#footer .network {
	display: inline-block;
	padding: 0 5px;
}

#footer .icon {
	padding: 10px;
	font-size: 20px;
	text-decoration: none;
	background: #f2f2f2;
	border-radius: 3px;
	display: block;
}

#footer .icon:hover {
	background: #333;
	color: #fff;
}

#footer .disclaimer {
	text-align: center;
	padding: 0 0 10px 0;
}

#footer .easypay {
	text-align: center;
	padding: 0 0 10px 0;
	width: 100%;
	margin:0 auto;
	display: block;
}

#footer .easypay img {
	max-width: 178px;
	vertical-align: middle;
	margin-left: 10px;
}

#footer .icon-kriacao {
	position: relative;
	text-decoration: none;
	color: #999;
	margin: auto;
	width: 64px;
	display: block;
}

@media (max-width:800px){
	#footer .footerNav {
		border-bottom: 2px solid #7f93b3;
	}

	#footer .footerBurger {
		display: inline-block;
	}

	#footer .footerLinkBox {
		display: none;
	}

	#footer .footerLink {
		display: block;
		border-left: none;
		border-top: 1px solid #7f93b3;
	}

	#footer .footerLink:last-child {
		border-right: none;
	}

	#footer .link {
		padding: 10px 20px;
	}
}

/************************************/
/* END FOOTER */
/************************************/


input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield;
}