
/*BOTONES*/
.button {
	cursor: pointer;
}

/*ESTILO PARA BOTONES DE OPERACIÓN (LOGOUT, LOCALIZADORES, ETC..)*/
.general {
    height: 60px;
    width: 60px;
    margin: 10px 5px;
}

.general:active{
    height: 52px;
    width: 52px;
    margin: 14px 9px;
}

/*ESTILO PARA BOTONES DE CATEGORIAS.*/
.listCategories li:nth-child(odd){
    margin-left: 0px;
}

.listCategories li:nth-child(even){
    margin-left: 4px;
}

.categorie {
    height: 60px;
    width: 49%;
    margin-top: 2px;
    margin-right: 2px;
    position: relative;
}

.categorie div.caption{
    height: 60px;
    width: 100%;
    margin-top: 25px;
    text-transform: uppercase;
    font-size: small;
    font-weight: bold;
    position: absolute;
}

.categorie div.background{
    height: 60px;
    width: 100%;
    position: absolute;
    opacity: 0.5;
}

/*ESTILO PARA BOTONES DE TECLADO.*/
.keyboard {

}

.keyboard span {
    float: left;
    position: relative;
    top: 0;

    width: 24%;
    height: 60px;

    background: lightslategray;
    margin-top: 2px;
    margin-left: 2px;

    color: white;
    line-height: 60px;
    text-align: center;
    font-weight: bold;
}

/*ESTILO PARA BOTONES DE PRODUCTOS*/
.product {
    float: left;
    position: relative;

    width: 80px;
    max-width: 80px;
    height: 80px;
    max-height: 80px;

    margin: 2px;

    font-size: 12px;
    text-transform: uppercase;
    word-wrap: break-word;
    color: #000000;

    overflow: hidden;
}

.product image.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product div.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.product div.caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

/*ESTILO PARA BOTONES DE LOCALIZADORES.*/
.localizador {
    height: 60px;
    min-width: 10%;
    margin: 2px;
    float: left;
    position: relative;
}

.localizador div.caption{
    height: 60px;
    width: 100%;
    margin-top: 25px;
    text-transform: uppercase;
    font-size: small;
    font-weight: bold;
    position: absolute;
}

.localizador div.background{
    height: 60px;
    width: 100%;
    position: absolute;
    background: dodgerblue;
    opacity: 0.5;
}

.localizador div.background:active{
    background-color: #fff;
}
