@media (max-width: 800px) {
  .page-id-4410 #confirmation-boton {
    bottom: 15px !important;
    right: 15px !important;
    left: auto !important;
    position: fixed;
  }
  .principal,
  .principal2 {
    bottom: 15px !important;
    right: 15px !important;
    width: 150px;
    height: 40px;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    background-size: 600%;

    z-index: 10000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  .principal2 {
    position: absolute;

    z-index: -1;

    opacity: 0;
  }
}
.confirmed1 .principal,
.confirmed1 .principal2 {
  background: linear-gradient(-45deg, #19675e, #51c28f, #19675e, #51c28f);
  background-size: 600%;
  -webkit-animation: anime 16s linear infinite;
  animation: anime 16s linear infinite;
}
.noconfirm .principal,
.noconfirm .principal2 {
  background: linear-gradient(-45deg, #ff4848, #ff8e7a, #ff5252, #ff8e7a);
  background-size: 600%;
  -webkit-animation: anime 16s linear infinite;
  animation: anime 16s linear infinite;
}
#invitado2 {
  min-height: 30px;
  display: inline-block;
  opacity: 0;
  transition: opacity 1s;
}

.text-green {
  background-color: #f3ec78;
  background-image: linear-gradient(-45deg, #19675e, #51c28f, #19675e, #51c28f);
  background-size: 600%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-animation: anime 16s linear infinite;
  animation: anime 16s linear infinite;
}

.text-green1 {
  background-color: #f3ec78;
  background-image: linear-gradient(-45deg, #19675e, #23a6d5, #e73c7e, #ee7752);
  background-size: 600%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-animation: anime 8s linear infinite;
  animation: anime 8s linear infinite;
}

@-webkit-keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* BOTTTON GRADIENT */

#box {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  color: white;
  font-family: "Raleway";
  font-size: 2rem;
  text-align: center;
  padding: 10px;
}
.gradient-border {
  --borderWidth: 6px;
  background: #1d1f20;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(
    60deg,
    #f79533,
    #f37055,
    #ef4e7b,
    #a166ab,
    #5073b8,
    #1098ad,
    #07b39b,
    #6fba82
  );
  border-radius: 50%;
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
