@charset "UTF-8";
/*! mixins */
/*----------------------------------------------
 *key options                                  
 *- top-left,top-right,bottom-left,bottom-right
-----------------------------------------------*/
/*---------------------------------------
 *media queries                         
 *- break points options from variables:
 *  $bp-xs: 576px;                        
 *  $bp-sm: 768px;                        
 *  $bp-md: 992px;                        
 *  $bp-lg: 1200px;                       
----------------------------------------*/
img.o-layer__list-btn {
  width: 16px;
  height: 16px;
}

.o-layer {
  padding: 5px 0;
  list-style-type: none;
  overflow: auto;
  margin: 0;
}
.o-layer__list {
  position: relative;
  margin: 0 3px 5px 3px;
  padding: 5px;
  font-size: 1rem;
  cursor: pointer;
  background-color: white;
  color: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05), 1px 1px 5px rgba(0, 0, 0, 0.2);
  text-align: justify;
}
.o-layer__list label {
  margin-bottom: 0;
}
.o-layer--is-draggable .o-layer__list {
  padding-left: 25px;
}
.o-layer__list:hover {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05), 1px 1px 5px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(0, 0, 0, 0.2);
}
.o-layer__list:after {
  font-family: "fontello";
  content: "\e80a";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  z-index: 5;
  text-align: center;
  font-size: 20px;
  display: none;
  color: #007bff;
}
.o-layer__list:before {
  content: "此比例尺下無法顯示";
  position: absolute;
  width: 100%;
  top: calc(50% + 10px);
  left: 0;
  text-align: center;
  transform: translate(0, -50%);
  z-index: 6;
  font-size: 14px;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
  color: #007bff;
  display: none;
  background-color: white;
}
.o-layer__list.is-invisible:before, .o-layer__list.is-invisible:after {
  display: block;
}
.o-layer__list.is-selected {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05), 1px 1px 5px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(0, 0, 0, 0.5);
}
.o-layer__list-placeholder {
  border: 1px dashed rgba(0, 0, 0, 0.1);
  height: 55px;
  margin: 0 3px 5px 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  text-align: center;
}
.o-layer__list-placeholder:before {
  position: relative;
  top: -2px;
  font-family: "fontello";
  content: "\e83f";
  width: 1em;
  line-height: 55px;
  margin-right: 15px;
  opacity: 0.3;
  font-size: 18px;
}
.o-layer__list-placeholder:after {
  position: relative;
  content: "拖曳至此";
  line-height: 55px;
  opacity: 0.3;
  top: -2px;
  font-size: 16px;
}
.o-layer__options {
  position: relative;
  line-height: 24px;
  cursor: default;
}
.o-layer__options:after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: calc(100% - 60px);
  height: 25px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  display: none;
}
.is-disabled .o-layer__options:after {
  display: block;
}
.o-layer__list-btn-group {
  display: inline-block;
  vertical-align: middle;
  float: right;
  line-height: 24px;
  font-size: 0;
}
.o-layer__list-btn {
  position: relative;
  display: inline-block;
  opacity: 0.7;
  font-size: 16px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.o-layer__list-btn:hover {
  color: #007bff;
  opacity: 0.9;
}
.o-layer__list-btn--cursor-default {
  cursor: default;
}
.o-layer__list-btn.is-active {
  background-color: #ffc107;
  box-shadow: 0 0 0 2px #ffbc00;
  border-radius: 100%;
  padding: 0px;
}
.o-layer__slider {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 80px);
  height: 4px !important;
  background: #ececec;
  border-radius: 3px;
  border: none !important;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  z-index: 1 !important;
}
.o-layer__slider .ui-slider-handle {
  background-image: none;
  background-color: white !important;
  border-radius: 100%;
  top: 0;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  cursor: pointer;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.o-layer__slider .ui-slider-handle:focus {
  outline: none;
}
.o-layer__moveArea {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 0;
  opacity: 0.35;
  display: inline-block;
  height: 100%;
  line-height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  cursor: move;
  padding: 0 1px;
  transition: 0.3s;
}
.o-layer__moveArea:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.05);
}
.o-layer__moveArea img {
  position: relative;
  top: 50%;
  margin-top: -18px;
  cursor: move !important;
}
.o-layer__visible-img {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  background: url("../../../../images/tocPage/vis-on.png");
}
.is-disabled .o-layer__visible-img {
  background: url("../../../../images/tocPage/vis-off.png");
}
.o-layer__visible-radio {
  position: relative;
  display: inline-block;
}
.o-layer__tooltip table {
  text-align: left;
  font-size: 12px;
  margin: 5px 0;
}
.o-layer__tooltip table td {
  padding: 5px;
}
.o-layer__tooltip table td:first-child {
  width: 70px;
}
.o-layer__tooltip table tr {
  border-radius: 3px;
}
.o-layer__tooltip table tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.o-layer__tooltip hr {
  margin: 5px 0;
  border-color: rgba(255, 255, 255, 0.3);
}
.o-layer__tooltip-content {
  font-size: 14px;
}

.o-icon-list {
  padding: 0;
  margin: 0;
}
.o-icon-list__item {
  position: relative;
  list-style: none;
  padding: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  padding-right: 30px;
  color: rgba(0, 0, 0, 0.8);
  word-break: break-all;
}
.o-icon-list__item:hover {
  background-color: rgba(230, 230, 230, 0.3);
  border-radius: 3px;
}
.o-icon-list__item.is-disabled {
  color: rgba(0, 0, 0, 0.3);
  cursor: not-allowed;
}
.o-icon-list__item.is-disabled:hover {
  background-color: transparent;
}
.o-icon-list__action-btn {
  position: absolute;
  right: 8px;
  width: 16px;
  height: 16px;
  background: url(../../../../images/tocPage/add.png);
  top: 50%;
  transform: translate(0, -50%);
}
.is-disabled .o-icon-list__action-btn {
  background: url(../../../../images/tocPage/added.png);
}

.list-content {
  box-sizing: border-box;
  position: fixed;
  left: 510px;
  top: 10px;
  margin: 0;
  padding: 10px;
  width: 230px;
  min-width: 230px;
  height: calc(100% - 30px);
  background-color: #fff;
  list-style: none;
  line-height: 2em;
  display: none;
  overflow: auto;
  z-index: 999999;
}
.list-content.with-topbar {
  top: 50px;
  height: calc(100% - 70px);
}
.list-content li {
  position: relative;
  padding: 5px 0;
  border-radius: 3px;
  color: #616161;
  text-shadow: none;
}
.list-content li span {
  display: inline-block;
  max-width: calc(100% - 25px);
  vertical-align: middle;
  word-break: break-all;
}
.list-content li img {
  float: right;
  position: relative;
  top: 5px;
  z-index: 1;
  vertical-align: middle;
}
.list-content li img:last-child {
  margin-right: 5px;
}
.list-content li:after {
  border-bottom: 1px solid #dfedf7;
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.list-content li.disable {
  color: #ccc9c9;
  cursor: not-allowed;
}
.list-content li.disable:hover {
  background-color: transparent;
}
.list-content li:hover {
  background-color: #eef4f9;
}

/* jquery ui -cover----------- */
.ui-slider-range {
  background: #007bff !important;
}/*# sourceMappingURL=layer-list.css.map */