/* DOCUMENT CSS */

/* Variastrap */
@import url('variaveis.css');

/* Fontes Externas */

/* font-family: "Poppins", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CORPO */

html,
body {
	margin-left: 0px;
	margin-right: 0px;
	padding: 0 !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	backface-visibility: hidden !important;
	font-family: "Poppins", sans-serif !important;
}

/*  EFEITOS DE SUAVIDADE DE ENTRADA */
.fadeIn {
	-webkit-animation: fadeIn 0.7s ease-in-out;
	-moz-animation: fadeIn 0.7s ease-in-out;
	-o-animation: fadeIn 0.7s ease-in-out;
	animation: fadeIn 0.7s ease-in-out;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.body_ajax {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #070242;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999;
}

.spinner {
	border: 10px solid rgb(55, 215, 253);
	border-left-color: #fff;
	border-radius: 100%;
	height: 80px;
	width: 80px;
	margin: auto;
}

@keyframes loading {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

.spinner.is-animating {
	animation: loading 2s linear infinite;
}

/* GERAL */

input:focus,
button:focus {
	outline: none !important;
	box-shadow: none !important;
}

a[href^=tel],
a,
a:hover {
	color: inherit !important;
	text-decoration: none !important;
}

.btn:hover {
	color: #fff !important;
}

/* MODAIS */

.modal{
	padding-right: 0px !important;
}

.modal-open .modal {
    overflow-y: hidden !important;
}

/* MAIS */
.btn:hover{
	background-color: #009700 !important;
	color: #fff !important;
}

.accordion-button{
	box-shadow: inherit !important;
}

.accordion-button::after{
	background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(255,255,255,1)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/*WHATS */
a.blantershow-chat {
    position: fixed;
    z-index: 98;
    bottom: 10px;
    right: 10px;
	font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
	width: 70px;
    background-color: #25d366;
    height: 70px;
	border-radius: 50%;
    box-shadow: 0 1px 15px rgba(32, 33, 36, .28);
}