
:root {
  --font-family: 'Montserrat', sans-serif;
  --dark-blue: #0054A6;
  --accent-blue: #0054A6;
  --light-blue: #1f4d7a;
  --light-gray: #f9fbfd;
  --very-light-gray: #e0e0e0;
  --border-gray: #ddd;
  --fallback-bg: #f0f0f0;
}

* {
  /* font-family: var(--font-family); */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  /* margin: 0; */
  padding: 0;
}

body {
  background: linear-gradient(to bottom, #000000, #1f1f1f, #414141);
  color: #ffffff;
  font-size: 12px;
  background-attachment: fixed;
}

.container-fluid {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

/* Navbar */
.navbar .nav {
  display: none !important; /* Hides all navbar links */
}

#searchBar .search-query::placeholder {
  color: #316ba4; /* Change text color if needed */
  font-size: 14px;
  opacity: 0.7; /* Adjust transparency */
  font-style: italic; /* Optional styling */
  text-shadow: 1px 1px 3px rgb(0 0 0 / 38%); /* Adds a soft shadow */
}


.navbar .brand {
  margin: 0 auto !important; /* Centers the logo */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}


.navbar .brand img {
  width: 400px; /* Adjust to your preferred size */
  height: auto;
  display: block;
  margin: 0 auto;
}


.navbar .navbar-inner {
  background-color: #000000 !important;
  
  
}

.navbar .nav li a {
  color: #000000 !important;
  font-weight: 100;
  font-size: 0.1px;
  font-size: clamp(1px, 1.vw, 1px); /* Adjusts between 12px and 16px based on screen width */
  transition: color 0.3s ease-in-out;
  white-space: nowrap; /* Prevents text from breaking */
}

/* Hover Effect */
.navbar .nav li a:hover,
.navbar .nav li a:focus {
  color: #6d99d2 !important;
}

.navbar .brand {
  color: #ffffff !important;
} 


#fullArticle blockquote,#fullArticle dd,#fullArticle div,#fullArticle li,#fullArticle ol,#fullArticle p,#fullArticle table,#fullArticle ul {
  font-size: 14px;
  color: #414141;
  line-height: 1.48em;
  margin-bottom: 1.1em;
}

#fullArticle img {
  display: block;
  margin: 1em 0 2em 0;
  padding: 4px;
  border-radius: 6px;  border: 1px solid #ffffff;
  box-sizing: border-box
}

#fullArticle h1,#fullArticle h1,#fullArticle h1,#fullArticle h1,#fullArticle h1 {
  margin-bottom: .65em;
  color: #0054A6;
  text-shadow: 3px 1px 9px rgb(0 0 0 / 27%); /* Adds a soft shadow */
  font-weight:600;

}

#fullArticle hr {
  border-top: 1px solid #0054a61f;
  border-bottom: 1px solid #fff;
  margin: 30px auto 20px auto;
}

#fullArticle .callout-yellow {
  background: #fffcd5;
  border-color: #e7dca4
}

#fullArticle .callout-blue {
  background: linear-gradient(to bottom, #000000, #1f1f1f, #414141);
  border-color: #bed1e6
}

#fullArticle .callout-green {
  background: linear-gradient(to left, #ffffff00, #adeeaf);
  border-color: #bbdaaf
}

#fullArticle .callout-red {
  background: #fde8e8;
  border-color: #e7aaaa
}

#fullArticle .callout {
  background: linear-gradient(to left, #ffffff, #e1e1e1);    
  border-color: #cfcfcf;
}

#fullArticle .private-note {
  background: #fffcd5 url(../img/lock.png) no-repeat top right;
  border-color: #e7dca4
}

.articleFoot p,.articleFoot time {
  color: #607d8b8c;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  /* font-style:italic; */

}

#serp .articleList>li a {
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgb(0 0 0 / 20%); /* Adds a soft shadow */

}

#serp p {
  font-size: 12px;
  color: #585858;
  line-height: 1.55em;
  margin-bottom: 1.5em
}

/* Search Area with Background Image */
#docsSearch {
  display: flex;
  filter: drop-shadow(1px 1px 15px rgb(0 0 0));
  flex-direction: column;
  align-items: baseline;
  background-image: url('https://cdn.shopify.com/s/files/1/1239/9256/files/pngdeisgn.png?v=1748616977');
  background-size: cover;
  background-position: right;
  background-repeat: repeat;
  background-color: #000000;
  border-bottom: #000000;
  padding: 200px 2%;
  text-align: center;
  position: relative;
  width: auto;
  
}

#docsSearch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  
}

#docsSearch h1 {
  margin-bottom: 10px; /* Adds space between the text and the search bar */
}


#docsSearch h1 {
  font-size: 40px;
  font-weight: 200;
  text-align: center;
  margin-top: .1em;
  padding: 10px;

  
}

/* Search Bar */
#searchBar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 700px; /* Adjust width */
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 50px #76b3ed;
  border: 1px solid #699fd7;
  height: 48px;
  overflow: hidden;
  margin-left: 10; /* Align left */
  margin-right: auto; /* Prevents centering */
  
}

#searchBar.sm {
    width: 100%;
    padding: 5px;
    margin-bottom: 30px
}


#searchBar .search-query {
  height: 38px;
  padding: 0 12px;
  border: none;
  outline: none;
  font-size: 14px;
  border-radius: 8px 0 0 8px;
  
}

