* {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.clear {
	clear: both;
}
/*Botão***************************/
.btn-form-pd {
	color: #fff;
	border-radius: 5px;
	background: #2e96a8;
	padding: 7px 10px;
	font-size: 16px;
	box-shadow: 0px 5px 5px #ccc;
	transition: ease 0.3s;
}
.btn-form-pd:hover {
	color: #fff;
	text-decoration: none;
	background: #00bfd7;
	transition: ease 0.3s;
}
/*Gradientes**********************/
.gr-cinza {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f3f3f3+50,e8e8e8+52,ffffff+100 */
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(
		top,
		#ffffff 0%,
		#f3f3f3 50%,
		#e8e8e8 52%,
		#ffffff 100%
	); /* FF3.6-15 */
	background: -webkit-linear-gradient(
		top,
		#ffffff 0%,
		#f3f3f3 50%,
		#e8e8e8 52%,
		#ffffff 100%
	); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(
		to bottom,
		#ffffff 0%,
		#f3f3f3 50%,
		#e8e8e8 52%,
		#ffffff 100%
	); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.gr-azul {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#335796+1,223966+100 */
	background: #335796; /* Old browsers */
	background: -moz-linear-gradient(
		top,
		#335796 1%,
		#223966 100%
	); /* FF3.6-15 */
	background: -webkit-linear-gradient(
		top,
		#335796 1%,
		#223966 100%
	); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(
		to bottom,
		#335796 1%,
		#223966 100%
	); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#335796', endColorstr='#223966',GradientType=0 ); /* IE6-9 */
}
.none {
	display: none;
}
.bold {
	font-weight: bold;
}
/* Cores fontes */
.vermelho {
	color: red;
}
/*Icones***********/
.bto-excluir {
	background: url(../img/sprites.png) no-repeat -107px -5px;
	width: 52px;
	height: 25px;
	border: 0;
	text-indent: -9999px;
	cursor: pointer;
}
#voltar {
	padding: 10px 40px;
	margin: auto;
	text-align: center;
	border: 1px solid #004a09;
	background: #00630c;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	display: table;
	position: relative;
}
#voltar:hover {
	background: #00500a;
	text-decoration: none;
}
#voltar .ico {
	position: absolute;
	top: 15px;
	left: 5px;
	width: 25px;
	height: 25px;
	background: url("../img/icones/seta_voltar.png") top center no-repeat;
	background-size: 12px;
}

/*ANIMAÃ‡ÃƒO******************/
.animaJanela {
	animation: animationFrames ease 1s;
	animation-iteration-count: 1;
	transform-origin: 50% 50%;
	animation-fill-mode: forwards; /*when the spec is finished*/
	-webkit-animation: animationFrames ease 1s;
	-webkit-animation-iteration-count: 1;
	-webkit-transform-origin: 50% 50%;
	-webkit-animation-fill-mode: forwards; /*Chrome 16+, Safari 4+*/
	-moz-animation: animationFrames ease 1s;
	-moz-animation-iteration-count: 1;
	-moz-transform-origin: 50% 50%;
	-moz-animation-fill-mode: forwards; /*FF 5+*/
	-o-animation: animationFrames ease 1s;
	-o-animation-iteration-count: 1;
	-o-transform-origin: 50% 50%;
	-o-animation-fill-mode: forwards; /*Not implemented yet*/
	-ms-animation: animationFrames ease 1s;
	-ms-animation-iteration-count: 1;
	-ms-transform-origin: 50% 50%;
	-ms-animation-fill-mode: forwards; /*IE 10+*/
}

@keyframes animationFrames {
	0% {
		opacity: 0;
		transform: translate(0px, -25px);
	}

	100% {
		opacity: 1;
		transform: translate(0px, 0px);
	}
}

@-moz-keyframes animationFrames {
	0% {
		opacity: 0;
		-moz-transform: translate(0px, -25px);
	}

	100% {
		opacity: 1;
		-moz-transform: translate(0px, 0px);
	}
}

@-webkit-keyframes animationFrames {
	0% {
		opacity: 0;
		-webkit-transform: translate(0px, -25px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate(0px, 0px);
	}
}

@-o-keyframes animationFrames {
	0% {
		opacity: 0;
		-o-transform: translate(0px, -25px);
	}

	100% {
		opacity: 1;
		-o-transform: translate(0px, 0px);
	}
}

@-ms-keyframes animationFrames {
	0% {
		opacity: 0;
		-ms-transform: translate(0px, -25px);
	}

	100% {
		opacity: 1;
		-ms-transform: translate(0px, 0px);
	}
}

.animaUP {
	animation: animationFrames ease 1s;
	animation-iteration-count: 1;
	transform-origin: 50% 50%;
	animation-fill-mode: forwards; /*when the spec is finished*/
	-webkit-animation: animationFrames ease 1s;
	-webkit-animation-iteration-count: 1;
	-webkit-transform-origin: 50% 50%;
	-webkit-animation-fill-mode: forwards; /*Chrome 16+, Safari 4+*/
	-moz-animation: animationFrames ease 1s;
	-moz-animation-iteration-count: 1;
	-moz-transform-origin: 50% 50%;
	-moz-animation-fill-mode: forwards; /*FF 5+*/
	-o-animation: animationFrames ease 1s;
	-o-animation-iteration-count: 1;
	-o-transform-origin: 50% 50%;
	-o-animation-fill-mode: forwards; /*Not implemented yet*/
	-ms-animation: animationFrames ease 1s;
	-ms-animation-iteration-count: 1;
	-ms-transform-origin: 50% 50%;
	-ms-animation-fill-mode: forwards; /*IE 10+*/
}

@keyframes animationFrames {
	0% {
		opacity: 0;
		transform: translate(0px, 25px);
	}

	100% {
		opacity: 1;
		transform: translate(0px, 0px);
	}
}

@-moz-keyframes animationFrames {
	0% {
		opacity: 0;
		-moz-transform: translate(0px, 25px);
	}

	100% {
		opacity: 1;
		-moz-transform: translate(0px, 0px);
	}
}

@-webkit-keyframes animationFrames {
	0% {
		opacity: 0;
		-webkit-transform: translate(0px, 25px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate(0px, 0px);
	}
}

@-o-keyframes animationFrames {
	0% {
		opacity: 0;
		-o-transform: translate(0px, 25px);
	}

	100% {
		opacity: 1;
		-o-transform: translate(0px, 0px);
	}
}

@-ms-keyframes animationFrames {
	0% {
		opacity: 0;
		-ms-transform: translate(0px, 25px);
	}

	100% {
		opacity: 1;
		-ms-transform: translate(0px, 0px);
	}
}

#modal-lgpd .container-modal {
	position: relative;
}

@media (min-width: 0) {
	#modal-lgpd .container-modal {
		padding: 20px 10px;
	}

	#modal-lgpd .conteudo {
		text-align: center;
		margin-bottom: 30px;
		text-align: justify;
		padding: 0px 15px 10px 15px;
		overflow: auto;
		margin-top: 20px;
	}
}

