.odf-wrap {
    width: 100%;
}

.odf-filter {
    margin: 0 0 32px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.odf-label {
    display: block;
    width: 100%;
    margin: 0 0 7px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #555;
}

.odf-select-shell {
    position: relative;
    display: inline-block;
}

.odf-select-shell::after {
    content: "";
    position: absolute;
    right: 17px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    color: #444;
}

.odf-select {
    width: auto;
    min-width: 310px;
    max-width: 100%;
    height: 48px;
    padding: 0 48px 0 17px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background-color: #fff;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    line-height: 48px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.odf-select:hover {
    border-color: #005481;
}

.odf-select:focus {
    outline: none;
    border-color: #005481;
    box-shadow: 0 0 0 3px rgba(0, 84, 129, .13);
}

.odf-products ul.products {
    width: 100%;
}

.odf-empty {
    margin: 24px 0;
    padding: 18px 20px;
    background: #f7f7f7;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .odf-filter,
    .odf-select-shell,
    .odf-select {
        width: 100%;
    }

    .odf-select {
        min-width: 0;
    }
}
