/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 28 2025 | 11:52:53 */
.module-text-more.tb_text_less_link {
  /* Hide the original "More" text */
  color: transparent; /* Makes the text invisible */
  font-size: 0;       /* Collapses the space taken by the text characters */
  line-height: 0;     /* Ensures no vertical space is taken by the line of text */
  display: inline; /* Important for allowing pseudo-elements to be styled relative to it and to maintain click area */
  overflow: hidden;   /* Ensures any residual display of original text (e.g., if font-size isn't 0) is hidden */
  text-decoration: none; /* Removes any underline from the hidden text */
  vertical-align: middle; /* Helps with alignment if the link is inline with other text */
}

.module-text-more.tb_text_less_link::after {
  /* Display the new "Less" text */
	
  content: "Less";
  /* Re-apply typical link styling for the new text */
  color: #F44A02; /* Or inherit from parent, or use a specific link color from your theme, e.g., var(--link-color) */
	border:0px;
	display:inline;
  font-size: 1rem; /* Restore to a readable font size, adjust as needed */
  line-height: normal; /* Restore to normal line height, adjust as needed */
   /* Re-apply underline if the link should be underlined */
  cursor: pointer; /* Ensures the cursor is a pointer when hovering over the link */

}
.module-text-more.tb_text_less_link::after {
  content: "Less";  /* "Less" + Down Arrow */
  color: #F44A02;
  border: 0;
  display: inline;
  font-size: 1rem;
  line-height: normal;
  cursor: pointer;
}

