:root {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section, footer {
  min-width: 320px;
}


/* Print Styles BEGIN */
@media screen {
  .bbsuite2-print-only {
    display: none !important;
  }
}
@media print {
  .bbsuite2-no-print {
    display: none !important;
  }
}
/* Print Styles END */


/* Pagination BEGIN */
.oxy-repeater-pages-wrap {
  justify-content: center !important;
  display: flex !important;
  margin-top: 40px !important;
  width: 100% !important;
}
.oxy-repeater-pages {
  color: #0b1215 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center;
}
.oxy-repeater-pages a.page-numbers {
  color: #fffafa !important;
  text-decoration: none !important;
}
.oxy-repeater-pages a {
  background-color: #231f20 !important;
  padding-top: 6px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  padding-bottom: 6px !important;
  margin: 5px !important;
  border-radius: 2px;
}
.oxy-repeater-pages a:hover {
  background-color: #cccccc !important;
  color: #0b1215 !important;
}
.oxy-repeater-pages span.current {
  background-color: #cccccc !important;
  padding-top: 6px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  padding-bottom: 6px !important;
  margin: 5px !important;
  border-radius: 2px;
}
/* Pagination END */


/* Remove Unwanted Gaps BEGIN */
.bbsuite2-util-guten-para-adjust p {
  margin-block-start: 0;
  margin-block-end: 1em;
}
.bbsuite2-util-guten-para-adjust p:last-of-type {
  margin-block-end: 0;
}
.ct-shortcode:empty {
    display: none;
}
/* Remove Unwanted Gaps END */


/* Menus BEGIN */
.bbsuite2-hide-in-desktop-menu {
  display: none !important;
}
.oxy-nav-menu-open .bbsuite2-hide-in-desktop-menu,
.oxy-pro-menu-open .bbsuite2-hide-in-desktop-menu {
  display: flex !important;
}
/* Menus END */


/* Various Text Styles BEGIN */
.bbsuite2-drop-cap p:first-child:first-letter {
  float: left;
  font-size: 450%;
  line-height: 0.9;
  padding-right: 8px;
}
.bbsuite2-text-color-light-override,
.bbsuite2-text-color-light-override a,
.bbsuite2-text-color-light-override svg {
    color: var(--bbs2-text---light) !important;
}
/* Various Text Styles END */


/* Various Styles BEGIN */
.bbsuite2-border-thin-between-children > * + * {
  border-top: 1px solid #000000;
}
.bbsuite2-width-min-content {
  width: min-content;
}
/* Various Styles END */


/* WPML BEGIN */
.wpml-ls-legacy-dropdown {
  width: auto;
}
/* WPML END */


/* Site Credit BEGIN */
.bbsuite2-site-credit {
    position: relative;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.bbsuite2-site-credit > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.bbsuite2-site-credit a {
    display: inline-block;
    text-decoration: none;
}
.bbsuite2-site-credit img {
    height: 20px;
    width: auto;
    display: block;
}
/* Site Credit END */


/* Animation BEGIN */
.bbsuite2-animation-rotation {
  display: inline-block;
  animation: bbsuite2-animation-rotation 2s linear infinite;
  transform-origin: center center;
}
@keyframes bbsuite2-animation-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bbsuite2-slider-image {
    transition: transform 0.3s ease;
}
.bbsuite2-slider-link:hover .bbsuite2-slider-image {
    transform: scale(1.05);
}
/** Animation END **/


/* Custom Checkbox BEGIN */
.bbsuite2-stylized-checkboxes {
    --checkbox-size: 24px;
    --checkbox-border: 1.5px;
    --checkbox-radius: 4px;

    --checkbox-border-color: #c9cdd3;
    --checkbox-bg: #ffffff;

    --checkbox-checked-bg: #2f2f2f;
    --checkbox-check-color: #ffffff;

    --checkbox-focus: rgba(0, 0, 0, 0.15);
}
/* Layout alignment */
.bbsuite2-stylized-checkboxes .bbsuite2-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
}
/* Hide native checkbox but keep accessibility */
.bbsuite2-stylized-checkboxes .bbsuite2-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
/* Custom box */
.bbsuite2-stylized-checkboxes .bbsuite2-checkbox-custom {
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    min-width: var(--checkbox-size);
    border: var(--checkbox-border) solid var(--checkbox-border-color);
    border-radius: var(--checkbox-radius);
    background: var(--checkbox-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Focus (keyboard accessible) */
.bbsuite2-stylized-checkboxes .bbsuite2-checkbox-label input[type="checkbox"]:focus-visible + .bbsuite2-checkbox-custom {
    box-shadow: 0 0 0 3px var(--checkbox-focus);
}
/* Checked state */
.bbsuite2-stylized-checkboxes .bbsuite2-checkbox-label input[type="checkbox"]:checked + .bbsuite2-checkbox-custom {
    background: var(--checkbox-checked-bg);
    border-color: var(--checkbox-checked-bg);
}
/* Checkmark */
.bbsuite2-stylized-checkboxes .bbsuite2-checkbox-custom::after {
    content: "";
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--checkbox-check-color);
    border-bottom: 2px solid var(--checkbox-check-color);
    transform: rotate(-45deg) scale(1);
}
/* Disabled */
.bbsuite2-stylized-checkboxes .bbsuite2-checkbox-label input[type="checkbox"]:disabled + .bbsuite2-checkbox-custom {
    opacity: 0.5;
    cursor: not-allowed;
}
/* Custom Checkbox END */

/* Custom Select BEGIN */
.bbsuite2-custom-select > .select-selected {
	background-color: var(--bbs2-secondary-color);
	color: var(--bbs2-white);
	border-radius: 3px;
}

/* Style the arrow inside the select element: */
.bbsuite2-custom-select > .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: var(--bbs2-white) transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.bbsuite2-custom-select > .select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--bbs2-white) transparent;
    top: 7px;
}

