/* File: style.css */

/*
Theme Name: Hestia Child
Theme URI: https://100soft.org
Description: Custom child theme for Hestia
Author: 100Soft
Author URI: https://100soft.org
Template: hestia
Version: 1.0
*/



/* START */
/* Global base reset */
/*======================== */

/* Makes all width and height settings remain inside its max values */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body .main {
    height: 100%;
    font-family: system-ui, sans-serif;
    line-height: 1.4;
    background: #f3fef3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove outline only when custom focus styles are in place */
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    outline: none;
}

/* Make images and media scale cleanly */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove default list padding */
ul, ol {
    list-style: none;
    padding: 0;
}

/*======================== */
/* END Global base reset */


/* Make Hestia navbar fixed at the top */
.navbar.navbar-default {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff; /* #f3fef3 or your preferred header color */
  box-shadow: 0 10px 6px rgba(0, 0, 0, 0.3); /* shadow color → Black with 30% opacity */
}

/* navbar "100Soft" logo position for mobile and tablet */
@media (max-width: 992px) {
  .navbar .navbar-header .navbar-brand {
    padding-left: 150px;
  }
}

/* Custom style for navbar Login/Dashboard buttons */
.menu-login-btn a,
.menu-dashboard-btn a {
  border: 2px solid #f4bec8;
  border-radius: 14px !important;
  padding: 8px 16px !important;
  margin-top: 6px;
/*  font-size: 14px;
  line-height: 1.2;
  color: #0073aa !important;
  text-decoration: none;
  transition: 0.3s;
*/
}

/*.menu-login-btn a:hover {
  background-color: #0073aa;
  color: white !important;

}*/


/* START */
/* Primary menu (navbar) custom buttons */
/* (works connected to functions.php > function extend_primary_menu( $items, $args )... ) */
/*======================== */

/* Default state (mobile-first): show mobile Help button, hide desktop Help button */
.desktop-only {
  display: none !important;
}
.mobile-only {
  display: block !important;
  margin-top: 30px !important;
}

/* Shared Help button style */
.menu-help-btn {
  border: 2px solid #2a7a2f;
  border-radius: 14px !important;
  padding: 8px 16px !important;
  background-color: transparent;
  margin-top: 6px;
}

/* Desktop: hide mobile Help button, show desktop Help button centered */
@media (min-width: 992px) {
  .navbar-center-btn {
    position: absolute !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;  /* Optional */
  }
  .desktop-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
}

/* Desktop Language dropdown */
.menu-lang { position: relative; }
.menu-lang .sub-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  min-width: 140px;
  box-shadow: 6px 8px 10px rgba(0, 0, 0, 0.6);
  list-style: none;
  padding: 6px 0;
  z-index: 1000;
}
.menu-lang:hover .sub-menu,
.menu-lang.open .sub-menu { display: block; }
.menu-lang .sub-menu li a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
}
.menu-lang .sub-menu li a:hover { background: #f5f5f5; }

/* Mobile actions: Support + Languages */
@media (max-width: 768px) {
  /* Center text on Login/Register buttons */
  .navbar .navbar-nav li {
    text-align: center;
}
  /* Make the row flex and full width */
  .navbar-nav .menu-item.mobile-only.mobile-actions {
    display: flex !important;
    align-items: center;
    width: 100%;
    margin-top: 30px !important;
  }
  /* Stop Support from taking 100% width */
  .navbar-nav .menu-item.mobile-only.mobile-actions > a.support-link {
    display: inline-flex !important;
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 10px 0 !important;
  }
  /* Push the language group to the far right */
  .navbar-nav .menu-item.mobile-only.mobile-actions .lang-inline {
    margin-left: auto !important;
    display: flex !important;
    gap: 30px;
  }
  /* Prevent theme from stretching language links */
  .navbar-nav .menu-item.mobile-only.mobile-actions .lang-inline a {
    display: inline-block !important;
    width: auto !important;
    padding: 10px 0 !important;
  }
}

/*======================== */
/* END Primary menu (navbar) custom buttons */


/* Adjust Hestia header thickness, and page title position */
.page-header.header-small {
  min-height: 140px;
  padding-top: 35px;
  padding-bottom: 20px;
}
.page-header.header-small .container {
  padding: 0;
  margin: 0 auto;
}

/* Adjust bottom minimum gap between forms and footer (affects dashboard) */
.section.section-text {
  padding-bottom: 80px;
}

/* Remove the white line between the last section and the footer */
.page-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 4px solid #eee !important;
/*	border-bottom: none !important; */
}

