.logo > span {
    font-size: 18px;
    text-align: left;
    padding-left: 23px
}

.filters-page-container {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 79px);
}

.filters-page-content {
    width: 100%
}

.aside-toggle {
    display: flex;
    width: 220px;
    font-size: 13px;
    white-space: nowrap;
}

.aside-toggle .aside-close {
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 1;
    display: none;
}

.aside-toggle a {
    width: 50%;
    position: relative;
    display: block;
    color: #a6d2ed;
    line-height: 50px;
    cursor: pointer;
    text-align: center;
}

.aside-toggle .active {
    background-color: rgba(0,0,0,.3);
    cursor: default;
    color: white;
}
.aside-toggle .active .aside-close {
    display: block;
    cursor: pointer;
}

.aside {
    background-color: #357ca5;
    color: white;
    width: 220px;
    padding: 12px;
}

.aside:not(.hidden) + .filters-page-content {
    width: calc(100% - 220px);
}

.aside #remove_filters_button {
    display: block;
    text-align: center;
    text-decoration: underline;
    color: #a6d2ed;
}

.filter-box {
    margin: 10px 0;
}

.filter-label {
    display: block;
    font-size: 11px;
    color: white;
    opacity: .5;
}

.filter-box .form-control {
    width: 100%;
    margin-top: 8px;
}

.table-scroll {
    max-width: 100%;
    /*overflow: scroll;*/
}

.filter-range-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filter-range-input .form-control {
    padding: 0 5px;
    flex-shrink: 1;
}
.filter-range-input .btn {
    margin-left: 5px;
}

.fiter-range-separator {
    margin: 0 5px;
    vertical-align: middle;
    display: inline-block;
    width: 10px;
    border-top: 1px solid white;
    opacity: .5;
    flex-shrink: 0;
}