/*
 * 관리자 스타일
 *
 * Last Modified: 2014/07/15
 */
@charset "utf-8";
@import "tree.css";

/* #management {
	font-size: 13px;
} */

/** 정렬 관련 **/
.fl_left {
  float: left;
}

.fl_right {
  float: right;
}

.clear_both {
  clear: both;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

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

.font9 {
  font-size: 9px;
  line-height: 120%;
}

.hand {
  cursor: pointer;
}

select > option.active {
  background-color: darkblue;
  color: white;
}

.grey {
  color: #d3d3d3;
}

.gray {
  color: #808080;
}

/***********************************************************************************************
 * bootstrap overwrite
 */

/* .container {
  width: 1920px !important;
} */

.form-horizontal .control-group {
  margin-bottom: 8px;
}

.form-horizontal .sep-before {
  margin-top: 2.5em;
}

.form-horizontal .sep-after {
  margin-bottom: 2.5em;
}

.navbar-inverse .navbar-inner {
  background-color: #213950;
  background-image: none;
  filter: none;
}

.navbar-inverse .nav > li > a {
  color: #ddd;
  padding: 15px 15px;
}

.navbar-inverse .nav > li > a:hover {
  background-color: #3a6288;
}

.navbar-inverse .navbar-inner .active > a,
.navbar-inverse .navbar-inner .active > a:hover {
  background-color: #262630;
}

ul.dropdown-menu > li > a:focus,
ul.dropdown-menu > li > a:hover {
  color: #333;
  text-decoration: none;
  background-color: #ece;
  background-image: none;
  filter: none;
}

.tabbable ul.nav {
  margin-bottom: 0;
}

.tabbable .tab-content {
  padding: 40px 0 20px;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.container .row .span6 {
  width: 525px;
}

/* max 548 */

.ie678 .container,
.ie678 .span12 {
  width: 1170px;
}

.ie678 .span2 {
  width: 180px;
}

.ie678 .span3 {
  width: 270px;
}

.ie678 .span4 {
  width: 370px;
}

.ie678 .span5 {
  width: 470px;
}

.ie678 .span6 {
  width: 585px;
}

.ie678 .span9 {
  width: 870px;
}

.ie678 .span10 {
  width: 970px;
}

.ie67 ul.nav > li.dropdown > ul.dropdown-menu {
  margin-top: 5px;
}

.ie67 .nav > li > a {
  max-height: 50px;
}

.page-header {
  border-bottom: 1px solid #eee;
  margin: 20px 0 30px;
  padding-bottom: 9px;
}

.page-header h3 {
  line-height: 1;
}

.page-header h3 small {
  font-size: 18px;
}

.controls > .checkbox.inline > .fixed1 {
  width: 100px;
  display: inline-block;
}

.controls > .checkbox.inline > .fixed2 {
  width: 200px;
  display: inline-block;
}

.controls > .checkbox.inline > .fixed3 {
  width: 300px;
  display: inline-block;
}

/** Summernote overload */
.note-editor.note-frame {
	opacity: 1;
	background-color:#fefefe;
}

.table.daily>tbody>tr:last-child>td,
.table.daily>tr:last-child>td {
	border-bottom-width: 0;
}
.table.daily td {
	border-style: dotted;
	border-color: #ddd;
}
tr.holiday th,
tr.holiday td,
tr.sat th,
tr.sun th,
tr.sat td,
tr.sun td {
	background-color: #f6f6f6 !important;
}
table.daily td.late {
	color: red;
	font-weight: bold;
}
table.daily td.normal-date{
	color: #ababab;
}
table.daily td.filled {
	font-style: italic;
	color: #00ffff;
}


/***********************************************************************************************
 * <header>
 */
/* body {
  padding: 60px 1em 10px 1em;
} */
body {
	padding: 0;
}

body[data-task="approval_add"] {
  padding: 10px;
}

.navbar .help {
  float: right;
  color: #999;
  padding: 10px 20px 10px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 30px rgba(255, 255, 255, 0.125);
}

.navbar .help:hover {
  text-decoration: none;
  color: #fff;
}

.navbar .sitename {
  padding: 15px 0;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 1px 1px 1px #666;
}

.navbar .dropdown-menu {
  font-size: 11pt;
}

section .container {
  background: none;
  padding: 0;
}

/***********************************************************************************************
 * Form common
 */
.group-header {
  width: 100%;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 24px;
}

.group-header > .topic {
  display: inline-block;

  width: 180px;
  padding: 4px 0;
  height: 24px;
  line-height: 24px;

  color: #333;
  font-weight: bold;
  text-align: center;

  background-color: #e9e9e9;

  background: -moz-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  /* FF3.6+ */

  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #fafafa),
    color-stop(100%, #e9e9e9)
  );
  /* Chrome,Safari4+ */

  background: -webkit-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  /* Chrome10+,Safari5.1+ */

  background: -o-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  /* Opera11.10+ */

  background: -ms-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  /* IE10+ */

  background: linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  /* W3C */

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";

  border: 1px solid #d5d5d5;
  border-bottom: 0;

  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;

  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-background-clip: padding-box;
}

.group-header > .description {
  margin-left: 16px;
  display: inline-block;
}

.span5 .form-horizontal label.control-label,
.span6 .form-horizontal label.control-label {
  width: 140px;
}

.span5 .form-horizontal .controls,
.span6 .form-horizontal .controls {
  margin-left: 160px;
}

.ie67 .span6 .form-horizontal .controls {
  margin-left: 0;
}

.grid > .row {
  width: 100%;
  margin: 0;
}

.grid > .row .span1 {
  width: 8.333%;
}

.grid > .row .span2 {
  width: 16.666%;
}

.grid > .row .span5 {
  width: 41.665%;
}

.grid > .row .span6 {
  width: 47.6%;
}

.grid > .row .span10 {
  width: 83.333%;
}

.grid > .row .span12 {
  width: 100%;
}

/***********************************************************************************************
 * Misc
 */
.highlight {
  background-color: #ffc;
  border: 1px dotted #dde;
}

#list_wrap table,
.list-wrap[data-state] {
  font-size: 10pt;
}

.list-wrap table > tbody > tr[data-eid] > td,
.list-wrap table > tbody.single-line > tr[data-item] > td {
  height: 24px;
  line-height: 24px;
}

.list-wrap table > tbody > tr[data-eid].item:hover,
.list-wrap table > tbody.single-line > tr[data-item]:hover {
  cursor: pointer;
  background-color: #ffe;
}

.loadpage-mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
}

.loadpage-mask > .loading {
  width: 330px;
  height: 330px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -165px;
  margin-left: -165px;
  background: url(../images/loading/loading3.gif) no-repeat 0 0;
}

.loadpage-mask.dark-mask {
  background-color: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE8 */
  filter: alpha(opacity=50);
  /* IE5-7 */
  opacity: 0.5;
}

#modalBox > .loading {
  background-color: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  /* IE8 */
  filter: alpha(opacity=75);
  /* IE5-7 */
  opacity: 0.75;
  border-radius: 8px;
}

