.exit-popup-wrapper{
  display: flex;
  align-items: center;
  height: 100%;
  width: var(--size-720);
  margin: auto;
}

.exit-popup{
  display: flex;
  flex-direction: column;
  padding: var(--size-24) var(--size-36) var(--size-36);
  font-family: 'HelveticaNeue';
  background: white;
  margin: auto;
}

#bio_ep {
  height: 100%;
  transform: unset;
  background: transparent;
  top: 0;
  left: 0;
  width: 100%;
}

.exit-popup #bio_ep_close{
  left: 0;
  position: unset;
  margin: calc(-1*var(--size-8)) calc(-1*var(--size-22)) calc(-1*var(--size-16)) auto;
  top: var(--size-24);
  width: var(--size-32);
  height: var(--size-32);
  font-size: var(--size-16);
  line-height: var(--size-24);
  padding-top: var(--size-4);
}

.exit-popup .exit-popup-container::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: lightgray;
}

.exit-popup .exit-popup-container::-webkit-scrollbar-thumb {
  background: #777;
}

.exit-popup .ep-header{
  font-size: var(--size-32);
  line-height: var(--size-40);
  font-family: "Bitter";
  margin-bottom: var(--size-12);
  color: #003478;
  text-align: center;
}

.exit-popup .exit-popup-container .description{
  font-size: var(--size-16);
  line-height: var(--size-24);
  margin-bottom: var(--size-16);
  padding-right: var(--size-16);
  text-align: center;
}

.exit-popup .exit-popup-container .img-section{
  margin-bottom: var(--size-22);
  padding: 0 var(--size-16);
  text-align: center;
}

.exit-popup .exit-popup-container .link-section{
  text-align: center;
  padding: 0 var(--size-16);
}

.exit-popup .exit-popup-container .link-section a{
  display: inline-block;
  margin: 0 var(--size-12);
  color: #003478;
}

@media(max-width:991px){
  #bio_ep {
    width: 95%;
    left: 10px;
    /* transform: translateX(0%) translateY(-50%) !important; */
  }
  .exit-popup{
    padding: 20px;
  }

  .exit-popup #bio_ep_close{
    width: 24px;
    height: 24px;
    margin: -12px -14px -18px auto;
    font-size: 14px;
    line-height: 20px;
    padding-top: 2px;
  }
  .exit-popup-wrapper{
    width: auto;
  }

  .exit-popup .exit-popup-container{
    max-height: 200px;
    overflow-y: auto;
  }
  
  .exit-popup .exit-popup-container::-webkit-scrollbar {
    width: 5px;
    height: 8px;
  }

  .exit-popup .ep-header{
    font-size: 16pt;
    line-height: 24pt;
    margin-bottom: 12px;
    margin-top: 10px;
  }
  
  .exit-popup .exit-popup-container .description{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    padding-right: 16px;
  }
  
  .exit-popup .exit-popup-container .img-section{
    margin-bottom: 18px;
    padding: 0 16px;
  }

  .exit-popup .exit-popup-container .link-section{
    padding: 0 16px;
  }

  .exit-popup .exit-popup-container .link-section a{
    margin: 0 12px;
  }
}