.navbar-bg {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
}

.navbar {
    width: 530px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    border: 1px solid #e8e5ec;
    gap: 0
}

.divider {
    width: 1px;
    height: 26px;
    background: #dcd6e0
}

.dropdown {
    position: relative;
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    user-select: none;
    width: 185px;
    text-align: center;
    white-space: nowrap;
    color: #000
}

.dropdown i {
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform .3s
}

.dropdown.open i {
    transform: rotate(-135deg)
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 6px 0 0 0;
    background: #000;
    color: #888;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
    display: none;
    width: 100%;
    z-index: 100;
    text-align: center;
    list-style: none;
    padding: 0
}

.dropdown-menu li {
    list-style: none;
    padding: 10px 16px;
    text-align: center
}

.dropdown-menu li:hover {
    font-weight: 500;
    color: #fff;
}

.dropdown-menu a {
    text-decoration: none;
    color: inherit;
    display: block
}

.dropdown-menu li:first-child:hover {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px
}

.dropdown-menu li:last-child:hover {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px
}

.dropdown--locked {
    cursor: default
}

.dropdown--locked i {
    display: none
}

.dropdown--locked:hover {
    background: transparent
}