/* ----  These are the styles required to make the various navigation elements display and function correctly. ---- */
	.navigation-set,
	.navigation-set *,
	.navigation-set *:before,
	.navigation-set *:after { /* Apply a natural box layout model to all "navigation-set" elements */
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.navigation-set {
		margin: 0 auto;
		padding: 0;
		text-align: left;
		-moz-transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
		.navigation-set li {
			display: inline-block;
			font-size: 16px;
			height: 2em;
			line-height: 2;
			list-style: none;
			margin: 0;
			padding: 0;
			position: relative;
			text-align: left;
			white-space: nowrap;
		}
			.navigation-set li a {
				color: #005596;
				display: block;
				padding: 0 16px;
				text-decoration: none;
			}
			.navigation-set li:hover > a {
				background: #666;
				color: #7fdbff;
			}

	/* ------------------------ first sub-level ------------------------ */
	.navigation-set li ul {
		display: none;
		font-size: 14px;
		line-height: 1.5;
		margin: 0;
		min-width: 100%;
		padding: 0;
		position: absolute;
		left: 0;
		z-index: 999;
	}
	.navigation-set li:hover ul {
		background: #ccc;
		display: block;
	}
		.navigation-set li ul li {
			display: block;
			position: relative;
		}

		/* ------------------------ second and subsequent sub-levels ------------------------ */
		.navigation-set li:hover ul ul {
			display: none;
		}
			.navigation-set li ul li ul {
				display: none;
				position: absolute;
				top: 0;
				left: 100%;
			}
			.navigation-set li ul li:hover > ul {
				display: block;
			}

	/* ------------------------ horizontal-mega-menu ------------------------ */
	.navigation-set.horizontal-mega-menu li ul li {
		display: inline-block;
		height: auto;
		vertical-align: top;
	}
		.navigation-set.horizontal-mega-menu li ul li ul {
			display: block;
			position: relative;
			top: auto;
			left: auto;
		}
			.navigation-set.horizontal-mega-menu li ul li ul li {
				display: block;
			}

	/* ------------------------ vertical-fly-out ------------------------ */
	.vertical-fly-out li {
		display: block;
	}
		.vertical-fly-out li ul {
			top: 0;
			left: 100%;
		}

	/* ------------------------ single-navigation-column ------------------------ */
	.single-navigation-column {
		display: inline-block;
		padding-right: 32px;
		vertical-align: top;
	}
		.single-navigation-column li {
			display: block;
			font-size: 14px;
			height: auto;
			line-height: 1.75;
		}
			.single-navigation-column .single-navigation-title {
				font-size: 16px;
				font-weight: 700;
				height: 2em;
				line-height: 2;
				margin-bottom: 4px;
				text-transform: uppercase;
			}
			.single-navigation-column li a {
				padding: 0;
			}
			.single-navigation-column li:hover > a {
				background: transparent;
				color: #7fdbff;
			}

.wp-block-table.table2 {
  display: block; /* Allows horizontal scrolling */
  overflow-x: auto; /* Enables horizontal scrolling */
  width: 100%;
}

.wp-block-table.table2 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: Arial, sans-serif;
  text-align: center;
  border-radius: 11px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.wp-block-table.table2 th,
.wp-block-table.table2 td {
  padding: 12px 15px;
  border: none;
  transition: background-color 0.2s ease-in-out;
}

.wp-block-table.table2 th {
  background-color: #792215;
  color: white;
  font-weight: bold;
}

.wp-block-table.table2 tr:nth-child(even) {
  background-color: #f2f2f2;
}

.wp-block-table.table2 tr:hover td {
  background-color: #f5dddd;
}

.wp-block-table.table2 td {
  color: #333;
  text-align: center;
}

/* Rounded corners for the table */
.wp-block-table.table2 tr:first-child th:first-child {
  border-top-left-radius: 11px;
}

.wp-block-table.table2 tr:first-child th:last-child {
  border-top-right-radius: 11px;
}

.wp-block-table.table2 tr:last-child td:first-child {
  border-bottom-left-radius: 11px;
}

.wp-block-table.table2 tr:last-child td:last-child {
  border-bottom-right-radius: 11px;
}

.pci-product-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1rem;
}

h3.height-title {
	font-weight: 600;
	margin-top: 4rem;
}

.pci-product-card {
	width: 260px;
	border-radius: 10px;
	border-style: groove;
}

@media (max-width: 767px) {
	.pci-product-card {
		width: 100%;
	}
}

.pci-product-image-container {
	display: flex;
	justify-content: center;
}

.pci-product-image {
	width: 160px;
	height: auto;
}

.pci-product-info {
	padding: 0 15px 10px 30px;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.pci-download-link {
	color: var(--wp--preset--color--accent-4);
	text-decoration: underline;
}

h3 {
	margin-bottom: 20px;
	font-size: 23px !important;
}

.aspect-ratioed {
		aspect-ratio: 2 / 1;
}

.small-nav {
  position: fixed;
  top: -155px; /* Hide initially */
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 5px;
	z-index: 1000;
}

.big-nav {
		height: 84px;
}

.overflow-auto {
    overflow-x: hidden !important;
}

body.home .breadcrumb-container {
		display: none;
}



.wrap-reverse {
		flex-wrap: wrap-reverse !important;
}

.scrolled-down {
  top: 0;
}


.navbar-font {
		font-family: 'Open Sans', sans-serif;
		font-weight: 700;
}

.wp-block-navigation__submenu-container {
		color: #777 !important;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    border-radius: 0px 6px 6px;
		border-top-width: 5px !important;
		border-bottom-width: 0px !important;
		border-right-width: 0px !important;		
		border-left-width: 0px !important;		
		border-color: #792215 !important;
		padding: 6px 8px !important;
		width: 325px !important;
}

.wp-block-navigation a:where(:not(.wp-element-button)):hover {text-decoration:none}

.nav-submenu-custom {
		border-top-width: 0px !important;
}


.main-menu-top-items:hover {
		background-color: #792215;
		border-radius: 10px
}

.main-menu-top-items {
		margin: 0px 12px;
}

.wp-block-navigation-item__content {
		padding: 9px 5px;
}

.logo-container {
	position: absolute; /* Positions the logo independently */
  left: 50%; /* Moves the logo to the center horizontally */
  transform: translateX(-50%); /* Centers the logo precisely */
	padding: 0px 0px;
}

.wp-container-content-2 {
    flex-basis: 43%
}

.social-media-icons-footer {
		border-radius: 50%;
		height: 30px;
		width: 30px !important;
		font-size: 19px !important;
}

.header-right-icons-mobile {
	display: none !important;	
}


.small-navbar-logo-mobile {
		display: none;
}


.product-page-button-grey:hover {
		color: white !important;
		background-color: var(--wp--preset--color--accent-4)!important;
}

.container-product-buttons {
  display: flex;
  flex-wrap: wrap;
	gap: 5px;
}

.item-product-buttons {
  flex-grow: 1; /* All items grow equally */
  flex-basis: 0; /* Equal initial width based on available space */
  width: calc(25% - 10px); /* 25% width with margin */
}


.product-page-button {
		width: 100%
}

.bigger-product-buttons {
  flex-grow: 1.5; /* This item will take up twice the space */
}

.wp-block-table {
		white-space: nowrap;
		overflow-x: auto;
		color: #383838;
    box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.28);
    border: 1px solid #DDD;
		text-align: center;
}

.wp-block-table.is-style-stripes {
		background-color: white;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd):hover {
    background-color: #E3E3E3;
}

.white-space-wrap tbody th {
		white-space: normal;
}

.expand-image-icon-visible.wp-lightbox-container button {
		background-color: #792215 !important;
		opacity: 0.75;
}

.underline-link-on-hover:hover {
    text-decoration: underline !important;
}

@media screen and (max-width: 781px) {
	.hide-on-mobile {
			display: none !important;
		}
	.header-right-icons-desktop {
    display: none !important; /* or any other display property */
  }
	.header-right-icons-mobile{
		display: block !important;
	}
	.product-page-subheader{
			display: none !important;
	}
	.breadcrumb-container{
			display: none !important;
		}
		header nav {
        visibility: hidden !important;
    }
	
		 .wp-block-navigation__responsive-container-open:not(.always-shown) {
      display: flex;
    }
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
      display: none;
    }
		.logo-container {
 	 	left: 18%; /* Moves the logo to the center horizontally */
	  transform: translateX(-10%); /* Centers the logo precisely */
  }
	.top-navbar-align-logo-mobile {
			align-items: center !important;
		}
	.small-navbar-logo-desktop{
			display: none;
		}
	.small-navbar-logo-mobile {
			display: block;
		}
}

