/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */

@keyframes shiftRows-row-1 {
	0% {
		right: 0;
	}

	100% {
		right: 70px;
	}
}

@keyframes shiftRows-row-2 {
	0% {
		right: 0;
	}

	100% {
		right: 140px;
	}
}

@keyframes shiftRows-row-3 {
	0% {
		right: 0;
	}

	100% {
		right: 210px;
	}
}

table.animate-shiftRows > tbody > tr.row-1 {
	animation: shiftRows-row-1 1s ease-in-out 1 forwards;
}

table.animate-shiftRows > tbody > tr.row-2 {
	animation: shiftRows-row-2 1s ease-in-out 1 forwards;
}

table.animate-shiftRows > tbody > tr.row-3 {
	animation: shiftRows-row-3 1s ease-in-out 1 forwards;
}

table.animate-inverseShiftRows > tbody > tr.row-1 {
	animation: shiftRows-row-1 1s ease-in-out 1 reverse;
}

table.animate-inverseShiftRows > tbody > tr.row-2 {
	animation: shiftRows-row-2 1s ease-in-out 1 reverse;
}

table.animate-inverseShiftRows > tbody > tr.row-3 {
	animation: shiftRows-row-3 1s ease-in-out 1 reverse;
}
