@charset "UTF-8";

.btn {
  display: inline-block;
  position: relative;
  padding: 1px 0;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background: #fff;
  border: 0;
  border-radius: 4px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, background-color .15s ease-in-out;
  font-size: 15px;
  height: 28px;
  line-height: 20px;
}

.btn-combo {
  line-height: 28px;
}

.btn[disabled], .btn.disabled, fiedlset[disabled] .btn {
  cursor: not-allowed;
  background: #e1e1e2;
  color: #212121;
}

.btn.btn-white {
  background: #fff;
  color: #333;
  border: 1px solid #979797;
}

.btn.btn-white:hover, .btn.btn-white:active, .btn.btn-white.active {
  background: #f3f5f7;
}

.btn.btn-blue {
  background: #005eae;
  color: #fff;
  border: 1px solid #005eae;
  font-weight: 500;
}

.btn.btn-blue:hover, .btn.btn-blue:active, .btn.btn-blue.active {
  background: #004e90;
}

.btn.btn-blue.outline {
  background: #fff;
  color: #005eae;
  border: 1px solid #005eae;
  font-weight: 500;
}

.btn.btn-blue.outline:hover, .btn.btn-blue.outline:active, .btn.btn-blue.outline.active {
  background: #eef6ff;
}

.btn.btn-gray {
  background: #4d4d4d;
  color: #fff;
  border: 1px solid #4d4d4d;
  font-weight: 500;
}

.btn.btn-gray:hover, .btn.btn-gray:active, .btn.btn-gray.active {
  background: #767676;
  border: 1px solid #767676;
}

.btn.btn-gray.outline {
  background: #fff;
  color: #666;
  border: 1px solid #666;
  font-weight: 500;
}

.btn.btn-gray.outline:hover, .btn.btn-gray.outline:active, .btn.btn-gray.outline.active {
  background: #f3f5f7;
}

.btn-sm-1 {
  width: 62px;
  height: 26px;
  font-size: 15px;
}

.btn-sm-2 {
  width: 72px;
  height: 28px;
  font-size: 15px;
}

.btn-sm {
  width: 52px;
  height: 35px
}

.btn-md {
  width: 130px;
  height: 35px;
  font-size: 16px;
}

.btn-lg {
  width: 148px;
  height: 48px;
  font-size: 16px;
}

.btn.btn-primary {
  background: #4692e9;
  color: #fff;
  border: 1px solid #4692e9;
}

.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary.active {
  background: #2378d9;
  border-color: 1px solid #2378d9;
}

.btn.btn-primary:focus, .btn.btn-primary:active:focus, .btn.btn-primary.active:focus, .btn.btn-primary.focus, .btn.btn-primary:active.focus,
  .btn.btn-primary.active.focus {
  box-shadow: 0 0 0 2px #80d99b;
  outline: none;
}

.btn.btn-secondary {
  background: #a4a4a4;
  color: #fff;
  border: 1px solid #a4a4a4;
}

.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary.active {
  background: #777777;
  border: 1px solid #777777;
}

.btn.btn-secondary:focus, .btn.btn-secondary:active:focus, .btn.btn-secondary.active:focus, .btn.btn-secondary.focus,
  .btn.btn-secondary:active.focus, .btn.btn-secondary.active.focus {
  box-shadow: 0 0 0 2px #eee;
  outline: none;
}

.input-control[type=text] {
  display: inline-block;
  width: 160px;
  line-height: 1.33;
  padding: 4px 10px;
  height: 28px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-control[type=text]:focus, .input-control[type=text]:active:focus, .input-control[type=text].active:focus,
  .input-control[type=text].focus, .input-control[type=text]:active.focus, .input-control[type=text].active.focus {
  box-shadow: 0 0 0 2px #c1c1c1;
  outline: none;
}

.input-control[type=text]:hover, .input-control[type=text]:active, .input-control[type=text].active {
  border: 1px solid #a4a4a4;
}

input[type=text].disabled {
  border: 1px solid #dcdcdc;
  background-color: #f9f9f9;
  color: #333;
}

.input-control[type=text]:disabled, .input-control[type=text]:read-only, fiedlset[disabled] .input-control[type=text] {
  /* cursor: not-allowed; */
  border: 1px solid #dcdcdc;
  background-color: #f9f9f9;
  color: #333;
}

input::placeholder, textarea::placeholder {
  color: #a4a4a4;
  opacity: 1;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #a4a4a4;
}

.input-control[type=text][disabled]::placeholder, .input-control[type=text].disabled::placeholder, fiedlset[disabled] .input-control[type=text]::placeholder
  {
  color: #a4a4a4;
}

.input-control[type=radio], .input-control[type=checkbox] {
  opacity: 0;
  z-index: -1;
  display: none;
}

.input-control[type=radio]+label, .input-control[type=checkbox]+label {
  line-height: 15px;
  padding-right: 6px;
}

.input-control[type=radio]+label::before, .input-control[type=checkbox]+label::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: "";
  vertical-align: middle;
  line-height: 15px;
  margin: 0 8px 3px -17px;
  border: 1px solid #c1c1c1;
  background: #fff;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-control[type=radio]+label:hover, .input-control[type=checkbox]+label:hover {
  cursor: pointer;
  text-decoration: underline;
}

.input-control[type=radio]:checked+label::before {
  background:
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%234692e9'/%3E%3C/svg%3E");
  border: 1px solid #4692e9;
}

.input-control[type=checkbox]:checked+label::before {
  background: #fff
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3.4 3.7'%3E%3Cpath fill='%234692e9' d='m3.0428 0.77-1.4785 1.7246-0.63281-0.73828-0.40234 0.34571 1.0352 1.2051 1.8809-2.1914z'/%3E%3C/svg%3E")
    -1px -1px no-repeat;
  background-size: 14px 14px;
  border: 1px solid #4692e9;
}

