.admin-create-bar-v16c {
    margin:
        14px 0 18px;

    display: flex;
    justify-content: flex-end;
}

.admin-create-button-v16c {
    min-height: 44px;

    border: 0;
    border-radius: 14px;

    padding:
        10px 15px;

    background: #302b27;
    color: white;

    font: inherit;
    font-weight: 800;

    cursor: pointer;
}

.admin-create-modal-v16c {
    position: fixed;
    inset: 0;

    z-index: 12000;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 14px;

    background:
        rgba(42, 35, 30, .46);
}

.admin-create-modal-v16c[hidden] {
    display: none;
}

.admin-create-sheet-v16c {
    width: min(
        100%,
        520px
    );

    max-height: 90vh;
    overflow: auto;

    box-sizing: border-box;

    padding: 20px;

    border-radius: 24px;

    background: #fffdfb;

    box-shadow:
        0 24px 70px
        rgba(36, 29, 24, .25);
}

.admin-create-sheet-v16c h3 {
    margin:
        0 0 5px;

    font-size: 20px;
}

.admin-create-sub-v16c {
    margin:
        0 0 18px;

    font-size: 13px;
    opacity: .65;
}

.admin-create-form-v16c {
    display: grid;
    gap: 12px;
}

.admin-create-form-v16c label {
    display: grid;
    gap: 6px;

    font-size: 12px;
    font-weight: 800;
}

.admin-create-form-v16c input {
    width: 100%;
    min-height: 46px;

    box-sizing: border-box;

    padding:
        9px 11px;

    border:
        1px solid
        rgba(92, 76, 62, .18);

    border-radius: 13px;

    background: white;

    font: inherit;
}

.admin-create-check-v16c {
    display: flex !important;
    align-items: center;

    grid-template-columns: none !important;

    gap: 9px !important;

    padding:
        11px 12px;

    border-radius: 13px;

    background: #f6f2ec;
}

.admin-create-check-v16c input {
    width: 18px;
    min-height: 18px;
    height: 18px;
}

.admin-create-note-v16c {
    margin-top: -5px;

    font-size: 11px;
    line-height: 1.4;
    opacity: .58;
}

.admin-create-actions-v16c {
    display: grid;
    grid-template-columns:
        1fr 1fr;

    gap: 10px;

    margin-top: 4px;
}

.admin-create-actions-v16c button {
    min-height: 46px;

    border: 0;
    border-radius: 14px;

    padding:
        9px 12px;

    font: inherit;
    font-weight: 800;

    cursor: pointer;
}

.admin-create-cancel-v16c {
    background: #eee6da;
    color: #302b27;
}

.admin-create-submit-v16c {
    background: #302b27;
    color: white;
}

.admin-create-status-v16c {
    min-height: 18px;

    font-size: 13px;
    line-height: 1.4;
}

.admin-create-form-v16c button:disabled {
    opacity: .5;
    cursor: default;
}

@media (
    min-width: 700px
) {
    .admin-create-modal-v16c {
        align-items: center;
    }
}

@media (
    max-width: 420px
) {
    .admin-create-actions-v16c {
        grid-template-columns:
            1fr;
    }

    .admin-create-button-v16c {
        width: 100%;
    }
}
