/* Fiveters Elements - Off Canvas Header */

.fiveters-och {
    --fiveters-och-speed: 550ms;
    position: relative;
    width: 100%;
    z-index: 99990;
    visibility: visible !important
    ;
}

.fiveters-och__header {
    position: relative;
    width: 100%;
    z-index: 2;
    background: #fff;
}

.fiveters-och__header-inner {
    
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
   
}

.fiveters-och__logo {
    display: flex;
    align-items: center;
}

.fiveters-och__logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.fiveters-och__logo img {
    display: block;
    width: 160px;
    height: auto;
    max-width: 100%;
}

.fiveters-och__text-logo {
    color: #111;
    font-size: 20px;
    font-weight: 600;
}

.fiveters-och__toggle,
.fiveters-och__close,
.fiveters-och__submenu-toggle,
.fiveters-och__drill-back {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.fiveters-och button.fiveters-och__toggle {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fiveters-och__header button.fiveters-och__toggle:hover,.fiveters-och__header button.fiveters-och__toggle:focus,button.fiveters-och__close,button.fiveters-och__close:focus,button.fiveters-och__close:hover,button.fiveters-och__submenu-toggle,button.fiveters-och__submenu-toggle:focus,button.fiveters-och__submenu-toggle:hover,button.fiveters-och__drill-back,button.fiveters-och__drill-back:focus,button.fiveters-och__drill-back:hover{ background:transparent;color:#000; }
.fiveters-och__toggle > img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.fiveters-och__hamburger {
    width: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fiveters-och__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
    transform-origin: center;
    transition: transform .3s ease, opacity .3s ease;
    visibility: visible;
}

.fiveters-och__overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: #000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--fiveters-och-speed) ease, visibility var(--fiveters-och-speed) ease;
}

.fiveters-och  .fiveters-och__panel {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 77vh !important;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: #fff;
    transform: translateY(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--fiveters-och-speed) cubic-bezier(.77,0,.175,1), visibility var(--fiveters-och-speed) ease;
    overflow: hidden;
}

.fiveters-och--left .fiveters-och__panel {
    left: 0;
    right: auto;
    bottom: 0;
    transform: translateX(-110%);
}

.fiveters-och--right .fiveters-och__panel {
    left: auto;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
}

.fiveters-och.is-open .fiveters-och__overlay {
    opacity: .45;
    visibility: visible;
    pointer-events: auto;
}

.fiveters-och.is-open .fiveters-och__panel {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.fiveters-och--left.is-open .fiveters-och__panel,
.fiveters-och--right.is-open .fiveters-och__panel {
    transform: translateX(0);
}

.fiveters-och.is-open .fiveters-och__hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.fiveters-och.is-open .fiveters-och__hamburger span:nth-child(2) {
    opacity: 0;
}

.fiveters-och.is-open .fiveters-och__hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.fiveters-och__panel-header {
    flex: 0 0 auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}

.fiveters-och__panel-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #111;
}

.fiveters-och__close {
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fiveters-och__close img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.fiveters-och__close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #111;
}

.fiveters-och__close span:first-child {
    transform: rotate(45deg);
}

.fiveters-och__close span:last-child {
    transform: rotate(-45deg);
}

.fiveters-och__navigation {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 10px 24px 40px;
}

.fiveters-och__menu,
.fiveters-och__menu ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.fiveters-och__menu li::marker,
.fiveters-och__menu ul li::marker,
.fiveters-och__drill-view li::marker{
    content: none !important;
}

.fiveters-och__menu li {
    list-style: none !important;
    float: none !important;
}

.fiveters-och__menu li > a {
    box-sizing: border-box;
}

.fiveters-och__menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.fiveters-och__menu > li ,.fiveters-och__drill-view > li{
    border-bottom: 1px solid #eee;
}

.fiveters-och__menu li > a , .fiveters-och__drill-view li > a {
    position: relative;
    display: block;
    padding: 18px 55px 18px 0;
    color: #111;
    font-size: 22px;
    line-height: 1.3;
    text-decoration: none;
    transition: color .25s ease;
}

.fiveters-och__menu li > a:hover,
.fiveters-och__menu li.current-menu-item > a,
.fiveters-och__menu li.current-menu-ancestor > a {
    color: #666;
}

.fiveters-och__menu .sub-menu {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: height .4s cubic-bezier(.4,0,.2,1), opacity .25s ease, visibility .25s ease;
}

.fiveters-och__menu li.is-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.fiveters-och__menu .sub-menu li > a {
    padding: 12px 50px 12px 20px !important;
    color: #555 !important;
    font-size: 17px !important;
}

.fiveters-och__menu .sub-menu .sub-menu li > a {
    padding-left: 40px;
    font-size: 15px !important;
}

.fiveters-och__submenu-toggle {
       position: absolute;
    top: -5px;
    right: 0;
    width: 100%;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: end;
    color: inherit;
    z-index: 2;
}

.fiveters-och__submenu-arrow {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    transition: transform .3s ease;
}

.fiveters-och__menu li.is-submenu-open > .fiveters-och__submenu-toggle .fiveters-och__submenu-arrow {
    transform: rotate(45deg);
}

/* True drill-down navigation */
.fiveters-och__navigation--drill {
    overflow: hidden;
    padding: 0;
}

.fiveters-och__navigation--drill > .fiveters-och__menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 10px 24px 40px;
    box-sizing: border-box;
    transform: translateX(0);
    transition: transform .42s cubic-bezier(.77,0,.175,1);
}

.fiveters-och__navigation--drill .fiveters-och__menu > li > .sub-menu {
    display: none;
}

.fiveters-och__drill-view {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    box-sizing: border-box;
    background: inherit;
    padding: 0 24px 40px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .42s cubic-bezier(.77,0,.175,1), opacity .25s ease;
    z-index: 3;
}

.fiveters-och__drill-view.is-active {
    transform: translateX(0);
    opacity: 1;
}

.fiveters-och__drill-back {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #eee;
    color: #111;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
}

.fiveters-och__drill-back-arrow {
    width: 10px;
    height: 10px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.fiveters-och__drill-back-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fiveters-och__drill-menu {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0 !important;
}

.fiveters-och__drill-menu .sub-menu {
    display: none;
}

.fiveters-och__drill-menu > li > a {
    padding-top: 18px;
    padding-bottom: 18px;
}

body.fiveters-och-lock {
    overflow: hidden;
}

.fiveters-och-editor-notice {
    padding: 15px;
    border: 1px dashed #999;
    background: #f7f7f7;
    color: #333;
}

@media (max-width: 767px) {
    

    .fiveters-och__navigation--drill > .fiveters-och__menu {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fiveters-och__drill-view {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fiveters-och__navigation {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fiveters-och__panel-header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fiveters-och__menu li > a {
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fiveters-och *,
    .fiveters-och *::before,
    .fiveters-och *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

.elementor-19 .elementor-element.elementor-element-2476d34 header .fiveters-och__header-inner,.fiveters-och header div.fiveters-och__.header-inner,.fiveters-och .fiveters-och__header{min-height:0 !important;}
.sub-menu.fiveters-och__drill-menu > li > a,.elementor-19 .elementor-element.elementor-element-2476d34 .fiveters-och__menu > li > a{padding: 12px 12px 12px 0 !important;font-size:18px !important}