/***********************************************************************************************
 * Common
 */
form {
  margin: 0;
}

.dynamic-input-box {
  position: absolute;
  top: -1000px;
  left: 0;
  /* Chrome -6, 5 */
  margin-top: -6px;
  margin-left: 5px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  /* IE8 */
  filter: alpha(opacity=90);
  /* IE5-7 */
  opacity: 0.9;
}

input[type="text"].dynamic-input-box::-ms-clear,
input[type="text"].dynamic-input-box::-ms-reveal {
  display: none;
}

.dynamic-input-sending {
  position: absolute;
  top: 3px;
  right: -22px;
}

.form-wrap {
  position: relative;
}

/***********************************************************************************************
 * Login
 */
[data-task="login"] {
  background-color: #ebebeb;
}

#loginWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 480px;
  margin-top: -256px;
  margin-left: -400px;
  border: 1px solid #bdbdbd;
  background-color: #fff;
  box-shadow: 4px 4px 8px #c6c6c6;
}

#loginForm > fieldset {
  border: 0;
}

#loginForm > fieldset > legend {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #efefef;
  color: #09acf8;
  text-shadow: 1px 1px #bbb;
}

#loginForm > fieldset > legend > .sitename {
  color: #3576bd;
}

/* #loginForm>fieldset>.login-bg {
	position: absolute;
	top: 130px;
	left: 430px;
	width: 256px;
	height: 256px;
	background: url(../images/login_admin_img.png) no-repeat 0 0 transparent;
} */
#loginForm > fieldset > .control-group {
  margin-left: 60px;
}

