.wd-sticky-nav {
    position: fixed;
    inset-block: 0;
    right: 0;
    z-index: 393;
    display: flex;
    flex-direction: column;
    width: var(--wd-sticky-nav-w);
    background-color: var(--bgcolor-white);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);     border-left: 1px solid rgba(119, 119, 119, .12);
}
.wd-sticky-nav .wd-nav-vertical {
    --nav-drop-sp: 1px;
}
.wd-sticky-nav:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    visibility: visible;
    transition: visibility 0s ease 0.4s;
}
.wd-sticky-nav:is(:hover, .wd-opened) {
    width: 275px;
}
.wd-sticky-nav:is(:hover, .wd-opened):after {
    visibility: hidden;
}
.wd-sticky-nav:not(:hover) .wd-dropdown {
    opacity: 0;
    visibility: hidden;
}
.wd-sticky-nav-title {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin: 0;
    padding: 0 15px;
    height: 44px;
    border-radius: calc(var(--wd-brd-radius) * 100);
    background: var(--wd-primary-color);
    color: #fff;
    cursor: default;
}
.wd-sticky-nav-title:before {
    flex: 0 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    content: "\f15a";
    font-family: "woodmart-font";
}
.wd-sticky-nav-title span {
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}
.wd-nav-sticky {
    --nav-gap-v: 0;
    --nav-pd: 4px 20px;
    --nav-color-hover: var(--wd-primary-color);
    flex: 0 0 auto;
    pointer-events: none;
}
.wd-nav-sticky > li {
    position: relative !important;
}
.wd-nav-sticky > li > a {
    min-width: 1px;
    min-height: 45px;
    font-size: 16px;
    text-transform: unset;
    padding: 7px 9px;
}

.wd-nav-sticky > li > a:hover, .wd-nav-sticky > li.is-active>a {
    color: #fff;
    background-color: var(--wd-primary-color);
    text-decoration: none;
}
.menu-item > a .wd-nav-img {
    transition: filter 0.3s ease;
}

.wd-nav-img {
    transition: filter 0.25s ease;
}

/* hover + active */
.menu-item > a:hover .wd-nav-img,
.menu-item.is-active > a .wd-nav-img {
    filter: brightness(0) invert(1);
}

