@keyframes button_animation_01
{

	0% { color: rgba(255, 255, 255, 1.0); background-color: rgba(1, 49, 61, 1.0);}

	10% { color: rgba(0, 199, 255, 1.0); background-color: rgba(0, 0, 0, 1.0);}

	20% { color: rgba(255, 255, 255, 1.0); background-color: rgba(1, 49, 61, 1.0);}

	100% { color: rgba(255, 255, 255, 1.0); background-color: rgba(1, 49, 61, 1.0);}

}

@keyframes button_animation_02
{

	0% { color: rgba(0, 0, 0, 1.0); background-color: rgba(0, 199, 255, 1.0)}

	100% { color: rgba(0, 0, 0, 1.0); background-color: rgba(0, 199, 255, 1.0)}

}

section
{

	background: rgba(212, 211, 211, .75);

	backdrop-filter: blur(10px);
	
	box-shadow: 5px 5px 3px rgba(0, 0, 0, .5);

	border-radius: 20px;

}

button
{

	animation-play-state: paused;

	animation: button_animation_01 3s infinite;

	background-color: rgba(1, 49, 61, 1.0);

	border: none;
	
	box-shadow: 5px 5px 3px rgba(0, 0, 0, .5);

	border-radius: 8px;

	transition: scale .5s ease;
	transition: background-color .5s ease;

}

button:hover
{

	animation-play-state: paused;

	animation: button_animation_02 3s ease infinite;

	background-color: rgba(0, 199, 255, 1.0);
	color: rgba(0, 0, 0, 1.0);
	border: medium;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, .5);
	border-radius: 8px;

	/*animation: enfasis01 .3s;*/
	transition: background-color .5s ease;
	transition: color .5s ease ;
	transition: scale .5s ease;

	scale: 1.05;

}

table
{

	background-color: rgba(212, 211, 211, .5);
	padding: 5px;
	padding-top: 10px;
	border-radius: 10px;

}




.InputText_1_0_0
{

	border-radius: 8px;

	width: 25px;

	background-color: rgba(1, 49, 61, 1.0);

	color: rgba(255, 255, 255, 1.0);

}




#H11_0_0
{

	text-align: center;

}

#IS1_0_0
{

	background-color: rgba(1, 49, 61, 1.0);

	border: none;
	
	box-shadow: 5px 5px 3px rgba(0, 0, 0, .5);

	border-radius: 8px;

}