#loginForm > fieldset > .control-group > label {
  font-weight: bold;
}

#loginWrap > .copyright {
  position: absolute;
  bottom: -40px;
  color: #9c9c9c;
  text-shadow: 1px 1px #fff;
  text-align: right;
  width: 800px;
}

/***********************************************************************************************
 * Env
 */
section#env span.uneditable-input {
  width: auto;
}

#deliveryFormWrap {
  position: absolute;
  display: none;
}

.main-slide-preview {
  min-height: 50px;
  border: 1px solid #999;
  background-color: #eee;
}

.main-slide-preview > .text {
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  color: #666;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 1px 1px #fff;
}

.main-slide-caption {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 5px 15px;
  color: #fff;
  text-shadow: 1px 1px #666;
  background-color: #333;
  border-radius: 0 0 6px 6px;
  box-shadow: 2px 6px 16px -6px #999;
}

ul.item-thumbs > li {
  border: 1px solid #eee;
  text-align: center;
  padding: 1px;
  margin: 2px;
}

ul.item-thumbs > li:hover {
  background-color: #eee;
  color: #333;
}

ul.item-thumbs > li.empty {
  border: 1px dotted #999;
}

ul.item-thumbs > li.choice {
  border: 1px double #f00;
}

ul.item-thumbs > li.choice > img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE8 */
  filter: alpha(opacity=50);
  /* IE5-7 */
  opacity: 0.5;
}

.ie67 ul.item-thumbs > li {
  float: left;
}

/* 50pixel thumbs */
a.search-item.small-thumb,
a.delete-item.small-thumb {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 1px dotted #ccc;
}

a.search-item:hover,
a.delete-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

/* env */
#searchPageLink {
  position: absolute;
  display: none;
}

#env #searchCategory .tree {
  min-width: 500px;
  max-height: 500px;
  overflow-y: auto;
}

#env #searchBrand,
#env #searchCategory,
#env #searchItems {
  background-color: #fff;
  position: absolute;
  border: 1px solid #999;
  box-shadow: 2px 6px 16px -6px #999;
  margin-bottom: 2em;
}

#searchBrand ul.list-inline > li,
#searchItems ul.list-inline > li {
  padding: 5px !important;
  border: 1px solid #fcfcfc;
  margin-right: 1px;
  margin-bottom: 1px;
}

#searchBrand ul.list-inline > li:hover,
#searchItems ul.list-inline > li:hover {
  border: 1px solid #333;
  cursor: pointer;
}

#searchBrand .status-bar,
#searchItems .status-bar {
  margin-top: 0.5em;
  background-color: #ccc;
  border-top: 1px solid #999;
  color: #333;
  padding: 5px 15px;
}

#searchCategory .status-bar {
  background-color: #d5d5d5;
  border-bottom: 1px solid #999;
  padding: 5px 15px;
  color: #333;
}

.preview-design-picture {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: none;
  box-shadow: 2px 6px 16px -6px #999;
}

.preview-design-picture > .picture {
  border: 1px solid #999;
}

#categoryImageWrap {
  position: relative;
  min-height: 417px;
}

#categoryImageWrap .cate-image-preview {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 1px solid #ddd;
  width: 225px;
  height: 207px;
  background-color: #eee;
  text-align: center;
  overflow: hidden;
}

#categoryImageWrap .cate-image-preview > span.text {
  display: inline-block;
  margin-top: 91px;
  font-size: 42px;
  font-family: "Noto Sans KR", "맑은고딕", helvetica, sans-serif;
  color: #ddd;
  text-shadow: -1px -1px #ccc;
}

/***********************************************************************************************
 * Product>Category
 */
.tree li[data-hidden="Y"] {
  font-style: italic;
  /*text-decoration: line-through;*/
}

.tree li[data-hidden="Y"] > a:after {
  content: " [숨김]";
  font-size: 11px;
  color: #f00;
}

#search_select_category > option {
  white-space: pre;
}

.search-wrap.widget > .widget-body > form {
  margin: 12px 0 0 0;
}

table.product-items > tbody > tr > td > ul.list-unstyled > li {
  position: relative;
}

ul.category > li.category.empty {
  border: 1px dotted #f00;
  background-color: #eee;
}

/***********************************************************************************************
 * Product>Brand
 */
