Dropdown and header of the table are absolute-positioned.
Dropdown has "z-index: 20" Header has "z-index: 10" "top" and "left" properties of dropdown are set in code.
here are styling of dropdown and header
.data-table-head {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex: 0 0 auto;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 12;
}  
 .custom-select-list {
        position: absolute;
        margin: 34px 0 0 0;
        min-width: 84px;
        font-weight: normal;
        right: 15px;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translateZ(1px);
        z-index: 10000;
 }
Dropdown should be above the table header.
The issue appears only in Safari on iOS devices - dropdown is under the header. Does anyone know how to solve this problem?

 
    