* {
  padding: 0;
  margin: 0;
}

.mio-popup {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100dvw;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: 999;
}

.mio-popup.close {
  display: none;
}

.mio-link-popup {
  position: relative;
  display: flex;
  justify-content: center;
}

.mio-close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #000;
  background: var(--wp--preset--color--primario);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.mio-close-popup:hover {
  scale: 1.1;
  transition: all .3s ease-out;
}


.mio-popup::before {
  content: "";
  position: absolute;
  width: 100dvw;
  height: 100dvh;
  background: #000;
  opacity: .5;
}

@media ( width < 468px ) {
    .mio-popup .mio-link-popup img {
        width: calc( 100% - 1rem ) !important;
    }
}