ul.brands {
  margin-left: 10px;
}

ul.brands > li.brand {
  width: 200px;
  height: 40px;
  border: 1px solid #999;
  border-radius: 3px;
  box-shadow: 2px 2px 3px #eee;
  float: left;
  padding: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  /*background-color: #ffffc1;
	background-color: rgba(255,255,200, .5);*/
  position: relative;
}

ul.brands > li.brand:hover {
  cursor: pointer;

  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  *background-color: #0044cc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#0088cc),
    to(#0044cc)
  );
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

ul.brands > li.brand.disabled,
ul.brands > li.brand.disabled:hover {
  background-color: #eee;
  background-image: none;
  color: #999;
}

ul.brands > li.brand > .brand_name {
  font-weight: bold;
  width: 200px;
}

ul.brands > li.brand > .brand_aka {
  width: 192px;
  margin-left: 8px;
  color: #bbb;
}

ul.brands > li.brand > .loading {
  margin-top: -60px;
  margin-left: 95px;
}

ul.brands > li.brand > a.control {
  position: absolute;
  top: 0;
  display: none;
  opacity: 0.9;
}

ul.brands > li.brand > a.control.move {
  right: 7px;
}

ul.brands > li.brand > a.control.edit {
  right: 25px;
}

ul.brands > li.brand > a.control.remove {
  right: 43px;
}

ul.brands > li.brand:hover > a.control {
  display: block;
}

ul.brands > li.brand > a.control:hover {
  opacity: 1;
}

ul.brands > li.brand > a.control:active {
  top: 1px;
}

ul.brands > li.brand > .brand-image {
  width: 150px;
  height: 60px;
  overflow: hidden;
  border-radius: 3px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  /* IE8 */
  filter: alpha(opacity=20);
  /* IE5-7 */
  opacity: 0.2;
}

#brandImagePreview {
}

#brandImagePreview img {
  margin: 10px 0;
  border: 1px solid #eee;
}

#brandImagePreview span {
  margin-left: 10px;
  color: #999;
}

#brandImagePreview span.label {
  color: #fff;
}

/***********************************************************************************************
 * Product>Item
 */
.cate_prefix {
  margin-right: 3px;
}

.list-inline.product-item {
  width: 100%;
}

/* 700px; */
.list-inline.product-item > li {
  display: inline-block;
}

.list-inline.product-item > li.thumb {
  width: 60px;
}

.list-inline.product-item > li.thumb .item-image {
  border: 1px dotted #ccc;
  opacity: 1;
  margin-top: 4px;
}

.list-inline.product-item > li.thumb .item-image:hover {
  border: 1px solid #ccc;
  opacity: 0.9;
}

.list-inline.product-item > li.info {
  min-width: 500px;
}

/* CHANGE */
.list-inline.product-item > li.info-short {
  width: auto;
  min-width: 50px;
  padding-top: 9px;
}

.list-inline.product-item > li.flag {
  width: 100px;
}

.table.product-items label {
  margin-bottom: 0;
}

.table.product-items span.price {
  display: inline-block;
  width: 90px;
  margin-left: 10px;
  margin-top: -1px;
  margin-bottom: 2px;
  border: 1px dotted #eee;
}

.table.product-items span.price:hover {
  cursor: pointer;
  background-color: #ffd;
  border: 1px solid #bbb;
}

.table.product-items a.form-link {
  color: #181818;
}

.table.product-items a.form-link:hover {
  color: #00e;
}

.table.product-items ul[disabled] span.price,
.table.product-items ul[disabled] span.price:hover {
  border-color: #f5f5f5;
  background-color: #fff;
  color: #ccc;
  text-align: right;
}

.form-wrap .item-picture {
  position: absolute;
  top: 210px;
  right: 28px;
  min-width: 200px;
  min-height: 200px;

  border: 1px solid #eee;
  display: none;
}

.form-wrap textarea#input_description {
  display: none;
}

.ie67 .list-inline.product-item > li.info {
  width: 520px;
}

.ie67 .table.product-items span.price {
  margin-top: 0;
}

.item-pictures > ul.thumbnails {
  margin-left: 30px;
  margin-bottom: 40px;
}

.item-pictures > ul.thumbnails > li {
  padding: 5px;
  position: relative;
}

