/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 13 2026 | 10:42:27 */
/* Accents */
.blueAccent {
	color: var(--accent);
}

.secondaryText {
	color: var(--text-secondary);
}

/* Default card */
.defaultCard {
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/* Blur background */
.backdrop, .sub-menu {
	backdrop-filter: blur(13px);
}

.brx-popup-backdrop {
	backdrop-filter: blur(5px);
}

/* Menu */
.sub-menu {
	z-index: 1000
}

/* Marque tags */
.marqueParent {
  animation: marquee 100s infinite linear;
  will-change: transform;
}

.marqueRTL {
  animation-direction: reverse;
}

@keyframes marquee {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-100%, 0);
  }
}

/* Forms */
.brxe-form input[type=checkbox] {
	width: 15px;
    height: 15px;
}

/* Acceptance */
.leadForm .options-wrapper, .popupServicesForm .options-wrapper {
  color: var(--secondary-text);
  
}

.popupServicesForm .options-wrapper {
  color: #6e6e6e;
}

.leadForm .options-wrapper label, .popupServicesForm .options-wrapper label {
	line-height: 1.4;
	position: relative;
	top: -2px;
	font-size: var(--text-s);
}

.leadForm .options-wrapper li, .popupServicesForm .options-wrapper li {
	display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 7px;
}

.leadForm .options-wrapper a, .popupServicesForm .options-wrapper a {
	text-decoration: underline;
	color: var(--accent);
	transition: var(--transition);
}

.leadForm .options-wrapper a:hover {
  text-decoration: none;
  color: var(--text)
}

.popupServicesForm .options-wrapper a:hover {
  text-decoration: none;
  color: var(--text)
}