/* ---------------------------- Top Bar + Footer + Fixed blocks ------------------------*/



*, ::after, ::before {
    box-sizing: unset;
}

body {
  background-color: #0a0c0e;
  color: white;
  font-family: 'Poppins', sans-serif;
  line-height: 24px;

  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://rfcoins.net/images/coinbackground.svg') 80% -5% no-repeat;

  background-size: 100%;
  opacity: 0;
  /* Adjust the opacity as needed */
  z-index: -1;
  animation: fadeInBackground 3s ease-in-out forwards;
}

@keyframes fadeInBackground {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.0;
  }
}

/* General Page Styling */



.all-centre{
    text-align: center;
}
.zerapadding{
    padding: 0;
}
.container {
  width: 75%;
  margin: auto;
  padding: 10px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  margin-top: 15px;
  font-size: 14px;
  color: #bbb;
}

.breadcrumb a {
  color: #4dfe3e;
  /* Green brand color */
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 85%;
    padding: 5px;
  }

}

@media (max-width: 458px) {
  .container {
    width: 90%;
    padding: 5px;
  }

}

.h-margin{
    margin: 0.67em 0;
}
.h-margin-top{
    margin-top: 1em;
}
.h-margin2-top{
    margin-top: 0.5em;
}
.hflex-center{
    justify-content: center;
}

/* Top Bar */

.navbar {
  position: sticky;
  z-index: 1000;
  /* Ensures it's above other elements */
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo img {
  height: 39px;
  margin-right: 40px;
  vertical-align: unset;
  /* Space between logo and switchers */
}

.logo-mobile {
  display: none;
  cursor: pointer;
}

.switchers {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  box-sizing: border-box;
}

/* Dropdown styling */
.switchers .dropdown {
  position: relative;
  display: inline-block;
}

.switchers .dropdown-toggle1 {
  display: flex;
  align-items: center;
  line-height: 24px;

  justify-content: space-between;
  background-color: #0a0c0e;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.051);
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;
  min-width: 10px;
  /* Ensures uniform size */
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.switchers .dropdown-toggle1 img {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

/* Arrow indicator */
.switchers .dropdown-toggle1::after {
  content: "⌵";
  font-family: Arial, sans-serif;
  font-weight: bold;

  font-size: 12px;
  margin-left: 7px;
  color: #666;
}

/* Hover effect */
.switchers .dropdown-toggle1:hover {
  background-color: #222;
}

/* Dropdown menu */
.switchers .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  /* Positions menu directly below the toggle */
  background-color: #111;
  border-radius: 5px;
  min-width: 110px;
  /* Ensures proper spacing */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  list-style: none;
  padding: 8px 0;
  margin-top: 5px;
  /* Adds a slight gap */
  transition: opacity 0.2s ease-in-out;
}

.switchers .dropdown.active .dropdown-menu {
  display: block;
  opacity: 1;
}

/* Dropdown menu items */

.switchers .dropdown-menu li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Ensures text is spaced properly */
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.switchers .dropdown-menu li img {
  width: 20px;
  height: auto;
  margin-right: 10px;
  /* Ensures spacing */
}

/* Proper alignment of text */
.switchers .dropdown-menu li span {
  flex-grow: 1;
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

/* Fix hover effect */
/* Fix hover effect overflow */
.switchers .dropdown-menu li:hover {
  background-color: #4dfe3e;
  color: black;
  width: 85%;
  /* Ensures full width hover effect */
}

/* Fix misaligned currency initials */
.switchers .dropdown-menu li span:first-child {
  flex-grow: 1;
  /* Ensures the currency name takes up the available space */
  text-align: left;
}
.view_passwordaaa{
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
}
.center-form{
    text-align: center;
}

.switchers .dropdown-menu li span:last-child {
  width: 40px;
  /* Adjust width as needed */
  text-align: right;
  /* Aligns initials properly */
}

.switchers .dropdown-menu img {
  width: 25px;
  height: 22px;
  margin-right: 8px;
}

/* Responsive styling */
/* Mobile responsiveness */
.switchers #currency-dropdown .dropdown-toggle1 img,
.switchers #currency-dropdown .dropdown-menu img {
  filter: invert(1);
}

/* Dropdown styling */
/* Desktop Menu Links */

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 0px;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 16px;
}

/* Desktop Navbar Active Link */
.navbar .nav-links a.active-link {
  color: #4dfe3e;
}

.card{
    background-color:unset;
    border: unset;
}

.navbar .nav-links a:hover {
  background-color: #0a0c0e;
  border-radius: 8px;
  color: #4dfe3e;
}

.sign-in-button {
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

.sign-in-button img {
  width: 16px;
  filter: invert(1);
  /* Make it white if needed */
  padding-top: 0px;
  /* Adjust the padding value as needed */
  padding-right: 4px;
  box-sizing: unset;
  vertical-align: unset;
}

.sign-in-button:hover {
  background-color: #fff;
  color: #111;
}

.vertical-bar {
  color: white;
  /* Change this to match your menu text color */
  padding: 0 7px;
  /* Spacing around the bar */
  opacity: 0.09;
  /* Adjust the opacity here (0 is fully transparent, 1 is fully opaque) */
  font-size: 27px;
  /* Adjust the size here to make it longer */
}

/* Responsive Navigation Menu for Phones */
/* Style the Hamburger Menu Icon */
/* Responsive Navigation Menu for Phones */
/* Hamburger Menu Styling to Match Dropdown */
.hamburger {
  display: none;
  /* Ensures it's completely removed from the layout */
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    /* Show it only on mobile */
  }
}

.hamburger .dropdown-toggle {
  display: none;
}

/* Hover Effect */
.hamburger .dropdown-toggle1:hover {
  background-color: #222;
}

/* Adjust Dropdown Menu */
.hamburger .phone-menu {
  display: none;
  position: absolute;
  top: 36px;
  /* Aligns below toggle */
  right: -14px;

  background-color: #111;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  min-width: 160px;
  padding: 8px 8px;
  margin-top: 5px;
  /* Adds spacing */
  transition: opacity 0.2s ease-in-out;
  z-index: 1000;
}

/* Open State */
.hamburger .phone-menu.open {
  display: flex;
  flex-direction: column;
}

/* Fix Menu Item Styling */
.hamburger .phone-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-bottom: 0px solid #444;
}