/* Restore top padding of footer without reintroducing the white line */
.footer.footer-black {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}


/* START */
/* Styles for Footer */
/*======================== */

.footer.footer-black .container {
  max-width: 1200px;
  width: 100%;
}
.footer.footer-black .hestia-bottom-footer-content .artsoft-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* left & right */
  gap: 12px;
  flex-wrap: wrap;                  /* stack nicely on small screens */
  width: 100%;
}
/* Left side */
.footer.footer-black .hestia-bottom-footer-content .legal-left {
  color: white;
  text-align: left;
}
/* Right side links */
.footer.footer-black .hestia-bottom-footer-content .legal-right {
  text-align: right;
  white-space: nowrap;              /* keep the line tight on wide screens */
}
.footer.footer-black .hestia-bottom-footer-content .legal-right a {
  color: #ffcc66;
  text-decoration: none;
}
.footer.footer-black .hestia-bottom-footer-content .legal-right a:hover {
  color: white;
  text-decoration: underline;
}
/* Separator styling (optional) */
.footer.footer-black .hestia-bottom-footer-content .sep {
  margin: 0 14px;
  opacity: 0.7;
}
/* Mobile: stack neatly and center the right block if it wraps */
@media (max-width: 768px) {
  .footer.footer-black .hestia-bottom-footer-content .artsoft-legal {
    flex-direction: column;
    gap: 6px;
  }
}

/*======================== */
/* END Styles for Footer */


/* Home page watermark setup */
/* Desktop: 3 watermarks */
body.home::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('/wp-content/themes/hestia-child/inc/assets/1_chatRenderLogoWatermark1024.png'),
    url('/wp-content/themes/hestia-child/inc/assets/1_chatRenderLogoWatermark1024.png'),
    url('/wp-content/themes/hestia-child/inc/assets/1_chatRenderLogoWatermark1024.png');
  background-repeat: no-repeat;
  background-position: center center, calc(50% - 900px) center, calc(50% + 900px) center;
  background-size: 820px 820px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Mobile: only 1 centered watermark */
@media (max-width: 768px) {
  body.home::after {
    background-image: url('/wp-content/themes/hestia-child/inc/assets/1_chatRenderLogoWatermark1024.png');
    background-position: center center;
    background-size: 90vw auto; /* responsive size */
  }
}


/* START */
/* Custom styles for Forminator plugin forms */
/*======================== */

/* Custom button */
.forminator-custom-form-1010 .forminator-button,
.forminator-custom-form-1011 .forminator-button {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    border-radius: 5px !important;
}

/* Custom "Lost your password" link */
.forminator-custom-form-1011 .forminator-field-password a {
    color: #e91e63 !important;
}
.forminator-custom-form-1011 .forminator-field-password a:hover {
    text-decoration: underline !important;
}

/*======================== */
/* END Custom styles for Forminator plugin forms */


/* Popup Maker "Registration" popup: */
/* Works connected to WP/PUM/Registration popup > Contents > "Already registered? Log in here" link */
.pum .not-logged-in { display: none; }  /* Default: hide everywhere */
body:not(.logged-in) #pum-1059 .not-logged-in { display: block; }  /* Show only inside the Registration popup and only if logged-out */


/* START */
/* Custom styles for WP Frontend Reset Password plugin forms */
/*======================== */

/* Container */
#password-lost-form-wrap {
    background: #f7f7f7;      /* Very light gray background */
    padding: 1.5em 1.2em;     /* Tighter top/side margins */
    max-width: 300px;         /* Width reduced to better match Forminator */
    margin: 2em auto;
    border: 2px solid #2a7a2f;
    border-radius: 14px;      /* Slightly rounded form container */
    box-shadow: 5px 6px 5px 2px rgba(233, 30, 99, 0.25);
    font-family: 'Inter', sans-serif;
    font-size: 15px;          /* Smaller upper text */
}
#password-lost-form-wrap form {
    margin-bottom: 0;
}

