﻿a{
	transition: 0.5s;
}

 A:link {
         Color: #000000; 
         TEXT-DECORATION: none
 }
 A:visited {
	COLOR: #000000; 
	TEXT-DECORATION: none
}
A:active {
	COLOR: #000000; 
	TEXT-DECORATION: none
}
A:hover {
	COLOR: #74ABDE; 
	TEXT-DECORATION: none;
	font-weight:bold;
}

body {
	font-family: 'Trebuchet MS' ;
}

.card{
	transition: filter 300ms;
}

.card:hover{
	opacity: 1;
}

.card:hover img:hover {
	transform: scale(1.3);
}

.card:hover img:not(:hover){
	opacity: 0.5;
	filter: sepia(90%);
}

#layerMenu{
  transition: width .5s ease;
}

#iFProceso{
  transition: width .5s ease;
}

.verFicha {
	background-color: white;
	
/*	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 320px));
	grid-template-rows: auto;
	justify-content: space-around; */
	
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	}

.verFicha > div {
	position: relative;
	height: 325px;
	width: 305px;
	background: white;
	overflow: hidden;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 2px; 
	border: 1px black solid;
	border-radius: 10px;
}

.flip-card {
	background-color: transparent;
	width: 305px;
	height: 325px;
	perspective: 1000px;
}

.flip-card-inner {
	position: relative;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	text-align: center;
	transition: 0.6s;
	transform-style: preserve-3d;
	border: 1px black solid;
	border-radius: 10px;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	backface-visibility: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.flip-card-front {
	background-color: white;
}

.flip-card-front img {
/*	width: 100%;
	height: 100%;
	object-fit: cover;
*/
}

.flip-card-back {
	background-color: white;
	transform: rotateY(180deg);
}

#layerMenu table {
	table-layout:fixed;
}

#layerMenu td {
	overflow: hidden; 
	white-space: nowrap; 
	text-overflow: ellipsis;
}

#layerMenub table {
	table-layout:fixed;
}

#layerMenub td {
	overflow: hidden; 
	white-space: nowrap; 
	text-overflow: ellipsis;
}