.phone-menu f {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-bottom: 1px solid #444;
}

f {
  cursor: pointer;
  /* Makes the elements behave like links */
  text-decoration: underline;
  /* Adds an underline to simulate hyperlinks */
  color: blue;
  /* Changes the text color to blue like standard links */
}

f:hover {
  background-color: #4dfe3e;
  color: black;
  text-decoration: none;
  /* Optionally removes underline on hover */
}

.phone-menu l {
  font-size: 12px;
  cursor: pointer;
  /* Makes the custom tag clickable */
  text-decoration: none;
  /* Adds an underline to mimic links */
  color: #c7c7c7;
  /* Link-like blue color */
  margin: 0;
  /* Removes any extra margin */
  padding: 0;
  /* Removes any extra padding */
  display: inline !important;
  /* Ensures all elements are inline */
}

.phone-menu l:hover {
  color: #4dfe3e;
  /* Change color on hover */
  text-decoration: underline;
  /* Remove underline on hover for effect */
}

.menufooter {
  font-size: 12px;
  padding: 18px 8px;
  white-space: nowrap;
  /* Prevents line breaks within content */
}

.phone-menu img {
  width: 18px;
  height: auto;
}

/* Hover Effect */
.hamburger .phone-menu a:hover {
  background-color: #4dfe3e;
  color: black;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .containers {
    align-items: center;

    flex-direction: column;
    /* Stack vertically */
  }
}

/* Responsive styling */
/* Responsive styling */
@media (max-width: 968px) {
  .navbar {
    position: sticky;
    z-index: 1000;
    /* Ensures it's above other elements */
    top: 0;
    padding: 20px 20px;
  }

  .hamburger .dropdown-toggle1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 0px solid #fff;
    padding: 2px 0px;
    border-radius: 5px;
    margin-right: 28px;
    font-size: 28px;
    min-width: 34px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    content: none;
  }

  /* Hide desktop nav links */
  .nav-links {
    display: none;
  }

  /* Show hamburger menu */
  .hamburger {
    display: block;
  }

  /* Hide logo on mobile by default */
  .logo {
    display: none;
  }

  /* Center the mobile logo */
  .logo-mobile {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-mobile img {
    height: 46px;
  }

  /* Move switchers (language & currency) to the left */
  .switchers {
    gap: 8px;
    /* Reduce spacing between elements */
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
  }

  /* Adjust dropdown size */
  .switchers .dropdown-toggle1 {
    padding: 3px 5px;
    font-size: 10px;
    width: auto;
  }

  /* Ensure dropdowns stay aligned */
  .switchers .dropdown-menu {
    min-width: 120px;
    left: 0;
    transform: none;
  }

  /* Sign In Button Styling */
  .sign-in-mobile img {
    width: 32px;
    /* Adjust icon size */
    height: auto;
    margin-top: -4px;
    cursor: pointer;
    filter: invert(1);
    /* Make it white if needed */
  }
}

