.mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(22, 22, 22, 0.5);
}

.mask-container {
	width: 55.063rem;
	height: 32.313rem;
	background-color: #1D2748;
	border-radius: 0.375rem;
	-webkit-border-radius: 0.375rem;
	-moz-border-radius: 0.375rem;
	-ms-border-radius: 0.375rem;
	-o-border-radius: 0.375rem;
	position: relative;
}

.nomask {
	position: absolute !important;
	z-index: 9999;
	width: 46.5rem;
	height: 31.625rem;
	box-shadow: 0 0 .625rem rgba(255, 255, 255, 0.3);
}

.pigingestion tr td:last-of-type span {
	cursor: pointer;
}

.nomask .mask-table-container {
	margin: 1.25rem 2.5rem;
	display: flex;
	justify-content: space-between;

}

.nomask table {
	width: 30% !important;
	margin: 0;
}

.pigingestion {
	width: 81.5rem;
}

.mask-tab {
	margin: 0 2.5rem;
	font-size: 1.125rem;
	line-height: 3.75rem;
	color: rgba(255, 255, 255, 0.8);
}

.mask-tab ul {
	display: flex;
}

.mask-tab ul li {
	padding: 0 1rem;
	border-bottom: 0.25rem solid transparent;
	cursor: pointer;
}

.mask-tab-this {
	border-bottom: 4px solid #4F67CD !important;
	color: #5771E1;
}

.mask-title {
	margin: 0 2.5rem;
	padding-top: 1.125rem;
	font-size: 1.125rem;
	color: rgba(255, 255, 255);
}


.mask-table {
	width: calc(100% - 5rem);
	max-height: 19.125rem;
	margin: 1.25rem 2.5rem;
	text-align: center;
}

.mask-table thead {
	font-size: 1rem;
	line-height: 2.125rem;
	color: rgba(255, 255, 255, 0.87);
	background-color: #2B3875;
}

.mask-table th,
.mask-table td {
	border-left: 1px solid rgba(37, 78, 145, 0.6);
	border-bottom: 1px solid rgba(37, 78, 145, 0.6);
	box-sizing: border-box;
}

.mask-table th:last-of-type,
.mask-table td:last-of-type {
	border-right: 1px solid rgba(37, 78, 145, 0.6);
}

.mask-table td {
	font-size: 0.875rem;
	height: 2.125rem;
	color: rgba(255, 255, 255, 0.8);
}

.mask-td-red-color {
	font-weight: bold;
	color: #EC396F !important;
}

.mask-td-green-color {
	font-weight: bold;
	color: rgba(8, 167, 168, 0.8) !important;
}

.mask-td-yellow-color {
	font-weight: bold;
	color: rgba(243, 175, 88, 0.8) !important;
}

.mask-close-icon {
	width: 1.25rem;
	height: 1.25rem;
	position: absolute;
	top: 1.125rem;
	right: 2.5rem;
	cursor: pointer;
	background-image: url(../images/close-icon.png);
	background-size: 1.25rem;
	background-repeat: no-repeat;
}

.animate-bounce-up {
	animation: bounce-up 0.3s linear;
	-webkit-animation: bounce-up 0.3s linear;
}

@keyframes bounce-up {

	10%,
	50%,
	90% {
		transform: translateX(10px);
	}

	20%,
	40%,
	60%,
	80%,
	100% {
		transform: translateX(0);
	}

	30%,
	70% {
		transform: translateX(-10px);
	}
}
