@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,700;1,100;1,200;1,300;1,400;1,700&display=swap");
.opacity-75 {
  opacity: 0.75;
  filter: alpha(opacity=75);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.opacity-50 {
  opacity: 0.5;
  filter: alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.opacity-25 {
  opacity: 0.25;
  filter: alpha(opacity=25);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.opacity-hover-100:hover {
  filter: alpha(opacity=100);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  opacity: 1 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.opacity-hover-75:hover {
  filter: alpha(opacity=75);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  opacity: 0.75 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.opacity-hover-50:hover {
  filter: alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  opacity: 0.5 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.opacity-hover-25:hover {
  filter: alpha(opacity=25);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25);
  opacity: 0.25 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.dark-mode .bg-theme-accent {
  background-color: #1d1d1d !important;
  color: white !important;
}
.dark-mode .border-theme-accent {
  border-color: #1d1d1d !important;
}
.dark-mode .product-total-table tr:last-child td {
  background-color: #1d1d1d !important;
}

.bg-theme-primary {
  background-color: #FFA100;
}

.bg-theme-primary-light {
  background-color: #FFC25A;
}

.bg-theme-primary-verylight {
  background-color: #FFF0D6;
}

.bg-theme-secondary {
  background-color: #1E1E1E;
}

.bg-theme-secondary-light {
  background-color: #A7A6A6;
}

.bg-theme-secondary-verylight {
  background-color: #E9E9E9;
}

.bg-theme-accent {
  background-color: #FFC500;
}

.bg-theme-accent-light {
  background-color: #FFD95C;
}

.bg-theme-accent-verylight {
  background-color: #FFEEB5;
}

.bg-theme-dark {
  background-color: rgb(44, 35, 18);
}

.text-theme-primary {
  color: #FFA100;
}

.text-theme-primary-light {
  color: #FFC25A;
}

.text-theme-primary-verylight {
  color: #FFF0D6;
}

.text-theme-secondary {
  color: #1E1E1E;
}

.text-theme-secondary-light {
  color: #A7A6A6;
}

.text-theme-secondary-verylight {
  color: #E9E9E9;
}

.text-theme-accent {
  color: #FFC500;
}

.text-theme-accent-light {
  color: #FFD95C;
}

.text-theme-accent-verylight {
  color: #FFEEB5;
}

.text-theme-dark {
  color: rgb(44, 35, 18);
}

.btn-theme-primary {
  background-color: #FFA100 !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-primary-light {
  background-color: #FFC25A !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-primary-verylight {
  background-color: #FFF0D6 !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-secondary {
  background-color: #1E1E1E !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-secondary-light {
  background-color: #A7A6A6 !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-secondary-verylight {
  background-color: #E9E9E9 !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-accent {
  background-color: #FFC500 !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-accent-light {
  background-color: #FFD95C !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-accent-verylight {
  background-color: #FFEEB5 !important;
  display: inline-block;
  padding: 1em;
}

.btn-theme-dark {
  background-color: rgb(44, 35, 18) !important;
  display: inline-block;
  padding: 1em;
}

.text-theme-med {
  font-size: 14px;
}

.anchor-dark {
  color: #FFC25A;
}
.anchor-dark:hover {
  color: white;
}

.hover-bg-theme-primary:hover {
  background-color: #FFA100;
}

.hover-bg-theme-primary-light:hover {
  background-color: #FFC25A;
}

.hover-bg-theme-primary-verylight:hover {
  background-color: #FFF0D6;
}

.hover-bg-theme-accent:hover {
  background-color: #FFC500;
}

.hover-bg-theme-accent-light:hover {
  background-color: #FFD95C;
}

.hover-bg-theme-accent-verylight:hover {
  background-color: #FFEEB5;
}

.hover-bg-theme-secondary:hover {
  background-color: #1E1E1E;
}

.hover-bg-theme-dark:hover {
  background-color: rgb(44, 35, 18);
}

.border-theme-primary {
  border-color: #FFA100 !important;
}

.border-theme-primary-light {
  border-color: #FFC25A !important;
}

.border-theme-primary-verylight {
  border-color: #FFF0D6 !important;
}

.border-theme-accent {
  border-color: #FFC500 !important;
}

.border-theme-accent-light {
  border-color: #FFD95C !important;
}

.border-theme-accent-verylight {
  border-color: #FFEEB5 !important;
}

.hover-underline:hover {
  text-decoration: underline;
  color: black;
}

.hover:hover .img-hover-zoom {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.hover .img-hover-zoom {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.border-red {
  border-color: #1E1E1E !important;
  border-width: 2px !important;
}

.primary-svg svg {
  fill: #FFA100;
}

.secondary-svg svg {
  fill: #1E1E1E;
}

.accent-svg svg {
  fill: #FFC500;
}

.hover-opacity-100:hover:hover {
  filter: alpha(opacity=100);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  opacity: 1 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hover-opacity-75:hover:hover {
  filter: alpha(opacity=75);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  opacity: 0.75 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hover-opacity-50:hover:hover {
  filter: alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  opacity: 0.5 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hover-opacity-25:hover:hover {
  filter: alpha(opacity=25);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=25);
  opacity: 0.25 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.btn-sm {
  font-size: 14px;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

header,
footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#primary.content-area, .wedocs-single-wrap, #main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main {
  width: 100%;
}

.wedocs-single-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.wedocs-sidebar {
  width: 280px;
  -ms-flex-item-align: stretch;
      align-self: stretch; /* IMPORTANT */
}

.wedocs-single-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

html, body, ul {
  margin: 0;
  padding: 0;
}

section {
  padding: 2rem 0;
}

ol, ul {
  padding-left: 1.2em;
}

ul li {
  margin-bottom: 0.2em;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #1E1E1E;
}
a:hover {
  color: black;
}

.container-xl {
  padding: 0;
}
@media screen and (max-width: 1200) {
  .container-xl {
    padding: 1em;
  }
}

.flow > * + * {
  -webkit-margin-before: var(--flow-space, 1em);
          margin-block-start: var(--flow-space, 1em);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.1em;
  line-height: 1.5;
}

body {
  color: #1E1E1E !important;
  background-color: #FFF0D6;
}

.para, p {
  line-height: 1.5;
  color: #1E1E1E;
  margin-bottom: 1em;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
}

body {
  font-family: "Fira Sans", sans-serif;
}

.font-primary {
  font-family: "Fira Sans", sans-serif;
}

.font-secondary {
  font-family: "Fira Sans", sans-serif;
}

h1, .h1 {
  font-size: 24.01px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  h1, .h1 {
    font-size: calc(24.01px + 3.99 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 28px;
  }
}

h2, .h2 {
  font-size: 22.295px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  h2, .h2 {
    font-size: calc(22.295px + 3.705 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 26px;
  }
}

h3, .h3 {
  font-size: 20.58px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  h3, .h3 {
    font-size: calc(20.58px + 3.42 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 24px;
  }
}

h4, .h4 {
  font-size: 18.865px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  h4, .h4 {
    font-size: calc(18.865px + 3.135 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 22px;
  }
}

h5, .h5 {
  font-size: 17.15px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  h5, .h5 {
    font-size: calc(17.15px + 2.85 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  h5, .h5 {
    font-size: 20px;
  }
}

h6, .h6 {
  font-size: 15.435px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  h6, .h6 {
    font-size: calc(15.435px + 2.565 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  h6, .h6 {
    font-size: 18px;
  }
}

p, .para, body {
  font-size: 14.85712px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  p, .para, body {
    font-size: calc(14.85712px + 1.14288 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  p, .para, body {
    font-size: 16px;
  }
}

.font-size-lg, .font-size-lg * {
  font-size: 16.71426px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  .font-size-lg, .font-size-lg * {
    font-size: calc(16.71426px + 1.28574 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  .font-size-lg, .font-size-lg * {
    font-size: 18px;
  }
}

.font-size-md, .font-size-md * {
  font-size: 14.85712px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  .font-size-md, .font-size-md * {
    font-size: calc(14.85712px + 1.14288 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  .font-size-md, .font-size-md * {
    font-size: 16px;
  }
}

.font-size-sm, .font-size-sm * {
  font-size: 12.99998px;
}
@media (min-width: 576px) and (max-width: 1200px) {
  .font-size-sm, .font-size-sm * {
    font-size: calc(12.99998px + 1.00002 * (100vw - 576px) / 624);
  }
}
@media (min-width: 1200px) {
  .font-size-sm, .font-size-sm * {
    font-size: 14px;
  }
}

.container-xl {
  max-width: 1600px;
  margin: auto;
}
@media screen and (max-width: 1599px) {
  .container-xl {
    padding: 0 1em;
  }
}
@media screen and (max-width: 568px) {
  .container-xl {
    padding: 0 0.5em;
  }
}

.row {
  margin: 0 !important;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .vh-lg-100 {
    min-height: 100vh;
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-100 {
    min-height: 100vh;
  }
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hover-underline:hover {
  text-decoration: underline;
  color: black;
}

.hover:hover .img-hover-zoom {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hover .img-hover-zoom {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hover .hover-show {
  opacity: 0;
  filter: alpha(opacity=0);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hover:hover .hover-show {
  opacity: 1;
  filter: alpha(opacity=100);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.shadow {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2) !important;
  -moz-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.rounded {
  border-radius: 0.25em;
}

.jump {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.jump:hover {
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.transition, .blink {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 562px) {
  .wedocs-hide-mobile {
    display: block;
  }
  .wedocs-single-wrap {
    display: block;
    padding: 0 0px;
  }
}
@media screen and (max-width: 991px) {
  .wedocs-breadcrumb {
    margin-top: 7px;
  }
}
.page-id-9 h1, .page-id-9 .sidebar-toggle {
  display: none;
}

ol.wedocs-breadcrumb li:nth-child(4), ol.wedocs-breadcrumb li:nth-child(3) {
  display: none !important;
}

#front-wedoc .wedocs-docs-single, .wedocs-shortcode-wrap .wedocs-docs-single {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.0745098039);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.0745098039);
  line-height: 1.3;
  padding: 1em 0.25em 0.5em 1em !important;
  background-color: white;
  border-width: 0;
}
@media screen and (max-width: 756px) {
  #front-wedoc .wedocs-docs-single, .wedocs-shortcode-wrap .wedocs-docs-single {
    float: none;
    width: 100% !important;
  }
}
#front-wedoc .wedocs-docs-single h3, .wedocs-shortcode-wrap .wedocs-docs-single h3 {
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections li, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections li {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 0.5em;
  background-color: #FFC25A;
  padding: 0.5em 0.75em;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections li:last-child, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections li:last-child {
  margin-bottom: 0;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections li:hover svg, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections li:hover svg {
  stroke: black !important;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections li .icon-view, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections li .icon-view {
  font-size: 15px;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections ul, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections ul {
  margin-bottom: 0.5em;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections ul li, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections ul li {
  background-color: unset;
  padding: unset;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections ul li a:hover, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections ul li a:hover {
  text-decoration: underline;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections ul.children.has-icon.active, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections ul.children.has-icon.active {
  background-color: #FFF0D6;
  margin-top: -0.5em;
  padding: 0.5em 0.5em 0.2em 30px;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-sections svg, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-sections svg {
  stroke: #6a6a6a !important;
}
#front-wedoc .wedocs-docs-single .inside, .wedocs-shortcode-wrap .wedocs-docs-single .inside {
  height: 295px;
  padding-right: 0.25em;
}
#front-wedoc .wedocs-docs-single hr, .wedocs-shortcode-wrap .wedocs-docs-single hr {
  margin: 0.5em 0 0.5em 0 !important;
  display: none;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-link, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-link {
  font-size: 14px;
  text-align: right;
  margin: 0.75em 0.75em 0 0.75em;
}
#front-wedoc .wedocs-docs-single .wedocs-doc-link:hover, .wedocs-shortcode-wrap .wedocs-docs-single .wedocs-doc-link:hover {
  text-decoration: underline;
}

li.wd-state-open ul.children {
  border-left: 0px solid #e9d6b7 !important;
  margin: 5px 0 5px 10px !important;
}
li.wd-state-open ul.children li {
  margin-bottom: 0px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border: 1px solid #e9d6b7;
  border-top: 0px solid #e9d6b7;
}
li.wd-state-open ul.children li a {
  padding: 10px 10px 8px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
}
li.wd-state-open ul.children li:first-child {
  border-top: 1px solid #e9d6b7;
}
li.wd-state-open ul.children li:hover {
  background-color: rgba(255, 255, 255, 0.8431372549);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
li.wd-state-open ul.children li:hover a {
  color: black !important;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
li.wd-state-open ul.children li.current_page_item {
  border: 0px solid #e9d6b7 !important;
}
li.wd-state-open ul.children li.current_page_item > a {
  border-left: 5px solid #FFA100 !important;
  background-color: #1E1E1E;
  color: white !important;
  padding: 10px 10px 8px 15px;
}

#primary.content-area {
  margin-top: -15px;
}

.wedocs-single-wrap {
  background-color: white;
}
.wedocs-single-wrap .wedocs-sidebar {
  background-color: #d5cab5;
  padding-left: 0em;
  padding-top: 0em;
  margin-right: 8px;
  border-right: 1px solid #dfdfdf;
}
@media screen and (max-width: 991px) {
  .wedocs-single-wrap .wedocs-sidebar {
    position: fixed;
    z-index: 1500;
    background-color: white;
    margin-left: -10px;
  }
}
.wedocs-single-wrap .wedocs-sidebar h3 {
  font-size: 18px;
  font-weight: 400 !important;
  line-height: 1.3;
  margin-bottom: 0.25em !important;
  background-color: #1E1E1E;
  padding: 0.5em 0.5em 0.5em 1em;
  color: white;
}
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li.wd-state-closed {
  background-color: #FFF0D6;
  border-radius: 5px;
}
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li.wd-state-open {
  line-height: 1.3;
  margin-bottom: 0.5em;
  background-color: #FFF0D6;
  padding: 0.5em 0.6em;
  border-radius: 5px;
}
.wedocs-single-wrap .wedocs-sidebar .wedocs-single-search-input {
  margin-left: 0.5em;
  margin-bottom: 0.25em;
  border: unset;
}
.wedocs-single-wrap .wedocs-sidebar .wedocs-single-search-input input {
  margin-bottom: 0.25em;
  width: 98% !important;
}
.wedocs-single-wrap .wedocs-single-content {
  padding: 0;
  border: unset;
}
.wedocs-single-wrap .wedocs-single-content .wedocs-breadcrumb {
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.0588235294);
}
.wedocs-single-wrap .wedocs-single-content .wedocs-breadcrumb {
  margin-bottom: 0.5em !important;
  padding: 11px 7px 9px 10px !important;
  font-size: 13px;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (min-width: 992px) {
  .wedocs-single-wrap .wedocs-single-content .wedocs-breadcrumb {
    margin-left: -7px !important;
  }
}
.wedocs-single-wrap .wedocs-single-content .wedocs-breadcrumb a {
  color: #454545;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wedocs-single-wrap .wedocs-single-content .wedocs-breadcrumb a:hover {
  text-decoration: underline;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wedocs-single-wrap .wedocs-single-content .wedocs-breadcrumb li span.current {
  color: #5f5f5f;
}
.wedocs-single-wrap .wedocs-single-content article {
  padding: 0 1.5em;
}
.wedocs-single-wrap .wedocs-single-content a.wedocs-print-article {
  right: 20px !important;
}

.wedocs-single-wrap .wedocs-sidebar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 375px;
}
@media screen and (min-width: 1401px) {
  .wedocs-single-wrap .wedocs-sidebar {
    width: 450px;
  }
}
@media screen and (max-width: 991px) {
  .wedocs-single-wrap .wedocs-sidebar {
    margin-top: 7px;
  }
}

.wedocs-single-wrap .wedocs-single-content {
  width: 100%;
}

.collapsed .wedocs-sidebar {
  margin-left: -384px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 993px) {
  .collapsed .wedocs-sidebar {
    border-right: 10px solid black;
    margin-left: -365px;
  }
}
@media screen and (min-width: 1401px) {
  .collapsed .wedocs-sidebar {
    margin-left: -440px;
  }
}

@media screen and (max-width: 991px) {
  .expanded-by-default .wedocs-sidebar {
    margin-left: -384px;
  }
}

.collapsed .wedocs-single-content {
  width: 100%;
}
@media screen and (min-width: 993px) {
  .collapsed .wedocs-single-content {
    margin-left: -8px;
  }
}

.collapsed .sidebar-toggle, .sidebar-mob-toggle {
  color: white !important;
  background-color: black !important;
  padding: 2px 6px !important;
}
@media screen and (min-width: 993px) {
  .collapsed .sidebar-toggle, .sidebar-mob-toggle {
    position: fixed;
    top: 81px;
    left: -5px;
    z-index: 1000;
  }
}

.Xcollapsed .sidebar-mob-toggle, .Xexpanded .sidebar-mob-toggle {
  border: 1px solid rgba(0, 0, 0, 0.1490196078) !important;
  background-color: #ffffff !important;
  color: black !important;
  padding: 2px 6px !important;
}

@media screen and (min-width: 992px) {
  .widget-title .sidebar-toggle {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .widget-title .sidebar-toggle {
    display: none !important;
  }
}

.collapsed #main .wedocs-breadcrumb {
  margin-left: 0 !important;
}
@media screen and (max-width: 991px) {
  body.expanded {
    overflow: hidden;
  }
}

.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_parent > a,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_item > a,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.current_page_ancestor > a,
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list > li.wd-state-open > a {
  background: #FFC25A;
  color: black;
  border-radius: 5px;
}

a .wedocs-caret {
  color: #000000 !important;
  border-color: #000000 !important;
}

.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li a {
  padding: 10px 10px 8px 20px;
}
.wedocs-single-wrap .wedocs-sidebar ul.doc-nav-list li a .wedocs-caret {
  margin-top: -2px;
}

.wedocs-shortcode-wrap ul.wedocs-docs-list.col-2 > li:nth-child(2n+1) {
  margin-right: 2% !important;
}

.wedocs-shortcode-wrap ul.wedocs-docs-list.col-2 > li {
  width: 49% !important;
}

.wedocs-shortcode-wrap ul.wedocs-docs-list li.wedocs-docs-single {
  margin-bottom: 2% !important;
}

footer.entry-footer.wedocs-entry-footer .help-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer.entry-footer.wedocs-entry-footer .feedback-content .wedocs-feedback-wrap {
  padding: 0 !important;
}

footer.entry-footer.wedocs-entry-footer .help-content, footer.entry-footer.wedocs-entry-footer .feedback-content .wedocs-feedback-wrap {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.0745098039);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.0745098039);
  border-color: #ffd081;
  height: 80px;
}

footer .wedocs-feedback-wrap ::before {
  font-size: 14px !important;
}

@media screen and (max-width: 756px) {
  footer.entry-footer.wedocs-entry-footer {
    display: block;
  }
  footer.entry-footer.wedocs-entry-footer .help-content {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    margin-right: 0 !important;
    height: 80px;
  }
  footer.entry-footer.wedocs-entry-footer .feedback-content {
    padding: 0px !important;
    width: 100%;
    height: 80px;
  }
  footer .wedocs-feedback-wrap {
    padding: 10px !important;
    line-height: 1.7 !important;
  }
  .wedocs-single-wrap .wedocs-single-content article {
    padding: 0.75em;
  }
}
/*----------------*/
#doc-search:focus {
  border-color: #fcc765;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(138, 106, 47, 0.2078431373);
          box-shadow: 0 0 0 0.25rem rgba(138, 106, 47, 0.2078431373);
}

#doc-results *, #doc-results {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*------guterslide - slideshow ----------*/
.gslider-base-wrapper, .gslider-base-wrapper .swiper-backface-hidden .swiper-slide,
.gslider-flexi-content-wrapper .swiper-slide,
.gslider-logo-carousel-wrapper {
  width: unset !important;
}

.wp-block-gslider-blocks-logo-carousel {
  max-width: 100%;
}
.wp-block-gslider-blocks-logo-carousel .swiper-slide {
  width: 300px;
}
.wp-block-gslider-blocks-logo-carousel .swiper-slide .gslider-logo-item img {
  width: 300px;
}

.gslider-logo-carousel-wrapper .swiper-wrapper {
  max-width: 400px;
}

.gslider-logo-carousel-wrapper .swiper-wrapper figure img {
  max-width: 400px;
}

.gslider-flexi-content-wrapper {
  max-width: 750px !important;
}

/*-----------------copy button extra css needed --------------*/
.wedocs-print-article {
  position: unset !important;
}

header.entry-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*----------pdf---------*/
@media print {
  .wedocs-hide-print, header.bg-white, footer, .wedocs-sidebar {
    display: none !important;
  }
  .wedocs-breadcrumb {
    opacity: 0;
    height: 0;
  }
  article {
    margin: 0 !important;
  }
}
.navbar-nav {
  margin: 0;
  padding: 0;
}
.navbar-nav .nav-item {
  margin-bottom: 0;
}
.navbar-nav .nav-item:not(:last-child) {
  margin-right: 0.25em;
}
.navbar-nav .nav-link {
  border-radius: 5px;
  padding: 6px 15px !important;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.navbar-nav .nav-link:hover {
  background-color: #1E1E1E;
  color: white;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.navbar-nav .current_page_item .nav-link {
  background-color: #FFC500;
  color: black;
  cursor: default;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1254901961);
  padding: 10px 15px;
}

.offcanvas-body {
  padding: 0 10px 10px 10px;
}
@media screen and (max-width: 991px) {
  .offcanvas-body {
    background-color: #FFF0D6;
  }
}

.navbar-toggler {
  border-radius: 5px;
  padding: 8px;
}

@media screen and (max-width: 991px) {
  .navbar {
    padding-top: 5px !important;
  }
  ul#menu-primary {
    margin-right: 0;
  }
  ul#menu-primary li {
    margin-right: 0px;
  }
  .navbar-nav .nav-link {
    border-radius: 0;
    padding: 8px 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0823529412);
  }
  .current-menu-item .nav-link {
    border-bottom: 0px solid rgba(0, 0, 0, 0.1254901961);
  }
}
.navbar-toggler-icon {
  width: 1.75em;
  height: 1.5em;
}

footer a {
  opacity: 0.75;
  -webkit-transition: 0.5;
  transition: 0.5;
}
footer a:hover {
  opacity: 1;
}

@media screen and (max-width: 992px) {
  .footer-nav ul#menu-footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .current_page_item .nav-link {
  cursor: default;
  opacity: 1;
  color: white !important;
}/*# sourceMappingURL=style-theme.css.map */