/*#password-lost-form-wrap .lostpassword-submit {
    margin-bottom: 0;
    padding-bottom: 0;
}*/

/* Title text */
#password-lost-form-wrap legend {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #0D47A1;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-bottom: 1em;
    border-bottom: 1px solid #0D47A1;
    padding-bottom: 0.5em;
}

/* Input fields */
#password-lost-form-wrap input[type="text"],
#password-lost-form-wrap input[type="email"],
#password-lost-form-wrap input[type="password"] {
    width: 100%;
    padding: 1.2em 0.9em;
    font-size: 16px;
    border: 1px solid #555555;
    border-radius: 2px;       /* (3) Square input corners */
    margin-top: 0.3em;
    margin-bottom: 2em;
    transition: border-color 0.3s;
}
#password-lost-form-wrap input:focus {
    border-color: #1a95e0;
    outline: none;
}
/* Placeholder style */
#password-lost-form-wrap input::placeholder {
    color: #aaa;
    font-size: 13px;
}

/* Labels */
#password-lost-form-wrap label {
    font-weight: 600;
    font-size: 13px;
    color: #2f77bf;
    display: block;
    margin-top: 1.6em;
    margin-bottom: 0.25em;
}

/* Button */
#password-lost-form-wrap button[type="submit"],
#password-lost-form-wrap input[type="submit"] {
    background-color: #17a8e3;  /* Exact Forminator blue */
    color: white;
    font-weight: 300;
    font-size: 14px;
    padding: 0.8em 1em;
    border: none;
    border-radius: 5px;        /* Nearly square button */
    cursor: pointer;
    width: auto;
    min-width: 120px;
    display: block;
    margin-left: auto;        /* To center the button */
    margin-right: auto;
    transition: background-color 0.3s;
}
/* Hover (optional coral tone) */
#password-lost-form-wrap button[type="submit"]:hover,
#password-lost-form-wrap input[type="submit"]:hover {
    background-color: #e58080;
    box-shadow: 0 8px 8px rgba(229, 128, 128, 0.5); /* Bigger colored glow */
}

/* Message styles */
.som-password-sent-message {
    background-color: #f1f1f1;
    border-left: 4px solid #1a95e0;
    padding: 1em;
    border-radius: 4px;
    margin-bottom: 1em;
    color: #333;
}
.som-password-error-message {
    border-color: #d63638;
    color: #d63638;
}

#password-lost-form-wrap .no-margin {
    margin: 0;
}

/*======================== */
/* END Custom styles for WP Frontend Reset Password plugin forms */


