.menu-container{
    position: relative;
    margin-right: 0;
}

#nav-items {
    align-items: center;
    justify-content: right;
    width: 100%;
}

#nav-items li {
    padding: 0 15px;
    letter-spacing: 0;
}

#nav-items li span,
#nav-items li a {
    font-family: var(--themePrimaryFontFamily);
}

#nav-items li[data-menuname="Login"] span,
#nav-items li[data-menuname="Login"] a {
    width: 128px;
    background: #9949FF;
    color: #fff !important;
    border-radius: 20px;
    cursor: pointer;
    background-image: unset;
    -webkit-text-fill-color: unset;
    transition: all 0.5s ease;
    padding: 9px 0;
    box-sizing: border-box;
    border: 2px solid #9949FF;
}

#nav-items li[data-menuname="Login"] span:hover,
#nav-items li[data-menuname="Login"] a:hover {
    color: #9949FF !important;
	background: transparent;
}

#nav-items li[data-menuname="Login"] > span:after,
#nav-items li[data-menuname="Login"] > a:after {
	content: none;
}

#nav-items li[data-menuname="Buy Ticket"] span,
#nav-items li[data-menuname="Buy Ticket"] a {
    width: 128px;
    background: #fff;
    color: #9949FF !important;
    border-radius: 20px;
    cursor: pointer;
    background-image: unset;
    -webkit-text-fill-color: unset;
    transition: all 0.5s ease;
    padding: 9px 0;
    box-sizing: border-box;
    border: 2px solid #9949FF;
}

#nav-items li[data-menuname="Buy Ticket"] span:hover,
#nav-items li[data-menuname="Buy Ticket"] a:hover {
    color: #fff !important;
	background: #9949FF;
}

#nav-items > li:nth-last-child(2) > span:after,
#nav-items > li:nth-last-child(2) > a:after {
	content: none;
}


/* Conference with Multiple Tracks In-Person */
body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Login"] span, 
body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Login"] a {
    color : #fff !important;
    border: 2px solid #89CC87;
    border-radius: 6px;
    background-color: #89CC87 !important;
}


body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Buy Ticket"] span, 
body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Buy Ticket"] a{
    color : #fff !important;
    border: 2px solid #89CC87;
    border-radius: 6px;
    background-color: #89CC87 !important;
}

body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Buy Ticket"] span:hover,
body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Buy Ticket"] a:hover {
    border: 2px solid #89CC87 !important;
    background: #fff !important;
    color: #89CC87 !important;
}

body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Login"] span:hover,
body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Login"] a:hover {
    border: 2px solid #89CC87 !important;
    background: #fff !important;
    color: #89CC87 !important;
}

body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Login"] a:hover:after,
body[data-gevme-experience="Conference with Multiple Tracks In-Person"] #nav-items li[data-menuname="Buy Ticket"] a:hover:after {
    display: none;
}
/* 3-day Summit */
body[data-gevme-experience="3-day Summit"] #nav-items li[data-menuname="Buy Ticket"] span, 
body[data-gevme-experience="3-day Summit"] #nav-items li[data-menuname="Buy Ticket"] a{
    color : #3F9739 !important;
    border: 2px solid #3F9739;
    border-radius: 6px;
}


body[data-gevme-experience="3-day Summit"] #nav-items li[data-menuname="Login"] span, 
body[data-gevme-experience="3-day Summit"] #nav-items li[data-menuname="Login"] a{
    background: #3F9739;
    border: 2px solid #3F9739;
    border-radius: 6px;
}

body[data-gevme-experience="3-day Summit"] #nav-items li[data-menuname="Login"] span:hover,
body[data-gevme-experience="3-day Summit"] #nav-items li[data-menuname="Login"] a:hover {
    color: #3F9739 !important;
    background: transparent;
}

body[data-gevme-experience="3-day Summit"] #nav-items li[data-menuname="Buy Ticket"] span:hover,
body[data-gevme-experience="3-day Summit"] #nav-items li[data-menuname="Buy Ticket"] a:hover {
    color: #fff !important;
    background: #3F9739;
}


@media screen and (max-width: 991px){
    #nav-items li[data-menuname="Login"], #nav-items li[data-menuname="Buy Ticket"] {
        position: relative;
        right: 0;
        color: #fff;
        padding: 0;
        line-height: 1;
        top: 0;
        transform: translateY(0%);
    }
    #nav-items li[data-menuname="Login"] span,
    #nav-items li[data-menuname="Login"] a {
        text-align: center;
    }
    #nav-items li[data-menuname="Buy Ticket"] span,
    #nav-items li[data-menuname="Buy Ticket"] a {
        text-align: center;
    }
}