


/* Awesome Modal CSS */
.awesome-modal {
  display: none;
  background-color: rgba(0, 0, 0, .5);
/*  background: var(--color-primario);*/
  width: 50px;
  height: 1px;
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto;
  z-index: 999;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);

  animation: bgpop 2s forwards;

  justify-content: center;
  align-items: center;
}
@keyframes bgpop {
  0% {
    width: 50px;
    height: 1px;
  }
  20% {
    width: 50px;
    height: 100%;
  }
  40% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}


.awesome-modal * {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}




.modal-title {
  margin-top: 0;
}

:target {
  display: flex;
}
:target ~ .awesome-overlay {
  display: block;
}



/*
 * You can add the class 'stop-scrolling' to
 * body tag (with JS), to prevent page scroll
 */

 