/* Styles for Wecome page Login now / Return to home buttons */
@keyframes slideInUp {
  0% {
    transform: translateY(2000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.welcome-login-inline {
  display: inline-block;
  border: 1px solid red;
  background-color: #fbe9ed; /*#f4bec8;*/
  color: red;
  padding: 6px 14px;
  margin-left: 8px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  animation:
    slideInUp 0.8s ease-out 0.3s both,
    bounce 0.75s ease-in-out 1.2s infinite;
}
.welcome-login-inline:hover {
  border: none;
  background-color: #BCEEE6;
  color: #0f7060;
  text-decoration: none;
  cursor: pointer;
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .welcome-login-inline {
    display: block !important;
    margin: 12px auto 0 auto !important;
    text-align: center !important;
    animation-play-state: running !important;
    animation:
      slideInUp 0.8s ease-out 0.3s both,
      bounce 0.75s ease-in-out 1.2s infinite !important;
  }
}


/* START */
/* home styles */
/*======================== */

/* Base typography reset */
.page-id-1358 .hero h1,
.page-id-1358 .features h2,
.page-id-1358 .how-it-works h2,
.page-id-1358 .feature-box h3 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
}

/* Paragraph shared styles */
.page-id-1358 .hero p,
.page-id-1358 .feature-box p {
  font-family: inherit;
  line-height: 1.5;
  color: #333;
}

/* Hero Section */
.page-id-1358 .hero {
  background: white;
  padding: 120px 20px 100px;  /* Top | Horizontal | Bottom */
  text-align: center;
}

/* Title */
.page-id-1358 .hero h1 {
  font-size: 36px;
  color: #2a7a2f;
  margin: 0;
}

/* Paragraph */
.page-id-1358 .hero p {
  font-size: 17.5px;
  margin: 0 0 10px;  /* Bottom only — pushes the button down */
}

/* Call-to-action note */
.page-id-1358 .hero .cta-note {
  font-size: 14px;
  color: #333;
  padding: 8px;
  margin: 0 auto;  /* center it */
  text-align: center;
  line-height: 1.4;
}

/* Features Section */
.page-id-1358 .features {
  background: white;
  padding: 0 20px 120px;
  margin-top: 0;
  text-align: center;
}

/* Title */
.page-id-1358 .features h2 {
  font-size: 34px;
  color: #e91e63;
  margin: 0 0 3rem;
}

.page-id-1358 .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
}

.page-id-1358 .feature-box {
  background: #ffe6ea;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 6px 8px 10px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Title inside box */
.page-id-1358 .feature-box h3 {
  font-size: 20px;
  color: #2a7a2f;
  margin-bottom: 0.6rem;
}

/* Paragraph inside box */
.page-id-1358 .feature-box p {
  font-size: 15px;
  margin-top: 20px;
}

/* Call-to-action buttons section */
.page-id-1358 .buttons {
  background: white;
  padding: 0 20px 70px;
  margin-top: 0;
  text-align: center;
}

.page-id-1358 .cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: #2a7a2f;
  color: white;
  border: 2px solid #2a7a2f;
  border-radius: 14px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 10px;  /* Clear spacing before the note */
  box-shadow: 5px 5px 5px rgba(233, 30, 99, 0.5);
  transition: background 0.2s ease-in-out;
}

.page-id-1358 .cta-button:hover {
  background: #3da647;
  box-shadow: 10px 10px 10px rgba(233, 30, 99, 0.5);
}

.page-id-1358 .cta-button-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .page-id-1358 .cta-button-mobile {
    display: inline-block !important;
    background: #ffffe6 !important;
    color: #2a7a2f !important;
    margin: 0 0 90px;
  }
}

.page-id-1358 .buttons-licenses {
  display: flex;
  justify-content: center;
  gap: 300px;
  margin: 0;
  flex-wrap: wrap;
}

@media(max-width: 768px) {
  .page-id-1358 .buttons-licenses {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.page-id-1358 .license-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-id-1358 .license-info {
  margin-top: 6px;
  font-size: 17.5px;
  font-weight: bold;
  color: #e91e63;
}

.page-id-1042 .price-preview,
.page-id-1358 .price-preview {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 0;
  padding: 4px 8px;
  color: #8c8c8c;
  border: 2px solid #999999;
  border-radius: 6px;
}

/* How It Works Section */
.page-id-1358 .how-it-works {
  background: white;
  padding: 0px 20px 20px;
  text-align: center;
}

/* Title */
.page-id-1358 .how-it-works h2 {
  font-size: 34px;
  color: #2ec945;
  margin: 0 0 3rem;
}

.page-id-1358 .how-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}

.page-id-1358 .how-box {
  background: #ffffe6;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 6px 8px 10px rgba(0, 0, 0, 0.6);
  display: inline-block;
  align-content: center;
  z-index: 1;
}

.page-id-1358 .how-box img {
  max-width: 350px;
  max-height: 300px;
  margin-bottom: 15px;
}

.page-id-1358 .how-caption {
  color: #2a7a2f;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}

/* Footer */
.page-id-1358 .footer {
  background: #1b1b1b;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/*======================== */
/* END home styles */


/* START */
/* how-to-use-chatrender styles */
/*======================== */

/* Base typography reset */
.page-id-1466 .how-section h1,
.page-id-1466 .how-section h2 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
}

.page-id-1466 .how-section {
  background: #f3fef3;
  padding: 120px 20px 20px;
  text-align: center;
}

.page-id-1466 .how-section h1 {
  font-size: 36px;
  color: #2a7a2f;
  margin: 0;

}

.page-id-1466 .how-section h2 {
  font-size: 34px;
  color: #e91e63;
  margin: 60px 0 3rem;

}

.page-id-1466 .how-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-id-1466 .how-steps img {
  width: 350px;
  border-radius: 14px;
  box-shadow: 6px 8px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
}

.page-id-1466 .how-steps img:hover {
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .page-id-1466 .how-steps {
    flex-direction: column;
    align-items: center;
  }

  .page-id-1466 .how-steps img {
    width: 80%;
    max-width: 320px;
  }
}

.page-id-1466 .step-with-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 350px; /* match other image widths */
}

@media (max-width: 768px) {
  .page-id-1466 .step-with-link {
    width: 80%;
    max-width: 320px;
  }
}

.page-id-1466 .step-with-link img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 6px 8px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
}

