#popup.xmas {
  height: 64vh;
  aspect-ratio: 0.8;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #232323;
  padding-bottom: 3vh;
  border: 1px solid #fff;
	cursor: pointer;
}
#popup.xmas .close {
  z-index: 9999;
}
#popup.xmas h3 {
  position: absolute;
  z-index: 9;
  font-family: 'HelvLI';
  font-size: 6.5vh;
  top: 4vh;
  width: 100%;
  text-align: center;
}
#popup.xmas h3 span {
  color: var(--yellow);
}
#popup.xmas img {
  position: absolute;
  margin-top: 5vh;
}
.xmason {
  animation: xmas 2s infinite ease;
}
@keyframes xmas {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.xmaswrite {
  position: absolute;
  font-family: 'HelvL';
  width: 100%;
  left: 0;
  text-align: center;
  font-size: 1.5vh;
  bottom: 7.5vh;
  text-transform: uppercase;
}
#cft-email {
  border: none;
  background: transparent;
  border-bottom: 1px solid #fff;
  border-radius: 0 !important;
  margin-bottom: 2vh;
  text-align: center;
  padding-bottom: .5vh;
  outline: none;
  color: var(--yellow);
  font-size: 1.5vh;
}
#cft-event-form {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 4vh;
  left: 18vh;
}
#popup.xmas button {
  font-size: 1.5vh;
}
#cft-message {
  font-size: 1.5vh;
  position: absolute;
  background: #232323;
  width: 100%;
  text-align: center;
  font-family: 'HelvR';
  bottom: 4.5vh;
  color: #646464;
}
#after {
  position: absolute;
  top: 0;
  left: 0;
  background: #232222;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 1;
  transition: 1s;
  opacity: 0;
  pointer-events: none;
	cursor: initial;
}
#after img {
  position: absolute; /* importante si usas left/top */
  width: 30vh;
  left: 12vh;
  top: 18vh;
  margin-top: 0;
  transform-origin: 50% 60%;
  will-change: transform, filter;
  animation: levitate 3.2s ease-in-out infinite;
  margin-top: 50vh !important;
  transition: margin 2s ease;
}
@keyframes levitate {
  0%, 100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  50% {
    transform: translateY(-14px) rotate(2deg) scale(1.01);
  }
}
#after .sub {
  position: absolute;
  top: 13vh;
  font-family: 'HelvL';
  text-transform: uppercase;
  font-size: 1.5vh;
  width: 34vh;
  z-index: 99;
  text-align: center;
  left: 9vh;
}
#after .sub.bot {
  top: 49vh;
  width: 24vh;
  left: 14vh;
}
#after.on {
  opacity: 1;
  pointer-events: all;
}
#after.on img {
  margin-top: 0 !important;
}
.cft-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#xmasbutton {
    width: 6vw;
    height: 6vw;
    bottom: 1.5vw;
    left: 59vw;
    transition: opacity 400ms ease;
    position: fixed;
    z-index: 99;
	cursor: pointer;
}
#xmasbutton.off {
    opacity: 0;
    pointer-events: none;
}
#xmasbutton img{
	position: absolute;
	width: 100%;
	height: 100%;
}
#xmastext{
	animation: rotx 30s infinite linear;
}
@keyframes rotx{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
/*** MÓVIL ***/
@media (orientation:portrait) {
	#popup.xmas{
	transform: scale(.95);
	}
	#popup.xmas h3{
		font-size: 6vh;
	}
	#after .sub{
		left: 7vh;
	}
	#after img{
		left: 9vh;
	}
	#cft-event-form{
		    left: 15vh;
	}
	#after .sub.bot{
		left: 11vh;
	}
	#xmasbutton{
		width: 15vw;
    height: 15vw;
    bottom: 3vw;
    left: 4vw;
	}
}