/* INDICES popup */
.container{
  position: relative;
  z-index: 2;
}

.popup{
  position: fixed;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%) scale(0.1);
  background: rgb(255, 230, 107);
  width: 300px;
  height: 320px;
  border: rgb(158, 158, 158) solid 1px;
  border-radius: 20px;
  text-align: center;
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
  box-shadow: 5px 7px 7px rgba(0,0,0,0.3);
}

.open-popup{
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}

/* LISTA buttons */
.popup button{
  width: 250px;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding-top: 14px;
  padding-bottom: 10px;
  padding-left: 11px;
  padding-right: 10px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 38px;
  margin-bottom: 0px;
  background: #6fd649;
  border: 2px solid #6fd649;
  border-radius: 10px;
  color: #2d2d2d;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

.fa-regular.fa-circle-xmark{
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
  color: #2d2d2d;
  cursor: pointer;
}