.frete .cep {
	display: flex;
	justify-content: space-between;
}

.frete .transports {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 1px solid #e9e9e9;
	padding: 16px;
}

.frete .transports .method {
	display: flex;
	gap: 20px;
}

.frete .btn {
	padding: 16px;
	border-radius: 0 4px 4px 0;
}

.frete .consult-cep {
	margin-top: 5px;
	color: var(--primary-color);
	text-decoration: underline;
	font-family: var(--text-font);
	font-size: 12px;
}

.transports__button{
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 content;

	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	
	font-size: var(--text-font-size);
	font-family: var(--text-font);

	width: fit-content;
	padding: 6px 8px;
	border-radius: 6px 14px;
}

.transports__button,
.transports__button img{
	transition: background .3s ease-in-out, color .3s ease-in-out;
}

.transports__button:hover{
	background-color: var(--primary-color);
	color: white;
}

.transports__button:hover img{
	filter: brightness(0) invert(1);
}

/* Fade Transition */
.fade-enter-active,
.fade-leave-active {
	transition: opacity 0.3s ease-in-out;
}

.fade-enter-from,
.fade-leave-to {
	opacity: 0;
}
