/* Awesome Modal CSS */
.awesome-modal {
  display: none;
  background-color: var(--color-primario);
  box-shadow: 0px 26px 30px -10px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 0px;
  width: 80%;
  max-width: 300px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  overflow: auto;
  z-index: 999;
  -webkit-animation: bounce .4s ease forwards;
          animation: bounce .4s ease forwards;

  display: none;        
  justify-content: center;
  align-content: center;
}
.awesome-modal * {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.awesome-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  overflow: hidden;
  cursor: default;

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.close-icon {
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: .7rem;
  right: .7rem;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.close-icon::before, .close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: inherit;
  height: 2px;
  background-color: #999;
}
.close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

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

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

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0.7);
            transform: translate3d(-50%, -50%, 0) scale(0.7);
  }
  45% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.05);
            transform: translate3d(-50%, -50%, 0) scale(1.05);
  }
  80% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0.95);
            transform: translate3d(-50%, -50%, 0) scale(0.95);
  }
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
            transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0.7);
            transform: translate3d(-50%, -50%, 0) scale(0.7);
  }
  45% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.05);
            transform: translate3d(-50%, -50%, 0) scale(1.05);
  }
  80% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0.95);
            transform: translate3d(-50%, -50%, 0) scale(0.95);
  }
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
            transform: translate3d(-50%, -50%, 0) scale(1);
  }
}
#close {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

 


* {
  box-sizing: border-box;
}



.btn {
  background-color: #8adcb3;
  color: #fff;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-decoration: none;
  border-radius: 0.3rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn:hover {
  background-color: #76c79f;
}
.btn:active {
  -webkit-transform: scale3d(0.9, 0.9, 1);
          transform: scale3d(0.9, 0.9, 1);
}
.btn + .btn {
  margin-left: 1.5rem;
}


.btnok {
  background-color: #8adcb3;
  color: #fff;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-decoration: none;
  border-radius: 0.3rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}










