@charset "utf-8";
/* CSS Document */
html, body{
	height: 100%;
}
body{
	background: rgb(33 33 33);
	background-image: url(../../imagen/fondo.jpg);
	background-size: cover;
	background-position: center;
}
table{
	width: 100%;
}
.tecladovirtual{
	position: absolute;
	bottom: 0;
	width: 100%;
}

.contenedor input {
   position: absolute;
   
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.contenedor {
  position: absolute;
    top: 0;
    /* left: 0; */
    width: 15px;
    height: 15px;
    background-color: transparent !important;
    border-radius: 50%;
    border: 1px solid #FFF;
}

/* On mouse-over, add a grey background color */
.contenedor:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.contenedor input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.contenedor input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.contenedor .checkmark:after {
 	top: 2px;
    left: 2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FFF;
}

.input-negro{
	background: #484848;
    border: 0;
	color: #9a9a9a;
    text-align: center;
}
.form-control:focus{
	background: #484848;
    border: 0;
	border: 1px solid #777;
	box-shadow: none;
	color: #9c9b9b;
}


.table_teclado tr td
{	
	background: transparent; 
    color: #efefef;
    padding: 1em .8em;
    text-align: center;
    cursor: pointer; 
    font-family: sans-serif;
    border: 1px solid rgb(39 39 39 / 0%);
    max-width: 10px;
    position: relative;
}

.table_teclado tr td:hover
{
	background: rgb(255 255 255 / 5%);
}

.btn_delete
{
	position: absolute;
	left: .1em;
	bottom: .1em;
	width: 19px;
}