@charset "UTF-8";
/* パンくず */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 6px 10px;  
}
.breadcrumb a {
  color: var(--link-color);
  text-decoration: underline;
}
.breadcrumb .breadcrumb-item {
  font-size: 10px;
}
.breadcrumb-item:not(.active):after {
  content: '/';
  margin-left: 6px;
  margin-right: 8px;
}

/* 見出し */
h1{
  font-size: 16px;
  font-weight: bold;
  background-color: #E9EFF4;
  padding: 6px 10px;
  margin-bottom: 10px;
}
h2{
  font-size: 14px;
  font-weight: bold;
  background-color: #E9EFF4;
  padding: 6px 10px;
  margin-bottom: 6px;
}
h3{
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
}
.sub-header {
  position: relative;
  margin-bottom: 10px;
}
.sub-header-btn-wrapper{
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  margin-right: 10px;
}
.sub-header .sub-header-tag {
  margin-left: 10px;
  border: 1px solid black;
  padding: 2px 6px;
  margin-right: 3px;
  font-size: 12px;
  font-weight: normal;
  background-color: white;
  vertical-align: middle;
}
.sub-header .sub-header-form {
  margin-left: 10px;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
}

/* 2025.01. 追加 */
.sub-header-select-wrapper {
	position: absolute;
	top: 50%;
	left: 100px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/* フォーム */
.form-field{
  margin-bottom: 6px;
}
.w-sm {
  width: 60px!important;
}
.w-md {
  width: 150px!important;
}
.w-lg {
  width: 200px!important;
}
.form-control{
  border-radius: 3px;
  border: 1px solid var(--border-color);
  padding-left: 6px;
  padding-right: 6px;
  -webkit-appearance: none;
  width: 100%;
}
.form-control-sm{
  height: 22px;
}
.form-control-md{
  height: 25px;
}
.form-control-lg{
  height: 28px;
}


/* radio */
.radio-group > label{
  display: inline-block;
  padding: 0px;
  cursor: pointer;
  white-space: nowrap;
}
.radio-group > label > input{
  margin-right: 5px;
  cursor: pointer;
}
.radio-group input[type="radio"]:focus + span::before {
  border: 1px solid #0075E5;
  box-shadow: 0 0 0 0.2rem rgba(0,83,240,.25);
}
.radio-group input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  position: absolute;
}
.radio-group span{
  position: relative;
  padding: 0px 3px 0px 30px;
}
.radio-group input[type="radio"]:checked+span {
  font-weight: bold;
}
.radio-group span::before {
  content: '';
  display: block;
  margin-right: 5px;
  position: absolute;
  top: 0px;
  left: 3px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  border-radius: 99px;
}
.radio-group .is-invalid + span::before {
  border: 1px solid var(--alert-color)!important;
}
.radio-group .is-invalid + span {
  color: var(--alert-color)!important;
}

.radio-group input[type="radio"]:disabled + span::before {
  border: 1px solid var(--border-color);
  background-color: var(--disabled-color);
}
.radio-group input[type="radio"]:checked + span::after {
  width: 12px;
  height: 12px;
  background: #0075E5;
  border-radius: 99px;
  position: absolute;
  content: '';
  top: 4px;
  left: 7px;
}
.radio-group input[type="radio"]:checked:disabled + span::after {
  background: #999999;
}

.radio-col {
	display: inline-flex;
	flex-direction: column;
}

.radio-col label {
	padding-bottom: 8px;
  display: inline-block;
}
.radio-col label:last-child {
	padding-bottom: 0;
}

/* checkbox */
input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  position: absolute;
  left: 5px;
  top: 5px;
  margin-bottom: 0;
  margin-right: 10px;
}

input[type="checkbox"]:checked:not(:disabled)+span {
  font-weight: bold;
}
.checkbox-group label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  padding: 3px 3px 3px 24px;
  width: fit-content;
  height: 22px;
}
.checkbox-group label:has(input:disabled) {
  cursor:default;
}
label input[type="checkbox"]:checked + span::before {
  background: #0075E5;
  border-color: #0075E5;
}
label input[type="checkbox"]:checked:disabled + span::before {
  border-color: var(--border-color);
}
.checkbox-group input[type="checkbox"] + span:before {
  position: absolute;
  content: '';
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 3px;
}
.checkbox-group input[type="checkbox"].is-invalid + span:before {
  border: 1px solid var(--alert-color)!important;
}
.checkbox-group input[type="checkbox"].is-invalid + span {
  color: var(--alert-color)!important;
}