.input-control.mixed[type=checkbox]:checked+label::before {
  background: #fff
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 8 8'%3E%3Crect width='4' height='3.5' fill='%234692e9'/%3E%3C/svg%3E")
    1px 2px no-repeat;
  background-size: 12px 12px;
  border: 1px solid #4692e9;
}

.input-control[type=radio][disabled]:checked+label::before {
  background:
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23c1c1c1'/%3E%3C/svg%3E");
  border: 1px solid #c1c1c1;
  opacity: 0.8;
}

.input-control[type=radio]:focus+label::before, .input-control[type=checkbox]:focus+label::before {
  box-shadow: 0 0 0 2px #9fccff;
  outline: none;
}

.input-control[type=checkbox][disabled]+label::before {
  background: #f9f9f9;
  border: 1px solid #dcdcdc;
}

.input-control[type=checkbox][disabled]:checked+label::before {
  background: #f9f9f9
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3.4 3.7'%3E%3Cpath fill='%23c1c1c1' d='m3.0428 0.77-1.4785 1.7246-0.63281-0.73828-0.40234 0.34571 1.0352 1.2051 1.8809-2.1914z'/%3E%3C/svg%3E")
    -1px -1px no-repeat;
  background-size: 14px 14px;
}

table.table-view {
  width: 100%;
  cursor: default;
}

table.table-view.top-bordered {
  border-top: 2px solid #777777;
  border-bottom: 2px solid #dcdcdc;
}

table.table-view tbody tr>th, table.table-view tbody tr>td, table.table-view tfoot tr>th, table.table-view tfoot tr>td {
  font-weight: normal;
  text-align: left;
  padding: 8px 10px;
  border: 1px solid #dcdcdc;
}

table.table-view tbody tr:last-child>th, table.table-view tbody tr:last-child>td {
  border-bottom: 0;
}

table.table-view tbody tr>th {
  background-color: #f9f9f9;
  font-weight: bold;
}

table.table-view tbody .total {
  background-color: #fff6a5;
}

table.table-view tfoot tr>th, table.table-view tfoot tr>td {
  background-color: #fff6a5;
  border-top: 1px solid #a4a4a4;
}

table.table-view tfoot tr>th {
  font-weight: bold;
}

table.table-view+table.table-view tbody tr:first-child>th, table.table-view+table.table-view tbody tr:first-child>td {
  border-top: 0;
}

table.table-view.strong {
  width: 100%;
  cursor: default;
}

table.table-view.strong tbody tr>th, table.table-view.strong tbody tr>td {
  font-weight: normal;
  text-align: left;
  padding: 6px 10px;
  border: 1px solid #adc7e5;
}

table.table-view.strong tbody tr>th {
  background-color: #e5f0fe;
}

table.table-view.strong tbody tr>td {
  background-color: #f8fbff;
}

table.table-view.tiny tbody tr>th, table.table-view.tiny tbody tr>td {
  padding: 2px 10px;
}

table.table-list {
  width: 100%;
  cursor: default;
  border-bottom: 2px solid #dcdcdc;
}

table.table-list tr>th, table.table-list tr>td {
  font-weight: normal;
  text-align: left;
  padding: 8px 10px;
}

table.table-list tbody tr>th, table.table-list tbody tr>td {
  border: 1px solid #dcdcdc;
  border-top: 0;
}

table.table-list.no-line tbody tr>th, table.table-list.no-line tbody tr>td {
  border: 0;
  border-bottom: 1px solid #dcdcdc;
}
/*
table.table-list tbody tr > td:first-child {
  border-left: none;
}
*/
table.table-list thead tr {
  border-top: 2px solid #777777;
  border-bottom: 1px solid #dcdcdc;
}

table.table-list thead tr>th {
  background-color: #f9f9f9;
  border: 1px solid #dcdcdc;
  border-bottom: 0;
  font-weight: bold;
}

table.table-list.no-line thead tr>th {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #a4a4a4;
}

table.table-list tbody tr>th {
  background-color: #f9f9f9;
}

/*****************************
 * dropdown/dropup menu
 *****************************/
.dropup, .dropdown {
  position: relative;
}

.dropdown-toggle {
  background-image: linear-gradient(45deg, transparent 50%, #14237f 50%),
    linear-gradient(135deg, #14237f 50%, transparent 50%);
  background-position: calc(100% - 10px) calc(1em + -2px), calc(100% - 5px) calc(1em + -2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  text-align: left;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  display: none;
  float: left;
  min-width: 160px;
  max-height: 250px;
  font-size: 13px;
  text-align: left;
  list-style: none;
  overflow-y: auto;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
}

.dropdown-menu.vlimit {
  max-height: 300px;
  overflow-y: auto;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu>li>a {
  display: block;
  padding: 11px 16px;
  clear: both;
  font-weight: normal;
  line-height: 28px;
  white-space: nowrap;
  color: #666666;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
  text-decoration: none;
  background-color: #f9f9f9;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
  text-decoration: none;
  background-color: #f7fafd;
  outline: 0;
}

.dropdown-menu>.disabled>a, .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus {
  color: #777;
}

.dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
}

.open>.dropdown-menu {
  display: block;
}

.open>a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

@media ( max-width : 1024px) {
  .btn {
    font-size: 14px;
  }
  .btn-sm-2 {
    width: 58px;
    height: 28px;
    font-size: 14px;
  }
  .btn-md {
    width: 130px;
    height: 35px;
    font-size: 16px;
  }
  .btn-lg {
    width: 160px;
  }
  .btn-full {
    width: 100%;
  }
}