/**
 * 追加CSSを記述
 */

.quill_editor {
	height: 250px !important;
}

/* confirm 確認時 入力値 */
.form-padding-top {
	padding-top: 7px;
	margin-bottom: 0;
}
.form-margin-none {
	margin-top: -7px;
	margin-bottom: 0;
}
/* confirm エラー時 入力ボックス */
.form-error {
	border:solid 2px #F5192F
}
/* confirm エラー時 メッセージ */
.error-message {
	color: #ff1a1a;
}


/* center-align */
.center-align {
    text-align: center;
}

/* 完了画面 margin */
.complete-margin {
    margin: 10% 0;
}

/* 管理画面 更新申請時の変更画像 */
.change-image {
	padding: 5px;
	border: 2px solid #dd4b39;
}
/*資料管理画面 ボタン*/
.box_left{
	 margin-left:40%;
	 margin-bottom:20px;
}
.box_right{
	 margin-right: 40%;
	 margin-bottom:20px;
}
/*資料管理画面 資料概要*/
.box_bottom{
	 margin-bottom: 16px;
	
}
/*フロント見積依頼・相談案件・パートナー*/
.w200{
	width:500px;
}

/*システム設定 消費税*/
.width{
	padding-left:0px;
	margin-top: 7px;
}
/* テーブル横スクロール設定 box-bodyクラスと同じ位置に追加 */
.scroll_table .table_header {
	overflow-x:hidden;
	overflow-y:hidden;
	width: calc(100% - 20px)
}
.scroll_table .table_body {
	overflow-x:scroll;
	overflow-y:scroll;
	width: 100%;
	height: 280px;
}
.scroll_table .table_header table {
	table-layout: fixed;
	margin-bottom: -2px;
}
.scroll_table .table_body table {
	table-layout: fixed;
}
.scroll_table .table_header table tbody tr th,
.scroll_table .table_body table tbody tr td {
	width: 10em;
	word-wrap: break-word;
}
/*管理画面datepicer表示位置*/
.datepicker.datepicker-dropdown.dropdown-menu {
	z-index: 9999 !important;
}

/* テーブルcss追加 */
ul.picture_table li{
	float:left;
	margin-right:20px;
	margin-bottom:20px;
	background-color:#999999;
	width:20%;
	text-align: center;
}
ul.picture_table li img {
	width: 100%;
}


.spinner-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }

/* datetimepicker */
.bootstrap-datetimepicker-widget {
	display: inline;
}

/* 勤怠管理　出勤状況一覧テーブル */
table.table-clickable tr[data-href] {
	cursor: pointer;
}
th.W005 {
	width:  5% !important;
}
th.W010 {
	width: 10% !important;
}
th.W012 {
	width: 12% !important;
}
th.W015 {
	width: 15% !important;
}
th.W018 {
	width: 18% !important;
}
th.W020 {
	width: 20% !important;
}
th.W025 {
	width: 25% !important;
}
tr.today {
	background-color: #B7E3EC !important;
}
tr.user_invalid,
tr.user_invalid_hide
{
	background-color: #e2e2e2 !important;
}
tr.user_invalid_hide {
	display: none;
}
/* 出勤情報画面 */
.work-check
{
	margin-top: 10px !important;
	margin-bottom: 10px !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.btn.disabled,
.btn[disabled]
{
	background: #999999 !important;
	border: #000000 !important;
	opacity: 0.5 !important;
}
.disallowed
{
	display: none !important;
}
table#user_record
{
	font-size: 90% !important;
}
table#user_record th,
table#user_record td
{
	padding: 2px !important;
}
.do-on,
.do-off
{
	width: 50px;
	background: rgba(255,0,0,0);
	cursor	: pointer;
	border	: 0 !important;
	padding	: 0 !important;
}

/*日曜日、休日（祝祭日）*/
.Sun, .holiday
{
	color: #ff0000;
}
/*平日*/
.Mon, Tue, Wed, Thu, Fri
{
	
}
/*土曜日*/
.Sat
{
	color: #0000ff;
}
.neighbor-width > .do-on
{
	width: 100%;
}
.spreads_across
{
	background-color: #ff0000 !important;
}
/* 時刻入力ボックス */
.info_raw {
	display: flex;
	gap: 8px;
	align-items: center;
}

/* 勤怠管理ボタン */
.going_del {
	position: relative;
	float: right;
	margin: 10px;
	cursor: pointer;
}

.going_del::before, .going_del::after { /* 共通設定 */
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px; /* 棒の幅（太さ） */
	height: 18px; /* 棒の高さ */
	background: #767676;
}

.going_del::before {
	transform: translate(-50%,-50%) rotate(45deg);
}

.going_del::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}