.checkbox-group input[type="checkbox"]:disabled + span:before {
  background: var(--disabled-color);
}
.checkbox-group input[type="checkbox"]:checked + span:after {
  position: absolute;
  content: '';
  top: 3px;
  left: 3px;
  width: 18px;
  height: 12px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
}
.checkbox-group input[type="checkbox"]:checked:disabled + span:after {
  border-left: 3px solid #999999;
  border-bottom: 3px solid #999999;
}
/* checkbox col*/
.checkbox-col {
  display: flex;
  flex-direction: column;
}
/* checkbox tooltip */
.checkbox-group.tool-tip{
  display: inline-block;
}

/* toogle */
.btn-toggle {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 50px;  
}
.btn-toggle-sm{
  width: 45px;
  height: 22px;
}
.btn-toggle-sm:after{
  width: 16px;
  height: 16px;
}
.btn-toggle-md{
  width: 45px;
  height: 25px;
}
.btn-toggle-md:after{
  width: 18px;
  height: 18px;
}
.btn-toggle-md.checked:after {
  left: 23px!important;
}
.btn-toggle-lg {
  width: 50px;
  height: 28px;
}
.btn-toggle-lg:after{
  width: 22px;
  height: 22px;
}

.btn-toggle input[type=checkbox] {
  display: none;
}
.btn-toggle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.btn-toggle:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  display: block;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.btn-toggle.checked:before {
  background: #0075E5;
}
.btn-toggle.checked:after {
  left: 25px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}

