/* style.css */

/* ---- bootstrap ---- */
body {
	min-width: 480px; /* suppose you want minimun width of 480px */
	width: auto !important; /* Firefox will set width as auto */
	width: 480px;
	/* As IE ignores !important it will set width as 480px; */
}

@media ( min-width : 1200px) {
	.modal-lg {
		width: 1170px;
	}
}

.modal-header-success {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #5cb85c;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-warning {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #f0ad4e;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-danger {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #d9534f;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-info {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #5bc0de;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-primary {
	color: #fff;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #428bca;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.modal-header-default {
	color: #333;
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	background-color: #f5f5f5;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

/* IE10 でボタンに disabled クラスが効かないことによる弊害への対処 */
.disabled.btn,
[disabled].btn,
fieldset[disabled] .btn
{
	/* bootstrap.css:(3035) */
	/*pointer-events: none;*/
	pointer-events: auto;
}

.nav-pills a {
	text-decoration: none !important;
}

legend {
	/* margin-bottom: 20px; */
	margin-bottom: 3px;
	font-weight: bold;
}

.table thead {
	background-color: #5bc0de; /* info color */
}

.fixed-table-container tbody .selected td {
	background-color: ivory;
}

/* hr margin 調整 */
hr {
	margin-top: 5px;
	margin-bottom: 5px;
}

/* staic の余白が大きすぎることへの対処 */
.form-control-static {
	min-height: 0;
	padding-bottom: 0;
}

/* textarea の resize を抑止、行間が大きいことへの対処 */
textarea {
	line-height: 1 !important;
	resize: none;
}

/* 一般的ボタンサイズ */
.btn-ord {
	padding: 6px 12px;
}

/* Alert の margin-bottom を削除 */
.alert {
	margin-bottom: 0;
}

/* ListGroup の margin-bottom を削除 */
.list-group {
	margin-bottom: 0px;
}

ul, ol {
	margin-bottom: 0px;
}

/* Inputs, selects, and textareas are 100% wide by default in Bootstrap. To use the inline form, you'll have to set a width on the form controls used within. */
.form-inline .form-group input {
	width: 140px;
}

.form-inline .form-group select {
	width: 140px;
}

/* bootstrap-multiselect のボタン */
/* multiselect のオプション buttonWidth で設定 */

/* bootstrap-multiselect のチェックボックスは width を設定する対象から除外 */
.form-inline .form-group ul.multiselect-container input[type="checkbox"] {
	width: auto;
}

/* bootstrap-table の td を nowrap */
.fixed-table-container tbody td {
	/*padding: 8px;*/
	/*line-height: 24px;*/
	/*vertical-align: top;*/
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 入力必須項目の マーク */
.form-group.required .control-label:before {
	content: "*";
	color: red;
}

.form-group .required:before {
	content: "*";
	color: red;
}

/* .form-control[readonly] を調整 */
/*
bootstrap.css: .form-control[readonly] を コメントアウト
*/

/* モーダルダイアログのヘッダ内ボタンの縦アラインメント調整*/
.modal-header .adjust-vertical {
	margin-top: -30px !important;
}

/* パネルのヘッダ内ボタンの縦アラインメント調整*/
.panel-heading .adjust-vertical {
	margin-top: -26px !important;
}

.input-group.file .input-group-addon {
	cursor: pointer;
}

/* datetimepicker addon ボタン disabled 時のカーソル指定　*/
.input-group.date .input-group-addon[disabled] {
	cursor: not-allowed;
}

.help-block {
	/*display: block;*/
	/*margin-top: 5px;*/
	/*margin-bottom: 10px;*/
	/*color: #737373;*/
	margin-top: 0px;
	margin-bottom: 0px;
}

/* tooltip content alignment */
.tooltip-inner {
	text-align: left;
}

/* ---- cartee ---- */

/* ワイヤフレームのヘッダの padding-bottom を削除 */
#wf-header {
	padding-bottom: 0;
}

/* ワイヤフレームのコンテントの padding を削除 */
#wf-content {
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
}

/* 画面ボディ領域 margin 調整 */
#wf-content.panel-body {
	margin-top: 5px;
	margin-bottom: 5px;
}

/* タイトル のスタイル */
#wf-header [jid="heading"] .panel-title img {
	/*width: 32px;*/
	/*height: 32px;*/
	height: 48px;
}

#wf-header [jid="heading"] .panel-title span {
	font-size: 1.25em;
	vertical-align: middle;
}

/* リストフィルタ の 縦アラインメント調整 */
[jid="list-header"] .form-group.adjust-vertical {
	padding-top: 4px;
}

/* 入力フォーム legend のフォントサイズ　 */
[jid="form-detail"] legend {
	font-size: inherit;
}

/* 入力フォーム legend のフォントサイズ　 */
[jid="summary-info"] legend {
	font-size: inherit;
}
/* tabletで見切れるのでデフォルトに戻す
#car-idle-edit .modal-dialog{
	width: 700px;
}
*/
 	
/* a tag link を クリッカブルに見せる */
.appearance-clickable {
	cursor: pointer;
	color: #337ab7 !important;
}

/* bootstrap-datetimepicker で 今日をハイライトする(※有効にする場合、コメントを外す) */
.bootstrap-datetimepicker-widget table td.today:not(.active):not(:hover) {
  background-color: lightyellow;
}

/* navigation 項目が増えた場合、 dropdown の caret アイコンが折り返されるための対処(※暫定措置) */
.nav > li > a {
	padding: 10px 10px;
}

/* ダイアログ右上の×ボタン(ヘルプありの場合) */
div .pull-right.adjust-vertical button.close {
	padding-top: 9px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 0px;
	color: #fff;
    opacity: 1;
}
/* ダイアログ右上の×ボタン(ヘルプなしの場合) */
div button.close {
	color: #fff;
    opacity: 1;
}

/* tool-tip 半角文字対応　*/
.tooltip-inner {
	word-break: break-all;
}

/* ページ内scroll button area */
.page-scroll-wrapper {
	position: fixed;
	right: 1.5em;
	bottom: 0px;
	z-index: 2000;
}
/* ページ内scroll button */
.page-scroll {
	padding: 6px 0px;
	z-index: 2000;
}
/* ページ内scroll button の アイコン */
.page-scroll .glyphicon {
	font-size: 2em;
}

/* 期限間近ボタン等が無効の場合 */
.dropdown-toggle.btn-danger[disabled] {
	background-color: rgb(217 83 79 / 0.65);
	border-color: rgb(212 63 58 / 0.65);
	opacity: 1;
}
/* 要オイル交換ボタン等が無効の場合 */
.dropdown-toggle.btn-success[disabled] {
	background-color: rgb(92 184 92 / 0.65);
	border-color: rgb(76 174 76 / 0.65);
	opacity: 1;
}
