.informacoes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
	align-content: flex-start;
	border-radius: 4px 0 0 4px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	max-width: 100%;
}

.informacoes__input {
	opacity: 0;
	position: absolute;
	pointer-events: none;
}

.informacoes__label {
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 1.2;
	color: #bbb;
	padding: 16px 0;
	cursor: pointer;
	border-bottom: 2px solid #bbb;
	text-align: center;
}

.informacoes__input:checked + .informacoes__label {
	color: #000;
	border-color: #000;
}

.informacoes__label:hover {
	color: #bbb;
	border-color: #bbb;
}

.informacoes__input:focus + .informacoes__label {
	border-color: #000;
}

.informacoes__conteudo {
	display: none;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	color: #696969;
	grid-column: 1/-1;
	text-align: justify;
	padding-top: 0.625rem;
}

.informacoes__span {
	font-size: 1rem;
}

.informacoes__conteudo > img {
	display: block;
	max-width: 100% !important;
	height: auto !important;
}

#especificacoes:checked ~ #informacoes-especificacoes,
#medidas:checked ~ #informacoes-medidas {
	display: block;
}

@media (max-width: 767px) {
	.informacoes__label {
		font-size: 1rem;
	}

	.informacoes__conteudo,
	.informacoes__span {
		font-size: 0.875rem;
	}
}

.circle-icon {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	cursor: pointer;
	border: 1px solid #858585;
}

.btn-variacao {
	border-radius: .25rem;
	font-weight: bold;
	border: 1px solid #e4e4e4;
}

.btn-variacao:hover {
	background: #6c757d;
}

label.btn-variacao:has(input[type="radio"]:checked) {
    border: 1px solid #000;
	background: #292929 !important;
	color: #FFF;
}

label.circle-icon:has(input[type="radio"]:checked) {
	border: 2px solid #FFF;
	outline: 2px solid #000;
}

.wrapper-produtos-kit {
	max-height: 350px;
	overflow-y: auto;
	border-top: 1px solid #6c757d;
	border-bottom: 1px solid #6c757d;
	margin-bottom: 15px;
}

.escolha-desabilitada {
	opacity: 0.5;
	cursor: not-allowed !important;
}