
    /* Popup container */
    
    .team-block .shrteam .author-info {
        overflow: visible !important;
    }
    .team-block .shrteam .author-info:hover .popuptext {
        visibility: visible;
    }
    .team-block .author-info {
        overflow: visible !important;
    }
    .team-block .author-info:hover .popuptext {
        visibility: visible;
    }

/* The actual popup (appears on top) */
.team-block .shrteam .author-info .popuptext {
  visibility: hidden;
  width: 25vw;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 40vh;
  background-color: #000;
  color: #fff;
  text-align: justify;
  border-radius: 6px;
  padding: 10px;
  z-index: 1;
  border: solid 2px #f4f4f4;
  font-family: 'Roboto Slab', serif;

  /*margin-left: -80px;*/
}

.team-block:nth-child(odd) .shrteam .author-info .popuptext {
    position: absolute;
    bottom: 0;
    left: 285px;
  /*margin-left: -80px;*/
}
.team-block:nth-child(even) .shrteam .author-info .popuptext {
    position: absolute;
    bottom: 0;
    right: 285px;
}

.team-block:nth-child(odd) .shrteam.supportteam .author-info .popuptext {
    position: absolute;
    bottom: 0;
    left: 220px;
  /*margin-left: -80px;*/
}
.team-block:nth-child(even) .shrteam.supportteam .author-info .popuptext {
    position: absolute;
    bottom: 0;
    right: 220px;
}

/* Popup arrow */
.team-block:nth-child(odd) .shrteam .author-info .popuptext::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #555 transparent transparent;
}
.team-block:nth-child(even) .shrteam .author-info .popuptext::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #555;
}


/*homepage*/
.team-block .author-info .popuptext {
  visibility: hidden;
  width: 25vw;
  background-color: #000;
  color: #fff;
  text-align: justify;
  border-radius: 6px;
  padding: 10px;
  z-index: 1;
  border: solid 2px #f4f4f4;
  font-family: 'Roboto Slab', serif;

  /*margin-left: -80px;*/
}

.team-block:nth-child(odd) .author-info .popuptext {
    position: absolute;
    bottom: 0;
    left: 300px;
  /*margin-left: -80px;*/
}
.team-block:nth-child(even) .author-info .popuptext {
    position: absolute;
    bottom: 0;
    right: 300px;
}

/* Popup arrow */
.team-block:nth-child(odd) .author-info .popuptext::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #555 transparent transparent;
}
.team-block:nth-child(even) .author-info .popuptext::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #555;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
