@charset "UTF-8";
/* CSS Document */

/*------------------------------*\
			 TABLE
\*------------------------------*/

.table {
	width: 100%;
	margin: 20px;
	background: var(--light-color);
	
	color: var(--light-color);
	text-align: center;
	
	border: 1px solid var(--light-color);
	border-collapse: collapse;
	border-spacing: 0px;
	
	font-size: 1.2rem;
}

.table caption {
	background: var(--dark-color);
    padding: 20px;
	border-top: 1px solid var(--light-color);
	border-left: 1px solid var(--light-color);
	border-right: 1px solid var(--light-color);
}

.table caption.top {	
    border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.table caption.second {
	border-radius: 0;
}

.table thead {
	background: var(--dark-color);
	text-transform: uppercase;
}

.table tbody{
	background: var(--light-color);
}

th {
	background: var(--black-color);
}

td {
	
}

th, td {
	height: 40px;
	padding: 7px;
	vertical-align: middle;
	border: 1px solid var(--light-color);
	text-shadow: 1px 1px 1px var(--dark-shadow);
}

.table tbody tr {
	background: var(--main-color);
}

.table tbody tr:nth-child(even) {
	background: var(--second-color);
}

.table--admin-link {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.table--form-img {
	width: 100%;
}

.table--img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 32px;
	border: 1px solid var(--light-color);
	border-radius: 5px;

	transition: all .2s ease-In-Out;
}

.table--img:hover {
	position: absolute;
	left: 50%;
	top: -50%;
	transform: translate(-50%, 0%);
	width: 162px;
	height: 108px;
	z-index: 99;
}