/* here you can put your own css to customize and override the theme */

/* Loading 遮罩樣式 */
#divProgress {
    text-align: center;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999999;
    transform: translate(-50%, -50%);
}

#divProgress.show {
    display: block;
}

#divProgress .loading-text {
    color: #1B3563;
    font-size: 14px;
}

#divMaskFrame {
    background-color: #F2F4F7;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999998;
    opacity: 0.7;
    width: 100vw;
    height: 100vh;
}

#divMaskFrame.show {
    display: block;
}

/* 後台 Layout 樣式 */
.navbar-no-margin {
    margin-bottom: 0;
}

.navbar-logo {
    width: 30px;
}

/* 表格樣式 */
.table-centered {
    width: 100%;
    margin: auto;
}

.table-centered th {
    text-align: center;
}

.sortable-handle {
    width: 50px;
    cursor: move;
}

/* 編輯頁面表單樣式 */
.form-col {
    white-space: nowrap;
    text-align: left;
}

.label-spacing {
    padding-right: 10px;
}

.rowbottom {
    padding-top: 5px;
}

.rowbottom2 {
    padding-top: 5px;
}

.file-upload-input {
    max-width: 400px;
    display: inline;
}

/* 表單輸入框樣式 */
.inline-input {
    display: inline;
    max-width: 600px;
}

.inline-input-sm {
    display: inline;
    max-width: 300px;
}

.preview-image {
    max-width: 300px;
}


/* 列表頁面樣式 */
.text-right-nowrap {
    white-space: nowrap;
    text-align: right;
}

.row-spacing {
    padding-top: 10px;
    margin: 10px;
}

.cursor-move {
    cursor: move;
}

/* Label 間距 */
.label-spacing {
    padding-right: 10px;
}

/* 檔案上傳區塊 */
.file-upload-container {
    white-space: nowrap;
}

.file-upload-container .file-upload-input {
    display: inline-block;
    width: 400px;
    vertical-align: middle;
}

.file-upload-container .upload-button-spacing {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