.item-pictures > ul.thumbnails > li > a.delete {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.item-pictures > ul.thumbnails > li > a.enlarge {
  display: none;
  position: absolute;
  top: 0;
  left: 24px;
}

.item-pictures > ul.thumbnails > li > img.item-image {
  opacity: 0.8;
}

.item-pictures > ul.thumbnails > li > .caption {
  text-align: center;
  padding: 4px 0;
  font-size: 12px;
  color: #bbb;
}

.item-pictures > ul.thumbnails > li:hover > .caption {
  color: #333;
}

.item-pictures > ul.thumbnails > li:hover > a.label {
  display: block;
}

.item-pictures > ul.thumbnails > li:hover > img.item-image {
  border: 1px solid #ccc;
  opacity: 1;
}

.item-pictures > ul.thumbnails > li.active {
  margin-left: -2px;
}

.item-pictures > ul.thumbnails > li.active:hover > img,
.item-pictures > ul.thumbnails > li.active > img {
  border: 2px solid #9d94d1;
  box-shadow: 2px 6px 16px -6px #999;
}

.item-pictures > ul.thumbnails > li.active > .caption {
  font-weight: bold;
  color: #329;
}

.item-pictures > ul.thumbnails > li.active:hover > .caption {
  color: #55f;
}

.item-pictures > ul.thumbnails > li.active:hover > img {
  border-color: #b3a9ec;
}

/* cmd=item-pictures
 */
.item-pictures-selector {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 10%;
  left: 10%;
  background-color: #fff;
  box-shadow: 3px 3px 3px #ccc;
}

.item-pictures-selector .widget-body {
  overflow: auto;
  height: 100%;
}

.dir-thumb,
.picture-thumb {
  width: 100px;
  height: 100px;
  background-color: #eee;
  border: 1px solid #ccc;
  margin: 5px;
  float: left;
}

.dir-thumb {
  line-height: 100px;
  text-align: center;
  font-weight: bold;
}

.dir-thumb:hover {
  font-style: italic;
  background-color: #ffc;
  cursor: pointer;
  text-transform: uppercase;
}

.picture-thumb:hover {
  border-color: #999;
  opacity: 0.8;
}

/***********************************************************************************************
 * Member
 */

/***********************************************************************************************
 * Order
 */
.order-extra-info {
  line-height: 30px;
  padding-left: 12px;
}

.order-stat-btns .btn-warning {
  color: #333;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.order-stat-btns .btn.active {
  font-weight: bold;
  font-style: italic;
}

.label.stat {
  padding: 4px 6px;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
}

.label.stat-step1,
.table tbody tr.stat-step1 > td {
  /* info */
  color: #333333;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #faa732;
  *background-color: #f89406;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#fbb450),
    to(#f89406)
  );
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.label.stat-step2,
.table tbody tr.stat-step2 > td {
  /* success */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  *background-color: #51a351;
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#62c462),
    to(#51a351)
  );
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.label.stat-step3,
.table tbody tr.stat-step3 > td {
  /* primary */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  *background-color: #0044cc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#0088cc),
    to(#0044cc)
  );
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.label.stat-step4,
.table tbody tr.stat-step4 > td {
  /* danger */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  *background-color: #bd362f;
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#ee5f5b),
    to(#bd362f)
  );
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.label.stat-step5,
.table tbody tr.stat-step5 > td {
  /* inverse */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  *background-color: #222222;
  background-image: -moz-linear-gradient(top, #444444, #222222);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#444444),
    to(#222222)
  );
  background-image: -webkit-linear-gradient(top, #444444, #222222);
  background-image: -o-linear-gradient(top, #444444, #222222);
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.label.stat-step6,
.table tbody tr.stat-step6 > td {
  /* success */
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  *background-color: #51a351;
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#62c462),
    to(#51a351)
  );
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.list-wrap[data-state="estimate"] > table > tbody > tr > td[data-mno]:hover,
.list-wrap[data-state="order"] > table > tbody > tr > td[data-mno]:hover {
  color: #30f;
  font-weight: bold;
}

.list-wrap[data-state="estimate"] > table > tbody > tr.active > td,
.list-wrap[data-state="order"] > table > tbody > tr.active > td {
  /*color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);*/
  background-color: #f0dad9;
  *background-color: #ecece5;
  background-image: -moz-linear-gradient(top, #f0dad9, #ecece5);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#f0dad9),
    to(#ecece5)
  );
  background-image: -webkit-linear-gradient(top, #f0dad9, #ecece5);
  background-image: -o-linear-gradient(top, #f0dad9, #ecece5);
  background-image: linear-gradient(to bottom, #f0dad9, #ecece5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0dad9', endColorstr='#ffecece5', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.trade-info-wrap .order-memo {
  border: 1px dotted #ccc;
  margin: 0 30px 10px;
  padding: 10px;
  word-break: break-all;
  white-space: pre-line;
}

.trade-info-wrap dl.dl-horizontal > dt {
  width: 120px;
}

.trade-info-wrap dl.dl-horizontal > dd {
  margin-left: 140px;
  padding-right: 20px;
}

.trade-info-wrap .row-fluid > .span6 > form > fieldset {
  margin: 0;
  padding: 0;
}

.trade-info-wrap .row-fluid > .span12 {
  margin: 10px 0;
}

.trade-info-wrap label.radio {
  font-size: 13px;
  margin-bottom: 0;
}

.trade-info-wrap tr.sum > td,
.trade-info-wrap tr.sum > th {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #eee;
}

.ie678 .trade-info-wrap .row-fluid > .span6 {
  width: 48.8%;
}

.estimate-items table > tbody.single-line > tr > td {
  vertical-align: middle;
}

input.input-estimate-price {
  width: 80px;
  height: 24px;
  text-align: right;
  padding-right: 5px;
}

.chart-wrap {
  margin-top: 10px;
  margin-bottom: 20px;
}

.summary-chart-canvas {
  margin-left: 40px;
}

.summary-chart-title {
  margin-top: -10px;
  width: 860px;
}

.summary-chart-title > h4 > span.text {
  font-size: 13px;
  color: #666;
}

.summary-chart-legend span.dataset-amount {
  background-color: #dcdcdc;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 12px;
  text-shadow: 1px 1px 1px #fcfcfc;
}

.summary-chart-legend span.dataset-count {
  background-color: #97bbcd;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 12px;
  text-shadow: 1px 1px 1px #fcfcfc;
}

#order #searchItemForm {
  margin-top: 0;
}

ul.item-search-thumbs > li {
  position: relative;
}

ul.item-search-thumbs > li > .item-info {
  display: none;
  position: absolute;
  z-index: 999;
  top: 62px;
  right: 0;
  width: 200px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #c3ccd2;
}

ul.item-search-thumbs > li:hover > .item-info {
  display: block;
}

ul.item-search-thumbs > li > .item-info > .arrow {
  background: url(../images/nav-arrows.png) no-repeat 0 0;
  display: inline-block;
  width: 9px;
  height: 17px;
  position: absolute;
  top: 5px;
}

ul.item-search-thumbs > li.top > .item-info > .arrow,
ul.item-search-thumbs > li.bottom > .item-info > .arrow {
  width: 17px;
  height: 9px;
  right: 10px;
}

ul.item-search-thumbs > li > .item-info > .arrow.arrow-left {
  left: -9px;
}

ul.item-search-thumbs > li > .item-info > .arrow.arrow-right {
}

ul.item-search-thumbs > li > .item-info > .arrow.arrow-top {
  top: -9px;
  background-position: -18px 0px;
}

ul.item-search-thumbs > li > .item-info > .arrow.arrow-bottom {
}

#searchItems > .list-wrap {
  margin-top: 20px;
}

#searchItems > .list-wrap > .table > tbody > tr > td > img {
  float: left;
}

#searchItems > .list-wrap > .table > tbody > tr > td > img + span {
  margin-top: 5px;
  margin-left: 10px;
  display: inline-block;
  line-height: 20px;
}

#searchItems .order-sum {
  background: url(../images/cartsumbg.png) repeat 0 0 transparent;
  border: 1px solid #bcbdc1;
  padding: 14px 14px 14px 24px;
  height: 46px;
  line-height: 46px;
}

#searchItems .order-sum input {
  margin: 0;
  text-align: right;
}

#searchItems .order-sum .price {
  color: darkred;
  font-weight: bold;
}

#orderForm .order-form-block {
  border-color: #fa3b3b;
}

.trade-info-wrap .row-fluid {
  width: 1090px;
}

.trade-info-wrap .active-mark {
  margin-top: -26px;
  margin-left: -10px;
  height: 28px;
}

#memberOrderContainer > tr.active > td {
  background-color: #fff698;
}

.table tr.summary-sum > td {
  padding: 10px 8px;
  background-color: #eee;
  font-weight: bold;
}

.table tr.summary-sum > td.red {
  color: #f80000;
  font-size: 16px;
}

.table tr.summary-sum > td.blue {
  color: #8282ff;
  font-size: 16px;
}

.table tr.pad-b td {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Chart color */
.summary-type0 {
  color: #f60000;
  font-size: 24.5px;
}

/* current */
.summary-type1 {
  color: #8282ff;
  font-size: 20px;
}

.summary-type2 {
  color: #00f600;
  font-size: 20px;
}

.stat-chart-caption {
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 12px;
  text-shadow: 1px 1px 1px #fcfcfc;
  margin-left: 2px;
}

.stat-chart1 {
  background-color: #f60000;
}

.stat-chart2 {
  background-color: #8282ff;
}

.stat-chart3 {
  background-color: #00f600;
}

/***********************************************************************************************
 * eidtable
 */
#attachListForm input {
  margin-bottom: 0;
}

/***********************************************************************************************
 * Board
 */
#bmForm .controls.board-types > label.radio span {
  display: inline-block;
  width: 180px;
}

#bmForm .controls.board-types > label.radio span + span {
  width: auto;
  margin-left: 20px;
  display: none;
}

#bmForm .controls.board-types > label.radio > input:checked + span + span {
  display: inline-block;
}

#bmForm .controls.board-types > label.radio.active > input + span {
  font-weight: bold;
  font-style: italic;
}

#bmForm .controls.board-types > label.radio.active > input + span:before {
  content: "\2713";
}

