/* Awesome Modal CSS */
.awesome-modal {
  display: none;
  background-color: #fff;
  box-shadow: 0px 25px 19px -15px rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  
  width: 270px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  -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;
}
.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;

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

.close-icon {
  position: absolute;
  width: 4px;
  height: 4px;
  top: .7rem;
  right: .7rem;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  z-index: 9999999;

  background-color: rgba(0, 0, 0, 0.6);
  width: 15px;
  height: 15px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 50px;
  color: white;
}
.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);
}



: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%);
}











/* POP */
.popnew {
  transition: .2s .4s;
  width: 300px;
  background: white;
  position: fixed;
  top: -540px;
  z-index: 100;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  padding: 7px;
  border-radius: 15px 15px 22px 22px;
}

.popnew-label {
  background: rgb(142, 142, 142);
  color: white;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0 5px 0;
  margin: 0 0 30px 0;
}

.ico-ff92 {
  font-size: 60px;
}

.popnew-name {
  font-size: 22px;
  margin: 10px 0px 20px 0px;
}

.bld {
  font-weight: 600;
}

.popnew-txt {
  font-size: 17px;
  font-weight: 400;
}

.popnew-btn {
  transition: .2s;
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 17px;
  margin: 30px 0 0 0;
  cursor: pointer;
}

.popnew-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.ico-d15 {
  margin: -3px 0px 0px 0px;
  font-size: 20px;
}

.popnew-shadow {
  width: 100%;
  height: 100vh;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
  transition: .2s .2s;
}

.popnew {
  animation: popnew1 .4s forwards;
  animation-delay: .2s;
}

@keyframes popnew1 {
  0% {
    top: -540px;
  }

  100% {
    top: 40px;
  }
}

.popnew-shadow {
  animation: popnew-shadow1 .4s forwards;
}

@keyframes popnew-shadow1 {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}


.popshadowOn {
  animation: popshadow .3s forwards;
  animation-delay: .2s;
  opacity: 1;
  visibility: visible;
  transition: .2s .2s;
}

@keyframes popshadow {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.popOn {
  animation: popOn .3s forwards;
  top: 40px;
  transition: .4s .2s;
}

@keyframes popOn {
  0% {
    top: 40px;
  }

  100% {
    top: -540px;
  }
}

/* POP nuevo*/