/* Small screens */
@media (max-width: 480px) {
  .hamburger .dropdown-toggle1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0px 0px;
    border-radius: 5px;
    margin-right: 24px;
    font-size: 23px;
    min-width: 26px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    padding-top: 5px;
  }

  /* Sign In Button Styling */
  .sign-in-mobile img {
    width: 26px;
    /* Adjust icon size */
  }

  .navbar {
    position: sticky;
    z-index: 1000;
    /* Ensures it's above other elements */
    top: 0;
    padding: 14px 20px 22px 20px;
  }

  .logo-mobile img {
    transform: translateY(2px);
    height: 36px;

  }

  .switchers {
    gap: 6px;
  }

  .switchers .dropdown-toggle1 img {
    width: 18px;
    height: auto;
    margin-right: 0px;
  }

  .switchers .dropdown-toggle1::after {
    content: "⌵";
    opacity: 0.8;
    font-size: 11px;
    font-weight: 900;
    /* Make the symbol bolder */
    margin-left: 6px;
    color: #666;
  }

  .switchers .dropdown-toggle1 {
    background: flex;
    /* Removes background */
    border: 1px solid rgba(255, 255, 255, 0.051);
    padding: 0px 4px;
    font-size: 0px;
    max-width: 100px;
  }

  /* Ensure dropdown items are readable */
  .switchers .dropdown-menu li {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* Align currency initials properly */
  .switchers .dropdown-menu li span:last-child {
    width: 50px;
    text-align: right;
  }
}

/* Mobile Right Section */
.mobile-right {
  display: flex;
  align-items: center;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  gap: 12px;
  /* Space between Sign In and Hamburger */
}