/* Style the items (options), including the selected item: */
.bbsuite2-custom-select > .select-items div,
.bbsuite2-custom-select > .select-selected {
    padding: 8px 32px 8px 16px;
    border-bottom: 1px solid var(--bbs2-white);
    border-left: 1px solid var(--bbs2-white);
    border-right: 1px solid var(--bbs2-white);
    cursor: pointer;
}
.bbsuite2-custom-select > .select-items div {
    color: var(--bbs2-white);
}

/* Style items (options): */
.bbsuite2-custom-select > .select-items {
    position: absolute;
    background-color: var(--bbs2-black);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    color: var(--bbs2-white);
}

/* Hide the items when the select box is closed: */
.bbsuite2-custom-select > .select-hide {
    display: none;
}

.bbsuite2-custom-select > .select-items div:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
/* Custom Select END */

/* Override Browser Defaults BEGIN */
fieldset {
    border: none;
    padding: 0 !important;
}
legend {
    margin-bottom: 6px;
}
button {
  appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	background: none;
	border: 0;
	padding: 0;
	margin: 0;

	font: inherit;
	color: inherit;

	line-height: 1;
	cursor: pointer;

  outline: none;
	box-shadow: none;
}
/* Override Browser Defaults END */

/* Accessibility BEGIN */
.bbsuite2-screen-reader-only {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}
:where(button, [role="button"], a, input, select, textarea):focus-visible {
	outline: auto;
}
.bbsuite2-skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 1rem 1.5rem;
    background: #000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.bbsuite2-skip-link:focus {
    top: 0;
}
/* Accessibility END */

/* Promo Top Bar BEGIN */
.bbsuite2-promobar-promo-active {
  -webkit-animation: bbsfadein 1s linear forwards;
  animation: bbsfadein 1s linear forwards;
}
@-webkit-keyframes bbsfadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes bbsfadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* Promo Top Bar END */

/* Icons BEGIN */
.bbsuite2-icon-small,
.bbsuite2-icon-small > svg,
.bbsuite2-icon-small > img {
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
}
.bbsuite2-icon-medium,
.bbsuite2-icon-medium > svg,
.bbsuite2-icon-medium > img {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
}
.bbsuite2-icon-large,
.bbsuite2-icon-large > svg,
.bbsuite2-icon-large > img {
    width: 120px !important;
    min-width: 120px !important;
    height: 120px !important;
}
.bbsuite2-icon-xlarge,
.bbsuite2-icon-xlarge > svg,
.bbsuite2-icon-xlarge > img {
    width: 200px !important;
    min-width: 200px !important;
    height: 200px !important;
}
/* Icons END */