@media (min-width: 800px) {
	#modal-lgpd .conteudo {
		max-height: 300px;
		padding: 0px 30px 10px 30px;
	}
}

#modal-lgpd h2 {
	text-align: center;
	font-size: 24px;
}

#modal-lgpd p {
	line-height: 23px;
	font-size: 14px;
}

#modal-lgpd a {
	line-height: 23px;
	font-size: 14px;
	color: #28c0d7;
}

#modal-lgpd .btn-modal-pd {
	background-color: #28c0d7;
	border: 1px solid #28c0d7;
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1.33px;
	margin: 10px 0 0;
	padding: 10px 60px;
	text-transform: uppercase;
	transition: 0.3s;
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 300px;
	margin-left: -150px;
}

#modal-lgpd .btn-modal-pd {
	display: block;
	text-align: center;
}

/* TOPO LOIU */

.loiu-main .btnMobile {
	top: 72px;
}

.loiu {
	background-color: #2934d0;
	padding: 16px;
	display: flex;
	align-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 4px 12px rgb(41 52 208 / 25%);
}

.loiu .loiu-logos {
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	align-items: center;
}

.loiu .loiu-logos .logo {
	padding-left: 32px;
	position: relative;
}

.loiu .loiu-logos .logo:before {
	content: "";
	width: 24px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M7.828 11H20v2H7.828l5.364 5.364-1.414 1.414L4 12l7.778-7.778 1.414 1.414z' fill='rgba(255,255,255,1)'/%3E%3C/svg%3E");
	background-position: left center;
	background-size: 24px;
	background-repeat: no-repeat;
}

.loiu .loiu-logos img {
	max-height: 20px;
}

.loiu .loiu-logos span {
	display: block;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 8px;
	position: relative;
}

.loiu .loiu-logos span:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636 7.05 8.222z' fill='rgba(255,255,255,1)'/%3E%3C/svg%3E");
	background-size: 28px;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.5s;
}

.loiu .loiu-logos span.roll:before {
	transform: rotate(180deg);
	transition: all ease 0.5s;
}

.loiu p.h1 {
	display: inline;
	margin: 0 0 0 12px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
}

.loiu .loiu-marcas {
	display: none;
	/* display: block; */
	width: 100%;
	padding-top: 16px;
}

.loiu .loiu-marcas ul {
	padding: 0;
	margin: 0;
}

.loiu .loiu-marcas ul li {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.75px;
	display: block;
	padding: 8px 0;
	text-align: center;
	color: white;
}

.loiu-main .cont-distribuidora {
	padding-top: 0;
}

.loiu-main .cont-distribuidora .carrinho .loiu {
	width: calc(100% + 40px);
	margin-left: -20px;
}

.loiu-main .cont-distribuidora .topo {
	position: sticky;
}

.loiu-main .cont-distribuidora .topo .menu-mobile {
	position: relative;
	float: left;
}

.loiu-main .cont-distribuidora .topo .btn-filtros {
	position: relative;
	float: right;
}

.loiu-main .cont-distribuidora .topo .menu-loja {
	top: 124px;
}

@media screen and (min-width: 1024px) {
	.loiu-main .topo {
		position: relative;
	}

	.loiu-main .home,
	.loiu-main .cont-entrarLoja {
		padding: 24px 0 50px;
	}

	.loiu-main .cont-distribuidora .carrinho .loiu {
		width: 100%;
		margin-left: 0;
		border-radius: 0;
	}

	.loiu {
		padding: 20px 150px;
	}

	.loiu .loiu-logos {
		display: inline-flex;
		width: 200px;
	}

	.loiu .loiu-logos .logo {
		padding-left: 40px;
	}

	.loiu .loiu-logos img {
		max-height: 28px;
	}

	.loiu .loiu-logos span {
		display: none;
	}

	.loiu .loiu-marcas {
		display: block;
		padding: 0;
		max-width: calc(100% - 200px);
	}

	.loiu .loiu-marcas ul {
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		justify-content: flex-end;
		align-items: center;
		gap: 32px;
	}

	.loiu .loiu-marcas ul li {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.75px;
		display: block;
		padding: 8px 12px;
		text-align: center;
		color: white;
		border: 1px solid rgba(255, 255, 255, 0.4);
		border-radius: 12px;
	}
}