/* Hide Sign In button on Desktop */
@media (min-width: 968px) {
  .sign-in-mobile {
    display: none;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}

/*--------------- Sign in - Up ----------------*/

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal {
  position: relative;
  background: #0a0c0e;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 400px;
  /* Set a fixed height for the modal */
}

.modal-header1 {
  flex: 0 0 auto;
  /* Prevents the header from growing */

  padding-bottom: 0px;
  /* Optional: Adjust padding as needed */
}

.modal-content1 {
  flex: 1 1 auto;
  /* Allows the content to grow and shrink */
  overflow-y: auto;
  /* Adds vertical scrolling for content */
  padding-top: 1px;
  /* Optional: Adjust padding as needed */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-content1::-webkit-scrollbar {
  display: none;
}

.signlogo img {
  width: 55px;
  margin-top: 12px;
  margin-bottom: 5px;
}

.modal-content1 h2 {
  margin-bottom: 00px;
  margin-top: 8px;
}

.modal-content1 img {
  width: 22px;
  filter: invert(1);
  /* Make it white if needed */
  padding-top: 0px;
  /* Adjust the padding value as needed */
  padding-right: 4px;
}

.input-field {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: none;
  border-radius: 5px;
  background: #333;
  color: #fff;
}

.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.toggle-buttons button {
  padding: 8px 15px;
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  line-height: 18px;
  font-size: 0.8em;
}

.toggle-buttons .active {
  color: #4dfe3e;
  border-bottom: 2px solid #4dfe3e;

}

.btn {
  width: 40%;
  padding: 10px;
  margin-top: 10px;
  background: #4dfe3e;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.5s ease;
  /* Adjust timing and easing as needed */
}

.btn:hover {
  transform: scale(1.1);
  /* Adjust the scale factor as needed */
}

.close-btn {
  position: absolute;
  top: 3px;
  right: 10px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

.modal {
  position: relative;
  /* Ensures the button is positioned relative to this */
}

.input-field.error {
  border: 1px solid red;
}

.footer-social{
    font-size: 22px;
    width: 22px;
    height: 22px;
    filter: grayscale(100%);
    transition: filter 0.3s;
    vertical-align: baseline;
    box-sizing: initial;
}

.phone-input {
  float: right;
}

/* Remove the | separator */
.iti__selected-dial-code::after {
  content: none !important;
}

.iti {
  width: 96%;
  margin: 8px 0;
}

.iti__selected-flag {
  background-color: #333 !important;
  /* Darker background for selected flag */
  color: #fff !important;

  border-radius: 5px;
}

.iti__flag-container {
  border-right: none;
  /* Removes separator */
}

.iti input {
  width: 70%;
  padding-left: 10px !important;
  /* Prevents flag overlap */
  background: #222;
  border-radius: 5px;
}

@media (max-width: 360px) {
  .iti input {
    width: 60%;
    padding-left: 5px !important;
    /* Prevents flag overlap */

    background: #222;
    border-radius: 5px;
  }
}

.iti__dropdown {
  background-color: #1a1a1a !important;
  /* Dark background */
  color: #fff !important;
  /* White text */
  border: 1px solid #333 !important;
  /* Border color */
}

.iti__dropdown li {
  color: #fff !important;
  /* Ensure list items are white */
}

.iti__dropdown li:hover {
  background-color: #4dfe3e !important;
  /* Slightly lighter hover effect */
}

.iti__country-name {
  color: #fff !important;
  /* Make country names white */
}

.iti__country-list {
  background-color: #1a1a1a !important;
  /* Dark background for country list */
}

.terms {
  font-size: 11px;
  color: white;
}

.Pass {
  margin-left: 8px;
  font-size: 11px;
  text-align: Left;
  color: white;
}

.white-link {
  color: white;
  /* Change link color to white */
}

.white-link:hover {
  color: #4dfe3e;
  /* Ensures the hover color is also white */
}

/*--------------------------------------------------------------------------------------------------*/

/* General Page Styling */

body {
  background-color: #0a0c0e;
  color: white;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://rfcoins.net/images/coinbackground.svg") 80% -5% no-repeat;

  background-size: 100%;
  opacity: 0;
  /* Adjust the opacity as needed */
  z-index: -1;
  animation: fadeInBackground 3s ease-in-out forwards;
}

@keyframes fadeInBackground {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


/*-----------------------------------------------------------------------------------------/


/* Footer Styles */
footer {
 background-color: #0a0c0e;
    color: #ddd;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

footer .footer-container {
  max-width: 100%;
  margin: auto;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .footer-logo {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

footer .footer-image {
  text-align: center;
}

footer .footer-image img {
  width: 100%;
  height: auto;

  /* Adjust as needed */
}

footer .footer-logo img {
  width: 240px;
  padding: 0 25px;
  /* Adjust as needed */
}

footer .footer-description {
  text-align: left;
  color: #bbb;
  font-size: 14px;
  margin-top: -20px;
  padding: 0 28px;
}

footer .footer-sections {
  display: flex;
  flex: 2;
  justify-content: space-between;
  min-width: 50%;
}

.footer-links,
.footer-social-icons,
.footer-trustpilot {
  flex: 1;
  min-width: 220px;
}

footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 12px;

  text-align: left;
}

footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

/* Social Media Icon Styles */
/* Social Media Icon Styles */
footer .footer-social-icons {
  margin-bottom: 20px;
}

footer .footer-social-icons a {
  display: inline-block;
  background-color: #222;
  border-radius: 50%;
  padding: 4px;
  margin-bottom: 8 8px;
  width: 35px;
  /* You can adjust this value */
  height: 35px;
  /* Make this the same as width */
  text-align: center;
  /* Center text/icon inside */
  line-height: 41px;
  /* Match the height for vertical centering */
}

footer .footer-social-icons img {
  width: 22px;
  /* Smaller size */
  height: 22px;
  /* Ensuring perfect circles */
  filter: grayscale(100%);
  transition: filter 0.3s;
     vertical-align: baseline;
    box-sizing: initial;
}

footer .footer-social-icons a:hover img {
  filter: grayscale(0%);
}

/* Contact Information */
footer .footer-container .contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  color: #bbb;
  /* Matching the professional look */
  font-size: 14px;
}

footer .footer-container .contact-info a {
  color: #bbb;
  text-decoration: none;
  display: flex;
  align-items: center;
  /* Aligning icons with text */
}

footer .footer-container .contact-info a img {
  width: 16px;
  /* White icon size */
  height: 16px;
  filter: brightness(0) invert(1);
  /* White icon color */
  margin-right: 8px;
}

footer .footer-container .contact-info a:hover {
  color: #ddd;
}

/* Copyright */
footer .footer-container .copyright {
  margin-top: 30px;
  color: #888;
  font-size: 12px;
}

footer .footer-container .company-info {
  color: #666;
  font-size: 12px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  footer .footer-logo {
    display: none;
    align-items: center;
    text-align: center;
  }

  .footer-sections {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  footer .footer-links {
    display: none;
    text-align: center;
    margin: 20px;
    padding: 20px;
  }

  footer .footer-image {
    position: relative;
    width: 92%;
    overflow: hidden;
    /* Ensure that the overflowing part of the image is hidden */
    opacity: 0.8;
  }

  footer .footer-image img {
    width: 100%;
    height: auto;
    /* Adjust as needed */
  }

  footer .card img {
    width: 112%;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }


  footer .footer-social-icons img {
    width: 22px;
    /* Smaller size */
    height: 22px;
    /* Ensuring perfect circles */
    filter: grayscale(100%);
    transition: filter 0.3s;
  }
}
.company-info img {
    opacity: 0.9;
    filter: none !important;
    width: 20px !important;
    transform: translateY(7px);
}
.containers {
  display: flex;
  justify-content: space-between;
  /* Ensures space distribution */
  align-items: flex-start;
  /* Aligns items at the top */
  gap: 10px;
  /* Adds spacing between columns */
  flex-wrap: wrap;
  /* Allows wrapping on small screens */
}

.column {
  padding: 10px;
  box-sizing: border-box;
  /* Ensures padding doesn't affect width */
}

.column-2-3 {
  flex: 2;
  /* Takes 2/3 of the space */
}

.column-1-3 {
  flex: 1;
  /* Takes 1/3 of the space */
  align-items: center;
}


/*---------- Support --------*/

#sticky-support {
  position: fixed;
  bottom: 32px;
  right: 90px;
  border: solid 1px #0ec12f;
  background: #0a0c0e;
  /* Your brand's green color */
  color: white;
  padding: 6px 16px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center content horizontally */
  transition: opacity 0.9s ease-in-out;
  opacity: 0;
  /* Initially hidden */
  cursor: pointer;
  z-index: 999;
}

/* Flashing arrow animation */
.flash {
  display: inline-block;
  margin-right: 0px;
  animation: flash 1s infinite alternate;
}

@keyframes flash {
  0% {
    opacity: 0.3;
    transform: translateX(0px);
  }

  100% {
    opacity: 1;
    transform: translateX(5px);
  }
}

/* Close button */
/* X button styling */
#close-btn {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
  cursor: pointer;
  color: white;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
  transform: translateY(-700px);
  transform: translateX(-20px);
}

#close-btn:hover {
  color: #4dfe3e;
}

/* Fade-out effect */
.fade-out {
  opacity: 0;
}

@media (max-width: 468px) {
  #sticky-support {
    font-size: 10px;
    padding: 4px 10px;
    bottom: 28px;
    right: 75px;
  }

  #close-btn {
    font-size: 14px;
    width: 3px;
    height: 3px;
    opacity: 1;
    font-weight: 300;
    top: 8px;
    left: 8px;
  }
}

@keyframes glow {
  0% {
    opacity: 0.3;
    text-shadow: 0 0 15px #267c1e;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 35px #267c1e;
  }

  100% {
    opacity: 0.3;
    text-shadow: 0 0 15px #267c1e;
  }
}

.glowing-text {
  animation: glow 2s infinite ease-in-out;
}
.text a {
    align-items: center;
    text-align: center;
    color: #4efe3ec8;
    text-decoration: none;
}
.review-subtext a {
    align-items: center;
    text-align: center;
    color: #4efe3ec8;
    text-decoration: none;
}
  .password-div{
      position: relative;
  }
  .password-div #show_password{
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
  }
    .password-div #show_password1{
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
  }
    .password-div #c_show_password{
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
  }
     .password-div #show_password2{
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
  }
    .password-div #c_show_password2{
    position: absolute;
    top: 18px;
    right: 20px;
    cursor: pointer;
  }
.google-log-in{
    margin: 13px auto;
    display: flex;
    flex-wrap: wrap;
    background: #4dfe3e;
    border: none;
    color: #212529;
    width: fit-content;
    justify-content: center;
    align-items: center;
    border-radius: 44px;
    padding: 10px 14px;
    line-height: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}
.google-span{
    display: block;
    width: 20px;
    margin-right: 15px;
}

.google-span img{
    filter:none!important;
}
