.price-toolbar input {
    min-width: min(430px, 80vw);
    height: 58px;
    padding: 0 46px 0 18px;
    border: 1px solid #d8dde4;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #131a23;
    font: 700 17px Circe, Arial, sans-serif;
    box-shadow: 0 8px 25px rgba(16, 24, 40, .05);
    transition: border-color .2s, box-shadow .2s;
}

.price-toolbar input:focus {
    border-color: #ff8a00;
    box-shadow: 0 0 0 4px rgba(255, 138, 0, .12), 0 8px 25px rgba(16, 24, 40, .06);
}

.price-filter-group input {
    min-width: 280px;
}

.price-filter-control {
    position: relative;
}

.price-filter-control::after {
    content: '⌄';
    position: absolute;
    right: 18px;
    top: 46px;
    color: #788391;
    font-size: 20px;
    line-height: 1;
    pointer-events: none;
}

.price-filter-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    max-height: 310px;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid #d8dde4;
    border-radius: 13px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 20px 50px rgba(16, 24, 40, .18);
}

.price-filter-menu button {
    display: block;
    width: 100%;
    padding: 11px 13px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #1a222d;
    text-align: left;
    font: 600 15px Circe, Arial, sans-serif;
    cursor: pointer;
}

.price-filter-menu button:hover,
.price-filter-menu button:focus {
    outline: none;
    color: #111;
    background: #fff1df;
}

.price-history-table .monthly-price {
    display: block;
    color: #17202b;
    font-size: 16px;
}

.price-history-table .monthly-change {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.price-history-table .monthly-change.up {
    color: #d65a3a;
}

.price-history-table .monthly-change.down {
    color: #139768;
}

.price-history-table .monthly-change.flat {
    color: #8a94a1;
}

@media (max-width: 700px) {
    .price-toolbar input,
    .price-filter-group input {
        width: 100%;
        min-width: 0;
    }
}
