html {
	font-size: 16px !important;
}

/* cookies */
.cookies {
	display: none;
	z-index: 1000000;
	position: fixed;
	justify-content: space-between;
    align-items: center;
	bottom: 5px;
	width: 98%;
	background-color: #fff;
	border: #a9a9a9 1px solid;
	border-radius: 15px;
	padding: 10px 30px;
	margin: 0 1%;
}

.cookies span {
	width: 90%;
}

.btn-cookies {
	background-color: #f44336 !important;
	border-radius: 10px !important;
	color: #fff;
    max-height: 40px !important;
}

/* carrosel */

#comeco-text {
	padding: 30px 0;
}

/* seguro texto */

.seguro-text img {
    height: 40px;
    width: auto;
}

/* products */

body::-webkit-scrollbar {
	display: none;
}

#product-row {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.card {
	text-align: justify;
	box-shadow: 0px 0px 16px 3px rgb(236, 236, 236) !important;
    border-radius: 15px !important;
}

.card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.card-body a {
	width: 60%;
	text-align: center;
	font-family: "Roboto", "Helvetica", "Arial", sans-serif !important;
}

.card h5 {
	text-align: center;
	font-family: "Roboto", "Helvetica", "Arial", sans-serif !important;
}

.card img {
    border-radius: 15px 15px 0 0 !important;
}

.copyright {
	width: 100%;
	text-align: center;
}

/* forms */

#cadastro {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: nowrap;
	padding: 50px 0;
}

.cadastro-forms {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 40%;
	padding: 5% 2%;
	box-shadow: 0px 0px 16px 3px rgb(236, 236, 236);
	border-radius: 10px;
	box-sizing: content-box;
}

.cadastro-forms h2 {
	font-weight: 500;
}

.input-group {
	height: 60px;
}

.input-group > input {
	font-size: 1.6em;
	height: 46px;
}

.input-group > input::placeholder {
	font-size: 0.87em;
}

.form-control,
.is-focused .form-control {
	background-image: linear-gradient(
			to top,
			#f44336 2px,
			rgba(156, 39, 176, 0) 2px
		),
		linear-gradient(to top, #d2d2d2 1px, rgba(210, 210, 210, 0) 1px);
}

.label-float {
	position: relative;
	padding-top: 13px;
	padding-left: 20px;
}

.label-float input {
	border: 0;
	border-bottom: 2px solid lightgrey;
	outline: none;
	min-width: 180px;
	height: 40px;
	font-size: 16px;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-appearance: none;
	border-radius: 0;
	padding-left: 10px;
}

.label-float input:focus {
	border-bottom: 2px solid #3951b2;
}

.label-float input::placeholder {
	color: transparent;
}

.label-float label {
	pointer-events: none;
	position: absolute;
	top: -3px;
	left: 25px;
	margin-top: 20px;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	font-size: 16px;
}

.label-float input:required:invalid + label {
	/*color: red;*/
}

.label-float input:focus:required:invalid {
	border-bottom: 2px solid red;
}

.label-float input:required:invalid + label:before {
	/*content: '*';*/
}

.label-float input:focus + label,
.label-float input:not(:placeholder-shown) + label {
	font-size: 12px;
	margin-top: 0;
	color: #3951b2;
}

.label-float span {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 13px;
	font-size: 21px;
	color: #aaa;
}

.label-float input:focus:required:invalid + label {
	color: red;
}

.btn-warning {
	background-color: #f44336 !important;
	width: 40%;
    
	border-radius: 10px !important;
	font-size: 16px !important;
	box-sizing: content-box !important;
}

/* contagem */

.contagem {
	width: 45%;
	margin: 0;
	padding: 0;
}

.contagem .row {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#one,
#three {
	align-self: flex-start;
	width: 50%;
}

#two {
	align-self: flex-end;
	width: 50%;
}

#box {
	padding: 0 15%;
}

/* contato */

#contato a {
    color: #f44336;
}

#contato i {
	padding-top: 15px;
}

.text-contato {
	padding-top: 10px;
}

/* copyright */

.copyright {
    padding: 20px 0;
}


/* media queries */
@media (max-width: 1085px) {
	#box {
		padding: 0 10%;
	}

	#cadastro {
		flex-direction: column;
	}

	.cadastro-forms,
	.contagem {
		width: 60% !important;
		height: auto;
	}
}

@media (max-width: 770px) {
	#box {
		padding: 0 5%;
	}

	.cadastro-forms,
	.contagem {
		width: 65% !important;
		height: auto;
	}

	.cadastro-forms {
		padding: auto 10%;
		box-sizing: border-box;
	}

	.label-float {
		max-width: 80%;
	}

	.cadastro-forms h2 {
		font-size: 32px;
	}
}

@media (max-width: 560px) {
	.cadastro-forms,
	.contagem {
		width: 80% !important;
	}

	.cadastro-forms h2 {
		font-size: 28px;
	}

	.label-float input,
	.label-float label {
		font-size: 12px;
	}

	.label-float input {
		height: 30px;
	}

	.label-float span {
		font-size: 18px;
	}

	#one,
    #two,
	#three {
        align-self: center;
        width: 80%;
    }

    .cookies {
        flex-direction: column;
        align-content: space-between;
        justify-content: center;
        align-items: inherit;
        padding: auto 15px !important;
    }
}

@media (max-width: 375px) {
	.cadastro-forms,
	.contagem {
		width: 90% !important;
	}
}
