<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header-container{
    width: 100vw;
    max-width: 100%;
    padding:0;
}

/** MENU ICON */
.btn-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: var(--theme-btn-color);
  background-color: var(--theme-color);
  border: 1px solid;
  border-color: var(--theme-color);
  border-radius: 0;
}
.btn-hamburger:focus-visible{
  outline: initial;
  border: 2px solid #000;
  box-shadow: inset 0 0 0 2px #fff;
}

.btn-hamburger:hover,
.btn-hamburger:active{
  color: var(--theme-btn-color-hover);
  background-color: var(--theme-btn-bgcolor-hover);
  border-color: var(--theme-btn-brcolor-hover);
}

.btn-hamburger svg{
    fill: var(--theme-btn-color);
    width: 38px;
    transition: transform 0.3s;
}

.btn-hamburger:hover svg{
    transform: scale(1.3, 1.3);
    transform-origin: 50% 50%;
}

/** HEADER TOP BAR */
.header-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 948px;
    height: 70px;
    margin: 0 auto;
}

.header-top-actions{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-top-brand{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 50%;
    max-height: 70px;
}
img.header-logo {
    width: 80%;
    max-width: 100%;
}

@media (max-width: 992px){
    img.header-logo {
        margin-right: 15px;
    }
}
/** SIDEBAR
 * -------------------------- */
.sidebar {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 50%;
  min-width: 400px;
  max-width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.sidebar .sidebar-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-sidebar-bgcolor);
}
.sidebar .sidebar-content {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 10vh;
}

.sidebar.overflow-hidden .sidebar-content {
    overflow-y: hidden;
}

.sidebar .menu-title {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 2.8rem;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .sidebar .menu-title {
    font-size: 3.5rem;
  }
}

/** SIDEBAR BTN CLOSE */
.sidebar .btn-menu-close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  background-color: transparent;
  border: 1px solid;
  border-color: transparent;
  opacity: 0.8;
}
.sidebar .btn-menu-close:hover,
.sidebar .btn-menu-close:active{
  opacity: 1;
  background-color: rgba(0,0,0,.8);
}
.sidebar .btn-menu-close svg{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    fill: #fff;
    transform-origin: 50% 50%;
    transform: rotate(0deg) scale(1, 1);
    transition: transform 0.3s linear;
}

.sidebar .btn-menu-close:hover svg,
.sidebar .btn-menu-close:active svg{
    transform: rotate(180deg) scale(1.3, 1.3);
}

.sidebar ul.sidebar-nav {
    
}

.sidebar ul.sidebar-nav &gt; li {
   display: flex;
   align-items: center;
   flex-direction: row;
   flex-wrap: wrap;
   padding: 2px;
}
.sidebar ul.sidebar-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 60px);
  text-wrap: pretty;
}
.sidebar ul.sidebar-nav li a:hover,
.sidebar ul.sidebar-nav li a:active,
.sidebar ul.sidebar-nav li a:focus {

}
.sidebar ul.sidebar-nav li a.is-selected {
  color: var(--theme-sidebar-selected);
}

.sidebar ul.sidebar-nav li span,
.sidebar ul.sidebar-nav li span[role='button'] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
}
.sidebar ul.sidebar-nav li span[role='button']:hover {
    color: rgba(255,255,255, .95);
}
.sidebar ul.sidebar-nav li span i.fa{
    font-size: 25px;
    color: rgba(255,255,255, .6);
}

.sidebar ul.sidebar-nav li span.menu-item .fa{
    font-size: 25px;
    color: rgba(255,255,255, .1);
}

.sidebar .sidebar-nav-l1 &gt; ul {
    width: 100%;
    list-style: none;
    margin-left: 32px;
    padding: 4px 2px;
    transition: height 0.35s ease-in-out;
    overflow: hidden;
}
.sidebar .sidebar-nav-l1 &gt; ul li {
    margin-left: 0;
    padding: 2px;
}
.sidebar .sidebar-nav-l1 &gt; ul li a {
    display: flex;
    align-items: center;
    justify-content: start;
    max-width: calc(100% - 60px);
    min-height: 1rem;
    padding: 5px 12px;
    line-height: 1.5em;
    text-wrap: pretty;
    border: 0;
    color: rgba(255, 255, 255, 0.8);
}

.sidebar .sidebar-nav-l1 &gt; ul li a:hover{
    text-decoration: underline;
}

/** MAIN */
body.dw-menunav-open {
    height: 100vh;
    overflow: hidden;
}

.dkwk-level3-header {
    scroll-margin-top: 70px;
}

.main{
    margin-top: 70px;
}




</pre></body></html>