/*border radius*/
/*border radius*/
/*border radius*/
.spinner--primary {
  color: #243855 !important;
}
.spinner--secondary {
  color: #FF7A00;
}

.speaker-list {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}
.speaker-list--image-card {
  justify-content: center;
}
@media (min-width: 576px) {
  .speaker-list--image-card {
    justify-content: space-evenly;
  }
}
.speaker-list--image-card .speaker-list__item {
  border-radius: 3px;
  width: 300px;
  height: 400px;
  margin: 15px 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}
.speaker-list--image-card .speaker-list__item:hover {
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.4);
}

a.speaker-card {
  text-decoration: none;
  color: #fff;
}

.speaker-card {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-weight: 400;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 3px;
  z-index: 1;
}
.speaker-card::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 25%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  transition: opacity 0.3s;
}
.speaker-card:hover::after {
  opacity: 1;
}
.speaker-card__info {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  padding: 15px 0 15px 15px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  transition: all 0.5s;
}
.speaker-card__info--with-links {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .speaker-card__info--with-links {
    padding-bottom: 20px;
  }
}
.speaker-card__name {
  font-weight: 700;
  font-size: 20px;
  color: #fff !important;
  text-decoration: none;
  position: relative;
}
.speaker-card__title {
  font-style: italic;
  font-size: 14px;
}
.speaker-card__company {
  font-size: 14px;
}
.speaker-card__links {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: transform 0.3s, -webkit-transform 0.3s;
  will-change: transform;
  transform: translateY(0);
  height: 50px;
  align-items: center;
  justify-content: space-evenly;
  font-size: 22px;
  padding: 0 20px;
  background: linear-gradient(0, rgba(0, 0, 0, 0.2), transparent);
}
@media (min-width: 576px) {
  .speaker-card__links {
    transform: translateY(100%);
  }
}
.speaker-card__links > a {
  color: #fff;
}
@media (min-width: 576px) {
  .speaker-card:hover .speaker-card__info--with-links {
    padding-bottom: 60px;
  }
}
.speaker-card:hover .speaker-card__links {
  transform: translateY(0);
}
.speaker-card__link {
  position: relative;
  z-index: 1;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: text-shadow 0.3s;
}
.speaker-card__link:hover {
  text-shadow: 0 5px 3px rgba(0, 0, 0, 0.4);
}
.speaker-card__link::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.speaker-card__link:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/*border radius*/
/*border radius*/
/*border radius*/
/*border radius*/
.spinner--primary {
  color: #243855 !important;
}
.spinner--secondary {
  color: #FF7A00;
}

