/**
 * Estilos da caixa de busca simples exibida só na home (header.php,
 * bloco `if(get_the_ID()==31 || get_the_ID()==25186)`).
 */

.radio-group-inline {
	display: flex;
	align-items: center;
	border-radius: 5px;
	padding: 7px;
	justify-content: center;
}

.radio-option {
	display: flex;
	align-items: center;
	margin: 0 8px;
	cursor: pointer;
}

.radio-option input[type="radio"] {
	appearance: none;
	background: #e6e6e6;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	border: 2px solid #007bff;
	outline: none;
	transition: background 0.3s ease;
	margin-right: 10px;
}

.radio-option input[type="radio"]:checked {
	background: #f5802c;
	border: 2px solid #0056b3;
}

.radio-option input[type="radio"]:checked::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
	margin: 3px auto;
}

/* Prévia para os inputs */
#busca-linha-sup .col-12:before {
	content: " ";
	background: #fff;
	border-radius: 5px;
	display: table;
	width: 93%;
	height: 38px;
	position: absolute;
	left: 15px;
	z-index: 99999999;
	border: 1px solid #c6b082;
}

#busca-linha-sup .col-12.no-before:before {
	content: none;
}

#busca {
	display: none;
}

#busca-simples input {
	border-color: #c6b082;
}

@media only screen and (max-width: 766px) {
	#busca {
		display: block;
		height: auto;
		position: relative;
	}

	#busca-linha-sup div {
		padding-left: 0;
	}

	#busca-linha-sup .col-12:before {
		width: 100%;
		left: 0px;
	}
}