#board .list-wrap > .table > tbody > tr[data-hide="1"] > td {
  font-style: italic;
}

/***********************************************************************************************
 * Home
 */
.home > [class*="span"] {
  margin-left: 0;
}

#home > .container > .rows {
  border: 0;
}

#home > .container > .rows > .span12 {
  width: 100%;
}

/***********************************************************************************************
 * Popup
 */
#popupForm .attach-container > .before {
  float: left;
}

#popupForm .attach-container > .before > img {
  border: 1px solid #666;
  margin-right: 10px;
}

#popupForm .attach-container > .after {
  float: left;
}

#popupForm .attach-container > .after > img,
#popupForm .attach-container > .after > .text {
  border: 1px solid #333;
}

#popupForm .attach-container > .after > img {
  max-width: 200px;
}

#popupForm .attach-container > .after > .text {
  width: 200px;
  height: 400px;
}

#popupListBody > tr {
  cursor: pointer;
}

#popupListBody > tr > td {
  vertical-align: middle;
}

#popupListBody > tr > td > img {
  border: 1px dotted #999;
}

/***********************************************************************************************
 * Schedule
 */
table.tb_schedule_day {
  margin: 5px;
  width: 100%;
  border: 1px solid #ff6600;
}

table.tb_schedule_day th {
  text-align: right;
  padding: 5px;
  vertical-align: top;
}