/* toggle radio */
.toggle-group-sm {
  height: 22px;
  line-height: 1;
}
.toggle-group-md {
  height: 25px;
}
.toggle-group-lg {
  height: 28px;
}
.toggle-group {
  display: inline-flex;
}
.toggle-group label {
  display: flex;
  position: relative;
}
.toggle-group [type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.toggle-group-content-wrapper {
  margin-top: 6px;
}
.toggle-group :checked + .toggle-group-button {
  background-color: var(--tertiary-color);
  color: var(--white);
  font-weight: bold;
  border: none;
}
.toggle-group :first-child .toggle-group-button {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.toggle-group :last-child .toggle-group-button {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.toggle-group .toggle-group-button {
  display: inline-block;
  padding: 6px 10px;
  font-size: 10px;
  text-align: center;
  color: var(--text-color);
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

/* section toggle */
section h2 .toggle:before{
  width: 16px;
  height: 16px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}
section h2 .toggle:before {
  content: url("../img/icon_minus_circle.svg");
}
section.section-close h2 .toggle:before {
  content: url("../img/icon_plus_circle.svg");
}


/* button */
.btn{
  line-height: 1;
  padding: 0 8px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-wrap: nowrap;
}
.btn-sm {
  height: 22px;
  font-size: 10px;
  padding: 0 6px;
}
.btn-md {
  height: 25px;
  font-size: 12px;
}
.btn-lg {
  height: 28px;
  font-size: 12px;
}

.btn-primary{
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
}
.btn-primary:hover,
.btn-primary:focus{
  background-color: var(--primary-color-hover);
}
.btn-outline-primary{
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-secondary{
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #e5e5e5;
}
.btn-tertiary{
  background-color: var(--tertiary-color);
  color: var(--white);
  border: none;
}
.btn-tertiary:hover,
.btn-tertiary:focus{
  background-color: #1a60ab;
}
.btn-outline-tertiary {
	background-color: var(--white);
	color: var(--tertiary-color);
	border: 1px solid var(--tertiary-color);
}
.btn-outline-tertiary:hover,
.btn-outline-tertiary:focus {
	background-color: var(--tertiary-color);
	color: var(--white);
}
.btn-quaternary{
  background-color: var(--quaternary-color);
  color: var(--white);
  border: none;
}
.btn-quaternary:hover,
.btn-quaternary:focus{
  background-color: #9853f1;
}
.btn-outline-quaternary {
	background-color: var(--white);
	color: var(--quaternary-color);
	border: 1px solid var(--quaternary-color);
}
.btn-outline-quaternary:hover,
.btn-outline-quaternary:focus {
	background-color: var(--quaternary-color);
	color: var(--white);
}
.btn-alert{
  background-color: var(--alert-color);
  color: var(--white);
  border: none;
}
.btn-alert:hover,
.btn-alert:focus{
  background-color: var(--alert-color-hover);
}
.btn-outline-alert{
  background-color: var(--white);
  color: var(--alert-color);
  border: 1px solid var(--alert-color);
}
.btn-outline-alert:hover,
.btn-outline-alert:focus{
  background-color: var(--alert-color);
  color: var(--white);
}

.btn-dl::before {
  content: url('../img/icon_download.svg');
  display: inline-block;
  margin-right: 5px;
  width: 12px;
  height: 12px;
}

.btn-block {
  width: 100%;
}

button:disabled{
  cursor: default;
  opacity: 0.5;
}

/* must */
.must {
  color: var(--alert-color);
  margin-left: 3px;
}
.must:before {
  content: '*';
}

/* search condition */
.search-condition-header-content {
  display: inline-block;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.search-condition-header-content img {
  width: 22px;
  position: absolute;
  top: -3px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(1%) saturate(0%) hue-rotate(237deg) brightness(100%) contrast(87%);
}
.search-condition {
  background-color: #FAFAFA;
  padding: 6px 10px;
  border-bottom: 1px solid #C1C7C7;
  margin-bottom: 10px;
  margin-top: -10px;
}
.search-condition.sub {
  border-bottom: none;
  margin-top: 10px;
}
.search-condition-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 6px;
  margin-bottom: 0;
}
.search-condition-item {
  display: flex;
  margin: 2px 0;
  align-items: center;
  gap: 0 4px;
}

/* link */
.alt-link {
  color: var(--link-color);
  text-decoration: underline;
}
.alt-link:hover {
  opacity: .7;
}
.alert-link {
  color: var(--alert-color);
  text-decoration: underline;
}
.alert-link:hover {
  opacity: .7;
}

/* table */
table{
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
table tr td {
word-break: break-all;
}

/* table menu */
.table-menu { margin-bottom: 6px; }
.table-menu-item:not(:last-child) { margin-right: 3px; display: inline-block; }
.table-menu.right{ display: flex; align-items: center; justify-content: flex-end;}
.table-menu.between{ display: flex; align-items: center; justify-content: space-between;}

/* data table */
.data-table-wrapper{
  margin-bottom: 6px;
}
.data-table-wrapper table:not(.sub-table-wrapper table){
  width: 100%;
  clear: both;
  table-layout: fixed;
  border: 1px solid var(--border-color);
}
.data-table-wrapper th:not(.sub-table-wrapper th) {
  font-weight: 600;
  padding: 4px 6px;
  background-color: var(--table-th-color);
  border: 1px solid var(--border-color);
  position: relative;
}
.data-table-wrapper td:not(.sub-table-wrapper td){
  padding: 4px 6px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
}
.data-table-wrapper td:empty {
  height: 26px;
}

/* hover */
.data-table-wrapper:not(#calendar) > table > thead ~ tbody > tr:hover > td:not(.total):not([rowspan]) {
  background: #E9EFF4!important;
}
.itinerary-table .data-table-wrapper > table > thead + tbody > tr:hover > td {
  background: none!important;
}

/* table deleted */
tr.deleted td {
  background-color: #EEEEEE!important;
}

/* sub table */
.sub-table-wrapper{
  margin-bottom: 0;
}
.sub-table-wrapper table{
  width: 100%;
  clear: both;
  table-layout: fixed;
  border: none;
}
.sub-table-wrapper th {
  font-weight: normal;
  padding: 6px 6px;
  background-color: #F8F9FA;
  border-top: 1px solid #DCE0E4;
  border-bottom: 1px solid #DCE0E4;
  position: relative;
}
.sub-table-wrapper td{
  padding: 4px 6px;
  border-bottom: 1px solid #DCE0E4;
  background-color: var(--white);
}
.sub-table-content {
  position: relative;
}
.sub-table-content .data-table-wrapper,
.sub-table-content .sub-table-wrapper {
  margin-left: 27px;
}
.sub-table-content .data-table-wrapper:before,
.sub-table-content .sub-table-wrapper:before {
  content: '';
  position: absolute;
  left: 9px;
  height: 100%;
  border-left: solid 4px #888888;
}
.sub-table-content .sub-table-wrapper {
  max-height: 240px;
  overflow: auto;
}


/* message area */
.msg{
    font-size: 12px;
    margin-bottom: 10px;
    padding: 8px;
    font-weight: normal;
  }
  .msg.error{
    border: 1px solid var(--alert-color);
    background-color: var(--alert-bg-color);
    color: var(--alert-color);
    max-height: 120px;
    overflow: auto;
  }
  .msg ul{
    padding-left: 16px;
    margin-bottom: 0;
  }
  .msg ul li{
    list-style-type: disc;
    font-size: 12px;
  }
  .modal .msg.error{
    margin-bottom: 10px;
  }
  .msg.info{
    border: 1px solid var(--info-color);
    background-color: var(--info-bg-color);
  }
  .msg.alert{
    border: 1px solid var(--alert-color);
    background-color: var(--alert-bg-color);
    color: var(--alert-color);
  }

  /* error */
  .form-control.is-invalid {
    border: 1px solid var(--alert-color);
    background: var(--alert-bg-color);
  }
  /* .invalid-feedback {
    font-size: 13px;
    color: var(--alert-color);
    margin-top: 6px;
    margin-bottom: 6px;
  } */

  input::placeholder{
    font-size: 12px;
  }


/* file upload */
.upload-btn{
  display: inline-block;
  cursor: pointer;
  line-height: 22px;
}
.upload-btn:hover,
.upload-btn:focus {
  background-color: #e5e5e5;
}
.upload-btn input[type="file"]{
  display: none;
}
.file-name-list {
  margin-top: 6px;
  margin-bottom: 0;
}
.file-name-list li {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.file-name-list .file-name {
  margin-right: 4px;
}
.upload-btn:has(input:disabled) {
  opacity: .5;
  cursor: default;
}
.upload-btn:has(input.is-invalid) {
  border: 1px solid var(--alert-color);
  background-color: var(--alert-bg-color);
}

/* float clear */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
} 

/* dropdown action menu */
.dropdown-act {
  position: relative;
  display: inline-block;
}
ul.dropdown-menu {
  position: absolute;
  background: white;
  padding: 6px 0px;
  border-radius: 4px;
  right: 0;
  min-width: 140px;
  border: 1px solid #0000002d;
  box-shadow: rgba(50,50,93,.02) 0 2px 5px -1px, rgba(0,0,0,.05) 0 1px 3px -1px;
  z-index: 2;
}
.dropdown-menu li {
  text-wrap: nowrap;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #f8f9fa;
}
a.dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 10px;
  line-height: 1;
}
a.dropdown-item.disabled {
  opacity: .5;
  pointer-events: none;
}

/* paging */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  margin-bottom: 0;
}
.page-item.disabled .page-link {
  pointer-events: none;
  cursor: auto;
  opacity: .5;
  background-color: var(--disabled-color);
}
.page-item.active .page-link{
  background-color: #347AB8;
  color: var(--white);
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: 5px 8px;
  line-height: 1;
  background-color: #F0F0F0;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
.page-link:focus,
.page-link:hover  {
  background-color: #e7e7e7;
}
.page-item.active .page-link:focus,
.page-item.active .page-link:hover{
  background-color: #3c87c9;
}
.page-link img {
  height: 9px;
  vertical-align: middle;
}
.pagination-wrapper{
  display: flex;
  align-items: center;
  gap: 0 4px;
}



/* icon */
.icon{
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.icon.table-drop-down { background: transparent  url("../img/icon_arrow_drop_down.svg") no-repeat center /contain; }
.icon.more{ background: transparent  url("../img/icon_more.svg") no-repeat center /contain; }
.icon.add{ background: transparent  url("../img/icon_add.svg") no-repeat center /contain; }
.icon.del{ background: transparent  url("../img/icon_del.svg") no-repeat center /contain; }
.icon.check{ background: transparent  url("../img/icon_check_circle.svg") no-repeat center /contain; }
.icon.questiton{ background: transparent  url("../img/icon_question.svg") no-repeat center /contain; }

.icon.visibility{ background: transparent  url("../img/icon_visibility.svg") no-repeat center /contain; }
.icon.visibility-off{ background: transparent  url("../img/icon_visibility_off.svg") no-repeat center /contain; }

.icon.preview-prev{ background: transparent  url("../img/preview_icon_prev.svg") no-repeat center /contain; }
.icon.preview-next{ background: transparent  url("../img/preview_icon_next.svg") no-repeat center /contain; }
.icon.preview-download{ background: transparent  url("../img/preview_icon_download.svg") no-repeat center /contain; }

.icon.split{ background: transparent  url("../img/icon_split.svg") no-repeat center /contain; }
.icon.attached{ background: transparent  url("../img/icon_attached.svg") no-repeat center /contain; }
.icon.close{ background: transparent  url("../img/icon_close.svg") no-repeat center /contain; }
.icon.plus{ background: transparent  url("../img/icon_plus.svg") no-repeat center /contain; }
.icon.minus{ background: transparent  url("../img/icon_minus.svg") no-repeat center /contain; }
.icon.plus_circle{ background: transparent  url("../img/icon_plus_circle.svg") no-repeat center /contain; }
.icon.minus_circle{ background: transparent  url("../img/icon_minus_circle.svg") no-repeat center /contain; }
.icon.memo{ background: transparent  url("../img/icon_memo.svg") no-repeat center /contain; }
.icon.change{ background: transparent  url("../img/icon_change.svg") no-repeat center /contain; }
.icon.alert{ background: transparent  url("../img/icon_alert.svg") no-repeat center /contain; }
.icon.balk-input{ background: transparent  url("../img/icon_balk_input.svg") no-repeat center /contain; width: 20px;height: 20px; }


.icon.submit{ background: transparent  url("../img/icon_submit.svg") no-repeat center /contain; width: 20px;height: 20px;}
.icon.email_unread{ background: transparent  url("../img/icon_email_unread.svg") no-repeat center /contain; width: 20px;height: 20px; }
.icon.email_read{ background: transparent  url("../img/icon_email_read.svg") no-repeat center /contain; width: 20px;height: 20px; }
.icon.email{ background: transparent  url("../img/icon_email.svg") no-repeat center /contain; width: 20px;height: 20px; }
.icon.info{ background: transparent  url("../img/icon_info.svg") no-repeat center /contain; width: 20px;height: 20px; }

.menu-icon{
  width: 18px;
  height: 18px;
}
.menu-icon.flight{ background: transparent  url("../img/tour_icon_flight.svg") no-repeat center /contain;}
.menu-icon.hotel{ background: transparent  url("../img/tour_icon_hotel.svg") no-repeat center /contain;}
.menu-icon.bus{ background: transparent  url("../img/tour_icon_bus.svg") no-repeat center /contain;}
.menu-icon.move{ background: transparent  url("../img/tour_icon_move.svg") no-repeat center /contain;}
.menu-icon.remark{ background: transparent  url("../img/tour_icon_remark.svg") no-repeat center /contain;}
.menu-icon.site{ background: transparent  url("../img/tour_icon_site.svg") no-repeat center /contain;}
.menu-icon.guide{ background: transparent  url("../img/tour_icon_guide.svg") no-repeat center /contain;}
.menu-icon.eat{ background: transparent  url("../img/tour_icon_eat.svg") no-repeat center /contain;}
.menu-icon.agency{ background: transparent  url("../img/tour_icon_travel_agency.svg") no-repeat center /contain;}
.menu-icon.golf{ background: transparent  url("../img/tour_icon_golf.svg") no-repeat center /contain;}


/* password */
.password-wrapper {
  position: relative;
  display: inline;
}
.password-wrapper input {
  padding-right: 24px;
}
.password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}



/* preview */
.preview-header.right{ display: flex; align-items: center; justify-content: flex-end;}
.preview-header.between{ display: flex; align-items: center; justify-content: space-between;}

.preview-wrapper {
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
}
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333333;
  height: 40px;
  padding: 0 10px;
}
.preview-body {
  background-color: #D9DEE6;
  padding: 15px;
  text-align: center;
  overflow: hidden;
}
.preview-wrapper img,
.preview-wrapper canvas {
  width: 100%;
  height: auto;
}


input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator{
  position: absolute;
  right: 0;
  width: 30px;
  height: 30px;
  opacity: 0;
}

select.form-control {
  padding-right: 22px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.input-group-append {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  background-color: var(--input-group-append-color);
  border: 1px solid var(--border-color);
  z-index: 0;
  pointer-events: none;
}
.is-invalid + .input-group-append,
.is-invalid + .input-clear + .input-group-append {
  border-top-color: var(--alert-color);
  border-right-color: var(--alert-color);
  border-bottom-color: var(--alert-color);
}

.input-group-append[data-toggle="popup"]{
  pointer-events: auto;
  cursor: pointer;
}
.input-group-text-sm {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-group-text-sm img {
  width: 20px;
}

.input-group-from-to{
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.input-group-from-to label {
  white-space: nowrap;
}

.input-group-from,
.input-group-to {
  position: relative;
  /* width: calc(100% / 2 - 10px); */
}
.input-group-btn {
  display: flex;
  gap: 0 4px;
  align-items: center;
}
/* .input-group-btn button {
  min-width: 60px;
} */
.input-group-flex {
  display: flex;
  gap: 0 4px;
}

/* textarea */
textarea{
  border-radius: 5px;
  border: 1px solid var(--border-color);
  padding: 10px;
  width: 100%;
}
textarea.form-control{
  height: auto;
}

/* input date */
.date-from-to {
  display: flex;
  align-items: center;
}
.date-from-to span{
  margin: 0 5px;
}
.date-from-to input {
  width: calc(100% / 2 - 12px)!important;
}
.input-box .date-from-to input {
  width: auto!important;
}
@media screen and (max-width: 576px) {
  .input-box .date-from-to{
    display: block;
  }
  .input-box .date-from-to input {
    width: calc(100% / 2 - 18px)!important;
  }
}


/* select box */
select{
  min-width: 60px;
  padding-right: 25px;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select::-ms-expand {
  display: none;
}
select:disabled {
  background-color: var(--disabled-color);
}
.select-group{
  position: relative;
  display: inline-block;
}
.select-group:before{
  content: "";
  background-image: url("../../assets/img/icon_select_arrow.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  pointer-events: none;
}
.select-group:before{
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  select{
    min-width: auto;
  }
}


@media screen and (max-width: 576px) {
  .btn-wrap{
    text-align: center;
  }
  .btn-wrap button{
    width: calc((100% - 10px) / 2);
    min-width: auto;
  }
  .btn-wrap button:not(:nth-of-type(2n)){
    margin: 0 5px 12px 0;
  }
}

/* card */
.card {
  box-shadow: rgba(50,50,93,.02) 0 2px 5px -1px, rgba(0,0,0,.05) 0 1px 3px -1px;
  background: white;
  border-radius: 6px;
  margin-bottom: 20px;
}
.card-body {
  padding: 14px;
}
.card-footer{
  text-align: center;
  padding: 14px;
}
.card-body.card-grid{
  display: grid;
}
.card-body-item{
  margin-bottom: 20px;
}


/* tab */
.tab-wrapper.tab-s .tab-content {
  margin-top: 6px;
}
.tab-wrapper.tab-s .tab-label{
  padding: 6px 15px;
}
/* 共通 */
.tab-wrapper {
  margin-bottom: 10px;
}
.tab-wrapper .tab-content-area {
  width: 100%;
}
.tab-wrapper .tab-content {
  width: 100%;
  display: none;
  margin-top: 10px;
}
.tab-wrapper .tab-content.active{
  display: block;
  animation: show .3s linear 0s;
}
.tab-wrapper .tab-switch {
  display: none;
}

/* tab */
.tab-wrapper.nav-tab .tab-menu {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 0;
  overflow: auto;
  overflow-y: clip;
}
.tab-wrapper.nav-tab ul.tab-menu:after {
  background: var(--border-color);
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.tab-wrapper.nav-tab .tab-label {
  position: relative;
  padding: 6px 10px 3px;
  order: -1;
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  text-align: center;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.tab-wrapper.nav-tab .tab-label:not(.active){
  background-color: #DEE1E6;
  border-bottom: 1px solid #ccc;
}
.tab-wrapper.nav-tab .tab-label:not(.active):hover {
  background: #f3f3f3;
}
.tab-wrapper.nav-tab .tab-label label {
  cursor: pointer;
  white-space: nowrap;
}
.tab-wrapper.nav-tab .tab-content-area {
  width: 100%;
}
.tab-wrapper.nav-tab .tab-content {
  width: 100%;
  display: none;
  margin-top: 10px;
}
.tab-wrapper.nav-tab .tab-label.active {
  border: 1px solid #ccc;
  border-bottom: 2px solid white;
  background-color: white;
}
.tab-wrapper.nav-tab .tab-content.active{
  display: block;
  animation: show .3s linear 0s;
}
.tab-wrapper.nav-tab .tab-switch {
  display: none;
}


/* tab button */
.tab-wrapper.nav-tab .icon.close {
  width: 12px;
  margin-left: 12px;
}
.tab-wrapper.nav-tab .add-tab-label {
  padding: 6px 10px 3px;
  cursor: pointer;
}



/* tab bar */
.tab-wrapper.nav-bar .tab-menu {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 0;
  overflow: auto;
  overflow-y: clip;
}
.tab-wrapper.nav-bar ul.tab-menu:after {
  background: var(--border-color);
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.tab-wrapper.nav-bar .tab-label {
  position: relative;
  font-weight: bold;
  padding: 10px;
  order: -1;
  z-index: 2;
  cursor: pointer;
  margin-bottom: 0;
  text-align: center;
}
.tab-wrapper.nav-bar .tab-label.is-invalid{
  color: var(--alert-color)!important;
}
.tab-wrapper.nav-bar .tab-label label:after {
  content: "";
  background: var(--border-color);
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.tab-wrapper.nav-bar .tab-label:after {
  background: var(--tertiary-color);
	bottom: 0;
	content: '';
	display: block;
	height: 4px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(100%);
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
	width: 100%;
	z-index: 1;
}
.tab-wrapper.nav-bar .tab-label.active ~ .tab-label:after {
	transform: translateX(-100%);
}
.tab-wrapper.nav-bar .tab-label.active:after {
	opacity: 1;
	transform: translateX(0);
}
.tab-wrapper.nav-bar .tab-label:hover {
  background: #f3f3f3;
}
.tab-wrapper.nav-bar .tab-label label {
  cursor: pointer;
  white-space: nowrap;
}


/* keyframe */
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* overflow */
.overflow{
  overflow: auto;
}

/* stickey */
.sticky{
  position: sticky;
  bottom: 0;
  z-index: 1;
}
.total{
  background: #DBE9F5!important;
}

/* datepicker */
.ui-datepicker-title {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
select.ui-datepicker-year {
  min-width: 50px;
  padding: 0 6px;
  width: 0!important;
  margin: 0 2px 0 8px!important;
}
select.ui-datepicker-month {
  min-width: 45px;
  padding: 0 6px;
  width: 0!important;
  margin: 0 6px!important;
}
.ui-datepicker-current[data-handler="today"]{
      opacity: 1!important;
      font-weight: bold!important;
}


/* monthpicker */
.ui-monthpicker {
  margin-top: 10px;
}
.ui-monthpicker .ui-datepicker-month {
  display: none;
}
.ui-monthpicker td span {
  padding: 5px;
  cursor: pointer;
  text-align: center;
}
.ui-datepicker-current-day span {
  color: white!important;
  background: #007fff!important;
}
.ui-widget-header {
  border: 1px solid #ccc;
  background: #f6f6f6;
}
.month-picker-year-table .ui-button.ui-corner-all.ui-widget:hover {
  border: 1px solid #f6f6f6;
  background: #f6f6f6;
}
.month-picker {
  display: inline-block;
  position: absolute;
  z-index: 9999
}
.month-picker table {
  border-collapse: separate;
  border-spacing: 2px 2px;
  width: 100%;
  padding: 2px;
}
.month-picker td {
  padding: 0
}
.month-picker .ui-button-text {
  padding: .4em 0
}
.month-picker-header {
  margin: 3px 3px 0
}
.month-picker-year-table {
  width: 100%;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none
}
.month-picker-year-table a {
  border: 1px solid transparent
}
.month-picker-year-table .ui-button {
  font-size: 1.1em;
  width: 1.5em;
  height: 1.5em;
  cursor: default;
  margin: 0
}
.month-picker-year-table .month-picker-title {
  text-align: center
}
.month-picker-year-table .month-picker-title .ui-button {
  font-size: 1em;
  padding: .1em 0;
  width: 100%;
  font-weight: 700
}
.month-picker-year-table .ui-button-text {
  padding: 0
}
.month-picker-month-table td {
  text-align: center
}
.month-picker-month-table .ui-button {
  width: 100%;
}
.month-picker-open-button {
  height: 20px;
  width: 20px;
  vertical-align: bottom
}
.month-picker-invalid-message {
  display: none;
  background-color: #ff0
}
.month-picker-disabled {
  background-color: #e1e1e1
}
div#MonthPicker_ {
  width: 180px;
}
td.month-picker-previous {
  display: none;
}
td.month-picker-next {
  display: none;
}

/* balloon */
.balloon-wrapper {
  position: relative;
}
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.balloon-wrapper .text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.balloon-wrapper .balloon,
.tooltip-wrapper .balloon  {
  position: absolute;
  width: max-content;
  max-width: 400px;
  padding: 10px;
  line-height: 1.6;
  color: inherit;
  word-break: break-all;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid #EEEEF0;
  box-shadow: 0 3px 10px 0 rgba(51, 51, 51, .25);
  display: none;
}

.tooltip-wrapper .balloon{
  z-index: 2;
  text-align: left;
}

.balloon-wrapper:hover .balloon {
  display: block;
  z-index: 2;
}

/* table drop down */
.show-more.open .table-drop-down {
  transform: rotate(180deg);
}

/* disabled */
input:disabled {
  color: -internal-light-dark(graytext, rgb(170, 170, 170));
  opacity: 0.7;
}

/* status tag */
.stasus-tag {
  padding: 2px 8px;
  display: inline-block;
  line-height: normal;
  margin-right: 6px;
}
.stasus-tag.primary {
  background: #E3F5FF;
  border: 2px solid #0075E5;
  color: #0075E5;
}
.stasus-tag.alert {
  background: #F8D7DA;
  border: 2px solid #D4442E;
  color: #D4442E;
}

/* 切り替えトグル */
.change-toggle {
  cursor: pointer;
}
.change-toggle-wrapper .change-toggle .change {
  height: 13px;
  margin-left: 2px;
}


/* select2 */
.form-control-sm.select2 + span span.select2-selection.select2-selection--single { height: 22px; }
.form-control-md.select2 + span span.select2-selection.select2-selection--single { height: 25px; }
.form-control-lg.select2 + span span.select2-selection.select2-selection--single { height: 28px; }
.form-control-sm.select2 + span .select2-selection--single .select2-selection__rendered { line-height: 22px; }
.form-control-md.select2 + span .select2-selection--single .select2-selection__rendered { line-height: 25px; }
.form-control-lg.select2 + span .select2-selection--single .select2-selection__rendered { line-height: 28px; }
.form-control-sm.select2 + span .select2-selection--single .select2-selection__arrow { height: 22px; }
.form-control-md.select2 + span .select2-selection--single .select2-selection__arrow { height: 22px; }
.form-control-lg.select2 + span .select2-selection--single .select2-selection__arrow { height: 22px; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
  /* display: block; */
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none
}

.select2-dropdown {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051
}

.select2-results {
  display: block
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none
}

.select2-results__option--selectable {
  cursor: pointer
}

.select2-container--open .select2-dropdown {
  left: 0
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.select2-search--dropdown {
  display: block;
  padding: 4px
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
  display: none
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0)
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 3px
}

.is-invalid + span span.select2-selection.select2-selection--single {
  border: 1px solid var(--alert-color);
  background: var(--alert-bg-color);
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px
}

/* .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
} */

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em
}

.select2-container--default .select2-results__option--group {
  padding: 0
}

.select2-container--default .select2-results__option--disabled {
  color: #999
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #1967d2;
  color: white
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
  border-top: none
}

.select2-container--classic .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto
}

.select2-container--classic .select2-results__option--group {
  padding: 0
}

.select2-container--classic .select2-results__option--disabled {
  color: grey
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb
}


/* auto complete */
.ui-autocomplete{
  z-index:9999;
}