.gacp-speaker-overlay.hidden {
  display: none;
}

@-webkit-keyframes jumpUp {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
  }
}

@keyframes jumpUp {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
  }
}
.gacp-speaker-overlay {
  position: fixed;
  background-color: white;
  width: 75vw;
  max-width: 1216px;
  padding: 2em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  display: block;
  top: 99px;
  left: 50%;
  max-height: 80vh;
  overflow-y: scroll;
  z-index: 35;
  
  
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  
  -webkit-animation: fadeIn .5s;
  animation: fadeIn .5s;
}
.gacp-speaker-overlay .speaker-profile-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80%;
  max-width: 500px;
  margin: 2em auto;
  
  -webkit-animation: jumpUp .5s cubic-bezier(.28,.99,.2,1.15), fadeIn .5s;
  animation: jumpUp .5s cubic-bezier(.28,.99,.2,1.15), fadeIn .5s;
}
.gacp-speaker-overlay .speaker-profile-card img {
  width: 8em;
  height: 8em;
  max-width: 10vw;
  max-height: 10vw;
}
.gacp-speaker-overlay .speaker-profile-name {
  text-align: left;
  padding-left: 1em;
}
.gacp-speaker-overlay .speaker-profile-name h2 {
  margin: 0;
  padding-bottom: 0.5em;
}
.gacp-speaker-overlay .speaker-profile-name h3 {
  margin: 0;
  line-height: 1.5;
}
.gacp-speaker-overlay .gacp-speaker-desc {
  line-height: 2;
  text-align: left;
  max-width: 900px;
  font-size: 1.1em;
  margin: 0 auto;
  padding: 1em;
  -webkit-animation: jumpUp 0.75s cubic-bezier(.28,.99,.2,1.15), fadeIn .75s forwards;
  animation: jumpUp 0.75s cubic-bezier(.28,.99,.2,1.15), fadeIn .75s forwards;
}
.overlay-exit {
  display: none;
}
.overlay-exit.visible:hover {
  cursor: pointer;
}
.speaker-overlay-cover {
  display: none;
  -webkit-animation: fadeIn .5s;
  animation: fadeIn .5s;
}
.overlay-exit.visible {
  display: block;
}
.speaker-overlay-cover.visible {
  display: block;
}
.speaker-overlay-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  background-color: black;
  opacity: .5;
}
.overlay-exit {
  position: fixed;
  top: 0;
  z-index: 40;
  width: 3em;
  height: 3em;
}

.overlay-exit.visible path:nth-child(1) {
  -webkit-transform: translate(-50%, 50%) rotate(-45degz) scaleX(1.41);
  transform: translate(-50%, 50%) rotate(-45deg) scaleX(1.41);
  -webkit-animation: jumpUp .25s, fadeIn .25s;
  animation: jumpUp .25s, fadeIn .25s;
}
.overlay-exit.visible path:nth-child(2) {
  -webkit-transform: translate(23%, -5%) rotate(45deg) scaleX(1.41);
  transform: translate(23%, -5%) rotate(45deg) scaleX(1.41);
  -webkit-animation: jumpUp .25s, fadeIn .25s;
  animation: jumpUp .25s, fadeIn .25s;
}
body.no-scroll {
  overflow-y: hidden;
  max-height: 100%;
}

/**Animations**/
.gacp-speaker-bio-detailed {
  border-radius: 1em;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.gacp-speaker-bio-detailed:hover {
  -webkit-box-shadow: 0 8px 25px -2px rgb(0, 0, 0, 0.25);
  box-shadow: 0 8px 25px -2px rgb(0, 0, 0, 0.25);
  cursor: pointer;
  background-color: white;
}
@media screen and (max-width: 800px) {
  .gacp-all-speakers {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .overlay-exit {
    width: 1.5em;
    height: 1.5em;
  }
  .gacp-speaker-overlay {
    padding: .5em;
    width: 90%;
  }
  .gacp-speaker-overlay img {
    min-width: 100px;
    min-height: 100px;
  }
  .speaker-profile-card {
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column; 
  }
  .speaker-profile-card .speaker-profile-name {
    width: 100%;
    padding: 1em 0 0 0;
    text-align: center;
  }
  .speaker-profile-card .speaker-profile-name h3 {
    max-width: 100%;
  }
}
@media screen and (min-width: 801px) {
  .gacp-speaker-bio-detailed:hover {
    padding: 2.5em 1em 3.5em 1em !important;
  }
}

.fa-external-link-square {
  opacity: .5;
  margin-left: 0.25em;
}