.ota-quick-selects {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 12px
}

.ota-quick-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #667085
}

.ota-quick-chip {
    border: 1px solid #d7e1ee;
    background: #fff;
    color: #1457a6;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: .78rem;
    line-height: 1;
    cursor: pointer;
    transition: .15s ease
}

.ota-quick-chip:hover,
.ota-quick-chip:focus {
    border-color: #2477d4;
    background: #f3f8ff;
    color: #0b5ec7
}

.ota-quick-chip:disabled {
    opacity: .55;
    cursor: not-allowed
}

.flatpickr-input[readonly] {
    cursor: pointer !important
}

@media(max-width:767px) {
    .ota-quick-selects {
        gap: 6px
    }

    .ota-quick-chip {
        padding: 6px 9px
    }
}