<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contact-form {
  border: 1px solid #eaeaea;
  margin-top: 0;
  border-radius: 10px;
}

.form-btn {
  background-color: #3e8e41;
  color: #FFFFF2;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.sponsor-btn {
  background-color: #3e8e41;
  color: #FFFFF2;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
  font-size: 100%;
  display: inline-block;
  margin: 33px 0 0 0;
  text-align: center;
  padding: 10px 20px;
}

.sponsor-btn:hover,
.sponsor-btn:focus,
.form-btn:hover,
.form-btn:focus {
  background-color: #40ad12;
  color: #FFFFF2;
}

.flex-div {
  display: flex;
  justify-content: center;
}

.form-flex-block,
.footer-flex-block {
  display: flex;
  justify-content: space-between;
}

.form-inline-block {
  position: relative;
  display: inline-block;
  margin-left: auto;
}

.promo-icon:hover {
  color: #40ad12;
}

.page__meta-icons-sep::before {
  content: ' ';
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.subscription-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.confirm-popup {
  position: absolute;
  bottom: 5px;
  right: 4px;
  font-size: 18px;
  cursor: pointer;
  color: #40ad12;
}

.close-popup {
  position: absolute;
  top: -3px;
  left: 3px;
  font-size: 18px;
  cursor: pointer;
  color: #FF5F57;
}

.confirm-popup:hover,
.confirm-popup:focus,
.close-popup:hover,
.close-popup:focus {
  font-size: 19px;
}

.confirm-popup:active,
.close-popup:active {
  transform: scale(0.9);
}

.element-container {
  position: relative;
  padding: 20px;
  background: rgb(37, 42, 52);
  border: 1px solid #40ad12;
  border-radius: 10px;
}

.sidebar-form-container {
  border: 1px solid #40ad12;
  border-radius: 10px;
}

.mobile-only {
  display: none;
}

.shining-text {
  color: transparent; /* Text color is transparent to reveal gradient */
  background-image: linear-gradient(90deg,
                                    #eaeaea, /* Start of shine */
                                    #ff69b4, /* Main text color */
                                    #eaeaea); /* End of shine */
  background-size: 200%; /* Make background larger for movement */
  background-clip: text;
  -webkit-background-clip: text; /* Required for Safari */
  animation: shine 2.3s linear infinite; /* Infinite shine animation */
}

@keyframes shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Media query for mobile screens */
@media (max-width: 768px) {
  .subscription-form {
    top: 25%;
    left: 0%;
    transform: translate(0%, 0%);
  }
}

/* Media query for mobile screens in both portrait and landscape */
@media screen and (max-width: 768px),
       screen and (max-width: 1024px) and (orientation: landscape) {
  .mobile-only {
    display: block;
  }
}
</pre></body></html>