@media (min-width: 992px) {
  .speaker-profile {
    display: flex;
  }
}
.speaker-profile--vertical {
  flex-direction: column;
  overflow: auto;
}
@media (min-width: 992px) {
  .speaker-profile--vertical { /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .speaker-profile--vertical::-webkit-scrollbar {
    width: 8px;
  }
  .speaker-profile--vertical::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .speaker-profile--vertical::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 0, 0.3);
    border-radius: 3px;
  }
  .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
    background: #243855;
  }
}
.scrollbar--white .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
.scrollbar--light .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #f5f5f5;
}
.scrollbar--primary .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #243855;
}
.scrollbar--accent-2 .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #C4C4C4;
}
.scrollbar--dark .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #FF7A00;
}
.scrollbar--secondary .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #FF7A00;
}
.scrollbar--accent .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #FFC845;
}
.scrollbar--accent-3 .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #008E9B;
}
@media (min-width: 992px) {
  .speaker-profile--vertical {
    padding-right: 15px;
    overflow: auto;
  }
}
.speaker-profile__image-wrapper {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .speaker-profile__image-wrapper {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .speaker-profile__image-wrapper {
    flex: 0 0 45%;
    margin-right: 5%;
  }
}
.speaker-profile__image {
  width: 100%;
  min-height: 55vh;
  background-size: cover;
  background-position: center top;
}
.speaker-profile__image--vertical {
  min-height: 40vh;
  width: 90%;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 576px) {
  .speaker-profile__image--vertical {
    background-size: contain !important;
  }
}
@media (min-width: 992px) {
  .speaker-profile__image--vertical {
    height: 100% !important;
    width: 60% !important;
    min-height: 55vh !important;
  }
}
@media (min-width: 576px) {
  .speaker-profile__image {
    width: 50%;
    min-height: 50vh;
    margin: auto;
  }
}
@media (min-width: 992px) {
  .speaker-profile__image {
    min-height: 60vh;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .speaker-profile__image {
    min-height: 75vh;
  }
}
@media screen and (min-width: 1981px) {
  .speaker-profile__image {
    min-height: 55vh;
  }
}
.speaker-profile__info {
  display: flex;
  flex-flow: column;
  flex: 1;
}
.speaker-profile__info--vertical {
  margin: auto;
}
.speaker-profile__heading {
  font-size: 2.5rem;
}
.speaker-profile__work-info {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #C4C4C4;
}
.speaker-profile__bio {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .speaker-profile__bio {
    padding: 10px 40px 0 40px;
  }
}
@media (min-width: 992px) {
  .speaker-profile__bio {
    padding: 0;
  }
}
.speaker-profile__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  text-decoration: none;
  font-size: 1.6rem;
  background: rgba(36, 56, 85, 0.2);
  border-radius: 4px;
}
.speaker-profile__social:not(:first-of-type) {
  margin-left: 10px;
}
@media (min-width: 768px) {
  .speaker-profile__day {
    text-align: left;
  }
}
.speaker-profile__day .schedule__slot:last-of-type {
  margin-bottom: 0;
}

/*border radius*/
/*border radius*/
/*border radius*/
/*border radius*/
.spinner--primary {
  color: #243855 !important;
}
.spinner--secondary {
  color: #FF7A00;
}

/*it was 50px in case the change caused other issues*/
.speaker-popup__sessions-header {
  top: 0;
  padding: 0 0 20px 0;
  margin-bottom: 0;
  background: #fff;
  z-index: 10;
}
@media (min-width: 992px) {
  .speaker-popup__sessions-header {
    position: sticky;
  }
}
.speaker-popup .speaker-profile {
  height: 100%;
}
.speaker-popup .speaker-profile--vertical {
  flex-direction: column;
  overflow: auto;
  height: 100%;
}
@media (min-width: 992px) {
  .speaker-popup .speaker-profile--vertical {
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .speaker-popup .speaker-profile--vertical::-webkit-scrollbar {
    width: 8px;
  }
  .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 0, 0.3);
    border-radius: 3px;
  }
  .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
    background: #243855;
  }
}
.scrollbar--white .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
.scrollbar--light .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #f5f5f5;
}
.scrollbar--primary .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #243855;
}
.scrollbar--accent-2 .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #C4C4C4;
}
.scrollbar--dark .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #FF7A00;
}
.scrollbar--secondary .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #FF7A00;
}
.scrollbar--accent .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #FFC845;
}
.scrollbar--accent-3 .speaker-popup .speaker-profile--vertical::-webkit-scrollbar-thumb:hover {
  background: #008E9B;
}
@media (min-width: 992px) {
  .speaker-popup .speaker-profile--vertical {
    padding-right: 15px;
    overflow: auto;
  }
}
.speaker-popup .speaker-profile__heading, .speaker-popup .speaker-profile__work-info {
  text-align: center;
}
@media (min-width: 992px) {
  .speaker-popup .speaker-profile__heading, .speaker-popup .speaker-profile__work-info {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .speaker-popup .speaker-profile__image-wrapper {
    flex: 0 0 40%;
  }
}
@media (min-width: 992px) {
  .speaker-popup .speaker-profile__image {
    height: calc(100vh - 100px);
  }
}
.speaker-popup .speaker-profile__image--vertical {
  min-height: 40vh;
  width: 90%;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 576px) {
  .speaker-popup .speaker-profile__image--vertical {
    background-size: contain !important;
  }
}
@media (min-width: 992px) {
  .speaker-popup .speaker-profile__image--vertical {
    height: 100% !important;
    width: 60% !important;
    min-height: 55vh !important;
  }
}
.speaker-popup .speaker-profile__info {
  display: flex;
  flex-flow: column;
  flex: 1;
}
.speaker-popup .speaker-profile__info--vertical {
  width: 100%;
  margin: auto;
  max-width: 1280px;
}
.speaker-popup .speaker-profile__social-media {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .speaker-popup .speaker-profile__details-container {
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .speaker-popup .speaker-profile__details-container::-webkit-scrollbar {
    width: 8px;
  }
  .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 0, 0.3);
    border-radius: 3px;
  }
  .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
    background: #243855;
  }
}
.scrollbar--white .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
.scrollbar--light .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
  background: #f5f5f5;
}
.scrollbar--primary .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
  background: #243855;
}
.scrollbar--accent-2 .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
  background: #C4C4C4;
}
.scrollbar--dark .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
  background: #FF7A00;
}
.scrollbar--secondary .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
  background: #FF7A00;
}
.scrollbar--accent .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
  background: #FFC845;
}
.scrollbar--accent-3 .speaker-popup .speaker-profile__details-container::-webkit-scrollbar-thumb:hover {
  background: #008E9B;
}
@media (min-width: 992px) {
  .speaker-popup .speaker-profile__details-container {
    padding-right: 15px;
    overflow: auto;
  }
}

/*# sourceMappingURL=speakers.css.map */
