#allblack {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 3; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.show_in_black{
    position: relative !important;
    z-index: 5 !important;
    background-color: white;
    animation-name: example3 !important;
    animation-duration: 1s;
    border-radius: .25rem;
}

@keyframes example3 {
  0%   {background-color: white;}
  50%  {background-color: yellow;}
  100% {background-color: white;}
}

#info_text{
    color: white;
    max-height: 500px;
    position: fixed;
    z-index: 5;
    right: 50%;
    top: 50%;
}

#next_info{

    max-height: 500px;
    position: fixed;
    z-index: 5;
    right: 5%;
    bottom: 5%;
}

.tooltip1 {
  position: relative;
  display: inline-block;
  opacity: 1;
  z-index: 1;
  /*border-bottom: 1px dotted black;*/
}

/* Tooltip text */
.tooltip1 .tooltiptext1 {
  visibility: hidden;
  width: 300px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  /*bottom: 125%;*/ /*bottom: hacia abajo, top: hacia arriba*/
  /*left: 50%;*/
  margin-left: -60px;
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip1 .tooltiptext1::after {
  content: "";
  position: absolute;
  /*top: 100%;*/ /*top: hacia abajo, bottom: hacia arriba*/
  /*left: 50%;*/
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  /*border-color: #555 transparent transparent transparent;*/ /*1: hacia abajo, 3: hacia arriba*/
}

.tooltip1:hover .tooltiptext1 {
  visibility: visible;
  opacity: 1;
}


.tooltip1 .tooltip-bottom1{
  top: 125%;
  left: 50%;
}

.tooltip1 .tooltip-bottom::after1{
  bottom: 100%;
  left: 50%;
  border-color: transparent transparent #555 transparent;
}

.tooltip1 .tooltip-top1{
  bottom: 125%;
  left: 50%;
}

.tooltip1 .tooltip-top1::after{
  top: 100%;
  left: 50%;
  border-color: #555 transparent transparent transparent;
}

.tooltip1 .tooltip-left1{
  bottom: 25%;
  right: 100%;
}

.tooltip1 .tooltip-left1::after{
  bottom: 25%;
  right: -10px;
  border-color: transparent transparent transparent #555;
}

.tooltip1 .tooltip-right1{
  bottom: 25%;
  left: 100%;
}

.tooltip1 .tooltip-right1::after{
  bottom: 25%;
  left: -5px;
  border-color: transparent #555 transparent transparent;
}
