.addon-event-module {
  display:grid;
  grid-template-columns: 5fr 2fr;
  grid-template-rows: auto auto;
  position:relative;
  margin:1.5rem 0;
}
.event-content {
  padding-right: 1.5rem;
}

.event-details {
  background-color: #deefb7;
  grid-row: 1 / 3;
  grid-column: 2;
  padding:1rem 2rem;
  border-radius:1px;
  height:fit-content;
  border-radius: 10px;

}

.speaker-list {
  display:flex;
  /* padding-right: 1.5rem;
  padding-left: 0; */
  padding-bottom: 1rem;
  flex-wrap:wrap;
}
.speaker {
  margin-right:1rem;
  width: 150px;
  margin-bottom:0.5rem;
  cursor:pointer;
}
.speaker > div {
    transition: color: 0.2s ease;

}
.speaker:hover > div {
  color: #51a749;
}
.speaker-list .speaker img {
  width:125px;
  border-radius:100%;
  cursor:pointer;
  margin: 0 auto;
  display:block;
  box-shadow: 3px 3px 10px 5px rgb(0 0 0 / 15%);

}

.cta-btn {
  font-weight: bold;
  height: auto;
  transition: all .4s ease;
  padding: 12px 30px;
  text-shadow: none;
  width: auto;
  line-height: 1.5em;
  border-radius: 100vh;
  color:#fff;
  background-color: #1f6df4;
    display: block;
    text-align: center;
    margin: 2rem auto 0;
  box-shadow: rgba(51, 51, 51, 0.333) 2px 2px 6px 0px;
}


.price-module {
  background-color:#fff;
  border-radius: 10px;
  padding:1rem 1.5rem;
  margin: 0 0.25rem;
  text-align:center;
  margin: 0 auto;
  box-shadow: 5px 5px 10px 5px rgb(0 0 0 / 5%);
  display:block;
  width:fit-content;
}


.reveal-modal-bg { 
  position: fixed; 
  height: 100vh;
  width: 100vw;
  background: #000;
  background: rgba(0,0,0,.8);
  z-index: 100;
  display: none;
  top: 0;
  left: 0; 
}


.reveal-modal {
  visibility: hidden;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  margin-left: 0px;
  width: 520px;
  background: #eee url(modal-gloss.png) no-repeat -200px -80px;
  position: fixed;
  z-index: 101;
  padding: 30px 40px 34px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
  -box-shadow: 0 0 10px rgba(0,0,0,.4);
}



.reveal-modal .close-reveal-modal {
  font-size: 22px;
  line-height: .5;
  position: absolute;
  top: 8px;
  right: 11px;
  color: #aaa;
  text-shadow: 0 -1px 1px rbga(0,0,0,.6);
  font-weight: bold;
  cursor: pointer;
}
@media all and (max-width: 900px) {
  .addon-event-module {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
  }
  .event-details {
    grid-row: 3;
    grid-column: 1;
  }
}


@media all and (max-width: 767px) {
  .reveal-modal {
    width: 90%;
    box-sizing:border-box;
    padding: 10px 20px 0px;
  }
}