/* 管理項目一覧タイトル */
.customitem-title {
    width: 100%;
    padding: 12px 15px 9px;
    margin-bottom: 5px;
    text-align:center;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    background-color: #f4f4f4;
}

/* 管理項目グループ メッセージ */
.custom-group-message {
    padding-top: 30px;
    width: 700px;
}

/* 管理項目グループ カード */
.custom-group-card {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid;
    border-color: #dee2e6;
    border-radius: 5px;
}

/* 管理項目グループ ヘッダー */
.custom-group-header {
    padding: 10px;
}

/* 管理項目グループ ブロック項目見出し 文字スタイル */
.custom-group-title {
    font-size: 16px;
}

/* 複数登録可ラベル */
.multiple-selections-label {
    height: 25px;
    font-size: 12px;
    color: white;
    background: #0062cc;
    padding: 4px;
}

/* 非公開ラベル */
.private-label {
    height: 25px;
    font-size: 12px;
    color: white;
    background: #6c757d;
    padding: 4px;
}

/* 削除行 */
.customitem-delete-row {
    background-color: #FFEEFF;
}

/* 管理項目一覧テーブル */
.table-customitem-list {
    table-layout: fixed;
}
.table-customitem-list th {
    border-top: none;
    border-bottom: 1px solid #dee2e6;
    font-weight: normal;
}
.table-customitem-list td {
	border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.customitem-list-column-width-title {
    width: calc((100% - 250px) / 2);
    overflow-wrap: break-word;
}
.customitem-list-column-width-code {
    width: 100px;
    overflow-wrap: break-word;
}
.customitem-list-column-width-input-type {
    width: 150px;
}
.customitem-list-column-width-choice-item {
    width: calc((100% - 250px) / 2);
    overflow-wrap: break-word;
}

.customitem-dialog-title-label {
    width: 100%;
    overflow-wrap: break-word;
}

/* 管理項目グループテーブル */
.table-customitemgroup {
    table-layout: fixed;
    margin-top: 0;
}
.table-customitemgroup th {
    border-top: none;
    border-bottom: 1px solid #dee2e6;
    font-weight: normal;
}
.table-customitemgroup td {
	border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.customitemgroup-column-width-no {
    width: 50px;
}
.customitemgroup-column-width-name {
    text-align: left !important;
}
.customitemgroup-column-width-pattern {
    width: 100px;
}
.customitemgroup-column-width-isopen {
    width: 120px;
}
.customitemgroup-column-width-editenabled {
    width: 120px;
}
.customitemgroup-column-width-delete {
    width: 30px;
}
.customitemgroup-column-width-sort {
    width: 30px;
}

/* 管理項目グループ削除 */
.customitemgroup-delete {
    color: #065ca8;
}
.customitemgroup-delete:hover {
    cursor: pointer;
}

/* 管理項目グループ並び替え */
.customitemgroup-sort {
    cursor:grab;
}

/*IEのみGrabカーソル未対応のためPointerとする*/
@media all and (-ms-high-contrast: none) {
    .customitemgroup-sort {
        cursor: pointer;
    }
}

/* 管理項目テーブル */
.table-customitem {
    width: 100%;
    border-top: 1px solid #dee2e6;
}
.table-customitem td {
    text-align: left !important;
    padding: 10px;
}
.customitem-column-width-title {
    width: 180px;
    word-break: break-all;
}
.customitem-column-width-value {
    width: calc(100% - 180px);
    word-break: break-all;
}
.customitem-column-width-delete {
    width: 30px;
    vertical-align: middle;
}
.customitem-column-width-sort {
    width: 30px;
    vertical-align: middle;
}

/* 管理項目削除 */
.customitem-delete {
    color: #065ca8;
}
.customitem-delete:hover {
    cursor: pointer;
}

/* 管理項目並び替え */
.customitem-sort {
    cursor:grab;
}

/*IEのみGrabカーソル未対応のためPointerとする*/
@media all and (-ms-high-contrast: none) {
    .customitem-sort {
        cursor: pointer;
    }
}

/* 管理項目追加ラベル */
.label-customitem-add {
    border-top: 1px solid #dee2e6;
    padding-top: 10px;
}

/* 選択項目テーブル */
.table-customitemchoice {
    table-layout: fixed;
    margin-top: 0;
}
.table-customitemchoice th {
    border-top: none;
    border-bottom: 1px solid #dee2e6;
    font-weight: normal;
}
.table-customitemchoice td {
	border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.customitemchoice-column-width-no {
    width: 50px;
}
.customitemchoice-column-width-name {
    text-align: left !important;
}
.customitemchoice-column-width-code {
    text-align: left !important;
}
.customitemchoice-column-width-delete {
    width: 30px;
    vertical-align: middle;
}
.customitemchoice-column-width-sort {
    width: 30px;
    vertical-align: middle;
}

/* 管理項目選択削除 */
.customitemchoice-delete {
    color: #065ca8;
}
.customitemchoice-delete:hover {
    cursor: pointer;
}

/* 管理項目選択並び替え */
.customitemchoice-sort {
    cursor:grab;
}

/*IEのみGrabカーソル未対応のためPointerとする*/
@media all and (-ms-high-contrast: none) {
    .customitemchoice-sort {
        cursor: pointer;
    }
}