@media ( min-width: 780px ) {
    .wp-block-navigation__responsive-container-open:not(.always-shown) {
      display: none !important;
    }
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
      display: block !important;
    }
}


body.home .big-nav {
		background: rgba(30,30,30,.65) !important;
		position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}




.breadcrumb-container.theme1 {
  background-color: #792215; /* Set background color */
}

.breadcrumb-container.theme1 ol {
  display: flex; /* Display list items horizontally */
  list-style-type: none; /* Remove default numbering */
	margin: 0;
}

.breadcrumb-container.theme1 li {
  margin: 0; /* Remove any default margin */
  display: flex; /* Use flexbox for inner alignment */
  align-items: center; /* Align items vertically */
}

.breadcrumb-container.theme1 li a {
  margin: 0 5px;
  padding: 10px 10px;
  text-decoration: none;
  color: #ffffff; /* Set text color */
}

.breadcrumb-container.theme1 .separator {
  color: #ffffff; /* Set color for separator */
  margin: 0 5px; /* Adjust margin for spacing */
}

.breadcrumb-container li:last-child .separator:last-child {
  display: none;
}

.reposition-hamburger {
		top: 6px;
}

.entry-content.wp-block-post-content {
		margin-top: 0px;
}

.headertext {
		display: none;
}
	
.wp-block-search__label {
		display: none;
}
	
	body.home .search-bar-small-nav {
		display: none;
	}
	body.home .search-bar-big-nav {
		display: none;
	}