@charset "UTF-8";

.card-custom {
	border-radius: 10px;
	/* Valor exacto */
	overflow: hidden;
	/* Importante para el Header/Footer */
	border: 2px solid #dee2e6;

	background: #f18233 !important;
}

.column-custom {
	border-radius: 10px;
	/* Valor exacto */
	overflow: hidden;
	/* Importante para el Header/Footer */
	border: 2px solid #333333;
	background: #333333 !important;
	height: 100%;
}

.text-orange {
	color: #f18233 !important;
}

.text-black {
	color: #000 !important;
}

.map-marker {
	width: 40px;
	height: auto;
}

.col-center {
	text-align: center;
}

.col-right {
	text-align: right;
	padding-right: 25px;
}

.proveedor-logo {
	height: 30px !important;
	width: auto !important;
	object-fit: cover; /* Recorta la imagen para que no se vea estirada */
    object-position: center; /* Centra el recorte */
    padding-bottom: 5px;
}

.link-none {
	color: inherit;
	/* Hereda el color del texto circundante */
	text-decoration: none;
	/* Sin subrayado */
	cursor: default;
	/* El cursor no cambia a "manita" */
}

.link-none:hover {
	color: inherit;
	/* No cambia al pasar el mouse */
	text-decoration: none;
}