@font-face {
  font-family: 'Urbanist';
  src: url('/assets/fonts/urbanist/Urbanist-Regular.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('/assets/fonts/urbanist/Urbanist-Medium.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Urbanist', sans-serif !important;
  line-height: 1.6;
  color: #333;
  background-color: #f7f7f7;
}
p {
  text-align: justify;
}
.shadow {
  filter: drop-shadow(1px 1px 5px #a1a1a1);
  width: 900px;
}
.wp-header {
  background-color: #23282d;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.wp-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #32373c;
}
.wp-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}
.wp-logo-icon {
  width: 40px;
  height: 40px;
  background-color: #ff9103;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}
.wp-logo-text h1 {
  font-size: 1.25rem;
  font-weight: 600;
}
.wp-logo-text p {
  font-size: 0.75rem;
  color: #a0a5aa;
}
.wp-search {
  position: relative;
  display: none;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .wp-search {
    display: block;
  }
}
.wp-search input#sideBarDocs {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  background-color: #ffffff;
  border: 1px solid #b8b8b8;
  border-radius: 4px;
  color: #000;
  font-size: 0.875rem;
}
.wp-search input#sideBarDocs::placeholder {
  color: #727272;
}
.wp-search input#sideBarDocs:focus {
  outline: none;
  background-color: #fff2e1;
  border-color: #ff9103;
}
.wp-search span.icon-search {
  position: absolute;
  left: 0.75rem;
  top: 55%;
  transform: translateY(-50%);
  color: #a0a5aa;
}
.bi-chevron-down {
  color: #ff9103;
}
.bi-pin-angle {
  font-size: 20px;
  margin-right: 10px;
}
.wp-nav {
  padding: 0 2rem;
}
.wp-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}
.wp-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  border-bottom: 4px solid transparent;
  transition: all 0.2s;
}
.wp-nav a:hover,
.wp-nav a.active {
  background-color: #ff9103;
  border-bottom-color: #ff9103;
}
.wp-container {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  position: relative;
}
.wp-sidebar {
  width: 280px;
  background-color: #fff;
  border-right: 1px solid #ddd;
  overflow-y: auto;
  height: 100vh;
  position: absolute;
  top: 0;
}
.wp-sidebar.closed {
  width: 0;
}
.wp-desk-toggle {
  position: absolute;
  z-index: 1;
  border: 0;
  padding: 0.45rem 0.55rem 0.45rem 0.15rem;
  border-radius: 0% 50% 50% 0%;
  background-color: #fff2e0;
  left: 280px;
  color: #ff9103;
  font-size: 18px;
  top: 12px;
}
.wp-desk-toggle.closed {
  left: 0;
}
.wp-main {
  margin-left: 280px;
  transition: margin-left 0.2s ease;
}
.wp-main.shifted {
  margin-left: 0;
}
.wp-sidebar-content {
  padding: 1.5rem;
}
.wp-sidebar-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3a3a3a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.wp-nav-section {
  margin-bottom: 0.5rem;
}
.wp-nav-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.75rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.wp-nav-section-header:hover {
  background-color: #f5f5f5;
}
.wp-nav-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wp-nav-section-icon {
  color: #ff9103;
}
.wp-nav-section-items {
  margin-left: 1.05rem;
  margin-top: 0.25rem;
  padding-left: 0.25rem;
  border-left: 2px solid #e5e5e5;
}
.wp-nav-section-items.collapsed {
  display: none;
}
.wp-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.75rem;
  color: #555;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: all 0.2s;
  margin-bottom: 0.25rem;
}
.wp-nav-item:hover {
  background-color: #f5f5f5;
  color: #333;
}
.wp-nav-item.active {
  background-color: #ff9103;
  color: #fff;
  font-weight: 500;
}
.wp-sidebar-widget {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #fff8e5;
  border: 1px solid #f0b849;
  border-radius: 4px;
}
.wp-sidebar-widget h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.wp-sidebar-widget p {
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 0.75rem;
}
.wp-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ff9103;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
}
.wp-btn:hover {
  background-color: #da7b00;
}
.wp-main {
  flex: 1;
  background-color: #fff;
  padding: 3rem 0rem 0rem 0rem;
  overflow-y: auto;
  height: 100vh;
}
.wp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 2rem;
  margin-left: 3rem;
}
.wp-breadcrumb a {
  color: #ff9103;
  text-decoration: none;
}
.wp-breadcrumb a:hover {
  text-decoration: underline;
}
.wp-breadcrumb-separator {
  color: #999;
}
.wp-article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  margin-left: 3rem;
  margin-right: 2rem;
}
.wp-category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #fff2e0;
  color: #ff9103;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.wp-article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #23282d;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.wp-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #666;
}
.wp-article-content {
  max-width: 1400px;
  margin-left: 3rem;
  margin-right: 2rem;
}
.wp-article-content h2 {
  font-size: 1.575rem;
  font-weight: 600;
  color: #004154;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #a7c4d2;
}
.wp-article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #23282d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.wp-article-content p {
  margin-bottom: 1rem;
  color: #555;
}
.wp-article-content ul,
.wp-article-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}
.wp-article-content li {
  color: #555;
  align-items: center;
  padding-left: 1.5rem;
  position: relative;
}
.wp-article-content code {
  background-color: #f5f5f5;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  color: #d63638;
}
.wp-article-content pre {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.wp-article-content pre code {
  background: none;
  padding: 0;
  color: #23282d;
}
.wp-callout {
  padding: 1.5rem;
  border-left: 4px solid;
  border-radius: 4px;
  margin: 1.5rem 0;
}
.wp-callout-info {
  background-color: #fffbf0;
  border-color: #ffd903;
}
.wp-callout-warning {
  background-color: #fff8e5;
  border-color: #f0b849;
}
.wp-callout-warning .bi {
  color: #f0b849;
}
.wp-callout-success {
  background-color: #edf7ed;
  border-color: #46b450;
}
.wp-callout-success .bi {
  color: #46b450;
}
.wp-callout-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #23282d;
}
.wp-callout p {
  margin: 0;
  font-size: 0.875rem;
}
.wp-footer {
  background-color: #2d2d2d;
  color: #e5e5e5;
  padding: 0.4rem 2rem;
  border-top: 1px solid #32373c;
  margin-top: 5rem;
}
.wp-footer-content {
  max-width: 1920px;
  margin: 0 auto;
}
.wp-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.wp-footer-section h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.wp-footer-section ul {
  list-style: none;
}
.wp-footer-section li {
  margin-bottom: 0.5rem;
}
.wp-footer-section a {
  color: #a0a5aa;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.wp-footer-section a:hover {
  color: #ff9103;
}
.wp-footer-bottom {
  padding-top: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}