.page-id-1466 .download-link {
  margin-top: 15px;
  font-size: 14px;
  color: blue;
  text-decoration: underline;
}

.page-id-1466 .download-link:hover {
  color: #3da647;
}

/*======================== */
/* END how-to-use-chatrender styles */


/* START */
/* thank-you styles */
/*======================== */

.page-id-1292 .thank-you-page {
  background: #f3fef3;
  min-height: calc(100vh - 80px); /* adjusts for header + footer */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.page-id-1292 .thank-you-wrapper {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
  font-family: sans-serif;
}
.page-id-1292 .thank-you-wrapper h1 {
  font-size: 3rem;
  color: #2a7a2f;
  animation: bounce-thankyou 1s infinite alternate;
}
.page-id-1292 .thank-you-wrapper p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  margin-top: 24px;
  line-height: 1.6;
}
@keyframes bounce-thankyou {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/*======================== */
/* END thank-you styles */


/* START */
/* users styles */
/*======================== */

.page-id-1042 .user-dashboard {
/*    background: #f3fef3;*/
    background: #ffffe6;
    border: 2px solid #2a7a2f;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;        /* width includes padding + border */
    width: 100%;
    max-width: 582px;
    margin: 0 auto;                /* keep centered */
    font-family: Arial, sans-serif;
    box-shadow: 5px 6px 5px 2px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .page-id-1042 .user-dashboard {
        width: 100%;
    }
}
.page-id-1042 .user-dashboard h2 {
    margin-top: 0;
}
.page-id-1042 .user-dashboard h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.page-id-1042 .button-row {
  display: flex;
  gap: 200px;
  align-items: center;
}
@media (max-width: 768px) {
    .page-id-1042 .button-row {
        gap: 30px;
    }
}
.page-id-1042 .dashboard-button {
    margin-bottom: 5px;
    display: inline-block;
    padding: 10px 15px;
    background: #2a7a2f;
    color: white;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease-in-out;
}
.page-id-1042 .dashboard-button:hover {
    background: #3da647;
}
.page-id-1042 .dashboard-button[disabled] {
    background: #999;
    cursor: not-allowed;
}
.page-id-1042 .buy-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
.page-id-1042 .buy-wrapper .price-preview {
  margin-left: 10px;
}
/* "Download ChatRender" button */
.page-id-1042 .download-button-radius {
  border-radius: 999px;
  font-weight: 500;
}
.page-id-1042 .license-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.page-id-1042 .user-dashboard .license-box p {
  line-height: 1;
}
.page-id-1042 .copy-key {             /* "Copy key to clipboard" button */
  background: #efdce1;
  border: 1px solid #2a7a2f;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 14px;
  line-height: 1;
  margin-left: 8px;
  cursor: pointer;
  color: #2a7a2f;
  transition: all 0.2s ease-in-out;
  vertical-align: middle;
}
.page-id-1042 .copy-key:hover {
  background-color: #dfb9c4;
  border-color: #1d5d22;
}
.page-id-1042 #thank-you-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  animation: fadeOut-thankyou 5s ease-out forwards;
}
@keyframes fadeOut-thankyou {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

/*======================== */
/* END users styles */
