.react-select-container {
    margin: 0px 8px;
}

.per_page-field {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 123%;
    color: var(--gray);
}

div.react-select__indicator,
div.react-select__value-container {
    padding: 0;
}

div.react-select__value-container {
    padding: 8px 10px 8px 0px;
}

div.react-select__control {
    border-radius: 0;
    border: 1px solid var(--gray-light);
    box-shadow: none !important;
}

div.react-select__value-container .react-select__single-value {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    text-align: center;
    color: var(--gray-dark);
    text-align: left;
}

div.react-select__control:hover {
    border-color: var(--gray-light);
    box-shadow: none;
}

.react-select__menu {
    margin: 0;
}

.react-select__menu .react-select__menu-list {
    background: #fff;
    border-radius: none;
    box-shadow: 0 2px 30px 0 rgba(46, 46, 45, 0.15);
    border: none;
}

.per_page-field .react-select-container {
    margin: 0px 8px;
}
/* Native select used in place of react-select for the per-page picker */
.per_page-native-select {
    border-radius: 0;
    border: 1px solid var(--gray-light);
    background: #fff;
    padding: 8px 16px;
    margin: 0 8px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    color: var(--gray-dark);
    outline: none;
    cursor: pointer;
}