.wd-nav-sticky > li > a .wd-nav-img {
flex: 0 0 auto;
    margin-left: 0;
    max-width: none;
    max-height: none;
    width: 25px !important;
    height: 25px;
    object-position: 50% 50%;
    object-fit: contain;
}
.wd-nav-sticky > li > a .nav-link-text {
    display: inline-flex;
    align-items: center;
    height: 36px;
}
.wd-nav-sticky .wd-dropdown-menu {
    border-end-start-radius: 0;
    border-start-start-radius: 0;
}
.wd-nav-sticky .wd-dropdown-menu:is(.wd-design-sized, .wd-design-full-width) {
    min-height: var(--wd-dropdown-height);
}
.wd-nav-sticky .wd-dropdown-menu:is(.wd-design-sized, .wd-design-full-width) .wd-dropdown-inner {
    height: var(--wd-dropdown-height);
}
.wd-nav-sticky .wd-dropdown-menu.wd-design-full-width {
top: 0;
    bottom: auto;
    left: auto;
    right: 100%;
}
.wd-nav-sticky .wd-dropdown-menu.wd-design-full-height {
    position: fixed;
    inset-block: var(--wd-admin-bar-h) 0;
    inset-inline-start: 275px;
    max-width: calc(100vw - var(--wd-scroll-w) - 275px);
    min-height: unset;
    max-height: var(--wd-dropdown-height);
    --wd-dropdown-height: calc(100vh - var(--wd-admin-bar-h));
}
.wd-nav-sticky .wd-dropdown-menu.wd-design-aside .wd-sub-menu-wrapp,
.wd-nav-sticky .wd-dropdown-menu.wd-design-aside .wd-sub-menu-wrapp > .wd-sub-menu {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.wd-nav-sticky .wd-dropdown-menu.wd-design-aside .wd-sub-menu-wrapp > li:first-child > a,
.wd-nav-sticky .wd-dropdown-menu.wd-design-aside .wd-sub-menu-wrapp > .wd-sub-menu > li:first-child > a {
    border-top-right-radius: 0;
}
.wd-nav-sticky .wd-dropdown-menu.wd-design-aside .wd-sub-menu-wrapp > li:last-child > a,
.wd-nav-sticky .wd-dropdown-menu.wd-design-aside .wd-sub-menu-wrapp > .wd-sub-menu > li:last-child > a {
    border-bottom-right-radius: 0;
}
.wd-sticky-nav:is(:hover, .wd-opened) .wd-nav-sticky {
    pointer-events: unset;
}
.wd-sticky-nav:is(:hover, .wd-opened) .wd-nav-sticky > li > a .nav-link-text:not(:first-child) {
    margin-right: 10px;
}
.wd-sticky-nav-content {
    margin-top: auto;
    padding: 8px;
    min-width: 275px;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
}
.wd-sticky-nav:is(:hover, .wd-opened) .wd-sticky-nav-content {
    opacity: 1;
    transition: opacity 0.25s ease 0.12s;
    pointer-events: auto;
}
.wd-sticky-nav-title span,
.wd-nav-sticky > li > a:after,
.wd-nav-sticky > li > a .nav-link-text,
.wd-nav-sticky > li > a .menu-label {
    max-width: 0;
    width: 0;
    opacity: 0;
}
.wd-sticky-nav:is(:hover, .wd-opened) .wd-sticky-nav-title span,
.wd-sticky-nav:is(:hover, .wd-opened) .wd-nav-sticky > li > a:after,
.wd-sticky-nav:is(:hover, .wd-opened) .wd-nav-sticky > li > a .nav-link-text,
.wd-sticky-nav:is(:hover, .wd-opened) .wd-nav-sticky > li > a .menu-label {
    max-width: none;
    width: auto;
    opacity: 1;
    transition: opacity 0.25s ease 0.12s;
}
@media (min-width: 1025px) {
    .admin-bar .wd-sticky-nav {
        top: var(--wd-admin-bar-h);
    }
    .wd-sticky-nav-enabled {
        margin-right: var(--wd-sticky-nav-w);
        --wd-sticky-nav-w: 50px;
    }
    .wd-sticky-nav-enabled:not([class*="wrapper-boxed"]) .whb-header.whb-sticky-real.whb-sticked .whb-main-header {
        margin-right: var(--wd-sticky-nav-w);
    }
    .wd-sticky-nav-enabled .whb-sticky-header.whb-clone {
        margin-right: var(--wd-sticky-nav-w);
    }
    .wd-sticky-nav-enabled :is(.woocommerce-store-notice, .header-banner, .wd-sticky-btn, .wd-sidebar-opener) {
        right: var(--wd-sticky-nav-w);
    }
    .wd-sticky-nav-enabled [data-vc-full-width] .wd-slider {
        margin-right: var(--wd-sticky-nav-w);
    }
    .wd-sticky-nav-enabled [data-vc-full-width] .wd-slider.wd-section-stretch-content {
        margin-right: calc(var(--wd-sticky-nav-w) / 2);
    }
}

 .menu-entry-content {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column-reverse;
    margin: auto 2px 15px;
}

.menu-social-buttons .wd-nav>li>a .wd-nav-icon, .menu-social-buttons .wd-nav>li>a .wd-icon {
    font-size: 14px;
}

span.social-label-default {
align-self: flex-start;
    margin-top: 3px;
    margin-right: 8px;
    width: auto;
    /* transform: rotate(180deg); */
    writing-mode: vertical-rl;
    -ms-block-progression: rl;
}

ul.menu.wd-nav.wd-nav-vertical.wd-nav-sticky.wd-social-icons li a {
    padding: 0 13px;
    min-height: 0;
}


.wd-sticky-nav:is(:hover, .wd-opened)  .menu-entry-content {display: block;}

.wd-sticky-nav:is(:hover, .wd-opened)  span.social-label-default {
    width: auto;
    writing-mode: horizontal-tb;
    -ms-block-progression: horizontal-tb;
    color: var(--wd-alternative-color);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    padding: 0 0 5px;
    letter-spacing: 2px;
    border-bottom: 3px solid #ebebeb;
    display: block;
    margin: 0 15px 0px 10px;
}
.wd-sticky-nav:is(:hover, .wd-opened)  span.social-label-default:before {
    background-color: var(--wd-primary-color);
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    margin-left: 7px;
}
.wd-sticky-nav:is(:hover, .wd-opened)  span.social-label-default:after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: inherit;
    width: 70px;
    height: 3px;
    background: var(--wd-primary-color);
}

ul.menu.wd-nav.wd-nav-vertical.wd-nav-sticky.wd-social-icons {
    gap: 0;
}