#wrapper{
  /*overflow-y: auto;*/
}
#page-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
  font-size: 70%;
}
.container-fluid {
  /*overflow-y: hidden;*/
}

.label_height {
  display: flex;
  margin-top: 6px;
  line-height: 1; /*padding: .375rem .75rem;*/
}
.search_btn_label {
	display: flex;
	width: 80%;
	line-height: 1.5;
	padding: 2px 5px 2px 5px !important;
}
.bgcolor_lightgray {
  background-color: rgb(235, 235, 235, 0.40);
}
.footer_btn_div {
  background-color: rgb(235, 235, 235,0.40);
  position: fixed;bottom: 0px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 10px;
}

.tab_header {
	width: 100%;
	display: table;
}
.tab_header_row {
  background-color: rgba(0,0,0,.03);
	display: table-row;
}

.tab_header_content {
  width: 25%;
  border-radius: 10px 10px 0px 0px;
  padding: 4px 4px 4px 4px;
  margin-bottom: 0;
  border: 1px solid rgba(0,0,0,.125);
  line-height: 1.5;
  background-color: rgba(0,0,0,.03);
  display: table-cell;
}

.tab_header_content.active{
  background-color: skyblue;
  border-bottom: 1px solid white;
}

.tab_header_error {
  color: red;
  font-weight: bold;
  background-color: #e8cccc;
}
.tab_header_error_cnt {
  color: red;
  font-weight: bold;
  float: right;
  background-color: #f1d2d2;
  border-radius: 30px;
  width: 30px;
  text-align: center;
}

.fieldset {
	padding: 2px 5px;
	border: 2px skyblue groove;
}

.form-group {
  padding: 0px 0px 0px 0px !important;
  margin-bottom: 5px !important;
}

.form-control {
  padding: 2px 5px 2px 5px !important;
  display: block;
  height: 25px !important;
  font-size: 90% !important;
}

.special-form-control {
  padding: 2px 5px 2px 5px !important;
  display: block;
  height: 25px !important;
  font-size: 120% !important;
}

.select_box {
  padding: 0px !important;
  background-color: white !important;
  /*width: auto!important;*/
  height: 25px !important;
  text-align: left;
  border-color: white;
}
.popup_field_inline {
  padding: 0px !important;
  background-color: white !important;
  width: auto!important;
  height: 25px !important;
  text-align: left;
  border-color: white;
}
.wauto {
  width: auto;
}
.btn {
  border-radius: 4px  !important;
	padding: 2px 5px 2px 5px !important;
}

.search_btn_row {
  margin: 5px 0px 5px 0px !important;
}
input[type=checkbox], input[type=radio] {
  margin: 0px 0 0;
}
select.form-control:not([size]):not([multiple]) {
  height: 25px !important;
}

.panel-footer span {
  font-size: 120% !important;
}

.page_loader, .ajax_loader, .ajax_table_loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../img/loading.gif') 50% 50% no-repeat rgb(249,249,249);
    /*background: url('../img/blue_loading.gif') 50% 50% no-repeat rgb(249,249,249);*/
    opacity: .8;
}
.ajax_table_loader {
    position: relative;
    pointer-events: none;
    cursor: default;
}
/* scrollbar */
::-webkit-scrollbar {
    /*width: 5px;*/
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
}
::-webkit-scrollbar-thumb {
    background: grey; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: grey; 
}

.form-error-control {
  width: 100%;
  font-size: 1rem;
  color: red;
  display: none;
}
.form-error-control label:after {
  content:"*";
  background-color: #fff;
}

.form-error-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

#modal-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  z-index: 1100;
  display: none;
  opacity: 0.5;
}

#modal-dialog-ui-icon {
  float: left;
}
#modal-dialog-message {
  float: left;
  margin-left: 15px;
}

.ui-icon-color-blue {
  background-image: url("/img/ui-icons_228ef1_256x240.png"); /* ブルー */
}
.ui-icon-color-orange {
  background-image: url("/img/ui-icons_ef8c08_256x240.png"); /* オレンジ */
}
.ui-icon-color-yellow {
  background-image: url("/img/ui-icons_ffd27a_256x240.png"); /* イエロー */
}
.ui-icon-color-white {
  background-image: url("/img/ui-icons_ffffff_256x240.png"); /* ホワイト */
}

input:read-only, button:disabled, radio:disabled, checkbox:disabled { 
  cursor: not-allowed;
}

legend {
   font-size: 10%;
   margin-bottom: 0px;
}
.content_wrap{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.modal-body {
    padding: 5px;
}

/*title hover*/
[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}
[data-title]:after {
    content: attr(data-title);
    background-color: #ddd;
    color: red;
    font-size: 80%;
    position: absolute;
    padding: 1px 5px 2px 5px;
    top: -1.6em;
    left: 100%;
    white-space: nowrap;
    box-shadow: 1px 1px 3px #222222;
    opacity: 0;
    /* border: 1px solid #111111; */
    z-index: 99999;
    visibility: hidden;
    border-radius: 4px;
}
[data-title] {
    position: relative;
}
.mcp {
  cursor: pointer;
}
.disable {
  pointer-events:none;opacity: 0.5;
}
