.page-id-1602 #header {
	display : none!important;
}

p.dynamic-date-time {
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
}
.dynamic-date-time {
    display: inline-flex;            /* stops full-width stretch */
    width: fit-content;              /* shrink to content */
    max-width: 100%;                 /* safety on small screens */

    align-items: center;
    gap: 8px;

    padding: 12px 22px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    font-weight: 600;
    font-size: 16px;
    color: #ffffff;

    position: relative;
    z-index: 1;
}

/* Center it if parent is full width */
.dynamic-date-time-wrapper {
    text-align: left; /* change to center if needed */
}

.dynamic-date-time::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;

    background: linear-gradient(
        270deg,
        #25d366,
        #00e0ff,
        #25d366
    );
    background-size: 400% 400%;
    animation: gradientBorder 6s ease infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hide timestamp field */
#wpforms-206-field_21-container {
    display: none !important;
}

#wpforms-206-field_22-container,
#wpforms-206-field_23-container,
#wpforms-206-field_24-container,
#wpforms-206-field_25-container,
#wpforms-206-field_26-container {
    display: none;
}



p.copy1 {
    text-align: center;
}

.bounce-btn {
    animation: softBounce 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    will-change: transform;
}

@keyframes softBounce {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.18);
    }

    30% {
        transform: scale(0.96);
    }

    45% {
        transform: scale(1.08);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}


.blue-circle-overlay:after, .blue-circle-overlay:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.blue-circle-overlay:before {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,rgb(0 180 255/.6) 0,rgb(0 120 255/.4) 30%,rgb(0 80 200/.2) 50%,transparent 70%);
    top: -630px;
    left: -300px;
    animation: float-blue 6s ease-in-out infinite;
}

@keyframes float-blue{

0% {
    transform: translate(0) scale(1);
    opacity: .6;
}
33% {
    transform: translate(80px, 60px) scale(1.15);
    opacity: .8;
}
66% {
    transform: translate(-40px, 80px) scale(.95);
    opacity: .7;
}
100% {
    transform: translate(0) scale(1);
    opacity: .6;
}
}

.blue-circle-overlay:after {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,rgb(255 0 255/.5) 0,rgb(200 0 255/.35) 30%,rgb(150 0 200/.2) 50%,transparent 70%);
    bottom: 97px;
    right: -200px;
    animation: float-pink 7s ease-in-out infinite;
}

@keyframes float-pink {
        0% {
            transform: translate(0) scale(1);
            opacity: .5
        }

        33% {
            transform: translate(-50px,-40px) scale(1.15);
            opacity: .7
        }

        66% {
            transform: translate(40px,-50px) scale(.9);
            opacity: .6
        }

        to {
            transform: translate(0) scale(1);
            opacity: .5
        }
    }

/* Popup overlay */
#simplePopup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup box */
#simplePopup .popup-inner {
  background: #000000;
  width: 100%;
  max-width: 520px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
}

/* Close button */
#closePopup {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
	border-radius : 50%;
}

@media only screen and (max-width : 1024px){
	p.dynamic-date-time {
    font-size: 15px;
    line-height: 15px;
}
}