sticky-nav{
    padding-block: 14px;
    width: 100%;
    transition: all 0.3s;
}
sticky-nav .sticky-nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
sticky-nav.is-fixed{
    position: fixed;
    top: var(--top);
    z-index: 10;
    background-color: rgba(var(--color-background));
}

sticky-nav .button-group{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-left: auto;
    align-items: center;
}
sticky-nav .link-group{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
sticky-nav .add-to{
    flex-shrink: 0;
    --color-button-text:51,51,51;
    --color-button-background:233,255,0;
    --button-border-width:0;
    padding-block: 10px;
}

sticky-nav .sticky-nav-logo{
    width: 150px;
}

sticky-nav .sticky-nav-item a{
    opacity: 0.5;
}

sticky-nav .sticky-nav-item a:hover{
    opacity: 1;
}

sticky-nav .sticky-nav-item a.active{
    opacity: 1;
}
sticky-nav .add-to-wrapper{
    display: flex;
    justify-content: flex-end;
}
@media(max-width:959px){
    sticky-nav .sticky-nav-container{
        flex-direction: column-reverse;
        gap: 15px;
    }
    sticky-nav .scroll-container{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    sticky-nav .scroll-container::-webkit-scrollbar{
        display: none;
    }
    sticky-nav .link-group{
        flex-wrap: nowrap;
    }
    sticky-nav .sticky-nav-item{
        flex: 0 0 auto;
    }
    sticky-nav .add-to-wrapper{
        width: 100%;
        justify-content: center;
    }
}