/**
 * PopUp sensicure
 */

.sensicure-popin {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.sensicure-popin.active {
  display: flex;
}
.sensicure-popin__wrapper {
  background-color: white;
  max-width: 525px;
  padding: 3rem;
  position: relative;
}
.sensicure-popin__wrapper > p {
  margin-top: 0;
}
.sensicure-popin__close-btn {
  background-image: url('../../images/close.svg');
  background-color: transparent;
  border: none;
  background-position: center;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: block;
  text-indent: -999px;
  overflow: hidden;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.sensicure-popin__btn {
  border: none;
}
.sensicure-popin .cta__wrapper {
  gap: 2rem;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 450px) {
  .sensicure-popin .cta__wrapper {
    flex-direction: row;
  }
}
