body{
	/*display: flex;*/
	justify-content: center;
	/*align-items: flex-start;*/
	/*flex-wrap: warp;*/
  background-image: url(./img/fondo.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #b37233;
}

#enableEthereumButton{
	position: fixed; 
	top:  25px;
	right: 25px;
}

#accountSelected {
	position: relative; 
	/*top:  25px;
	right: 25px;*/
}

body>div {
	width: 60%;
	margin: 5% auto 0;
}

input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label span {
    display:inline-block;
    width:15px;
    height:15px;
    margin:-1px 1px 0 0;
    vertical-align:middle;
    background-color: #eacbae;
    cursor:pointer;
}

input[type="checkbox"]:checked + label span {
    background-color: #584614;
}

span[data-descr] {
  position: relative;
  text-decoration: none;
  color: #fff797;
  cursor: pointer;
  text-align: left;
}

span[data-descr]:hover::after,
span[data-descr]:focus::after {
  content: attr(data-descr);
  position: absolute;
  left: -5px;
  top: 24px;
  min-width: 200px;
  width: 300px;
  border: 1px #aaaaaa solid;
  border-radius: 5px;
  background-color: black;/*#fff797;*/
  padding: 12px;
  color: white;/*#b37233;*/
  font-size: 14px;
  z-index: 1;
}

#mostrar {
	/*overflow: hidden;*/
  width: 100px;
  /*height: 30px;*/
  background: red;
  transition: width 2s;/*, height 2s;*/
}

#mostrar {transition-timing-function: ease;}

#mostrar:hover {
  width: 100%;
  /*height: 100px;*/
}

#aggg:hover { 
  opacity: 0;
  animation-name: example;
  /*animation-duration: 4s;*/
  animation-delay: 2s;
}

@keyframes example {
  from {opacity: 0;}
  to {opacity: 1;}
}
