#pesquisa-result.show{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
}
#pesquisa-result.show p{
	font-size: 1.5rem;
}
#block-pesquisa-form.show{
	display: block;
}
#pesquisa-result,
#block-pesquisa-form{
	display: none;
}
#pesquisa-result{
	text-align: center;
}
#pesquisa-result .img-loading{
	width: 120px;
	margin: 100px 0px;
}
.question .q-title{
	margin-bottom: 2rem;
	font-size: 24px;
	font-family: system-ui;
	font-weight: 400;
}

.question .a-title{
	margin-bottom: 1rem;
	font-size: 1.2em;
	font-weight: 400;
}

.question {
	margin-bottom: 2.75rem;
}

.question .answer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.question .answer .a-title,
.question .answer .options{
	width: 50%;
	margin: 0;
	padding: 5px 5px;
}

.question .answer > label,
.question .answer > label .a-title{
	width: 100%;
	position: relative;
}

.question .answer > label .a-title{
	cursor: pointer;
}

/* direct custons */

.question .a-title2{
	margin-bottom: 1rem;
	font-size: 1.4em;
	font-weight: 400;
	border: solid 1px #ff670d;
    border-radius: 15px;
}

.question .answer .a-title2,
.question .answer .options{
	width: 50%;
	margin: 0;
	padding: 12px 5px;
}

.question .answer > label,
.question .answer > label .a-title2{
	width: 100%;
	position: relative;
	text-align: center;	
}

.question .answer > label .a-title2{
	cursor: pointer;
}

.question .answersCustom{
	display: inline-flex;
	width: 100%;
	justify-content: space-evenly;
    flex-wrap: wrap;	
}
.question .answer3 > label{
	width: 296px;
	margin: 0px 10px;
}

/* direct custons end */

.question .answer .options {
	display: grid;
	text-align: center;
}
.question .answer .options.cols5  {
	grid-template-columns: repeat(5,minmax(0,1fr));
}
.question .answer .options.cols4  {
	grid-template-columns: repeat(4,minmax(0,1fr));
}
.question .answer .options.cols3  {
	grid-template-columns: repeat(3,minmax(0,1fr));
}
.question .answer .options.cols2  {
	grid-template-columns: repeat(2,minmax(0,1fr));
}

/* custons answers */

.question .answerCounter {
	border: solid 1px #ff670d;
    border-radius: 15px;
	padding: 0px 15px;
	/* text-align: center; */
    align-items: center;
    min-height: 75px;
}

/* custons answers end*/

.question .options .option{
	position: relative;
}
.question .options .option label{	
	position: relative;
	display: flex;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.question .options .option label input,
.question .answer label input{
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
}
.question .options .option label input[type=radio]:checked~.pro-title {
	--mir-bg-opacity: 1;
	background-color: rgb(255 103 13/var(--mir-bg-opacity));
	color: #fff;
}
.question .answer > label input[type=radio]:checked~.a-title2{
	--mir-bg-opacity: 1;
	background-color: rgb(255 103 13/var(--mir-bg-opacity));
	color: #fff;
}

.question .options .option label .pro-title{
	--mir-bg-opacity: 1;
    background-color: rgb(255 255 255);
    width: 92%;
    padding: 1rem;
    position: relative;
    z-index: 1;
    border: solid 1px #ff670d;
    border-radius: 15px;
}
.question .options .option label .pro-title2{
	padding: 5px;
    width: 32%;	
}
.question .number{
	background-color: #ff670d;
    color: white;
    border-radius: 15px;
    padding: 0px 14px 2px 14px;
    font-weight: 900 !important;
	font-family: 'system-ui';
}
.botao-pesquisa {
	border-radius: 15px;
    font-family: system-ui;
    background-color: #ff670d;
    font-size: 24px;
    font-weight: 700;
	cursor: pointer;
}
.investimentos {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.investimentos p {
	background-color: #ff670d;
    color: white;
    width: 27%;
    font-size: 18px;
    padding: 28px 16px;
    line-height: 1.2;
    font-family: system-ui;
    font-weight: 750;
	border-radius: 15px;
}

.investimentos p span{
	font-size: 35px;
	font-weight: 900;
	background: linear-gradient(180deg, rgb(255 213 105) 0%, rgb(249 137 72) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.opcoes p{
	font-family: system-ui;
	font-size: 20px;
}

@media (max-width: 540px) {
	.question .answer{
		display: block;		
	}
	.question .answerCounter{
		padding: 15px 15px;
	}
	.question .answer .a-title, .question .answer .options{
		width: 100%;
	}
	.investimentos p{
		width: 62vh;;
	}
}
@media (max-width: 430px){
	.question .options .option label .pro-title2 {
		padding: 5px;
		width: 44%;
	}
}