#searchBar button {
  height: 52px;
  font-weight: 200;
  text-shadow: 2px 2px 8px rgb(0 0 0); /* Adds a soft shadow */
  min-width: 100px;
  background: linear-gradient(to bottom, #005db8, #00407f, #0b2c4e);
  color: white;
  border: none;
  padding: 0 15px;
  font-size: 24px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: none;
  margin: 0;
  position: relative;
  top: -1px;
}

/* Category Section */
.collection-category h2 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  font-weight: 100;
  text-align: left;
  width: 100%;
  color: #ffffff !important;
  text-shadow: 2px 2px 8px rgb(0 0 0); */
  
}

.contentWrapper {
  background: linear-gradient(to top, #ffffff, #ffffff);
  border: 2px solid #0054A6;
  color: #222;
  min-height: 460px;
  padding: 55px 45px;
  position: relative;
  border-radius: 20px;
}

.collection-category h2 a {
  color: #ffffff !important;
  margin-top: 1px;
  text-decoration: none;
  font-weight: 300;
  font-size: xx-large;
  
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* <- aligns items to the left */
  align-items: flex-start; /* optional, aligns top if items vary in height */
  
}

.category-list .category {
  width: 50%;
  min-width: 120px;
  max-width: 300px;
  height: 160px;
  border: 1px solid rgb(41 59 73);
  border-radius: 8px;
  padding: 21px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.05));
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Shadow added */
  flex-wrap: nowrap;
  align-content: center;
}

.category-list .category h3 {
  margin-top: 60px;
  color: #48a6ff;
  font-size: 22px;
  font-weight: 300;
  
}

.category-list .category .article-count {
  color: rgb(137 137 137);
  font-size: 1px;
  margin-top: 1px;
  font-weight: 100;
}

.category-list .category:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.category-list .category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(87 87 87 / 6%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.category-list .category:hover::before {
  opacity: 1;
}



.category-list .category h3 {
  margin-top: 10px;
  z-index: 2;
  position: relative;
}

/* Remove all icon-based ::before elements */
.category-list .category::before {
  content: none !important;
}


/* Custom category background images using only CSS */
.category-list .category {
  background-size: 50% auto;
  background-position: center;
  position: relative;
  z-index: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  height: 220px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-list .category::after {
  content: '';
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-image: url('https://cdn.shopify.com/s/files/1/1239/9256/files/simple_invoice_account_logo_52196_945ed6f21e38d5c4b39deef95fe82392.png?v=1747558507');
  background-size: 20% auto;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.category-list .category h3 {
  margin-top: 10px;
  z-index: 2;
  position: relative;
}

/* Remove all icon-based ::before elements */
.category-list .category::before {
  content: none !important;
}

#sidebar {
    margin: 32px 0 0 0
}

#sidebar form {
    position: relative;
    margin: 0 0 40px 0
}

#sidebar form .search-query {
    display: block;
    width: 100%;
    margin: 0;
    padding-right: 35px;
    font-size: 14px;
    line-height: 18px;
    height: 40px;
    border: 1px solid #D0D0D0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
    color: #666
}

#sidebar form .search-query:-moz-placeholder,
#sidebar form .search-query:-ms-input-placeholder,
#sidebar form .search-query::-moz-placeholder,
#sidebar form .search-query::-webkit-input-placeholder {
    color: #b1b0b0
}

#sidebar form .search-query:focus,#sidebar form .search-query:focus:invalid {
}

#sidebar form button {
    position: absolute;
    top: 10px;
    right: 12px;
    margin: 0;
    padding: 0;
    line-height: 16px;
    border: 0;
}

#sidebar h3 {
    text-transform: uppercase;
    font-size: 20px;
    color: #4f90cf;
    margin-bottom: 4px
}

#sidebar .nav-list {
    padding: 0;
    margin-bottom: 34px
}

#sidebar .nav-list li {
    margin: 21px 0 3px 0
}

#sidebar .nav-list a {
    display: inline-block;
    color: #ffffff;
    font-size: 1.2em;
    padding: 6px 15px 6px 0;
    line-height: 20px;
    margin-left: 0
}

#sidebar .nav-list a:focus,
#sidebar .nav-list a:hover {
    color: #6e6e6e;
    background: 0 0
}

#sidebar .nav-list a .icon-arrow {
    display: none
}

       

#sidebar .nav-list .active a,
#sidebar .nav-list .active a:focus,
#sidebar .nav-list .active a:hover {
    font-weight: 700;
    color: #91b9e0;
    background: 0 0;
}

#sidebar .nav-list .active a .icon-arrow,
#sidebar .nav-list .active a:focus .icon-arrow,
#sidebar .nav-list .active a:hover .icon-arrow {
    display: inline-block
}

#sidebar .contactUs {
    color: #b3b3b3
}


/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
  .category-list {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 10px;
  }

  .category-list .category {
    width: 90%;
    height: auto;
  }
}
@media only screen and (max-width: 1924px) {
  .navbar .nav {
    gap: 10px; /* Reduce spacing on smaller screens */
  }

  .navbar .nav li {
    margin: 0 1px;
  }
}

@media only screen and (max-width: 768px) {
  .navbar .nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar .nav li {
    margin: 5px 0;
  }
}