.i-dropdown-nav {
    display: flex;
    margin-bottom: 15px;
}

.i-ddnav-item {
    padding: 0.3125rem 0.625rem;
    padding-left: 2.5em;
    padding-right: 2em;
    margin: 0;
    margin-right: -20px;
    white-space: nowrap;
    height: 42px;
    border: none;
    flex-grow: 1;
    font-size: inherit;
    font-family: inherit;
    clip-path: polygon(20px 50%, 0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    box-shadow: inset 0 0 0 1px #134f48;
}

.i-ddnav-item:first-child {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

.i-ddnav-item:last-child {
    clip-path: polygon(20px 50%, 0 0, 100% 0, 100% 100%, 0 100%);
    margin-right: 0;
}

.i-ddnav-item:first-child:last-child {
    clip-path: none;
    border-radius: 4px;
}

.i-ddnav-selected {
    pointer-events: none;
    background-color: #134f48;
    color: white;
    box-shadow: none;
}

.i-ddnav-normal {
    cursor: pointer;
    background-color: white;
}

.i-ddnav-normal:hover {
    background-color: #c4d3d1;
}

.i-ddnav-disabled {
    pointer-events: none;
    background-color: #e5e5e5;
    color: #9ca3af;
}