.wp-footer-powered {
  color: #d3d3d3;
  margin-bottom: 0;
}
.wp-footer-powered span {
  color: #ffffff;
  font-weight: 600;
}
.wp-mobile-toggle {
  display: none;
  position: fixed;
  top: 51px;
  left: 0rem;
  z-index: 999;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.custom-modal-content {
  background: #fff;
  width: 90%;
  max-width: 450px;
  padding: 25px;
  border-radius: 12px;
  animation: fadeIn 0.3s ease;
}
.custom-modal-close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}
.custom-modal-content h2 {
  margin-top: 0;
}
.custom-modal-content form input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.modal-submit-btn {
  width: 100%;
  padding: 12px;
  background: #ff7d00;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.wp-sidebar-actions {
  position: absolute;
  top: 15px;
  right: 25px;
  background-color: #fff2e0;
  border: 1px solid #ffd6a1;
  color: #ff9103;
  padding: 5px;
  font-size: 20px;
  border-radius: 50%;
  font-weight: bolder;
  cursor: pointer;
  width: 36px;
  height: 36px;
  text-align: center;
}
i#toggleAllBtn {
  position: relative;
  top: -3px;
}
.mouse-icon::before,
.arrow-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  margin-right: 6px;
}
.mouse-icon::before {
  background-image: url(../assets/img/mouser-icon.svg);
  background-size: 70%;
}
.arrow-icon::before {
  background-image: url(../assets/img/right-arrows_icon.png);
  background-size: 80%;
}
.cusBorImg {
  border: 2px solid #004154;
}
.backtoTop {
  display: block;
  width: fit-content;
  position: absolute;
  bottom: 55px;
  right: 25px;
  cursor: pointer;
  background: white;
  border-radius: 50%;
  outline: 1px solid #ff9103;
  transition: all 0.3s ease;
}
.backtoTop:hover {
  bottom: 65px;
}
.btn-previous,
.btn-next {
  border: 1px solid #ff9103;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}
.btn-previous:hover,
.btn-next:hover {
  background-color: #ff9103;
  color: #fff
}
@media (max-width: 1024px) {
  .wp-mobile-toggle {
    display: block;
  }
  .wp-desk-toggle {
    display: none;
  }
  .wp-sidebar {
    position: fixed;
    left: -280px;
    transition: left 0.3s;
    z-index: 998;
  }
  .wp-sidebar.open {
    left: 0;
  }
  /* .wp-main { padding: 2rem 1.5rem; } */
  .wp-main {
    padding: 1.5rem 1rem;
    margin-left: 0;
  }
  .wp-breadcrumb {
    margin-left: 0;
  }
  .wp-article-header {
    margin-left: 0;
    margin-right: 0;
  }
  .wp-article-content {
    margin-left: 0;
    margin-right: 0;
  }
  .shadow {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  p {
    text-align: left;
  }
  .wp-header-top {
    padding: 1rem;
  }
  .wp-nav {
    padding: 0 1rem;
    overflow-x: auto;
  }
  .wp-article-title {
    font-size: 1.875rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
