.np-checkout {
    margin: 14px 0 5px;
    padding: 16px;
    background: #f7f9fb;
    border: 1px solid #dfe5ea;
    border-radius: 8px;
}

.np-field {
    margin-bottom: 12px;
    position: relative;
}

.np-field:last-of-type {
    margin-bottom: 0;
}

.np-field label {
    display: block;
    margin-bottom: 6px;
    color: #002135;
    font-size: 13px;
    font-weight: 700;
}

.np-city,
.np-warehouse {
    width: 100%;
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid #cfd7de;
    border-radius: 6px;
    background: #fff;
    color: #002135;
    font-size: 14px;
    box-sizing: border-box;
}

.np-city:focus,
.np-warehouse:focus {
    outline: none;
    border-color: #002135;
    box-shadow: 0 0 0 2px rgba(0, 33, 53, .08);
}

.np-warehouse:disabled {
    background: #eef1f3;
    cursor: not-allowed;
}

.np-suggestions {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 50;
    max-height: 240px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #cfd7de;
    border-top: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}

.np-suggestion {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid #edf0f2;
    background: #fff;
    color: #002135;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
}

.np-suggestion:hover {
    background: #f1f5f7;
}

.np-empty {
    padding: 10px 12px;
    color: #777;
    font-size: 13px;
}

.np-status {
    margin-top: 8px;
    color: #777;
    font-size: 12px;
}

.np-status.np-error {
    color: #b00020;
}

@media (max-width: 767px) {
    .np-checkout {
        padding: 12px;
    }

    .np-city,
    .np-warehouse {
        min-height: 46px;
        font-size: 16px;
    }
}