table.tb_schedule_day td {
  padding: 5px;
  vertical-align: top;
}

table.tb_schedule {
  width: 100%;
}

table.tb_schedule th {
  padding: 5px;
}

table.tb_schedule td {
  vertical-align: top;
  padding: 5px;
  min-height: 60px;
}

table.tb_schedule td.sat {
  color: #0000ff;
}

table.tb_schedule td.sun {
  color: #ff6c21;
}

table.tb_schedule td.today {
  background: #99ffff;
}

table.tb_schedule td span {
  cursor: pointer;
}

.title_ym {
  display: none;
}

div.btn_small {
  cursor: pointer;
  text-align: center;
  text-shadow: 0 0 0;
  width: 42px;
  height: 20px;
  line-height: 20px;
  font-weight: normal;
  font-size: 11px;
  color: #666666;
  border: 1px solid #cccccc;
  background: #efefef;
}

/***********************************************************************************************
 * Reserve
 */
tr.rows_info {
  font-weight: bold;
}

tr.rows_detail {
  background: #efefef;
}

td div.discount {
  float: left;
  height: 9px;
  margin: 5px;
  padding: 3px;
  color: #ffffff;
  font-size: 9px;
  font-weight: normal;
  line-height: 9px;
  background: #ff6600;
}

/***********************************************************************************************
 * Inquiry
 */
