.pre {
	font-family: monospace;
	white-space: pre;
}

.tag {
	font-weight: bold;
	margin-right: 1em;
}

.value {
	font-family: monospace;
}

.areaUnidade{
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.icon-gray{
	filter: grayscale(100%);
}

.itensFacilidades {
	flex-direction: row;
	flex-wrap: wrap;
	font-size: 14px;
	gap:10px;
}

.itenFacLarg{
	width: 18%;
	margin-bottom: 20px;
	@media (max-width: 800px) {
		width: 30%;
	}
}

.skeleton-box {
	display: inline-block;
	height: 1em;
	position: relative;
	overflow: hidden;
	background-color: #DDDBDD;
 }
 .skeleton-box::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform: translateX(-100%);
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
	-webkit-animation: shimmer 5s infinite;
			animation: shimmer 5s infinite;
	content: "";
 }
 
 @-webkit-keyframes shimmer {
	100% {
	  transform: translateX(100%);
	}
 }
 
@keyframes shimmer {
	100% {
	  transform: translateX(100%);
	}
}

.custom-width-select {
  max-width: min(100%, 346px);
  width: 346px;
}

//tablet breakpoint
@media (min-width: 768px) {
  .custom-width-select {
    width: unset;
    max-width: unset;
    flex-grow: 1;
  }
}
