.select-wrapper {
    margin: auto;
    max-width: 600px;
    width: calc(100% - 35px);
}

.select-pure__select, .report-filter-date {
    align-items: center;
    background: #f9f9f8;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: #363b3e;
    cursor: pointer;
    display: flex;
    /* font-size: 16px; */
    font-weight: 500;
    justify-content: left;
    /*min-height: 44px;*/
    min-height: 35px;
    margin: 5px 0px;
    padding: 5px 10px;
    position: relative;
    transition: 0.2s;
    width: 100%;
}

.report-filter-date {
    width: 48%;
    float: left;
    display: none;
}

#date-from-filter {
    margin-right: 2%;
}

#date-to-filter {
    margin-left: 2%;
}

.select-pure__options {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: #363b3e;
    display: none;
    left: 0;
    max-height: 400px;
    overflow-y: scroll;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 5;
}

.select-pure__select--opened .select-pure__options {
    display: block;
}

.select-pure__option {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
    box-sizing: border-box;
    padding: 8px;
}

.select-pure__option--selected {
    /*color: #e4e4e4;
    cursor: initial;
    pointer-events: none;*/
    display: none;
}

.select-pure__option--hidden {
    display: none;
}

.select-pure__selected-label {
    background: #5e6264;
    border-radius: 4px;
    color: #fff;
    cursor: initial;
    display: inline-block;
    margin: 5px 10px 5px 0;
    padding: 3px 7px;
}

.select-pure__selected-label:last-of-type {
    margin-right: 0;
}

.select-pure__selected-label i {
    cursor: pointer;
    display: inline-block;
    margin-left: 7px;
}

.select-pure__selected-label i:hover {
    color: #e4e4e4;
}

.select-pure__autocomplete {
    background: #f9f9f8;
    border-bottom: 1px solid #e4e4e4;
    border-left: none;
    border-right: none;
    border-top: none;
    box-sizing: border-box;
    /* font-size: 16px; */
    outline: none;
    /*padding: 10px;*/
    padding: 8px;
    padding: 8px;
    width: 100%;
}

.select-pure__placeholder {
    padding-left: 5px;
}

.select-pure__placeholder--hidden {
    display: none;
}

.reports-form {
    line-height: 1;
}

.reports-subtitle {
    margin: 15px 0px 10px 0px;
    width: 90%;
    display: inline-block;
}

.remove-selection{
    text-align: right;
    width: 10%;
    float: right;
    color: #AAAAAA;
    margin: 15px 0px 10px 0px;
    visibility: hidden;
}

.reports-horizontal-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.reports-horizontal-boxitem {
    flex-basis: 48%;
}


#report-filter-category {
    margin: 0px 10px;
}

#results-grid {
    margin-top: 20px;
}