tr[data-lock="1"] > td {
  color: #999;
  font-style: italic;
}

tr[data-lock="99"] > td {
  color: #bbb;
  font-style: italic;
  text-decoration: line-through;
}

tr[haccp-lock="1"] > td,
tr[haccp-lock="2"] > td {
  color: #bbb;
  font-style: italic;
  text-decoration: line-through;
}

/***********************************************************************************************
 * Approval
 */
span.pull-right div {
  float: left;
  margin-left: 3px;
}

div.btn_small {
  cursor: pointer;
  text-align: center;
  text-shadow: 0 0 0;
  width: 42px;
  height: 20px;
  line-height: 20px;
  font-weight: normal;
  font-size: 11px;
  color: #666666;
  border: 1px solid #cccccc;
  background: #efefef;
}

div.ml400 {
  margin-left: 400px;
}

div.ml600 {
  margin-left: 600px;
}

div.ml860 {
  margin-left: 860px;
}

div.approval {
  /* position: absolute; */
  padding: 5px;
  width: 240px;
  height: 170px;
  border: 1px solid #efefef;
}

div.approval_sign {
  position: absolute;
  padding: 5px;
  width: 700px;
  height: 170px;
  border: 0;
}

div.approval_sign_print {
  width: 600px;
}

.widget-body1 {
  margin-top: -50px;
}

div.approval_sign ul {
  float: right;
  margin: 1px;
}

div.approval_sign ul li {
  width: 85px;
}

div.approval_sign ul li:first-child {
  padding: 3px 0;
  text-align: center;
  border: 1px solid #cccccc;
  background: #efefef;
}

div.approval_sign ul li:last-child {
  padding: 20px 0;
  text-align: center;
  border: 1px solid #cccccc;
  border-top: 0;
}

div.approval span.fleft,
div.approval label.fleft {
  float: left;
}

div.approval select {
  width: 240px;
  height: 120px;
}

.fa-paperclip,
.icon-trash,
div.approval img.chand {
  cursor: pointer;
}

div.approval center {
  padding-top: 5px;
}

div.approval_add {
  padding: 10px;
  border: 1px solid #dcdcdc;
}

div.approval_add ul {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

div.approval_add ul li {
  float: left;
  width: 50%;
}

div.btn_area {
  margin: 10px auto;
  text-align: center;
}

div.read_form div div.controls {
  padding-top: 5px;
}

td.status0 {
  color: #ffffff;
  background: #999999;
}

td.status1 {
  color: #ffffff;
  background: #ff6600;
}

td.status2 {
  color: #ffffff;
  background: #005500;
}

.fleft {
  float: left;
}

div.btn_memo {
  margin-left: 5px;
  height: 28px;
  line-height: 28px;
}

.memos span {
  color: #888888;
  font-size: 0.85em;
}

.home span.label {
  padding: 4px 4px;
}

.home span.label + span.label {
  margin-right: 5px;
}

.single-line > tr td table.table {
  margin: 0;
  padding: 0;
  width: 100%;
}

.single-line > tr td table.table tr.fst td {
  border-top: 0;
}

@media only screen and (max-width: 1169.98px) {
  .container {
    width: 100% !important;
  }

  .navbar-inverse .nav > li > a {
    padding: 15px 9px;
  }

  #btnFullWidth {
    display: none;
  }
}

/***********************************************************************************************
 * Parcel
 */
#input_receipt_date.form-control::placeholder,
#input_class.form-control::placeholder,
#input_pickup_date.form-control::placeholder,
#input_tax_invoice.form-control::placeholder,
#input_tax_invoice_memo.form-control::placeholder,
#input_amount.form-control::placeholder,
#input_class.form-control::placeholder,
#input_delivery_number.form-control::placeholder,
#input_school_name.form-control::placeholder,
#input_withwho.form-control::placeholder,
#input_contact.form-control::placeholder,
#input_person.form-control::placeholder,
#input_mobile.form-control::placeholder,
#input_address.form-control::placeholder,
#input_quantity.form-control::placeholder,
#input_item.form-control::placeholder,
#input_significant.form-control::placeholder,
#input_courier.form-control::placeholder,
#input_courier_delivery_start_date.form-control::placeholder {
  color: #adb5bd;
}