@charset "UTF-8";
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0; }

.leaflet-container {
  overflow: hidden; }

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none; }

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
  background: transparent; }

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast; }

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0; }

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block; }

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important; }

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y; }

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom; }

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none; }

.leaflet-container {
  -webkit-tap-highlight-color: transparent; }

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4); }

.leaflet-tile {
  filter: inherit;
  visibility: hidden; }

.leaflet-tile-loaded {
  visibility: inherit; }

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800; }

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none; }

.leaflet-pane {
  z-index: 400; }

.leaflet-tile-pane {
  z-index: 200; }

.leaflet-overlay-pane {
  z-index: 400; }

.leaflet-shadow-pane {
  z-index: 500; }

.leaflet-marker-pane {
  z-index: 600; }

.leaflet-tooltip-pane {
  z-index: 650; }

.leaflet-popup-pane {
  z-index: 700; }

.leaflet-map-pane canvas {
  z-index: 100; }

.leaflet-map-pane svg {
  z-index: 200; }

.leaflet-vml-shape {
  width: 1px;
  height: 1px; }

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute; }

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none; }

.leaflet-top {
  top: 0; }

.leaflet-right {
  right: 0; }

.leaflet-bottom {
  bottom: 0; }

.leaflet-left {
  left: 0; }

.leaflet-control {
  float: left;
  clear: both; }

.leaflet-right .leaflet-control {
  float: right; }

.leaflet-top .leaflet-control {
  margin-top: 10px; }

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px; }

.leaflet-left .leaflet-control {
  margin-left: 10px; }

.leaflet-right .leaflet-control {
  margin-right: 10px; }

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity; }

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1; }

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1); }

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none; }

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden; }

/* cursors */
.leaflet-interactive {
  cursor: pointer; }

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair; }

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto; }

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none; }

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0; }

.leaflet-container a {
  color: #0078A8; }

.leaflet-container a.leaflet-active {
  outline: 2px solid orange; }

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5); }

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; }

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px; }

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black; }

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block; }

.leaflet-bar a:hover {
  background-color: #f4f4f4; }

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none; }

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb; }

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px; }

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px; }

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px; }

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px; }

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px; }

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px; }

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px; }

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none; }

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative; }

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff; }

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px; }

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px; }

.leaflet-control-layers label {
  display: block; }

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px; }

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png); }

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0; }

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333; }

.leaflet-control-attribution a {
  text-decoration: none; }

.leaflet-control-attribution a:hover {
  text-decoration: underline; }

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px; }

.leaflet-left .leaflet-control-scale {
  margin-left: 5px; }

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px; }

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5); }

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px; }

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777; }

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none; }

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box; }

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px; }

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px; }

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4; }

.leaflet-popup-content p {
  margin: 18px 0; }

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none; }

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4); }

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent; }

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999; }

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd; }

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1; }

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); }

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px; }

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999; }

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666; }

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto; }

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: ""; }

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px; }

.leaflet-tooltip-top {
  margin-top: -6px; }

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px; }

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff; }

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff; }

.leaflet-tooltip-left {
  margin-left: -6px; }

.leaflet-tooltip-right {
  margin-left: 6px; }

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px; }

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff; }

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff; }

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-invisible-blank-slide {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-notification {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
  top: 0;
  left: 0; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue:#007bff;
  --indigo:#6610f2;
  --purple:#6f42c1;
  --pink:#e83e8c;
  --red:#dc3545;
  --orange:#fd7e14;
  --yellow:#ffc107;
  --green:#28a745;
  --teal:#20c997;
  --cyan:#17a2b8;
  --white:#fff;
  --gray:#6c757d;
  --gray-dark:#343a40;
  --primary:#007bff;
  --secondary:#6c757d;
  --success:#28a745;
  --info:#17a2b8;
  --warning:#ffc107;
  --danger:#dc3545;
  --light:#f8f9fa;
  --dark:#343a40;
  --breakpoint-xs:0;
  --breakpoint-sm:576px;
  --breakpoint-md:768px;
  --breakpoint-lg:992px;
  --breakpoint-xl:1200px;
  --font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; }

*, ::after, ::before {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent; }

@-ms-viewport {
  width: device-width; }

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

body {
  margin: 0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff; }

[tabindex="-1"]:focus {
  outline: 0 !important; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[data-original-title], abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

dfn {
  font-style: italic; }

b, strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:hover {
  color: #0056b3;
  text-decoration: underline; }

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none; }

a:not([href]):not([tabindex]):focus {
  outline: 0; }

code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em; }

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle;
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

table {
  border-collapse: collapse; }

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button, input {
  overflow: visible; }

button, select {
  text-transform: none; }

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button; }

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  padding: 0;
  border-style: none; }

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0; }

input[type=date], input[type=datetime-local], input[type=month], input[type=time] {
  -webkit-appearance: listbox; }

textarea {
  overflow: auto;
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal; }

progress {
  vertical-align: baseline; }

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto; }

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none; }

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

summary {
  display: list-item;
  cursor: pointer; }

template {
  display: none; }

[hidden] {
  display: none !important; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit; }

.h1, h1 {
  font-size: 2.5rem; }

.h2, h2 {
  font-size: 2rem; }

.h3, h3 {
  font-size: 1.75rem; }

.h4, h4 {
  font-size: 1.5rem; }

.h5, h5 {
  font-size: 1.25rem; }

.h6, h6 {
  font-size: 1rem; }

.lead {
  font-size: 1.25rem;
  font-weight: 300; }

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2; }

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2; }

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2; }

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.small, small {
  font-size: 80%;
  font-weight: 400; }

.mark, mark {
  padding: .2em;
  background-color: #fcf8e3; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }

.list-inline-item:not(:last-child) {
  margin-right: .5rem; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d; }

.blockquote-footer::before {
  content: "\2014 \00A0"; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.img-thumbnail {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: .5rem;
  line-height: 1; }

.figure-caption {
  font-size: 90%;
  color: #6c757d; }

code, kbd, pre, samp {
  font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; }

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word; }

a > code {
  color: inherit; }

kbd {
  padding: .2rem .4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: .2rem; }

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700; }

pre {
  display: block;
  font-size: 87.5%;
  color: #212529; }

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container {
    max-width: 1140px; } }

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0; }

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%; }

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%; }

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%; }

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%; }

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%; }

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%; }

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%; }

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%; }

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1; }

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13; }

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0; }

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4; }

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5; }

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6; }

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7; }

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8; }

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9; }

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10; }

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11; }

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12; }

.offset-1 {
  margin-left: 8.333333%; }

.offset-2 {
  margin-left: 16.666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.333333%; }

.offset-5 {
  margin-left: 41.666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.333333%; }

.offset-8 {
  margin-left: 66.666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.333333%; }

.offset-11 {
  margin-left: 91.666667%; }

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.333333%; }
  .offset-sm-2 {
    margin-left: 16.666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.333333%; }
  .offset-sm-5 {
    margin-left: 41.666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.333333%; }
  .offset-sm-8 {
    margin-left: 66.666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.333333%; }
  .offset-sm-11 {
    margin-left: 91.666667%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.333333%; }
  .offset-md-2 {
    margin-left: 16.666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.333333%; }
  .offset-md-5 {
    margin-left: 41.666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.333333%; }
  .offset-md-8 {
    margin-left: 66.666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.333333%; }
  .offset-md-11 {
    margin-left: 91.666667%; } }

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.333333%; }
  .offset-lg-2 {
    margin-left: 16.666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.333333%; }
  .offset-lg-5 {
    margin-left: 41.666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.333333%; }
  .offset-lg-8 {
    margin-left: 66.666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.333333%; }
  .offset-lg-11 {
    margin-left: 91.666667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.333333%; }
  .offset-xl-2 {
    margin-left: 16.666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.333333%; }
  .offset-xl-5 {
    margin-left: 41.666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.333333%; }
  .offset-xl-8 {
    margin-left: 66.666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.333333%; }
  .offset-xl-11 {
    margin-left: 91.666667%; } }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent; }

.table td, .table th {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6; }

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6; }

.table tbody + tbody {
  border-top: 2px solid #dee2e6; }

.table .table {
  background-color: #fff; }

.table-sm td, .table-sm th {
  padding: .3rem; }

.table-bordered {
  border: 1px solid #dee2e6; }

.table-bordered td, .table-bordered th {
  border: 1px solid #dee2e6; }

.table-bordered thead td, .table-bordered thead th {
  border-bottom-width: 2px; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05); }

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075); }

.table-primary, .table-primary > td, .table-primary > th {
  background-color: #b8daff; }

.table-hover .table-primary:hover {
  background-color: #9fcdff; }

.table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th {
  background-color: #9fcdff; }

.table-secondary, .table-secondary > td, .table-secondary > th {
  background-color: #d6d8db; }

.table-hover .table-secondary:hover {
  background-color: #c8cbcf; }

.table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th {
  background-color: #c8cbcf; }

.table-success, .table-success > td, .table-success > th {
  background-color: #c3e6cb; }

.table-hover .table-success:hover {
  background-color: #b1dfbb; }

.table-hover .table-success:hover > td, .table-hover .table-success:hover > th {
  background-color: #b1dfbb; }

.table-info, .table-info > td, .table-info > th {
  background-color: #bee5eb; }

.table-hover .table-info:hover {
  background-color: #abdde5; }

.table-hover .table-info:hover > td, .table-hover .table-info:hover > th {
  background-color: #abdde5; }

.table-warning, .table-warning > td, .table-warning > th {
  background-color: #ffeeba; }

.table-hover .table-warning:hover {
  background-color: #ffe8a1; }

.table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {
  background-color: #ffe8a1; }

.table-danger, .table-danger > td, .table-danger > th {
  background-color: #f5c6cb; }

.table-hover .table-danger:hover {
  background-color: #f1b0b7; }

.table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {
  background-color: #f1b0b7; }

.table-light, .table-light > td, .table-light > th {
  background-color: #fdfdfe; }

.table-hover .table-light:hover {
  background-color: #ececf6; }

.table-hover .table-light:hover > td, .table-hover .table-light:hover > th {
  background-color: #ececf6; }

.table-dark, .table-dark > td, .table-dark > th {
  background-color: #c6c8ca; }

.table-hover .table-dark:hover {
  background-color: #b9bbbe; }

.table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th {
  background-color: #b9bbbe; }

.table-active, .table-active > td, .table-active > th {
  background-color: rgba(0, 0, 0, 0.075); }

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075); }

.table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075); }

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e; }

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6; }

.table-dark {
  color: #fff;
  background-color: #212529; }

.table-dark td, .table-dark th, .table-dark thead th {
  border-color: #32383e; }

.table-dark.table-bordered {
  border: 0; }

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05); }

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075); }

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
  .table-responsive-sm > .table-bordered {
    border: 0; } }

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
  .table-responsive-md > .table-bordered {
    border: 0; } }

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
  .table-responsive-lg > .table-bordered {
    border: 0; } }

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
  .table-responsive-xl > .table-bordered {
    border: 0; } }

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar; }

.table-responsive > .table-bordered {
  border: 0; }

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

.form-control::-ms-expand {
  background-color: transparent;
  border: 0; }

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1; }

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1; }

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1; }

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1; }

.form-control::placeholder {
  color: #6c757d;
  opacity: 1; }

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1; }

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px); }

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff; }

.form-control-file, .form-control-range {
  display: block;
  width: 100%; }

.col-form-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5; }

.col-form-label-lg {
  padding-top: calc(.5rem + 1px);
  padding-bottom: calc(.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5; }

.col-form-label-sm {
  padding-top: calc(.25rem + 1px);
  padding-bottom: calc(.25rem + 1px);
  font-size: .875rem;
  line-height: 1.5; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: .375rem;
  padding-bottom: .375rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }

.form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm, .input-group-lg > .form-control-plaintext.form-control, .input-group-lg > .input-group-append > .form-control-plaintext.btn, .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, .input-group-lg > .input-group-prepend > .form-control-plaintext.btn, .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, .input-group-sm > .form-control-plaintext.form-control, .input-group-sm > .input-group-append > .form-control-plaintext.btn, .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, .input-group-sm > .input-group-prepend > .form-control-plaintext.btn, .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text {
  padding-right: 0;
  padding-left: 0; }

.form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem; }

.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]), .input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), .input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), .input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), select.form-control-sm:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px); }

.form-control-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-append > .btn, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-prepend > .input-group-text {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem; }

.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]), .input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), .input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), .input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), select.form-control-lg:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px); }

.form-group {
  margin-bottom: 1rem; }

.form-text {
  display: block;
  margin-top: .25rem; }

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px; }

.form-row > .col, .form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px; }

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem; }

.form-check-input {
  position: absolute;
  margin-top: .3rem;
  margin-left: -1.25rem; }

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d; }

.form-check-label {
  margin-bottom: 0; }

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: .75rem; }

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: .3125rem;
  margin-left: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #28a745; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
  border-radius: .2rem; }

.custom-select.is-valid, .form-control.is-valid, .was-validated .custom-select:valid, .was-validated .form-control:valid {
  border-color: #28a745; }

.custom-select.is-valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus, .was-validated .form-control:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }

.custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip, .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip {
  display: block; }

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
  color: #28a745; }

.form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip, .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip {
  display: block; }

.custom-control-input.is-valid ~ .custom-control-label, .was-validated .custom-control-input:valid ~ .custom-control-label {
  color: #28a745; }

.custom-control-input.is-valid ~ .custom-control-label::before, .was-validated .custom-control-input:valid ~ .custom-control-label::before {
  background-color: #71dd8a; }

.custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip, .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip {
  display: block; }

.custom-control-input.is-valid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
  background-color: #34ce57; }

.custom-control-input.is-valid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }

.custom-file-input.is-valid ~ .custom-file-label, .was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #28a745; }

.custom-file-input.is-valid ~ .custom-file-label::before, .was-validated .custom-file-input:valid ~ .custom-file-label::before {
  border-color: inherit; }

.custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip, .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip {
  display: block; }

.custom-file-input.is-valid:focus ~ .custom-file-label, .was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #dc3545; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: .2rem; }

.custom-select.is-invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .was-validated .form-control:invalid {
  border-color: #dc3545; }

.custom-select.is-invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }

.custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip, .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip {
  display: block; }

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545; }

.form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip, .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip {
  display: block; }

.custom-control-input.is-invalid ~ .custom-control-label, .was-validated .custom-control-input:invalid ~ .custom-control-label {
  color: #dc3545; }

.custom-control-input.is-invalid ~ .custom-control-label::before, .was-validated .custom-control-input:invalid ~ .custom-control-label::before {
  background-color: #efa2a9; }

.custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip, .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip {
  display: block; }

.custom-control-input.is-invalid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d; }

.custom-control-input.is-invalid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }

.custom-file-input.is-invalid ~ .custom-file-label, .was-validated .custom-file-input:invalid ~ .custom-file-label {
  border-color: #dc3545; }

.custom-file-input.is-invalid ~ .custom-file-label::before, .was-validated .custom-file-input:invalid ~ .custom-file-label::before {
  border-color: inherit; }

.custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip, .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip {
  display: block; }

.custom-file-input.is-invalid:focus ~ .custom-file-label, .was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.form-inline .form-check {
  width: 100%; }

@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0; }
  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-plaintext {
    display: inline-block; }
  .form-inline .input-group {
    width: auto; }
  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0; }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: .25rem;
    margin-left: 0; }
  .form-inline .custom-control {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .form-inline .custom-control-label {
    margin-bottom: 0; } }

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

.btn:focus, .btn:hover {
  text-decoration: none; }

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.btn.disabled, .btn:disabled {
  opacity: .65; }

.btn:not(:disabled):not(.disabled) {
  cursor: pointer; }

.btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active {
  background-image: none; }

a.btn.disabled, fieldset:disabled a.btn {
  pointer-events: none; }

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc; }

.btn-primary.focus, .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf; }

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d; }

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62; }

.btn-secondary.focus, .btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d; }

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b; }

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745; }

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34; }

.btn-success.focus, .btn-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745; }

.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430; }

.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8; }

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b; }

.btn-info.focus, .btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8; }

.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f; }

.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107; }

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00; }

.btn-warning.focus, .btn-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107; }

.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500; }

.btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545; }

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130; }

.btn-danger.focus, .btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545; }

.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d; }

.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa; }

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5; }

.btn-light.focus, .btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa; }

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df; }

.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40; }

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124; }

.btn-dark.focus, .btn-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40; }

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d; }

.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff; }

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }

.btn-outline-primary.focus, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent; }

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }

.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d; }

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d; }

.btn-outline-secondary.focus, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent; }

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d; }

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745; }

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745; }

.btn-outline-success.focus, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent; }

.btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745; }

.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8; }

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8; }

.btn-outline-info.focus, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent; }

.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8; }

.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107; }

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107; }

.btn-outline-warning.focus, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent; }

.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107; }

.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545; }

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545; }

.btn-outline-danger.focus, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent; }

.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545; }

.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa; }

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa; }

.btn-outline-light.focus, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent; }

.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa; }

.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40; }

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40; }

.btn-outline-dark.focus, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent; }

.btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40; }

.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent; }

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent; }

.btn-link.focus, .btn-link:focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none; }

.btn-link.disabled, .btn-link:disabled {
  color: #6c757d; }

.btn-group-lg > .btn, .btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem; }

.btn-group-sm > .btn, .btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: .5rem; }

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  transition: opacity .15s linear; }

.fade.show {
  opacity: 1; }

.collapse {
  display: none; }

.collapse.show {
  display: block; }

tr.collapse.show {
  display: table-row; }

tbody.collapse.show {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height .35s ease; }

.dropdown, .dropup {
  position: relative; }

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent; }

.dropdown-toggle:empty::after {
  margin-left: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem; }

.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: .125rem; }

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent; }

.dropup .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropright .dropdown-menu {
  margin-top: 0;
  margin-left: .125rem; }

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-bottom: .3em solid transparent;
  border-left: .3em solid; }

.dropright .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropright .dropdown-toggle::after {
  vertical-align: 0; }

.dropleft .dropdown-menu {
  margin-top: 0;
  margin-right: .125rem; }

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .255em;
  vertical-align: .255em;
  content: ""; }

.dropleft .dropdown-toggle::after {
  display: none; }

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: .3em solid;
  border-bottom: .3em solid transparent; }

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropleft .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-divider {
  height: 0;
  margin: .5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }

.dropdown-item:focus, .dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa; }

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff; }

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.dropdown-header {
  display: block;
  padding: .5rem 1.5rem;
  margin-bottom: 0;
  font-size: .875rem;
  color: #6c757d;
  white-space: nowrap; }

.btn-group, .btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle; }

.btn-group-vertical > .btn, .btn-group > .btn {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

.btn-group-vertical > .btn:hover, .btn-group > .btn:hover {
  z-index: 1; }

.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus {
  z-index: 1; }

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.btn-toolbar .input-group {
  width: auto; }

.btn-group > .btn:first-child {
  margin-left: 0; }

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.dropdown-toggle-split {
  padding-right: .5625rem;
  padding-left: .5625rem; }

.dropdown-toggle-split::after {
  margin-left: 0; }

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
  padding-right: .375rem;
  padding-left: .375rem; }

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
  padding-right: .75rem;
  padding-left: .75rem; }

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.btn-group-vertical .btn, .btn-group-vertical .btn-group {
  width: 100%; }

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0; }

.btn-group-toggle > .btn input[type=checkbox], .btn-group-toggle > .btn input[type=radio], .btn-group-toggle > .btn-group > .btn input[type=checkbox], .btn-group-toggle > .btn-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%; }

.input-group > .custom-file, .input-group > .custom-select, .input-group > .form-control {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0; }

.input-group > .custom-file:focus, .input-group > .custom-select:focus, .input-group > .form-control:focus {
  z-index: 3; }

.input-group > .custom-file + .custom-file, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .form-control, .input-group > .custom-select + .custom-file, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .form-control, .input-group > .form-control + .custom-file, .input-group > .form-control + .custom-select, .input-group > .form-control + .form-control {
  margin-left: -1px; }

.input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label::before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group-append, .input-group-prepend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.input-group-append .btn, .input-group-prepend .btn {
  position: relative;
  z-index: 2; }

.input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .btn, .input-group-append .input-group-text + .input-group-text, .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-prepend .input-group-text + .input-group-text {
  margin-left: -1px; }

.input-group-prepend {
  margin-right: -1px; }

.input-group-append {
  margin-left: -1px; }

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .375rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: .25rem; }

.input-group-text input[type=checkbox], .input-group-text input[type=radio] {
  margin-top: 0; }

.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem; }

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem; }

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff; }

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff; }

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d; }

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef; }

.custom-control-label {
  margin-bottom: 0; }

.custom-control-label::before {
  position: absolute;
  top: .25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #dee2e6; }

.custom-control-label::after {
  position: absolute;
  top: .25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%; }

.custom-checkbox .custom-control-label::before {
  border-radius: .25rem; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #007bff; }

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); }

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5); }

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5); }

.custom-radio .custom-control-label::before {
  border-radius: 50%; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); }

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5); }

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); }

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff; }

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: .75rem;
  background-image: none; }

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef; }

.custom-select::-ms-expand {
  opacity: 0; }

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: .375rem;
  padding-bottom: .375rem;
  font-size: 75%; }

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: .375rem;
  padding-bottom: .375rem;
  font-size: 125%; }

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0; }

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0; }

.custom-file-input:focus ~ .custom-file-control {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.custom-file-input:focus ~ .custom-file-control::before {
  border-color: #80bdff; }

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse"; }

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem; }

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(calc(2.25rem + 2px) - 1px * 2);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 .25rem .25rem 0; }

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: .5rem 1rem; }

.nav-link:focus, .nav-link:hover {
  text-decoration: none; }

.nav-link.disabled {
  color: #6c757d; }

.nav-tabs {
  border-bottom: 1px solid #dee2e6; }

.nav-tabs .nav-item {
  margin-bottom: -1px; }

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem; }

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6; }

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent; }

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.nav-pills .nav-link {
  border-radius: .25rem; }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff; }

.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center; }

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem 1rem; }

.navbar > .container, .navbar > .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }

.navbar-brand:focus, .navbar-brand:hover {
  text-decoration: none; }

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0; }

.navbar-nav .dropdown-menu {
  position: static;
  float: none; }

.navbar-text {
  display: inline-block;
  padding-top: .5rem;
  padding-bottom: .5rem; }

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem; }

.navbar-toggler:focus, .navbar-toggler:hover {
  text-decoration: none; }

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%; }

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute; }
  .navbar-expand-sm .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto; }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem; }
  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .navbar-expand-sm .navbar-toggler {
    display: none; }
  .navbar-expand-sm .dropup .dropdown-menu {
    top: auto;
    bottom: 100%; } }

@media (max-width: 767.98px) {
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute; }
  .navbar-expand-md .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto; }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem; }
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .navbar-expand-md .navbar-toggler {
    display: none; }
  .navbar-expand-md .dropup .dropdown-menu {
    top: auto;
    bottom: 100%; } }

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute; }
  .navbar-expand-lg .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto; }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem; }
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .navbar-expand-lg .navbar-toggler {
    display: none; }
  .navbar-expand-lg .dropup .dropdown-menu {
    top: auto;
    bottom: 100%; } }

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute; }
  .navbar-expand-xl .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto; }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem; }
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .navbar-expand-xl .navbar-toggler {
    display: none; }
  .navbar-expand-xl .dropup .dropdown-menu {
    top: auto;
    bottom: 100%; } }

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.navbar-expand > .container, .navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0; }

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute; }

.navbar-expand .navbar-nav .dropdown-menu-right {
  right: 0;
  left: auto; }

.navbar-expand .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem; }

.navbar-expand > .container, .navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto; }

.navbar-expand .navbar-toggler {
  display: none; }

.navbar-expand .dropup .dropdown-menu {
  top: auto;
  bottom: 100%; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5); }

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7); }

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3); }

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1); }

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5); }

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, 0.9); }

.navbar-dark .navbar-brand {
  color: #fff; }

.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
  color: #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75); }

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25); }

.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
  color: #fff; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1); }

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5); }

.navbar-dark .navbar-text a {
  color: #fff; }

.navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover {
  color: #fff; }

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: .25rem; }

.card > hr {
  margin-right: 0;
  margin-left: 0; }

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem; }

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem; }

.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem; }

.card-title {
  margin-bottom: .75rem; }

.card-subtitle {
  margin-top: -.375rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link:hover {
  text-decoration: none; }

.card-link + .card-link {
  margin-left: 1.25rem; }

.card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }

.card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0; }

.card-header + .list-group .list-group-item:first-child {
  border-top: 0; }

.card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125); }

.card-footer:last-child {
  border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px); }

.card-header-tabs {
  margin-right: -.625rem;
  margin-bottom: -.75rem;
  margin-left: -.625rem;
  border-bottom: 0; }

.card-header-pills {
  margin-right: -.625rem;
  margin-left: -.625rem; }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem; }

.card-img {
  width: 100%;
  border-radius: calc(.25rem - 1px); }

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px); }

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px); }

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.card-deck .card {
  margin-bottom: 15px; }

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px; }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px; } }

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.card-group > .card {
  margin-bottom: 15px; }

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
  .card-group > .card {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0; }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0; }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .card-group > .card:first-child .card-header, .card-group > .card:first-child .card-img-top {
    border-top-right-radius: 0; }
  .card-group > .card:first-child .card-footer, .card-group > .card:first-child .card-img-bottom {
    border-bottom-right-radius: 0; }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .card-group > .card:last-child .card-header, .card-group > .card:last-child .card-img-top {
    border-top-left-radius: 0; }
  .card-group > .card:last-child .card-footer, .card-group > .card:last-child .card-img-bottom {
    border-bottom-left-radius: 0; }
  .card-group > .card:only-child {
    border-radius: .25rem; }
  .card-group > .card:only-child .card-header, .card-group > .card:only-child .card-img-top {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem; }
  .card-group > .card:only-child .card-footer, .card-group > .card:only-child .card-img-bottom {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem; }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0; }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
    border-radius: 0; } }

.card-columns .card {
  margin-bottom: .75rem; }

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem; }
  .card-columns .card {
    display: inline-block;
    width: 100%; } }

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: .25rem; }

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: .5rem;
  padding-left: .5rem;
  color: #6c757d;
  content: "/"; }

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline; }

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none; }

.breadcrumb-item.active {
  color: #6c757d; }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem; }

.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6; }

.page-link:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6; }

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer; }

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem; }

.page-item:last-child .page-link {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem; }

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6; }

.pagination-lg .page-link {
  padding: .75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5; }

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: .3rem;
  border-bottom-left-radius: .3rem; }

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: .3rem;
  border-bottom-right-radius: .3rem; }

.pagination-sm .page-link {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5; }

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: .2rem;
  border-bottom-left-radius: .2rem; }

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: .2rem;
  border-bottom-right-radius: .2rem; }

.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem; }

.badge:empty {
  display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.badge-pill {
  padding-right: .6em;
  padding-left: .6em;
  border-radius: 10rem; }

.badge-primary {
  color: #fff;
  background-color: #007bff; }

.badge-primary[href]:focus, .badge-primary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc; }

.badge-secondary {
  color: #fff;
  background-color: #6c757d; }

.badge-secondary[href]:focus, .badge-secondary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #545b62; }

.badge-success {
  color: #fff;
  background-color: #28a745; }

.badge-success[href]:focus, .badge-success[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34; }

.badge-info {
  color: #fff;
  background-color: #17a2b8; }

.badge-info[href]:focus, .badge-info[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b; }

.badge-warning {
  color: #212529;
  background-color: #ffc107; }

.badge-warning[href]:focus, .badge-warning[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00; }

.badge-danger {
  color: #fff;
  background-color: #dc3545; }

.badge-danger[href]:focus, .badge-danger[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130; }

.badge-light {
  color: #212529;
  background-color: #f8f9fa; }

.badge-light[href]:focus, .badge-light[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5; }

.badge-dark {
  color: #fff;
  background-color: #343a40; }

.badge-dark[href]:focus, .badge-dark[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124; }

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: .3rem; }

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem; } }

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0; }

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: 700; }

.alert-dismissible {
  padding-right: 4rem; }

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: .75rem 1.25rem;
  color: inherit; }

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff; }

.alert-primary hr {
  border-top-color: #9fcdff; }

.alert-primary .alert-link {
  color: #002752; }

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db; }

.alert-secondary hr {
  border-top-color: #c8cbcf; }

.alert-secondary .alert-link {
  color: #202326; }

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb; }

.alert-success hr {
  border-top-color: #b1dfbb; }

.alert-success .alert-link {
  color: #0b2e13; }

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb; }

.alert-info hr {
  border-top-color: #abdde5; }

.alert-info .alert-link {
  color: #062c33; }

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba; }

.alert-warning hr {
  border-top-color: #ffe8a1; }

.alert-warning .alert-link {
  color: #533f03; }

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb; }

.alert-danger hr {
  border-top-color: #f1b0b7; }

.alert-danger .alert-link {
  color: #491217; }

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe; }

.alert-light hr {
  border-top-color: #ececf6; }

.alert-light .alert-link {
  color: #686868; }

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca; }

.alert-dark hr {
  border-top-color: #b9bbbe; }

.alert-dark .alert-link {
  color: #040505; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem; }

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-color: #007bff;
  transition: width .6s ease; }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite; }

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit; }

.list-group-item-action:focus, .list-group-item-action:hover {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa; }

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef; }

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }

.list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem; }

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem; }

.list-group-item:focus, .list-group-item:hover {
  z-index: 1;
  text-decoration: none; }

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  background-color: #fff; }

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0; }

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0; }

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0; }

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff; }

.list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover {
  color: #004085;
  background-color: #9fcdff; }

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085; }

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db; }

.list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover {
  color: #383d41;
  background-color: #c8cbcf; }

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41; }

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb; }

.list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover {
  color: #155724;
  background-color: #b1dfbb; }

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724; }

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb; }

.list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover {
  color: #0c5460;
  background-color: #abdde5; }

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460; }

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba; }

.list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover {
  color: #856404;
  background-color: #ffe8a1; }

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404; }

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb; }

.list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover {
  color: #721c24;
  background-color: #f1b0b7; }

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24; }

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe; }

.list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover {
  color: #818182;
  background-color: #ececf6; }

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182; }

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca; }

.list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover {
  color: #1b1e21;
  background-color: #b9bbbe; }

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5; }

.close:focus, .close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75; }

.close:not(:disabled):not(.disabled) {
  cursor: pointer; }

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0; }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none; }

.modal.fade .modal-dialog {
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out,-webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%); }

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2)); }

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: .3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }

.modal-backdrop.fade {
  opacity: 0; }

.modal-backdrop.show {
  opacity: .5; }

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem; }

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef; }

.modal-footer > :not(:first-child) {
  margin-left: .25rem; }

.modal-footer > :not(:last-child) {
  margin-right: .25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2)); }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  opacity: 0; }

.tooltip.show {
  opacity: .9; }

.tooltip .arrow {
  position: absolute;
  display: block;
  width: .8rem;
  height: .4rem; }

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid; }

.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top {
  padding: .4rem 0; }

.bs-tooltip-auto[x-placement^=top] .arrow, .bs-tooltip-top .arrow {
  bottom: 0; }

.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {
  top: 0;
  border-width: .4rem .4rem 0;
  border-top-color: #000; }

.bs-tooltip-auto[x-placement^=right], .bs-tooltip-right {
  padding: 0 .4rem; }

.bs-tooltip-auto[x-placement^=right] .arrow, .bs-tooltip-right .arrow {
  left: 0;
  width: .4rem;
  height: .8rem; }

.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {
  right: 0;
  border-width: .4rem .4rem .4rem 0;
  border-right-color: #000; }

.bs-tooltip-auto[x-placement^=bottom], .bs-tooltip-bottom {
  padding: .4rem 0; }

.bs-tooltip-auto[x-placement^=bottom] .arrow, .bs-tooltip-bottom .arrow {
  top: 0; }

.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {
  bottom: 0;
  border-width: 0 .4rem .4rem;
  border-bottom-color: #000; }

.bs-tooltip-auto[x-placement^=left], .bs-tooltip-left {
  padding: 0 .4rem; }

.bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-left .arrow {
  right: 0;
  width: .4rem;
  height: .8rem; }

.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before {
  left: 0;
  border-width: .4rem 0 .4rem .4rem;
  border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: .3rem; }

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: .5rem;
  margin: 0 .3rem; }

.popover .arrow::after, .popover .arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid; }

.bs-popover-auto[x-placement^=top], .bs-popover-top {
  margin-bottom: .5rem; }

.bs-popover-auto[x-placement^=top] .arrow, .bs-popover-top .arrow {
  bottom: calc((.5rem + 1px) * -1); }

.bs-popover-auto[x-placement^=top] .arrow::after, .bs-popover-auto[x-placement^=top] .arrow::before, .bs-popover-top .arrow::after, .bs-popover-top .arrow::before {
  border-width: .5rem .5rem 0; }

.bs-popover-auto[x-placement^=top] .arrow::before, .bs-popover-top .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25); }

.bs-popover-auto[x-placement^=top] .arrow::after, .bs-popover-top .arrow::after {
  bottom: 1px;
  border-top-color: #fff; }

.bs-popover-auto[x-placement^=right], .bs-popover-right {
  margin-left: .5rem; }

.bs-popover-auto[x-placement^=right] .arrow, .bs-popover-right .arrow {
  left: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0; }

.bs-popover-auto[x-placement^=right] .arrow::after, .bs-popover-auto[x-placement^=right] .arrow::before, .bs-popover-right .arrow::after, .bs-popover-right .arrow::before {
  border-width: .5rem .5rem .5rem 0; }

.bs-popover-auto[x-placement^=right] .arrow::before, .bs-popover-right .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25); }

.bs-popover-auto[x-placement^=right] .arrow::after, .bs-popover-right .arrow::after {
  left: 1px;
  border-right-color: #fff; }

.bs-popover-auto[x-placement^=bottom], .bs-popover-bottom {
  margin-top: .5rem; }

.bs-popover-auto[x-placement^=bottom] .arrow, .bs-popover-bottom .arrow {
  top: calc((.5rem + 1px) * -1); }

.bs-popover-auto[x-placement^=bottom] .arrow::after, .bs-popover-auto[x-placement^=bottom] .arrow::before, .bs-popover-bottom .arrow::after, .bs-popover-bottom .arrow::before {
  border-width: 0 .5rem .5rem .5rem; }

.bs-popover-auto[x-placement^=bottom] .arrow::before, .bs-popover-bottom .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25); }

.bs-popover-auto[x-placement^=bottom] .arrow::after, .bs-popover-bottom .arrow::after {
  top: 1px;
  border-bottom-color: #fff; }

.bs-popover-auto[x-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7; }

.bs-popover-auto[x-placement^=left], .bs-popover-left {
  margin-right: .5rem; }

.bs-popover-auto[x-placement^=left] .arrow, .bs-popover-left .arrow {
  right: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0; }

.bs-popover-auto[x-placement^=left] .arrow::after, .bs-popover-auto[x-placement^=left] .arrow::before, .bs-popover-left .arrow::after, .bs-popover-left .arrow::before {
  border-width: .5rem 0 .5rem .5rem; }

.bs-popover-auto[x-placement^=left] .arrow::before, .bs-popover-left .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25); }

.bs-popover-auto[x-placement^=left] .arrow::after, .bs-popover-left .arrow::after {
  right: 1px;
  border-left-color: #fff; }

.popover-header {
  padding: .5rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px); }

.popover-header:empty {
  display: none; }

.popover-body {
  padding: .5rem .75rem;
  color: #212529; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease,-webkit-transform .6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: block; }

.carousel-item-next, .carousel-item-prev {
  position: absolute;
  top: 0; }

.carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0); }

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.active.carousel-item-right, .carousel-item-next {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .active.carousel-item-right, .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

.active.carousel-item-left, .carousel-item-prev {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

@supports (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d) {
  .active.carousel-item-left, .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: .5; }

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-next-icon, .carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%; }

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none; }

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5); }

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: ""; }

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: ""; }

.carousel-indicators .active {
  background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center; }

.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.bg-primary {
  background-color: #007bff !important; }

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
  background-color: #0062cc !important; }

.bg-secondary {
  background-color: #6c757d !important; }

a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover {
  background-color: #545b62 !important; }

.bg-success {
  background-color: #28a745 !important; }

a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover {
  background-color: #1e7e34 !important; }

.bg-info {
  background-color: #17a2b8 !important; }

a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover {
  background-color: #117a8b !important; }

.bg-warning {
  background-color: #ffc107 !important; }

a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover {
  background-color: #d39e00 !important; }

.bg-danger {
  background-color: #dc3545 !important; }

a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover {
  background-color: #bd2130 !important; }

.bg-light {
  background-color: #f8f9fa !important; }

a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover {
  background-color: #dae0e5 !important; }

.bg-dark {
  background-color: #343a40 !important; }

a.bg-dark:focus, a.bg-dark:hover, button.bg-dark:focus, button.bg-dark:hover {
  background-color: #1d2124 !important; }

.bg-white {
  background-color: #fff !important; }

.bg-transparent {
  background-color: transparent !important; }

.border {
  border: 1px solid #dee2e6 !important; }

.border-top {
  border-top: 1px solid #dee2e6 !important; }

.border-right {
  border-right: 1px solid #dee2e6 !important; }

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important; }

.border-left {
  border-left: 1px solid #dee2e6 !important; }

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-right-0 {
  border-right: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-left-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: #007bff !important; }

.border-secondary {
  border-color: #6c757d !important; }

.border-success {
  border-color: #28a745 !important; }

.border-info {
  border-color: #17a2b8 !important; }

.border-warning {
  border-color: #ffc107 !important; }

.border-danger {
  border-color: #dc3545 !important; }

.border-light {
  border-color: #f8f9fa !important; }

.border-dark {
  border-color: #343a40 !important; }

.border-white {
  border-color: #fff !important; }

.rounded {
  border-radius: 0.25rem !important; }

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important; }

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important; }

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-0 {
  border-radius: 0 !important; }

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

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }

.embed-responsive::before {
  display: block;
  content: ""; }

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

.embed-responsive-21by9::before {
  padding-top: 42.857143%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important; }

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important; }

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important; }

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important; }

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important; }

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important; }

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important; }

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important; }

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important; }

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important; }

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important; }

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important; }

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important; }

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important; }

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important; }

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important; }

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important; }

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important; }

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important; }

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important; }

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: -webkit-sticky) or (position: sticky) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
  clip-path: none; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.m-0 {
  margin: 0 !important; }

.mt-0, .my-0 {
  margin-top: 0 !important; }

.mr-0, .mx-0 {
  margin-right: 0 !important; }

.mb-0, .my-0 {
  margin-bottom: 0 !important; }

.ml-0, .mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1, .my-1 {
  margin-top: 0.25rem !important; }

.mr-1, .mx-1 {
  margin-right: 0.25rem !important; }

.mb-1, .my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1, .mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2, .my-2 {
  margin-top: 0.5rem !important; }

.mr-2, .mx-2 {
  margin-right: 0.5rem !important; }

.mb-2, .my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2, .mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3, .my-3 {
  margin-top: 1rem !important; }

.mr-3, .mx-3 {
  margin-right: 1rem !important; }

.mb-3, .my-3 {
  margin-bottom: 1rem !important; }

.ml-3, .mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4, .my-4 {
  margin-top: 1.5rem !important; }

.mr-4, .mx-4 {
  margin-right: 1.5rem !important; }

.mb-4, .my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4, .mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5, .my-5 {
  margin-top: 3rem !important; }

.mr-5, .mx-5 {
  margin-right: 3rem !important; }

.mb-5, .my-5 {
  margin-bottom: 3rem !important; }

.ml-5, .mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0, .py-0 {
  padding-top: 0 !important; }

.pr-0, .px-0 {
  padding-right: 0 !important; }

.pb-0, .py-0 {
  padding-bottom: 0 !important; }

.pl-0, .px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1, .py-1 {
  padding-top: 0.25rem !important; }

.pr-1, .px-1 {
  padding-right: 0.25rem !important; }

.pb-1, .py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1, .px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2, .py-2 {
  padding-top: 0.5rem !important; }

.pr-2, .px-2 {
  padding-right: 0.5rem !important; }

.pb-2, .py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2, .px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3, .py-3 {
  padding-top: 1rem !important; }

.pr-3, .px-3 {
  padding-right: 1rem !important; }

.pb-3, .py-3 {
  padding-bottom: 1rem !important; }

.pl-3, .px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4, .py-4 {
  padding-top: 1.5rem !important; }

.pr-4, .px-4 {
  padding-right: 1.5rem !important; }

.pb-4, .py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4, .px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5, .py-5 {
  padding-top: 3rem !important; }

.pr-5, .px-5 {
  padding-right: 3rem !important; }

.pb-5, .py-5 {
  padding-bottom: 3rem !important; }

.pl-5, .px-5 {
  padding-left: 3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto, .my-auto {
  margin-top: auto !important; }

.mr-auto, .mx-auto {
  margin-right: auto !important; }

.mb-auto, .my-auto {
  margin-bottom: auto !important; }

.ml-auto, .mx-auto {
  margin-left: auto !important; }

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0, .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0, .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0, .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0, .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1, .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1, .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1, .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1, .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2, .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2, .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2, .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2, .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3, .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3, .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3, .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4, .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4, .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4, .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5, .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5, .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5, .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5, .mx-sm-5 {
    margin-left: 3rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0, .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0, .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0, .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0, .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1, .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1, .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1, .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1, .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2, .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2, .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2, .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2, .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3, .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3, .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3, .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4, .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4, .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4, .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4, .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5, .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5, .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5, .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5, .px-sm-5 {
    padding-left: 3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto, .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto, .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto, .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto, .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0, .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0, .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0, .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0, .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1, .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1, .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1, .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1, .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2, .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2, .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2, .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2, .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3, .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3, .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3, .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3, .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4, .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4, .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4, .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4, .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5, .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5, .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5, .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5, .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0, .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0, .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0, .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0, .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1, .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1, .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1, .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1, .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2, .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2, .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2, .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2, .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3, .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3, .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3, .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3, .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4, .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4, .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4, .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4, .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5, .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5, .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5, .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5, .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto, .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto, .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto, .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto, .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0, .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0, .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0, .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0, .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1, .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1, .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1, .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1, .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2, .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2, .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2, .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2, .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3, .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3, .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3, .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3, .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4, .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4, .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5, .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5, .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5, .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5, .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0, .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0, .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0, .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0, .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1, .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1, .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1, .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1, .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2, .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2, .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2, .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2, .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3, .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3, .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3, .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3, .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4, .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4, .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4, .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4, .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5, .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5, .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5, .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5, .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto, .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto, .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto, .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto, .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0, .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0, .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0, .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0, .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1, .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1, .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1, .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1, .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2, .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2, .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2, .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2, .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3, .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3, .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3, .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3, .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4, .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4, .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4, .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4, .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5, .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5, .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5, .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5, .mx-xl-5 {
    margin-left: 3rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0, .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0, .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0, .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0, .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1, .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1, .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1, .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1, .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2, .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2, .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2, .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2, .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3, .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3, .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3, .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3, .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4, .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4, .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4, .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4, .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5, .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5, .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5, .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5, .px-xl-5 {
    padding-left: 3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto, .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto, .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto, .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto, .mx-xl-auto {
    margin-left: auto !important; } }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

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

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-light {
  font-weight: 300 !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 700 !important; }

.font-italic {
  font-style: italic !important; }

.text-white {
  color: #fff !important; }

.text-primary {
  color: #007bff !important; }

a.text-primary:focus, a.text-primary:hover {
  color: #0062cc !important; }

.text-secondary {
  color: #6c757d !important; }

a.text-secondary:focus, a.text-secondary:hover {
  color: #545b62 !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:focus, a.text-success:hover {
  color: #1e7e34 !important; }

.text-info {
  color: #17a2b8 !important; }

a.text-info:focus, a.text-info:hover {
  color: #117a8b !important; }

.text-warning {
  color: #ffc107 !important; }

a.text-warning:focus, a.text-warning:hover {
  color: #d39e00 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:focus, a.text-danger:hover {
  color: #bd2130 !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:focus, a.text-light:hover {
  color: #dae0e5 !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:focus, a.text-dark:hover {
  color: #1d2124 !important; }

.text-muted {
  color: #6c757d !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

@media print {
  *, ::after, ::before {
    text-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre {
    white-space: pre-wrap !important; }
  blockquote, pre {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  img, tr {
    page-break-inside: avoid; }
  h2, h3, p {
    orphans: 3;
    widows: 3; }
  h2, h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .navbar {
    display: none; }
  .badge {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
  .table td, .table th {
    background-color: #fff !important; }
  .table-bordered td, .table-bordered th {
    border: 1px solid #ddd !important; } }

/*# sourceMappingURL=bootstrap.min.css.map */
.tabulator {
  position: relative;
  border: 1px solid #999;
  background-color: transparent;
  font-size: 14px;
  text-align: left;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0); }
  .tabulator[tabulator-layout="fitDataFill"] .tabulator-tableholder .tabulator-table {
    min-width: 100%; }
  .tabulator[tabulator-layout="fitDataTable"] {
    display: inline-block; }
  .tabulator.tabulator-block-select {
    user-select: none; }
  .tabulator .tabulator-header {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    border-bottom: 1px solid #999;
    background-color: #fff;
    color: #555;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none; }
    .tabulator .tabulator-header.tabulator-header-hidden {
      display: none; }
    .tabulator .tabulator-header .tabulator-header-contents {
      position: relative;
      overflow: hidden; }
      .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {
        display: inline-block; }
    .tabulator .tabulator-header .tabulator-col {
      display: inline-flex;
      position: relative;
      box-sizing: border-box;
      flex-direction: column;
      justify-content: flex-start;
      border-right: 1px solid #ddd;
      background: #fff;
      text-align: left;
      vertical-align: bottom;
      overflow: hidden; }
      .tabulator .tabulator-header .tabulator-col.tabulator-moving {
        position: absolute;
        border: 1px solid #999;
        background: #e6e5e5;
        pointer-events: none; }
      .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
        box-sizing: border-box;
        position: relative;
        padding: 4px; }
        .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-popup-button {
          padding: 0 8px; }
          .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-popup-button:hover {
            cursor: pointer;
            opacity: .6; }
        .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {
          position: relative; }
        .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
          box-sizing: border-box;
          width: 100%;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          vertical-align: bottom; }
          .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title.tabulator-col-title-wrap {
            white-space: normal;
            text-overflow: initial; }
          .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-title-editor {
            box-sizing: border-box;
            width: 100%;
            border: 1px solid #999;
            padding: 1px;
            background: #fff; }
          .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-header-popup-button + .tabulator-title-editor {
            width: calc(100% - 22px); }
        .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
          display: flex;
          align-items: center;
          position: absolute;
          top: 0;
          bottom: 0;
          right: 4px; }
          .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid #bbb; }
      .tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
        position: relative;
        display: flex;
        border-top: 1px solid #ddd;
        overflow: hidden;
        margin-right: -1px; }
      .tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
        position: relative;
        box-sizing: border-box;
        margin-top: 2px;
        width: 100%;
        text-align: center; }
        .tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {
          height: auto !important; }
        .tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {
          margin-top: 3px; }
        .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {
          width: 0;
          height: 0; }
      .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
        padding-right: 25px; }
      .tabulator .tabulator-header .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
        cursor: pointer;
        background-color: #e6e5e5; }
      .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-col-sorter {
        color: #bbb; }
        .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
          cursor: pointer;
          border-bottom: 6px solid #555; }
        .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
          border-top: none;
          border-bottom: 6px solid #bbb; }
      .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="ascending"] .tabulator-col-content .tabulator-col-sorter {
        color: #666; }
        .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="ascending"] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
          cursor: pointer;
          border-bottom: 6px solid #555; }
        .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="ascending"] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
          border-top: none;
          border-bottom: 6px solid #666; }
      .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="descending"] .tabulator-col-content .tabulator-col-sorter {
        color: #666; }
        .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="descending"] .tabulator-col-content .tabulator-col-sorter.tabulator-col-sorter-element .tabulator-arrow:hover {
          cursor: pointer;
          border-top: 6px solid #555; }
        .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="descending"] .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
          border-bottom: none;
          border-top: 6px solid #666;
          color: #666; }
      .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical .tabulator-col-content .tabulator-col-title {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        display: flex;
        align-items: center;
        justify-content: center; }
      .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip .tabulator-col-title {
        transform: rotate(180deg); }
      .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-title {
        padding-right: 0;
        padding-top: 20px; }
      .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip .tabulator-col-title {
        padding-right: 0;
        padding-bottom: 20px; }
      .tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-sorter {
        justify-content: center;
        left: 0;
        right: 0;
        top: 4px;
        bottom: auto; }
    .tabulator .tabulator-header .tabulator-frozen {
      position: sticky;
      left: 0;
      z-index: 10; }
      .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {
        border-right: 2px solid #ddd; }
      .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {
        border-left: 2px solid #ddd; }
    .tabulator .tabulator-header .tabulator-calcs-holder {
      box-sizing: border-box;
      min-width: 600%;
      background: white !important;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd; }
      .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
        background: white !important; }
        .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
          display: none; }
    .tabulator .tabulator-header .tabulator-frozen-rows-holder {
      min-width: 600%; }
      .tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
        display: none; }
  .tabulator .tabulator-tableholder {
    position: relative;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
    .tabulator .tabulator-tableholder:focus {
      outline: none; }
    .tabulator .tabulator-tableholder .tabulator-placeholder {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      width: 100%; }
      .tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode="virtual"] {
        min-height: 100%;
        min-width: 100%; }
      .tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {
        display: inline-block;
        text-align: center;
        padding: 10px;
        color: #ccc;
        font-weight: bold;
        font-size: 20px;
        white-space: normal; }
    .tabulator .tabulator-tableholder .tabulator-table {
      position: relative;
      display: inline-block;
      background-color: transparent;
      white-space: nowrap;
      overflow: visible;
      color: #333; }
      .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {
        font-weight: bold;
        background: #f2f2f2 !important; }
        .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-top {
          border-bottom: 2px solid #ddd; }
        .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {
          border-top: 2px solid #ddd; }
  .tabulator .tabulator-footer {
    border-top: 1px solid #999;
    background-color: transparent;
    color: #555;
    font-weight: bold;
    white-space: nowrap;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none; }
    .tabulator .tabulator-footer .tabulator-footer-contents {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 5px 10px; }
      .tabulator .tabulator-footer .tabulator-footer-contents:empty {
        display: none; }
    .tabulator .tabulator-footer .tabulator-calcs-holder {
      box-sizing: border-box;
      width: 100%;
      text-align: left;
      background: white !important;
      border-bottom: 1px solid #ddd;
      border-top: 1px solid #ddd;
      overflow: hidden; }
      .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
        display: inline-block;
        background: white !important; }
        .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
          display: none; }
      .tabulator .tabulator-footer .tabulator-calcs-holder:only-child {
        margin-bottom: -5px;
        border-bottom: none; }
    .tabulator .tabulator-footer > * + .tabulator-page-counter {
      margin-left: 10px; }
    .tabulator .tabulator-footer .tabulator-page-counter {
      font-weight: normal; }
    .tabulator .tabulator-footer .tabulator-paginator {
      flex: 1;
      text-align: center;
      color: #555;
      font-family: inherit;
      font-weight: inherit;
      font-size: inherit; }
    .tabulator .tabulator-footer .tabulator-page-size {
      display: inline-block;
      margin: 0 5px;
      padding: 2px 5px;
      border: 1px solid transparent;
      border-radius: 3px; }
    .tabulator .tabulator-footer .tabulator-pages {
      margin: 0 7px; }
    .tabulator .tabulator-footer .tabulator-page {
      display: inline-block;
      min-width: 26px;
      margin: 0 2px;
      padding: 2px 5px;
      border: 1px solid transparent;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.2);
      text-align: center;
      color: #000; }
      .tabulator .tabulator-footer .tabulator-page.active {
        color: #fff;
        background-color: #1598A3; }
      .tabulator .tabulator-footer .tabulator-page:hover {
        cursor: pointer;
        background: #efefef; }
      .tabulator .tabulator-footer .tabulator-page:disabled:hover {
        cursor: default;
        background: rgba(255, 255, 255, 0.2); }
      .tabulator .tabulator-footer .tabulator-page.active:hover {
        cursor: default;
        background-color: #1598A3; }
  .tabulator .tabulator-col-resize-handle {
    position: relative;
    display: inline-block;
    width: 6px;
    margin-left: -3px;
    margin-right: -3px;
    z-index: 10;
    vertical-align: middle; }
    .tabulator .tabulator-col-resize-handle:hover {
      cursor: ew-resize; }
    .tabulator .tabulator-col-resize-handle:last-of-type {
      width: 3px;
      margin-right: 0; }
  .tabulator .tabulator-alert {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    text-align: center; }
    .tabulator .tabulator-alert .tabulator-alert-msg {
      display: inline-block;
      margin: 0 auto;
      padding: 10px 20px;
      border-radius: 10px;
      background: #fff;
      font-weight: bold;
      font-size: 16px; }
      .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {
        border: 4px solid #333;
        color: #000; }
      .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {
        border: 4px solid #D00;
        color: #590000; }

.tabulator-row {
  position: relative;
  box-sizing: border-box;
  min-height: 22px;
  background-color: transparent; }
  .tabulator-row.tabulator-row-even {
    background-color: transparent; }
  .tabulator-row.tabulator-selectable:hover {
    background-color: transparent;
    cursor: pointer; }
  .tabulator-row.tabulator-selected {
    background-color: transparent; }
  .tabulator-row.tabulator-selected:hover {
    background-color: transparent;
    cursor: pointer; }
  .tabulator-row.tabulator-row-moving {
    border: 1px solid #000;
    background: #fff; }
  .tabulator-row.tabulator-moving {
    position: absolute;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    pointer-events: none;
    z-index: 15; }
  .tabulator-row .tabulator-row-resize-handle {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px; }
    .tabulator-row .tabulator-row-resize-handle.prev {
      top: 0;
      bottom: auto; }
    .tabulator-row .tabulator-row-resize-handle:hover {
      cursor: ns-resize; }
  .tabulator-row .tabulator-responsive-collapse {
    box-sizing: border-box;
    padding: 5px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd; }
    .tabulator-row .tabulator-responsive-collapse:empty {
      display: none; }
    .tabulator-row .tabulator-responsive-collapse table {
      font-size: 14px; }
      .tabulator-row .tabulator-responsive-collapse table tr td {
        position: relative; }
        .tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {
          padding-right: 10px; }
  .tabulator-row .tabulator-cell {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    padding: 4px;
    border-right: 1px solid #ddd;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .tabulator-row .tabulator-cell.tabulator-frozen {
      display: inline-block;
      position: sticky;
      left: 0;
      background-color: inherit;
      z-index: 10; }
      .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
        border-right: 2px solid #ddd; }
      .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {
        border-left: 2px solid #ddd; }
    .tabulator-row .tabulator-cell.tabulator-editing {
      border: 1px solid #1D68CD;
      outline: none;
      padding: 0; }
      .tabulator-row .tabulator-cell.tabulator-editing input, .tabulator-row .tabulator-cell.tabulator-editing select {
        border: 1px;
        background: transparent;
        outline: none; }
    .tabulator-row .tabulator-cell.tabulator-validation-fail {
      border: 1px solid #dd0000; }
      .tabulator-row .tabulator-cell.tabulator-validation-fail input, .tabulator-row .tabulator-cell.tabulator-validation-fail select {
        border: 1px;
        background: transparent;
        color: #dd0000; }
    .tabulator-row .tabulator-cell.tabulator-row-handle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      -moz-user-select: none;
      -khtml-user-select: none;
      -webkit-user-select: none;
      -o-user-select: none; }
      .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
        width: 80%; }
        .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
          width: 100%;
          height: 3px;
          margin-top: 2px;
          background: #666; }
    .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
      display: inline-block;
      vertical-align: middle;
      height: 9px;
      width: 7px;
      margin-top: -9px;
      margin-right: 5px;
      border-bottom-left-radius: 1px;
      border-left: 2px solid #ddd;
      border-bottom: 2px solid #ddd; }
    .tabulator-row .tabulator-cell .tabulator-data-tree-control {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      vertical-align: middle;
      height: 11px;
      width: 11px;
      margin-right: 5px;
      border: 1px solid #333;
      border-radius: 2px;
      background: rgba(0, 0, 0, 0.1);
      overflow: hidden; }
      .tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
        cursor: pointer;
        background: rgba(0, 0, 0, 0.2); }
      .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
        display: inline-block;
        position: relative;
        height: 7px;
        width: 1px;
        background: transparent; }
        .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
          position: absolute;
          content: "";
          left: -3px;
          top: 3px;
          height: 1px;
          width: 7px;
          background: #333; }
      .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {
        display: inline-block;
        position: relative;
        height: 7px;
        width: 1px;
        background: #333; }
        .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
          position: absolute;
          content: "";
          left: -3px;
          top: 3px;
          height: 1px;
          width: 7px;
          background: #333; }
    .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      -moz-user-select: none;
      -khtml-user-select: none;
      -webkit-user-select: none;
      -o-user-select: none;
      height: 15px;
      width: 15px;
      border-radius: 20px;
      background: #666;
      color: #fff;
      font-weight: bold;
      font-size: 1.1em; }
      .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {
        opacity: .7;
        cursor: pointer; }
      .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-close {
        display: initial; }
      .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-open {
        display: none; }
      .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle svg {
        stroke: #fff; }
      .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle .tabulator-responsive-collapse-toggle-close {
        display: none; }
    .tabulator-row .tabulator-cell .tabulator-traffic-light {
      display: inline-block;
      height: 14px;
      width: 14px;
      border-radius: 14px; }
  .tabulator-row.tabulator-group {
    box-sizing: border-box;
    border-bottom: 1px solid #999;
    border-right: 1px solid #ddd;
    border-top: 1px solid #999;
    padding: 5px;
    padding-left: 10px;
    background: #ccc;
    font-weight: bold;
    min-width: 100%; }
    .tabulator-row.tabulator-group:hover {
      cursor: pointer;
      background-color: rgba(0, 0, 0, 0.1); }
    .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
      margin-right: 10px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid #666;
      border-bottom: 0; }
    .tabulator-row.tabulator-group.tabulator-group-level-1 {
      padding-left: 30px; }
    .tabulator-row.tabulator-group.tabulator-group-level-2 {
      padding-left: 50px; }
    .tabulator-row.tabulator-group.tabulator-group-level-3 {
      padding-left: 70px; }
    .tabulator-row.tabulator-group.tabulator-group-level-4 {
      padding-left: 90px; }
    .tabulator-row.tabulator-group.tabulator-group-level-5 {
      padding-left: 110px; }
    .tabulator-row.tabulator-group .tabulator-group-toggle {
      display: inline-block; }
    .tabulator-row.tabulator-group .tabulator-arrow {
      display: inline-block;
      width: 0;
      height: 0;
      margin-right: 16px;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-right: 0;
      border-left: 6px solid #666;
      vertical-align: middle; }
    .tabulator-row.tabulator-group span {
      margin-left: 10px;
      color: #d00; }

.tabulator-popup-container {
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  font-size: 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000; }

.tabulator-popup {
  padding: 5px;
  border-radius: 3px; }

.tabulator-tooltip {
  max-width: Min(500px, 100%);
  padding: 3px 5px;
  border-radius: 2px;
  box-shadow: none;
  font-size: 12px;
  pointer-events: none;
  z-index: 1000000; }

.tabulator-menu .tabulator-menu-item {
  position: relative;
  box-sizing: border-box;
  padding: 5px 10px;
  user-select: none; }
  .tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {
    opacity: .5; }
  .tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {
    cursor: pointer;
    background: #fff; }
  .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {
    padding-right: 25px; }
    .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu::after {
      display: inline-block;
      position: absolute;
      top: calc(5px + .4em);
      right: 10px;
      height: 7px;
      width: 7px;
      content: '';
      border-width: 1px 1px 0 0;
      border-style: solid;
      border-color: #ddd;
      vertical-align: top;
      transform: rotate(45deg); }

.tabulator-menu .tabulator-menu-separator {
  border-top: 1px solid #ddd; }

.tabulator-edit-list {
  max-height: 200px;
  font-size: 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
  .tabulator-edit-list .tabulator-edit-list-item {
    padding: 4px;
    color: #333;
    outline: none; }
    .tabulator-edit-list .tabulator-edit-list-item.active {
      color: #fff;
      background: #1D68CD; }
      .tabulator-edit-list .tabulator-edit-list-item.active.focused {
        outline: 1px solid rgba(255, 255, 255, 0.5); }
    .tabulator-edit-list .tabulator-edit-list-item.focused {
      outline: 1px solid #1D68CD; }
    .tabulator-edit-list .tabulator-edit-list-item:hover {
      cursor: pointer;
      color: #fff;
      background: #1D68CD; }
  .tabulator-edit-list .tabulator-edit-list-placeholder {
    padding: 4px;
    color: #333;
    text-align: center; }
  .tabulator-edit-list .tabulator-edit-list-group {
    border-bottom: 1px solid #ddd;
    padding: 4px;
    padding-top: 6px;
    color: #333;
    font-weight: bold; }
  .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2 {
    padding-left: 12px; }
  .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3 {
    padding-left: 20px; }
  .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4 {
    padding-left: 28px; }
  .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5, .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5 {
    padding-left: 36px; }

.tabulator.tabulator-ltr {
  direction: ltr; }

.tabulator.tabulator-rtl {
  text-align: initial;
  direction: rtl; }
  .tabulator.tabulator-rtl .tabulator-header .tabulator-col {
    text-align: initial;
    border-left: 1px solid #ddd;
    border-right: initial; }
    .tabulator.tabulator-rtl .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
      margin-right: initial;
      margin-left: -1px; }
    .tabulator.tabulator-rtl .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
      padding-right: 0;
      padding-left: 25px; }
    .tabulator.tabulator-rtl .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {
      left: 8px;
      right: initial; }
  .tabulator.tabulator-rtl .tabulator-row .tabulator-cell {
    border-right: initial;
    border-left: 1px solid #ddd; }
    .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-branch {
      margin-right: initial;
      margin-left: 5px;
      border-bottom-left-radius: initial;
      border-bottom-right-radius: 1px;
      border-left: initial;
      border-right: 2px solid #ddd; }
    .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-control {
      margin-right: initial;
      margin-left: 5px; }
    .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {
      border-left: 2px solid #ddd; }
    .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {
      border-right: 2px solid #ddd; }
  .tabulator.tabulator-rtl .tabulator-row .tabulator-col-resize-handle:last-of-type {
    width: 3px;
    margin-left: 0;
    margin-right: -3px; }
  .tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {
    text-align: initial; }

.tabulator-print-fullscreen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000; }

body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {
  display: none !important; }

.tabulator-print-table {
  border-collapse: collapse; }
  .tabulator-print-table .tabulator-data-tree-branch {
    display: inline-block;
    vertical-align: middle;
    height: 9px;
    width: 7px;
    margin-top: -9px;
    margin-right: 5px;
    border-bottom-left-radius: 1px;
    border-left: 2px solid #ddd;
    border-bottom: 2px solid #ddd; }
  .tabulator-print-table .tabulator-print-table-group {
    box-sizing: border-box;
    border-bottom: 1px solid #999;
    border-right: 1px solid #ddd;
    border-top: 1px solid #999;
    padding: 5px;
    padding-left: 10px;
    background: #ccc;
    font-weight: bold;
    min-width: 100%; }
    .tabulator-print-table .tabulator-print-table-group:hover {
      cursor: pointer;
      background-color: rgba(0, 0, 0, 0.1); }
    .tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {
      margin-right: 10px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid #666;
      border-bottom: 0; }
    .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-1 td {
      padding-left: 30px !important; }
    .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-2 td {
      padding-left: 50px !important; }
    .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-3 td {
      padding-left: 70px !important; }
    .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-4 td {
      padding-left: 90px !important; }
    .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-5 td {
      padding-left: 110px !important; }
    .tabulator-print-table .tabulator-print-table-group .tabulator-group-toggle {
      display: inline-block; }
    .tabulator-print-table .tabulator-print-table-group .tabulator-arrow {
      display: inline-block;
      width: 0;
      height: 0;
      margin-right: 16px;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-right: 0;
      border-left: 6px solid #666;
      vertical-align: middle; }
    .tabulator-print-table .tabulator-print-table-group span {
      margin-left: 10px;
      color: #d00; }
  .tabulator-print-table .tabulator-data-tree-control {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    height: 11px;
    width: 11px;
    margin-right: 5px;
    border: 1px solid #333;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden; }
    .tabulator-print-table .tabulator-data-tree-control:hover {
      cursor: pointer;
      background: rgba(0, 0, 0, 0.2); }
    .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
      display: inline-block;
      position: relative;
      height: 7px;
      width: 1px;
      background: transparent; }
      .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
        position: absolute;
        content: "";
        left: -3px;
        top: 3px;
        height: 1px;
        width: 7px;
        background: #333; }
    .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {
      display: inline-block;
      position: relative;
      height: 7px;
      width: 1px;
      background: #333; }
      .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
        position: absolute;
        content: "";
        left: -3px;
        top: 3px;
        height: 1px;
        width: 7px;
        background: #333; }

.tabulator {
  border: none;
  background-color: transparent; }
  .tabulator .tabulator-header .tabulator-calcs-holder {
    background: #f2f2f2 !important;
    border-bottom: 1px solid #999; }
    .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
      background: #f2f2f2 !important; }
  .tabulator .tabulator-tableholder .tabulator-placeholder span {
    color: #000; }
  .tabulator .tabulator-footer {
    padding: 5px 10px 5px; }
    .tabulator .tabulator-footer .tabulator-calcs-holder {
      background: #f2f2f2 !important;
      border-bottom: 1px solid #fff; }
      .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
        background: #f2f2f2 !important; }

.tabulator-row {
  border-bottom: 1px solid #ddd; }
  .tabulator-row .tabulator-cell:last-of-type {
    border-right: none; }
  .tabulator-row.tabulator-group span {
    color: #666; }

.tabulator-print-table .tabulator-print-table-group span {
  margin-left: 10px;
  color: #666; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  z-index: 9999999;
  font-size: 14px;
  height: 38px; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 100%;
  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 #ced4da;
  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: 5px 10px;
  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;
  top: 0;
  left: 0; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  display: flex;
  align-items: center; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #495057; }

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

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

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

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  height: 0;
  left: 50%;
  margin-left: -15px;
  transform: translateY(-50%);
  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 #000 transparent;
  border-width: 0 8px 10px 8px; }

.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 #ced4da;
  border-radius: 0.25rem; }

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
  outline: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.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: #15a5b7;
  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-color: #80bdff; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444; }

.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-color: #80bdff; }

.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; }

/* WebFont : Noto Sans*/
@font-face {
  font-family: 'Noto Sans';
  font-weight: 300;
  src: url("/static/font/NotoSans/NotoSans-Light.ttf");
  src: local(☺), url("/static/font/NotoSans/NotoSans-Light.ttf") format("truetype"); }

@font-face {
  font-family: 'Noto Sans';
  font-weight: 400;
  src: url("/static/font/NotoSans/NotoSans-Regular.ttf");
  src: local(☺), url("/static/font/NotoSans/NotoSans-Regular.ttf") format("truetype"); }

@font-face {
  font-family: 'Noto Sans';
  font-weight: 700;
  src: url("/static/font/NotoSans/NotoSans-Bold.ttf");
  src: local(☺), url("/static/font/NotoSans/NotoSans-Bold.ttf") format("truetype"); }

@font-face {
  font-family: 'Noto Sans';
  font-weight: 900;
  src: url("/static/font/NotoSans/NotoSans-Black.ttf");
  src: local(☺), url("/static/font/NotoSans/NotoSans-Black.ttf") format("truetype"); }

@font-face {
  font-family: 'sclab';
  src: url("/static/font/sclab_250625.eot");
  src: url("/static/font/sclab_250625.eot?#iefix") format("embedded-opentype"), url("/static/font/sclab_250625.ttf") format("truetype"), url("/static/font/sclab_250625.woff") format("woff"), url("/static/font/sclab_250625.svg#sclab") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

i.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'sclab' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  i.icon:before {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 1px; }

.sclab_chart_basic_scatter:before {
  content: "\e958"; }

.sclab_ai_agent:before {
  content: "\e959"; }

.sclab_data_hex:before {
  content: "\e957"; }

.sclab_about:before {
  content: "\e955"; }

.sclab_price:before {
  content: "\e956"; }

.sclab_copy:before {
  content: "\e900"; }

.sclab_chart_poly_reg:before {
  content: "\e901"; }

.sclab_api:before {
  content: "\e902"; }

.sclab_csv:before {
  content: "\e903"; }

.sclab_db:before {
  content: "\e904"; }

.sclab_doc:before {
  content: "\e905"; }

.sclab_epub:before {
  content: "\e906"; }

.sclab_json:before {
  content: "\e907"; }

.sclab_pdf:before {
  content: "\e908"; }

.sclab_txt:before {
  content: "\e909"; }

.sclab_web:before {
  content: "\e90a"; }

.sclab_gpt:before {
  content: "\e90b"; }

.sclab_pages:before {
  content: "\e90c"; }

.sclab_chart:before {
  content: "\e90d"; }

.sclab_dashboard_mobile:before {
  content: "\e90e"; }

.sclab_dashboard:before {
  content: "\e90f"; }

.sclab_data1:before {
  content: "\e910"; }

.sclab_delete:before {
  content: "\e911"; }

.sclab_edit:before {
  content: "\e912"; }

.sclab_element:before {
  content: "\e913"; }

.sclab_home:before {
  content: "\e914"; }

.sclab_iframe:before {
  content: "\e915"; }

.sclab_image:before {
  content: "\e916"; }

.sclab_image2:before {
  content: "\e917"; }

.sclab_layout:before {
  content: "\e918"; }

.sclab_list_rect:before {
  content: "\e919"; }

.sclab_location:before {
  content: "\e91a"; }

.sclab_map:before {
  content: "\e91b"; }

.sclab_map2:before {
  content: "\e91c"; }

.sclab_map3:before {
  content: "\e91d"; }

.sclab_mobile:before {
  content: "\e91e"; }

.sclab_publish_start:before {
  content: "\e91f"; }

.sclab_publish_stop:before {
  content: "\e920"; }

.sclab_publish:before {
  content: "\e921"; }

.sclab_redo:before {
  content: "\e922"; }

.sclab_setting_rect:before {
  content: "\e923"; }

.sclab_setting:before {
  content: "\e924"; }

.sclab_star:before {
  content: "\e925"; }

.sclab_undo:before {
  content: "\e926"; }

.sclab_user_menu:before {
  content: "\e927"; }

.sclab_full_screen:before {
  content: "\e928"; }

.sclab_small_screen:before {
  content: "\e929"; }

.sclab_pivot:before {
  content: "\e92a"; }

.sclab_naver:before {
  content: "\e92b"; }

.sclab_kakao:before {
  content: "\e92c"; }

.sclab_youtube:before {
  content: "\e92d"; }

.sclab_polygon:before {
  content: "\e92e"; }

.sclab_element1:before {
  content: "\e92f"; }

.sclab_gis:before {
  content: "\e930"; }

.sclab_circle:before {
  content: "\e931"; }

.sclab_bringtofront:before {
  content: "\e932"; }

.sclab_clear:before {
  content: "\e933"; }

.sclab_api_action:before {
  content: "\e934"; }

.sclab_data2:before {
  content: "\e935"; }

.sclab_map3_b:before {
  content: "\e936"; }

.sclab_publish2:before {
  content: "\e937"; }

.sclab_resize:before {
  content: "\e938"; }

.sclab_sendtoback:before {
  content: "\e939"; }

.sclab_mobile_edit:before {
  content: "\e93a"; }

.sclab_pages_edit:before {
  content: "\e93b"; }

.sclab_public:before {
  content: "\e93c"; }

.sclab_setting_b:before {
  content: "\e93d"; }

.sclab_share:before {
  content: "\e93e"; }

.sclab_pravate:before {
  content: "\e93f"; }

.sclab_user_list:before {
  content: "\e940"; }

.sclab_iot:before {
  content: "\e941"; }

.sclab_dev:before {
  content: "\e942"; }

.sclab_chart_bar_horizontal:before {
  content: "\e943"; }

.sclab_chart_bar:before {
  content: "\e944"; }

.sclab_chart_color:before {
  content: "\e945"; }

.sclab_chart_doughnut_percent:before {
  content: "\e946"; }

.sclab_chart_doughnut:before {
  content: "\e947"; }

.sclab_chart_line:before {
  content: "\e948"; }

.sclab_chart_mixed:before {
  content: "\e949"; }

.sclab_chart_number:before {
  content: "\e94a"; }

.sclab_chart_pie:before {
  content: "\e94b"; }

.sclab_chart_radar:before {
  content: "\e94c"; }

.sclab_combine:before {
  content: "\e94d"; }

.sclab_element2:before {
  content: "\e94e"; }

.sclab_chart_treemap:before {
  content: "\e94f"; }

.sclab_move:before {
  content: "\e950"; }

.sclab_table:before {
  content: "\e951"; }

.sclab_chart_linear_reg:before {
  content: "\e952"; }

.sclab_chart_boxplot:before {
  content: "\e953"; }

.sclab_chart_calendar_pie:before {
  content: "\e954"; }

html {
  position: relative;
  min-height: 100%; }

html.sclab-editor {
  min-width: 1024px;
  min-height: 700px;
  overflow: auto;
  height: 100vh; }
  html.sclab-editor body {
    height: 100vh; }

html.sclab-site {
  height: 100vh;
  height: 100dvh;
  min-height: -webkit-fill-available;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom); }
  html.sclab-site body {
    height: 100%; }
    html.sclab-site body #__blaze-root {
      width: 100%;
      height: 100%; }
    html.sclab-site body .siteBody {
      width: 100%;
      height: 100%; }

html, body {
  font-family: "Noto Sans", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  overflow: auto;
  color: #333;
  width: 100%; }

body > .alert {
  position: absolute;
  z-index: 9999;
  width: 100%; }
  body > .alert.alert-warning {
    background-color: #fff;
    border-color: #fff; }

ul, ol, lsvg {
  list-style: none;
  padding: 0;
  margin: 0; }

p {
  margin: 0; }

a:hover,
a:focus,
a:active {
  text-decoration: none !important; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

select.caret,
select.form-control,
.select-input.form-control {
  background-image: url("/static/img/bg_select_caret.png");
  background-repeat: no-repeat;
  background-position: 96% 50%; }

select.form-control.no-arrow {
  background-image: none; }

option[value=""][disabled] {
  display: none; }

input[type="password"] {
  font-family: 'Noto Sans', sans-serif; }

.limited-textarea {
  width: 100%;
  height: 100%; }
  .limited-textarea .js-countMsg {
    position: relative;
    font-size: 0.6rem;
    text-align: right;
    color: #333; }

[role="button"] {
  cursor: pointer; }

svg text {
  line-height: 1; }

.empty-alert {
  font-size: 14px;
  color: #ff3333;
  display: block;
  padding: 5px; }

.sclab-custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent; }
  .sclab-custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px; }
  .sclab-custom-scroll::-webkit-scrollbar-track {
    background-color: transparent; }
  .sclab-custom-scroll::-webkit-scrollbar-thumb {
    width: 6px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px; }
  .sclab-custom-scroll::-webkit-scrollbar-button {
    width: 0;
    height: 0; }

.at-form {
  font-family: 'Noto Sans', sans-serif; }
  .at-form button[type=submit] {
    background-color: #15a5b7;
    color: #fff; }
    .at-form button[type=submit]:hover, .at-form button[type=submit]:focus, .at-form button[type=submit]:active {
      background-color: #1290a0;
      color: #fff; }
  .at-form .at-link {
    color: #15a5b7; }

.toe {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal; }

.toe-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.3em;
  height: 2.6em; }

.btn {
  -webkit-transition: background-color 0.2s, border-color 0.2s, color 0.1s;
  -moz-transition: background-color 0.2s, border-color 0.2s, color 0.1s;
  -ms-transition: background-color 0.2s, border-color 0.2s, color 0.1s;
  -o-transition: background-color 0.2s, border-color 0.2s, color 0.1s;
  transition: background-color 0.2s, border-color 0.2s, color 0.1s; }

.btn.btn-radius_0 {
  border-radius: 0; }

.popover {
  cursor: default;
  z-index: 9000; }

.tooltip {
  pointer-events: none; }
  .tooltip .tooltip-inner {
    padding: 2px 4px;
    background-color: #15a5b7;
    font-size: 12px; }
  .tooltip .tooltip-arrow {
    display: none; }
  .tooltip.in-modal {
    z-index: 1000000; }
  .tooltip.action-copy-tooltip {
    z-index: 1000000; }

p[data-toggle="tooltip"] svg,
div[data-toggle="tooltip"] svg,
button[data-toggle="tooltip"] svg,
a[data-toggle="tooltip"] svg,
span[data-toggle="tooltip"] svg {
  pointer-events: none; }

p[data-toggle="tooltip"] i,
div[data-toggle="tooltip"] i,
button[data-toggle="tooltip"] i,
a[data-toggle="tooltip"] i,
span[data-toggle="tooltip"] i {
  pointer-events: none; }

button:focus {
  outline: 1px dotted; }

.row.row-no-margin {
  margin: 0; }
  .row.row-no-margin .no-padding {
    padding: 0; }

.height-100 {
  height: 100%; }

.middot {
  position: relative;
  padding-left: 15px; }
  .middot:before {
    position: absolute;
    display: block;
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: #333;
    top: 50%;
    left: 3px;
    transform: translateY(-50%); }

.relative-box {
  position: relative;
  width: 100%;
  height: 100%; }

.fit-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  .fit-box.ovf-y-auto {
    overflow-y: auto; }

.list-table {
  display: table;
  width: 100%; }
  .list-table .list-header {
    display: table-header-group; }
  .list-table .list-body {
    display: table-row-group; }
  .list-table .list-row {
    display: table-row; }
  .list-table .list-th,
  .list-table .list-td {
    display: table-cell;
    padding: 0.7em; }
  .list-table .list-th {
    text-align: center; }

.status-color-Receipt {
  color: #ff0000; }

.status-color-Response {
  color: #00aaff; }

.status-color-Complete {
  color: #bfbfbf; }

.color-green {
  color: #15a5b7; }
  .color-green:hover, .color-green:focus-visible, .color-green:active {
    color: #1290a0; }
  .color-green.disabled, .color-green:disabled {
    color: #15a5b7;
    cursor: default; }

.btn-default-color-green {
  background-color: #15a5b7;
  color: #fff; }
  .btn-default-color-green:hover, .btn-default-color-green:focus-visible, .btn-default-color-green:active {
    background-color: #1290a0;
    color: #fff; }
  .btn-default-color-green.disabled, .btn-default-color-green:disabled {
    background-color: #15a5b7;
    cursor: default; }

.btn-default-color-dark-gray {
  background-color: #595959;
  color: #fff; }
  .btn-default-color-dark-gray:hover, .btn-default-color-dark-gray:focus-visible, .btn-default-color-dark-gray:active {
    background-color: #4c4c4c;
    color: #fff; }
  .btn-default-color-dark-gray.disabled, .btn-default-color-dark-gray:disabled {
    background-color: #595959;
    cursor: default; }

.btn-default-color-gray {
  background-color: #808080;
  color: #fff; }
  .btn-default-color-gray:hover, .btn-default-color-gray:focus-visible, .btn-default-color-gray:active {
    background-color: #737373;
    color: #fff; }
  .btn-default-color-gray.disabled, .btn-default-color-gray:disabled {
    background-color: #808080;
    cursor: default; }

.btn-default-color-red {
  background-color: #ed0001;
  color: #fff; }
  .btn-default-color-red:hover, .btn-default-color-red:focus-visible, .btn-default-color-red:active {
    background-color: #d40001;
    color: #fff; }
  .btn-default-color-red.disabled, .btn-default-color-red:disabled {
    background-color: #ed0001;
    cursor: default; }

.btn-default-color-white {
  background-color: #fff;
  color: #555; }
  .btn-default-color-white:hover, .btn-default-color-white:focus-visible, .btn-default-color-white:active {
    background-color: #15a5b7;
    color: #fff; }
  .btn-default-color-white.border-btn {
    border: 1px solid #ccc; }
  .btn-default-color-white.disabled, .btn-default-color-white:disabled {
    background-color: #fff;
    cursor: default; }

.btn-select-dropdown {
  border: 1px solid #ced4da;
  display: block;
  width: 100%;
  min-height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: transparent;
  background-clip: padding-box;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-image: url("/static/img/bg_select_caret.png");
  background-repeat: no-repeat;
  background-position: 96% 50%; }
  .btn-select-dropdown:after {
    display: none; }
  .btn-select-dropdown:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25); }
  .btn-select-dropdown + .dropdown-menu {
    font-size: 1rem; }
    .btn-select-dropdown + .dropdown-menu a.dropdown-item,
    .btn-select-dropdown + .dropdown-menu li.dropdown-item {
      display: block;
      padding: 0.25rem 0.5rem; }
      .btn-select-dropdown + .dropdown-menu a.dropdown-item:active,
      .btn-select-dropdown + .dropdown-menu li.dropdown-item:active {
        background-color: #f8f9fa;
        color: #16181b; }

.mb1em {
  margin-bottom: 1em; }

hr {
  border-top: 0; }

.fw-normal {
  font-weight: 400 !important; }

.fw-light {
  font-weight: 300 !important; }

.fw-bold {
  font-weight: 700 !important; }

.fw-Exbold {
  font-weight: 800 !important; }

.fs-italic {
  font-style: italic !important; }

.form-group {
  margin-bottom: 0; }
  .form-group + .form-group {
    margin-top: 10px; }
  .form-group .form-control.error {
    border-color: #ed0001; }

.full-screen {
  position: absolute !important;
  height: 100%;
  width: 100%; }

.full-layer-popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  overflow-y: auto; }
  .full-layer-popup .bg {
    background: #1B1B1B;
    opacity: 50%; }
  .full-layer-popup .popup-header,
  .full-layer-popup .popup-footer {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
  .full-layer-popup .popup-body {
    height: calc(100% - 40px - 40px); }
  .full-layer-popup .popup-header {
    background-color: #15a5b7; }
    .full-layer-popup .popup-header .title {
      font-size: 16px;
      color: #fff;
      margin-bottom: 0; }
    .full-layer-popup .popup-header .btn-close {
      background-color: transparent;
      padding: 0;
      margin: 0;
      border: 0;
      color: #fff;
      font-size: 26px; }
  .full-layer-popup .popup-footer {
    background-color: #2f373a; }
    .full-layer-popup .popup-footer .form-check {
      color: #fff;
      font-size: 14px;
      margin-bottom: 0; }
      .full-layer-popup .popup-footer .form-check .form-check-input {
        margin-left: -1.7em; }
      .full-layer-popup .popup-footer .form-check .form-check-label {
        display: block;
        margin-top: .2rem; }
    .full-layer-popup .popup-footer .btn {
      color: #fff; }

.flex-center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center; }

.form-check {
  padding-left: 1.75rem; }
  .form-check label {
    margin-bottom: 0; }
  .form-check .form-check-input {
    margin-left: -1.5em;
    margin-top: .2rem; }
  .form-check .form-check-input:checked {
    background-color: #15a5b7;
    border-color: #15a5b7; }
  .form-check .form-check-input:focus {
    border-color: #b1e6ea;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(177, 230, 234, 0.25); }

.switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 34px; }
  .switch:before, .switch:after {
    display: block;
    position: absolute;
    font-size: 10px;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; }
  .switch:before {
    left: 12px;
    content: "ON"; }
  .switch:after {
    right: 10px;
    content: "OFF"; }
  .switch input.switch-toggle {
    position: absolute;
    max-height: 0;
    max-width: 0;
    opacity: 0; }
  .switch input.switch-toggle + label {
    display: block;
    position: relative;
    background: #999;
    text-indent: -5000px;
    height: 34px;
    width: 68px;
    border-radius: 34px;
    margin-bottom: 0;
    cursor: pointer; }
  .switch input.switch-toggle + label:after {
    content: "";
    position: absolute;
    display: block;
    height: 34px;
    width: 34px;
    top: 0;
    left: 0;
    border-radius: 34px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 2px rgba(0, 0, 0, 0.2);
    -moz-transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    z-index: 11; }
  .switch input.switch-toggle:checked + label {
    background-color: #15a5b7; }
  .switch input.switch-toggle:checked + label:after {
    left: 34px; }
  .switch.switch-sm {
    height: 24px; }
    .switch.switch-sm:before {
      left: 7px; }
    .switch.switch-sm:after {
      right: 5px; }
    .switch.switch-sm input.switch-toggle + label {
      height: 24px;
      width: 50px;
      border-radius: 24px; }
    .switch.switch-sm input.switch-toggle + label:after {
      height: 24px;
      width: 24px;
      border-radius: 24px; }
    .switch.switch-sm input.switch-toggle:checked + label:after {
      left: 26px; }
  .switch.switch-xs {
    height: 16px; }
    .switch.switch-xs:before, .switch.switch-xs:after {
      visibility: hidden; }
    .switch.switch-xs input.switch-toggle + label {
      height: 16px;
      width: 28px;
      border-radius: 16px; }
    .switch.switch-xs input.switch-toggle + label:after {
      height: 16px;
      width: 16px;
      border-radius: 16px; }
    .switch.switch-xs input.switch-toggle:checked + label:after {
      left: 12px; }
  .switch.no-text:before, .switch.no-text:after {
    visibility: hidden; }

.date-range-search .search-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: start;
  flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%; }
  .date-range-search .search-box .select-box {
    margin-right: 10px; }
    .date-range-search .search-box .select-box .form-control {
      height: calc(2rem + 2px); }
  .date-range-search .search-box .period-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .date-range-search .search-box .btn-search {
    font-size: 20px;
    padding: 2px 10px;
    margin-left: 10px; }
  .date-range-search .search-box .bar {
    margin: 0 10px; }
  .date-range-search .search-box .input-box {
    position: relative;
    width: 140px; }
    .date-range-search .search-box .input-box .icon {
      position: absolute;
      top: 2px;
      right: 8px;
      font-size: 22px; }
  .date-range-search .search-box .form-control {
    text-align: left;
    padding-right: 40px;
    border-radius: 3px;
    font-size: 14px; }

.alert-box {
  position: absolute;
  z-index: 10000; }
  .alert-box.TOP_LEFT {
    top: 10px;
    left: 10px; }
  .alert-box.TOP_RIGHT {
    top: 10px;
    right: 10px; }
  .alert-box.BOTTOM_LEFT {
    bottom: 10px;
    left: 10px; }
  .alert-box.BOTTOM_RIGHT {
    bottom: 10px;
    right: 10px; }
  .alert-box.wave-alert {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .alert-box.wave-alert span {
      display: inline-block;
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: #fff;
      border-radius: 20px;
      animation-name: wave;
      animation-duration: 2.2s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      transform: scale(0);
      opacity: 0.8; }
    .alert-box.wave-alert span:nth-child(1) {
      animation-delay: 0.7s; }
    .alert-box.wave-alert span:nth-child(2) {
      animation-delay: 1.4s; }

@keyframes wave {
  to {
    opacity: 0;
    transform: scale(2.4); } }

.modal-open {
  padding-right: 0 !important; }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  text-align: center; }
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
    margin-right: -4px; }
  .modal .modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8); }
    .modal .modal-backdrop.fade {
      opacity: 0; }
    .modal .modal-backdrop.in {
      opacity: .8; }
  .modal.fade .modal-dialog {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
  .modal.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  .modal .modal-dialog {
    position: relative;
    width: 92%;
    max-width: 600px;
    margin: 0;
    display: inline-block;
    text-align: left;
    vertical-align: middle; }
  .modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    border-radius: 0; }
  .modal .modal-footer {
    text-align: center; }
    .modal .modal-footer .btn {
      display: inline-block;
      border: 0;
      color: #fff;
      padding: 8px 15px;
      width: 100px;
      font-size: 14px; }
    .modal .modal-footer .btn-primary {
      background-color: #28ace2; }
      .modal .modal-footer .btn-primary:hover, .modal .modal-footer .btn-primary:focus, .modal .modal-footer .btn-primary:active {
        background-color: #1a8ebd; }
    .modal .modal-footer .btn-default {
      background-color: #747c7f; }
      .modal .modal-footer .btn-default:hover, .modal .modal-footer .btn-default:focus, .modal .modal-footer .btn-default:active {
        background-color: #5c6264; }
    @media (min-width: 768px) {
      .modal .modal-footer .btn {
        padding: 10px 15px;
        width: 140px;
        font-size: 16px; } }

.lp-common-center {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  vertical-align: middle;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999999;
  overflow-y: auto; }
  @media (min-width: 768px) {
    .lp-common-center {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .lp-common-center.active {
    display: flex; }
  .lp-common-center.dimmed {
    background-color: rgba(0, 0, 0, 0.6); }
    .lp-common-center.dimmed .lp-common-boxs {
      width: 90%; }
  .lp-common-center > div {
    width: 100%;
    height: 100vh;
    max-height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .lp-common-center .lp-common-boxs {
    width: 100%;
    max-width: 386px;
    max-height: 90%;
    border-radius: 3px;
    background-color: #fff;
    border: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 12999; }
    .lp-common-center .lp-common-boxs.active {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
      width: 100%; }
    .lp-common-center .lp-common-boxs.draggable-popup {
      -webkit-transition: none;
      -moz-transition: none;
      transition: none; }
  .lp-common-center .lp-header {
    position: relative;
    background-color: #1598A3;
    color: #fff; }
    .lp-common-center .lp-header .title {
      font-size: 13px;
      font-weight: normal;
      margin: 0;
      padding: 10px; }
    .lp-common-center .lp-header .btn-close {
      position: absolute;
      background-color: transparent;
      padding: 0;
      top: 3px;
      right: 5px;
      margin: 0;
      border: 0;
      color: #fff;
      font-size: 18px; }
  .lp-common-center .lcb-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: row;
    -moz-box-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row; }
    .lp-common-center .lcb-content .inner-box {
      width: 100%;
      min-height: 100px;
      padding: 15px;
      font-size: 14px;
      background-color: #fff;
      margin: 0;
      text-align: center;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      word-break: break-word; }
      .lp-common-center .lcb-content .inner-box .text {
        width: 100%; }
    .lp-common-center .lcb-content .list {
      width: 100%;
      min-height: 100px;
      padding: 15px;
      font-size: 14px;
      background-color: #fff;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      word-break: break-all; }
      .lp-common-center .lcb-content .list li {
        padding-bottom: 5px; }
    .lp-common-center .lcb-content.lcb-block {
      display: block; }
      .lp-common-center .lcb-content.lcb-block .inner-box {
        display: block;
        text-align: left; }
  .lp-common-center .btns {
    text-align: center;
    border-top: 1px solid #cdcdcd;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .lp-common-center .btns .btn {
      width: 100%;
      border-radius: 0 !important; }
    .lp-common-center .btns .btn-primary {
      background-color: #30373a;
      border-color: #30373a; }
      .lp-common-center .btns .btn-primary:hover, .lp-common-center .btns .btn-primary:focus, .lp-common-center .btns .btn-primary:active, .lp-common-center .btns .btn-primary:not(:disabled):not(.disabled).active, .lp-common-center .btns .btn-primary:not(:disabled):not(.disabled):active {
        background-color: #24292b;
        border-color: #24292b; }
    .lp-common-center .btns .btn-default {
      background-color: #747c7f;
      border-color: #969696;
      color: #fff; }
      .lp-common-center .btns .btn-default:hover, .lp-common-center .btns .btn-default:focus, .lp-common-center .btns .btn-default:active {
        background-color: #686f72; }
  .lp-common-center .btns2 {
    text-align: center;
    border-top: 1px solid #cdcdcd;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 10px 5px; }
    .lp-common-center .btns2 .btn {
      flex: 1;
      margin: 0 5px;
      padding-top: 2px;
      padding-bottom: 2px;
      border-radius: 0.25rem !important; }
    .lp-common-center .btns2 .btn-primary {
      background-color: #15a5b7;
      border-color: #15a5b7; }
      .lp-common-center .btns2 .btn-primary:hover, .lp-common-center .btns2 .btn-primary:focus, .lp-common-center .btns2 .btn-primary:active, .lp-common-center .btns2 .btn-primary:not(:disabled):not(.disabled).active, .lp-common-center .btns2 .btn-primary:not(:disabled):not(.disabled):active {
        background-color: #1290a0;
        border-color: #15a5b7; }
    .lp-common-center .btns2 .btn-default {
      background-color: #747c7f;
      border-color: #969696;
      color: #fff; }
      .lp-common-center .btns2 .btn-default:hover, .lp-common-center .btns2 .btn-default:focus, .lp-common-center .btns2 .btn-default:active {
        background-color: #686f72; }
    .lp-common-center .btns2 .btn-delete {
      background-color: #ed0001;
      border-color: #bfbfbf;
      color: #fff; }
      .lp-common-center .btns2 .btn-delete:hover, .lp-common-center .btns2 .btn-delete:focus, .lp-common-center .btns2 .btn-delete:active {
        background-color: #d40001; }
  .lp-common-center .lp-common-boxs.alert {
    padding: 0;
    margin: 0; }
  .lp-common-center .lp-common-boxs.confirm .btns .btn {
    width: 50%; }
  .lp-common-center .red-text {
    color: #ee2d25; }
  @media (min-width: 768px) {
    .lp-common-center .lp-common-boxs.alert {
      max-width: 340px; }
    .lp-common-center .lp-header .title {
      font-size: 16px;
      padding: 8px 20px; }
    .lp-common-center .lp-header .btn-close {
      top: 2px;
      right: 10px;
      font-size: 22px; }
    .lp-common-center .lcb-content .inner-box {
      font-size: 16px;
      min-height: 120px; }
    .lp-common-center .btns .btn {
      font-size: 16px;
      padding-top: 8px;
      padding-bottom: 8px; } }

.change-lang-box {
  margin-bottom: 0; }
  .change-lang-box .select-wrap {
    position: relative;
    display: inline-block;
    padding-right: 10px; }
    .change-lang-box .select-wrap:after {
      position: absolute;
      display: block;
      content: '^';
      right: 5px;
      top: 50%;
      margin-top: -5px;
      vertical-align: middle;
      font-size: 16px; }
    .change-lang-box .select-wrap .form-control {
      background-color: transparent;
      width: 100%;
      height: 100%;
      border: 0;
      padding: 5px 10px;
      font-size: 14px;
      box-shadow: none; }
      .change-lang-box .select-wrap .form-control:focus {
        outline: none;
        box-shadow: none; }
    @media (min-width: 768px) {
      .change-lang-box .select-wrap {
        padding-right: 15px; }
        .change-lang-box .select-wrap:after {
          right: 5px;
          margin-top: -8px;
          font-size: 20px; } }

.container-fluid {
  max-width: 1100px; }
  @media (min-width: 1200px) {
    .container-fluid {
      padding-left: 0;
      padding-right: 0; } }

.wrap {
  position: relative; }

.pointer {
  cursor: pointer; }

.datepicker-dropdown.dropdown-menu {
  font-size: 0.8rem;
  padding: .3rem;
  color: #333; }
  .datepicker-dropdown.dropdown-menu:before, .datepicker-dropdown.dropdown-menu:after {
    display: none; }
  .datepicker-dropdown.dropdown-menu table tr td.old, .datepicker-dropdown.dropdown-menu table tr td.new {
    color: #333;
    opacity: 0.5; }
  .datepicker-dropdown.dropdown-menu table tr td.active,
  .datepicker-dropdown.dropdown-menu table tr td .active {
    background-color: #286090;
    border-color: #286090;
    color: #ffffff; }
  .datepicker-dropdown.dropdown-menu table tr td.today {
    background-color: #ffdb99;
    border-color: #ffdb99;
    color: #333333; }
  .datepicker-dropdown.dropdown-menu table tr td.active:active:hover,
  .datepicker-dropdown.dropdown-menu table tr td.active.highlighted:active:hover,
  .datepicker-dropdown.dropdown-menu table tr td.active.active:hover,
  .datepicker-dropdown.dropdown-menu table tr td.active.highlighted.active:hover,
  .datepicker-dropdown.dropdown-menu table tr td.active:active:focus,
  .datepicker-dropdown.dropdown-menu table tr td.active.highlighted:active:focus,
  .datepicker-dropdown.dropdown-menu table tr td.active.active:focus,
  .datepicker-dropdown.dropdown-menu table tr td.active.highlighted.active:focus,
  .datepicker-dropdown.dropdown-menu table tr td.active:active.focus,
  .datepicker-dropdown.dropdown-menu table tr td.active.highlighted:active.focus,
  .datepicker-dropdown.dropdown-menu table tr td.active.active.focus,
  .datepicker-dropdown.dropdown-menu table tr td.active.highlighted.active.focus {
    background-color: #286090;
    color: #ffffff; }
  .datepicker-dropdown.dropdown-menu table tr td.today:hover {
    background-color: #ffdb99;
    color: #333333; }
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active:active:hover,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.highlighted:active:hover,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.active:hover,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.highlighted.active:hover,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active:active:focus,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.highlighted:active:focus,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.active:focus,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.highlighted.active:focus,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active:active.focus,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.highlighted:active.focus,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.active.focus,
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.active.highlighted.active.focus {
    background-color: inherit;
    color: inherit; }
  .datepicker-dropdown.dropdown-menu.custom-style table tr td.today:hover {
    background-color: inherit;
    color: inherit; }

.mobile-page-row {
  margin-left: 0;
  margin-right: 0; }

.front-pagination .pagination > li:first-child > a,
.front-pagination .pagination > li:first-child > span,
.front-pagination .pagination > li:last-child > a,
.front-pagination .pagination > li:last-child > span {
  border-radius: 0; }

.front-pagination .pagination > li > a,
.front-pagination .pagination > li > span {
  font-size: 12px;
  color: #333;
  padding: 5px 10px;
  border-radius: 2px; }

.front-pagination .pagination > li > a:hover,
.front-pagination .pagination > li > span:hover,
.front-pagination .pagination > li > a:focus-visible,
.front-pagination .pagination > li > span:focus-visible {
  background-color: #e9e9e9; }

.front-pagination .pagination > .active > a,
.front-pagination .pagination > .active > span,
.front-pagination .pagination > .active > a:hover,
.front-pagination .pagination > .active > span:hover,
.front-pagination .pagination > .active > a:focus,
.front-pagination .pagination > .active > span:focus {
  color: #fff;
  border-color: #15a5b7;
  background-color: #15a5b7; }

.front-pagination .pagination > .disabled > span,
.front-pagination .pagination > .disabled > span:hover,
.front-pagination .pagination > .disabled > span:focus,
.front-pagination .pagination > .disabled > a,
.front-pagination .pagination > .disabled > a:hover,
.front-pagination .pagination > .disabled > a:focus {
  border-color: #c7cbcd;
  color: #777;
  opacity: .7; }

.front-pagination .pagination {
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center; }
  .front-pagination .pagination > li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .front-pagination .pagination lsvg {
    display: inline-block;
    margin: 0 1px; }
    .front-pagination .pagination lsvg a {
      display: block;
      cursor: pointer;
      -webkit-transition: background-color 0.2s, color 0.2s;
      -moz-transition: background-color 0.2s, color 0.2s;
      -ms-transition: background-color 0.2s, color 0.2s;
      -o-transition: background-color 0.2s, color 0.2s;
      transition: background-color 0.2s, color 0.2s; }
  .front-pagination .pagination svg {
    font-size: 22px;
    margin-top: -2px;
    line-height: 14px;
    vertical-align: middle; }
  .front-pagination .pagination .pg-item-m {
    display: block;
    background-color: transparent;
    font-size: 13px;
    border: 0;
    padding: 6px; }
    .front-pagination .pagination .pg-item-m:hover, .front-pagination .pagination .pg-item-m:focus, .front-pagination .pagination .pg-item-m:active {
      background-color: transparent; }
  .front-pagination .pagination .current {
    color: #dc2f2f;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0;
    font-size: 13px; }

@media (min-width: 768px) {
  .front-pagination:not(.mobile-only) .pagination > li > a,
  .front-pagination:not(.mobile-only) .pagination > li > span {
    font-size: 13px;
    padding: 6px 12px; }
  .front-pagination:not(.mobile-only) .pagination .material-icons {
    font-size: 24px; } }

@media (min-width: 992px) {
  .front-pagination:not(.mobile-only) .pagination .prev {
    margin-right: 15px; }
  .front-pagination:not(.mobile-only) .pagination .next {
    margin-left: 15px; } }

.front-pagination.dark .pagination > li > a,
.front-pagination.dark .pagination > li > span {
  border-color: #000;
  background-color: #27303f;
  color: #fff; }

.front-pagination.dark .pagination > li > a:hover,
.front-pagination.dark .pagination > li > span:hover,
.front-pagination.dark .pagination > li > a:focus,
.front-pagination.dark .pagination > li > span:focus {
  background-color: #2d3748; }

.front-pagination.dark .pagination > .active > a,
.front-pagination.dark .pagination > .active > span,
.front-pagination.dark .pagination > .active > a:hover,
.front-pagination.dark .pagination > .active > span:hover,
.front-pagination.dark .pagination > .active > a:focus,
.front-pagination.dark .pagination > .active > span:focus {
  color: #fff;
  border-color: #000;
  background-color: #15a5b7; }

.front-pagination.dark .pagination > .disabled > span,
.front-pagination.dark .pagination > .disabled > span:hover,
.front-pagination.dark .pagination > .disabled > span:focus,
.front-pagination.dark .pagination > .disabled > a,
.front-pagination.dark .pagination > .disabled > a:hover,
.front-pagination.dark .pagination > .disabled > a:focus {
  border-color: #000;
  background-color: #27303f;
  color: #fff;
  opacity: .7; }

.front-pagination.dark .pagination .material-icons {
  color: #fff; }

.front-pagination.dark .pagination .pg-item-m {
  background-color: transparent;
  font-size: 13px;
  border: 0;
  padding: 6px; }
  .front-pagination.dark .pagination .pg-item-m:hover, .front-pagination.dark .pagination .pg-item-m:focus, .front-pagination.dark .pagination .pg-item-m:active {
    background-color: transparent; }

.hidden-file {
  display: none; }

.add-table-area,
.add-pivot-area,
.add-chart-area,
.add-location-area {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  max-height: 890px;
  padding: 0 15px;
  background: #ffffff;
  position: absolute;
  z-index: 2001;
  transform: translate(-50%, -50%); }
  .add-table-area > .row,
  .add-pivot-area > .row,
  .add-chart-area > .row,
  .add-location-area > .row {
    height: 100%; }
  .add-table-area .area-left,
  .add-pivot-area .area-left,
  .add-chart-area .area-left,
  .add-location-area .area-left {
    height: 100%;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0; }
    .add-table-area .area-left .inner-box,
    .add-pivot-area .area-left .inner-box,
    .add-chart-area .area-left .inner-box,
    .add-location-area .area-left .inner-box {
      padding: 0 40px;
      height: 100%;
      overflow-y: auto; }
    .add-table-area .area-left .pop-header,
    .add-pivot-area .area-left .pop-header,
    .add-chart-area .area-left .pop-header,
    .add-location-area .area-left .pop-header {
      padding: 30px 0 20px 90px;
      background-repeat: no-repeat;
      background-position: 10px center;
      background-size: 60px; }
      .add-table-area .area-left .pop-header.chart-title,
      .add-pivot-area .area-left .pop-header.chart-title,
      .add-chart-area .area-left .pop-header.chart-title,
      .add-location-area .area-left .pop-header.chart-title {
        background-image: url("/static/svg/computer_chart.svg"); }
      .add-table-area .area-left .pop-header.location-title,
      .add-pivot-area .area-left .pop-header.location-title,
      .add-chart-area .area-left .pop-header.location-title,
      .add-location-area .area-left .pop-header.location-title {
        background-image: url("/static/svg/select_location.svg"); }
      .add-table-area .area-left .pop-header.chart-title2, .add-table-area .area-left .pop-header.location-title2,
      .add-pivot-area .area-left .pop-header.chart-title2,
      .add-pivot-area .area-left .pop-header.location-title2,
      .add-chart-area .area-left .pop-header.chart-title2,
      .add-chart-area .area-left .pop-header.location-title2,
      .add-location-area .area-left .pop-header.chart-title2,
      .add-location-area .area-left .pop-header.location-title2 {
        background-image: url("/static/svg/assign_data_to_chart.svg"); }
      .add-table-area .area-left .pop-header.chart-title3, .add-table-area .area-left .pop-header.location-title3,
      .add-pivot-area .area-left .pop-header.chart-title3,
      .add-pivot-area .area-left .pop-header.location-title3,
      .add-chart-area .area-left .pop-header.chart-title3,
      .add-chart-area .area-left .pop-header.location-title3,
      .add-location-area .area-left .pop-header.chart-title3,
      .add-location-area .area-left .pop-header.location-title3 {
        background-image: url("/static/svg/checkChart.svg"); }
      .add-table-area .area-left .pop-header .title,
      .add-pivot-area .area-left .pop-header .title,
      .add-chart-area .area-left .pop-header .title,
      .add-location-area .area-left .pop-header .title {
        font-size: 1.3em;
        margin-bottom: 5px; }
      .add-table-area .area-left .pop-header .title-desc,
      .add-pivot-area .area-left .pop-header .title-desc,
      .add-chart-area .area-left .pop-header .title-desc,
      .add-location-area .area-left .pop-header .title-desc {
        font-size: 1em;
        line-height: 1.2; }
    .add-table-area .area-left .pop-header-wrap,
    .add-pivot-area .area-left .pop-header-wrap,
    .add-chart-area .area-left .pop-header-wrap,
    .add-location-area .area-left .pop-header-wrap {
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .add-table-area .area-left .pop-header-wrap .header-info,
      .add-pivot-area .area-left .pop-header-wrap .header-info,
      .add-chart-area .area-left .pop-header-wrap .header-info,
      .add-location-area .area-left .pop-header-wrap .header-info {
        flex: 1; }
      .add-table-area .area-left .pop-header-wrap .header-preview,
      .add-pivot-area .area-left .pop-header-wrap .header-preview,
      .add-chart-area .area-left .pop-header-wrap .header-preview,
      .add-location-area .area-left .pop-header-wrap .header-preview {
        padding-top: 30px;
        padding-left: 10px;
        flex: 1; }
      .add-table-area .area-left .pop-header-wrap .chart-preview-position,
      .add-pivot-area .area-left .pop-header-wrap .chart-preview-position,
      .add-chart-area .area-left .pop-header-wrap .chart-preview-position,
      .add-location-area .area-left .pop-header-wrap .chart-preview-position {
        width: 100%;
        height: 300px;
        overflow: hidden;
        max-width: 570px; }
      .add-table-area .area-left .pop-header-wrap .chart-preview-sm,
      .add-pivot-area .area-left .pop-header-wrap .chart-preview-sm,
      .add-chart-area .area-left .pop-header-wrap .chart-preview-sm,
      .add-location-area .area-left .pop-header-wrap .chart-preview-sm {
        width: 100%;
        height: 100%; }
      .add-table-area .area-left .pop-header-wrap.title-chart,
      .add-pivot-area .area-left .pop-header-wrap.title-chart,
      .add-chart-area .area-left .pop-header-wrap.title-chart,
      .add-location-area .area-left .pop-header-wrap.title-chart {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
        .add-table-area .area-left .pop-header-wrap.title-chart .header-preview,
        .add-pivot-area .area-left .pop-header-wrap.title-chart .header-preview,
        .add-chart-area .area-left .pop-header-wrap.title-chart .header-preview,
        .add-location-area .area-left .pop-header-wrap.title-chart .header-preview {
          padding-top: 0;
          padding-left: 0; }
      .add-table-area .area-left .pop-header-wrap + .data-row,
      .add-pivot-area .area-left .pop-header-wrap + .data-row,
      .add-chart-area .area-left .pop-header-wrap + .data-row,
      .add-location-area .area-left .pop-header-wrap + .data-row {
        margin-top: 0; }
    .add-table-area .area-left .file-upload-label,
    .add-pivot-area .area-left .file-upload-label,
    .add-chart-area .area-left .file-upload-label,
    .add-location-area .area-left .file-upload-label {
      cursor: pointer; }
      .add-table-area .area-left .file-upload-label .icon,
      .add-pivot-area .area-left .file-upload-label .icon,
      .add-chart-area .area-left .file-upload-label .icon,
      .add-location-area .area-left .file-upload-label .icon {
        display: block;
        font-size: 24px;
        color: #15a5b7; }
    .add-table-area .area-left .file-name,
    .add-pivot-area .area-left .file-name,
    .add-chart-area .area-left .file-name,
    .add-location-area .area-left .file-name {
      border: 1px solid #bfbfbf;
      background: #f2f2f2;
      width: 100%;
      padding: 15px;
      color: #2F373A; }
    .add-table-area .area-left .chart-name,
    .add-pivot-area .area-left .chart-name,
    .add-chart-area .area-left .chart-name,
    .add-location-area .area-left .chart-name {
      border: 1px solid #bfbfbf;
      background: #f2f2f2;
      height: 60px;
      width: 100%;
      color: #2F373A; }
      .add-table-area .area-left .chart-name input,
      .add-pivot-area .area-left .chart-name input,
      .add-chart-area .area-left .chart-name input,
      .add-location-area .area-left .chart-name input {
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        border: 0; }
    .add-table-area .area-left .preview-box,
    .add-pivot-area .area-left .preview-box,
    .add-chart-area .area-left .preview-box,
    .add-location-area .area-left .preview-box {
      width: 100%;
      height: calc(100% - 110px - 60px - 50px);
      min-height: 420px;
      padding: 30px 0 0; }
    .add-table-area .area-left .chart-preview,
    .add-table-area .area-left .location-preview,
    .add-pivot-area .area-left .chart-preview,
    .add-pivot-area .area-left .location-preview,
    .add-chart-area .area-left .chart-preview,
    .add-chart-area .area-left .location-preview,
    .add-location-area .area-left .chart-preview,
    .add-location-area .area-left .location-preview {
      width: 100%;
      height: 100%;
      background-color: #eeeeee;
      border: 1px solid #dddddd; }
    .add-table-area .area-left .chart-preview-sm,
    .add-pivot-area .area-left .chart-preview-sm,
    .add-chart-area .area-left .chart-preview-sm,
    .add-location-area .area-left .chart-preview-sm {
      width: 184px;
      height: 106px; }
    .add-table-area .area-left .desc,
    .add-pivot-area .area-left .desc,
    .add-chart-area .area-left .desc,
    .add-location-area .area-left .desc {
      width: 100%;
      font-size: 14px;
      line-height: 16px;
      margin-top: 10px;
      padding: 0 10px; }
    .add-table-area .area-left .chart-list .list-title,
    .add-table-area .area-left .location-list .list-title,
    .add-pivot-area .area-left .chart-list .list-title,
    .add-pivot-area .area-left .location-list .list-title,
    .add-chart-area .area-left .chart-list .list-title,
    .add-chart-area .area-left .location-list .list-title,
    .add-location-area .area-left .chart-list .list-title,
    .add-location-area .area-left .location-list .list-title {
      font-size: 1.3em;
      margin-bottom: 10px; }
    .add-table-area .area-left .chart-list > .row,
    .add-table-area .area-left .location-list > .row,
    .add-pivot-area .area-left .chart-list > .row,
    .add-pivot-area .area-left .location-list > .row,
    .add-chart-area .area-left .chart-list > .row,
    .add-chart-area .area-left .location-list > .row,
    .add-location-area .area-left .chart-list > .row,
    .add-location-area .area-left .location-list > .row {
      margin-right: 0;
      margin-left: 0;
      height: calc(100% - 35px);
      overflow-y: auto;
      display: block; }
      .add-table-area .area-left .chart-list > .row:after,
      .add-table-area .area-left .location-list > .row:after,
      .add-pivot-area .area-left .chart-list > .row:after,
      .add-pivot-area .area-left .location-list > .row:after,
      .add-chart-area .area-left .chart-list > .row:after,
      .add-chart-area .area-left .location-list > .row:after,
      .add-location-area .area-left .chart-list > .row:after,
      .add-location-area .area-left .location-list > .row:after {
        display: block;
        clear: both;
        content: ""; }
      .add-table-area .area-left .chart-list > .row > [class*="col-"],
      .add-table-area .area-left .chart-list > .row > [class*="-item"],
      .add-table-area .area-left .location-list > .row > [class*="col-"],
      .add-table-area .area-left .location-list > .row > [class*="-item"],
      .add-pivot-area .area-left .chart-list > .row > [class*="col-"],
      .add-pivot-area .area-left .chart-list > .row > [class*="-item"],
      .add-pivot-area .area-left .location-list > .row > [class*="col-"],
      .add-pivot-area .area-left .location-list > .row > [class*="-item"],
      .add-chart-area .area-left .chart-list > .row > [class*="col-"],
      .add-chart-area .area-left .chart-list > .row > [class*="-item"],
      .add-chart-area .area-left .location-list > .row > [class*="col-"],
      .add-chart-area .area-left .location-list > .row > [class*="-item"],
      .add-location-area .area-left .chart-list > .row > [class*="col-"],
      .add-location-area .area-left .chart-list > .row > [class*="-item"],
      .add-location-area .area-left .location-list > .row > [class*="col-"],
      .add-location-area .area-left .location-list > .row > [class*="-item"] {
        float: left; }
    .add-table-area .area-left .chart-list img,
    .add-table-area .area-left .location-list img,
    .add-pivot-area .area-left .chart-list img,
    .add-pivot-area .area-left .location-list img,
    .add-chart-area .area-left .chart-list img,
    .add-chart-area .area-left .location-list img,
    .add-location-area .area-left .chart-list img,
    .add-location-area .area-left .location-list img {
      border: 1px solid #ffffff;
      max-width: 100%;
      margin-bottom: 10px;
      transition: border-color .3s; }
    .add-table-area .area-left .chart-list .active img, .add-table-area .area-left .chart-list img:hover, .add-table-area .area-left .chart-list img:active,
    .add-table-area .area-left .location-list .active img,
    .add-table-area .area-left .location-list img:hover,
    .add-table-area .area-left .location-list img:active,
    .add-pivot-area .area-left .chart-list .active img,
    .add-pivot-area .area-left .chart-list img:hover,
    .add-pivot-area .area-left .chart-list img:active,
    .add-pivot-area .area-left .location-list .active img,
    .add-pivot-area .area-left .location-list img:hover,
    .add-pivot-area .area-left .location-list img:active,
    .add-chart-area .area-left .chart-list .active img,
    .add-chart-area .area-left .chart-list img:hover,
    .add-chart-area .area-left .chart-list img:active,
    .add-chart-area .area-left .location-list .active img,
    .add-chart-area .area-left .location-list img:hover,
    .add-chart-area .area-left .location-list img:active,
    .add-location-area .area-left .chart-list .active img,
    .add-location-area .area-left .chart-list img:hover,
    .add-location-area .area-left .chart-list img:active,
    .add-location-area .area-left .location-list .active img,
    .add-location-area .area-left .location-list img:hover,
    .add-location-area .area-left .location-list img:active {
      border: 1px solid #f44336; }
    .add-table-area .area-left .chart-list,
    .add-pivot-area .area-left .chart-list,
    .add-chart-area .area-left .chart-list,
    .add-location-area .area-left .chart-list {
      padding-top: 40px;
      height: calc(100% - 120px - 60px - 26px); }
      .add-table-area .area-left .chart-list > .row,
      .add-pivot-area .area-left .chart-list > .row,
      .add-chart-area .area-left .chart-list > .row,
      .add-location-area .area-left .chart-list > .row {
        padding-top: 2px;
        margin-left: -10px;
        margin-right: -10px; }
      .add-table-area .area-left .chart-list .chart-item,
      .add-pivot-area .area-left .chart-list .chart-item,
      .add-chart-area .area-left .chart-list .chart-item,
      .add-location-area .area-left .chart-list .chart-item {
        padding: 0 10px;
        text-align: center;
        width: 25%;
        margin-bottom: 20px; }
        .add-table-area .area-left .chart-list .chart-item.active .chart-box,
        .add-pivot-area .area-left .chart-list .chart-item.active .chart-box,
        .add-chart-area .area-left .chart-list .chart-item.active .chart-box,
        .add-location-area .area-left .chart-list .chart-item.active .chart-box {
          background-color: #5bf1ff;
          border-color: #5bf1ff;
          box-shadow: 0 0 0 3px #5bf1ff; }
        @media (min-width: 992px) {
          .add-table-area .area-left .chart-list .chart-item,
          .add-pivot-area .area-left .chart-list .chart-item,
          .add-chart-area .area-left .chart-list .chart-item,
          .add-location-area .area-left .chart-list .chart-item {
            padding: 0 5px;
            width: 20%; } }
      .add-table-area .area-left .chart-list .chart-box,
      .add-pivot-area .area-left .chart-list .chart-box,
      .add-chart-area .area-left .chart-list .chart-box,
      .add-location-area .area-left .chart-list .chart-box {
        border: 1px solid #ccc;
        transition: all .2s; }
        .add-table-area .area-left .chart-list .chart-box .title,
        .add-pivot-area .area-left .chart-list .chart-box .title,
        .add-chart-area .area-left .chart-list .chart-box .title,
        .add-location-area .area-left .chart-list .chart-box .title {
          text-align: left;
          font-size: 14px;
          padding: 3px 10px;
          font-weight: bold;
          border-bottom: 1px solid #eee; }
        .add-table-area .area-left .chart-list .chart-box img,
        .add-pivot-area .area-left .chart-list .chart-box img,
        .add-chart-area .area-left .chart-list .chart-box img,
        .add-location-area .area-left .chart-list .chart-box img {
          margin: 0;
          border: 0; }
        .add-table-area .area-left .chart-list .chart-box:hover, .add-table-area .area-left .chart-list .chart-box:active, .add-table-area .area-left .chart-list .chart-box:focus-visible,
        .add-pivot-area .area-left .chart-list .chart-box:hover,
        .add-pivot-area .area-left .chart-list .chart-box:active,
        .add-pivot-area .area-left .chart-list .chart-box:focus-visible,
        .add-chart-area .area-left .chart-list .chart-box:hover,
        .add-chart-area .area-left .chart-list .chart-box:active,
        .add-chart-area .area-left .chart-list .chart-box:focus-visible,
        .add-location-area .area-left .chart-list .chart-box:hover,
        .add-location-area .area-left .chart-list .chart-box:active,
        .add-location-area .area-left .chart-list .chart-box:focus-visible {
          background-color: #5bf1ff;
          border-color: #5bf1ff;
          box-shadow: 0 0 0 3px #5bf1ff; }
    .add-table-area .area-left .location-list,
    .add-pivot-area .area-left .location-list,
    .add-chart-area .area-left .location-list,
    .add-location-area .area-left .location-list {
      padding-top: 20px;
      height: calc(100% - 120px - 60px - 26px - 60px); }
      .add-table-area .area-left .location-list .location-item,
      .add-pivot-area .area-left .location-list .location-item,
      .add-chart-area .area-left .location-list .location-item,
      .add-location-area .area-left .location-list .location-item {
        position: relative;
        text-align: center; }
      .add-table-area .area-left .location-list .location-item img,
      .add-pivot-area .area-left .location-list .location-item img,
      .add-chart-area .area-left .location-list .location-item img,
      .add-location-area .area-left .location-list .location-item img {
        margin: 20px 0; }
      .add-table-area .area-left .location-list .btn-custom-marker-remove,
      .add-pivot-area .area-left .location-list .btn-custom-marker-remove,
      .add-chart-area .area-left .location-list .btn-custom-marker-remove,
      .add-location-area .area-left .location-list .btn-custom-marker-remove {
        position: absolute;
        top: 5px;
        right: 0;
        padding: 5px;
        margin: 0;
        color: #15a5b7;
        z-index: 5; }
        .add-table-area .area-left .location-list .btn-custom-marker-remove:hover, .add-table-area .area-left .location-list .btn-custom-marker-remove:focus, .add-table-area .area-left .location-list .btn-custom-marker-remove:active,
        .add-pivot-area .area-left .location-list .btn-custom-marker-remove:hover,
        .add-pivot-area .area-left .location-list .btn-custom-marker-remove:focus,
        .add-pivot-area .area-left .location-list .btn-custom-marker-remove:active,
        .add-chart-area .area-left .location-list .btn-custom-marker-remove:hover,
        .add-chart-area .area-left .location-list .btn-custom-marker-remove:focus,
        .add-chart-area .area-left .location-list .btn-custom-marker-remove:active,
        .add-location-area .area-left .location-list .btn-custom-marker-remove:hover,
        .add-location-area .area-left .location-list .btn-custom-marker-remove:focus,
        .add-location-area .area-left .location-list .btn-custom-marker-remove:active {
          color: #1290a0; }
    .add-table-area .area-left .data-row,
    .add-pivot-area .area-left .data-row,
    .add-chart-area .area-left .data-row,
    .add-location-area .area-left .data-row {
      margin-top: 20px;
      margin-bottom: 5px; }
      .add-table-area .area-left .data-row h5,
      .add-pivot-area .area-left .data-row h5,
      .add-chart-area .area-left .data-row h5,
      .add-location-area .area-left .data-row h5 {
        font-size: 16px;
        margin-bottom: 5px; }
      .add-table-area .area-left .data-row .box-area,
      .add-pivot-area .area-left .data-row .box-area,
      .add-chart-area .area-left .data-row .box-area,
      .add-location-area .area-left .data-row .box-area {
        position: relative;
        border: 1px solid #bfbfbf;
        background: #f2f2f2;
        padding: 0 5px; }
        .add-table-area .area-left .data-row .box-area.time-row-data,
        .add-pivot-area .area-left .data-row .box-area.time-row-data,
        .add-chart-area .area-left .data-row .box-area.time-row-data,
        .add-location-area .area-left .data-row .box-area.time-row-data {
          padding-right: 17%; }
        .add-table-area .area-left .data-row .box-area.box-flex,
        .add-pivot-area .area-left .data-row .box-area.box-flex,
        .add-chart-area .area-left .data-row .box-area.box-flex,
        .add-location-area .area-left .data-row .box-area.box-flex {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex; }
        .add-table-area .area-left .data-row .box-area.flex-between,
        .add-pivot-area .area-left .data-row .box-area.flex-between,
        .add-chart-area .area-left .data-row .box-area.flex-between,
        .add-location-area .area-left .data-row .box-area.flex-between {
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between; }
      .add-table-area .area-left .data-row .inline-row,
      .add-pivot-area .area-left .data-row .inline-row,
      .add-chart-area .area-left .data-row .inline-row,
      .add-location-area .area-left .data-row .inline-row {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .add-table-area .area-left .data-row .custom-color-box,
      .add-pivot-area .area-left .data-row .custom-color-box,
      .add-chart-area .area-left .data-row .custom-color-box,
      .add-location-area .area-left .data-row .custom-color-box {
        position: relative;
        width: 100%;
        border: 1px solid #bfbfbf;
        padding: 5px 10px;
        height: 38px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .add-table-area .area-left .data-row .custom-color-box .color-picker,
        .add-pivot-area .area-left .data-row .custom-color-box .color-picker,
        .add-chart-area .area-left .data-row .custom-color-box .color-picker,
        .add-location-area .area-left .data-row .custom-color-box .color-picker {
          display: block;
          width: 20px;
          height: 20px;
          padding: 0;
          background-color: transparent; }
          .add-table-area .area-left .data-row .custom-color-box .color-picker .clr-field,
          .add-pivot-area .area-left .data-row .custom-color-box .color-picker .clr-field,
          .add-chart-area .area-left .data-row .custom-color-box .color-picker .clr-field,
          .add-location-area .area-left .data-row .custom-color-box .color-picker .clr-field {
            display: block;
            width: 100%;
            height: 100%; }
            .add-table-area .area-left .data-row .custom-color-box .color-picker .clr-field button:after,
            .add-pivot-area .area-left .data-row .custom-color-box .color-picker .clr-field button:after,
            .add-chart-area .area-left .data-row .custom-color-box .color-picker .clr-field button:after,
            .add-location-area .area-left .data-row .custom-color-box .color-picker .clr-field button:after {
              border: 1px solid #7a7a7a; }
          .add-table-area .area-left .data-row .custom-color-box .color-picker .form-control,
          .add-pivot-area .area-left .data-row .custom-color-box .color-picker .form-control,
          .add-chart-area .area-left .data-row .custom-color-box .color-picker .form-control,
          .add-location-area .area-left .data-row .custom-color-box .color-picker .form-control {
            width: 100%;
            height: 100%;
            max-width: 20px;
            min-height: 20px;
            padding: 0;
            margin: 0; }
        .add-table-area .area-left .data-row .custom-color-box.multi-color,
        .add-pivot-area .area-left .data-row .custom-color-box.multi-color,
        .add-chart-area .area-left .data-row .custom-color-box.multi-color,
        .add-location-area .area-left .data-row .custom-color-box.multi-color {
          -webkit-box-flex-direction: column;
          -moz-box-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column;
          -ms-flex-align: start;
          flex-align: start;
          -webkit-align-items: flex-start;
          -moz-box-align-items: flex-start;
          -ms-align-items: flex-start;
          -webkit-align-items: flex-start;
          align-items: flex-start;
          height: auto; }
          .add-table-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line,
          .add-pivot-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line,
          .add-chart-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line,
          .add-location-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line {
            width: 100%;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -ms-flex-align: center;
            flex-align: center;
            -webkit-align-items: center;
            -moz-box-align-items: center;
            -ms-align-items: center;
            -webkit-align-items: center;
            align-items: center;
            -ms-flex-pack: justify;
            flex-pack: justify;
            -webkit-justify-content: space-between;
            -moz-box-justify-content: space-between;
            -ms-justify-content: space-between;
            -webkit-justify-content: space-between;
            justify-content: space-between; }
          .add-table-area .area-left .data-row .custom-color-box.multi-color .color-picker,
          .add-pivot-area .area-left .data-row .custom-color-box.multi-color .color-picker,
          .add-chart-area .area-left .data-row .custom-color-box.multi-color .color-picker,
          .add-location-area .area-left .data-row .custom-color-box.multi-color .color-picker {
            height: 15px; }
          .add-table-area .area-left .data-row .custom-color-box.multi-color .form-control,
          .add-pivot-area .area-left .data-row .custom-color-box.multi-color .form-control,
          .add-chart-area .area-left .data-row .custom-color-box.multi-color .form-control,
          .add-location-area .area-left .data-row .custom-color-box.multi-color .form-control {
            min-height: 15px; }
          .add-table-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line:first-child .color-picker .clr-field button:after,
          .add-pivot-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line:first-child .color-picker .clr-field button:after,
          .add-chart-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line:first-child .color-picker .clr-field button:after,
          .add-location-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line:first-child .color-picker .clr-field button:after {
            border-bottom: 0; }
          .add-table-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line:last-child .color-picker .clr-field button:after,
          .add-pivot-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line:last-child .color-picker .clr-field button:after,
          .add-chart-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line:last-child .color-picker .clr-field button:after,
          .add-location-area .area-left .data-row .custom-color-box.multi-color .custom-picker-line:last-child .color-picker .clr-field button:after {
            border-top: 0; }
      .add-table-area .area-left .data-row .form-control,
      .add-table-area .area-left .data-row .btn-success,
      .add-table-area .area-left .data-row .data-item,
      .add-table-area .area-left .data-row .select-dropdown,
      .add-table-area .area-left .data-row .color-box,
      .add-table-area .area-left .data-row .input-box,
      .add-pivot-area .area-left .data-row .form-control,
      .add-pivot-area .area-left .data-row .btn-success,
      .add-pivot-area .area-left .data-row .data-item,
      .add-pivot-area .area-left .data-row .select-dropdown,
      .add-pivot-area .area-left .data-row .color-box,
      .add-pivot-area .area-left .data-row .input-box,
      .add-chart-area .area-left .data-row .form-control,
      .add-chart-area .area-left .data-row .btn-success,
      .add-chart-area .area-left .data-row .data-item,
      .add-chart-area .area-left .data-row .select-dropdown,
      .add-chart-area .area-left .data-row .color-box,
      .add-chart-area .area-left .data-row .input-box,
      .add-location-area .area-left .data-row .form-control,
      .add-location-area .area-left .data-row .btn-success,
      .add-location-area .area-left .data-row .data-item,
      .add-location-area .area-left .data-row .select-dropdown,
      .add-location-area .area-left .data-row .color-box,
      .add-location-area .area-left .data-row .input-box {
        margin-top: 5px;
        margin-bottom: 5px; }
        .add-table-area .area-left .data-row .form-control .form-control,
        .add-table-area .area-left .data-row .btn-success .form-control,
        .add-table-area .area-left .data-row .data-item .form-control,
        .add-table-area .area-left .data-row .select-dropdown .form-control,
        .add-table-area .area-left .data-row .color-box .form-control,
        .add-table-area .area-left .data-row .input-box .form-control,
        .add-pivot-area .area-left .data-row .form-control .form-control,
        .add-pivot-area .area-left .data-row .btn-success .form-control,
        .add-pivot-area .area-left .data-row .data-item .form-control,
        .add-pivot-area .area-left .data-row .select-dropdown .form-control,
        .add-pivot-area .area-left .data-row .color-box .form-control,
        .add-pivot-area .area-left .data-row .input-box .form-control,
        .add-chart-area .area-left .data-row .form-control .form-control,
        .add-chart-area .area-left .data-row .btn-success .form-control,
        .add-chart-area .area-left .data-row .data-item .form-control,
        .add-chart-area .area-left .data-row .select-dropdown .form-control,
        .add-chart-area .area-left .data-row .color-box .form-control,
        .add-chart-area .area-left .data-row .input-box .form-control,
        .add-location-area .area-left .data-row .form-control .form-control,
        .add-location-area .area-left .data-row .btn-success .form-control,
        .add-location-area .area-left .data-row .data-item .form-control,
        .add-location-area .area-left .data-row .select-dropdown .form-control,
        .add-location-area .area-left .data-row .color-box .form-control,
        .add-location-area .area-left .data-row .input-box .form-control {
          margin-top: 0;
          margin-bottom: 0;
          font-size: 14px; }
        .add-table-area .area-left .data-row .form-control .dropdown-menu,
        .add-table-area .area-left .data-row .btn-success .dropdown-menu,
        .add-table-area .area-left .data-row .data-item .dropdown-menu,
        .add-table-area .area-left .data-row .select-dropdown .dropdown-menu,
        .add-table-area .area-left .data-row .color-box .dropdown-menu,
        .add-table-area .area-left .data-row .input-box .dropdown-menu,
        .add-pivot-area .area-left .data-row .form-control .dropdown-menu,
        .add-pivot-area .area-left .data-row .btn-success .dropdown-menu,
        .add-pivot-area .area-left .data-row .data-item .dropdown-menu,
        .add-pivot-area .area-left .data-row .select-dropdown .dropdown-menu,
        .add-pivot-area .area-left .data-row .color-box .dropdown-menu,
        .add-pivot-area .area-left .data-row .input-box .dropdown-menu,
        .add-chart-area .area-left .data-row .form-control .dropdown-menu,
        .add-chart-area .area-left .data-row .btn-success .dropdown-menu,
        .add-chart-area .area-left .data-row .data-item .dropdown-menu,
        .add-chart-area .area-left .data-row .select-dropdown .dropdown-menu,
        .add-chart-area .area-left .data-row .color-box .dropdown-menu,
        .add-chart-area .area-left .data-row .input-box .dropdown-menu,
        .add-location-area .area-left .data-row .form-control .dropdown-menu,
        .add-location-area .area-left .data-row .btn-success .dropdown-menu,
        .add-location-area .area-left .data-row .data-item .dropdown-menu,
        .add-location-area .area-left .data-row .select-dropdown .dropdown-menu,
        .add-location-area .area-left .data-row .color-box .dropdown-menu,
        .add-location-area .area-left .data-row .input-box .dropdown-menu {
          font-size: 14px; }
      .add-table-area .area-left .data-row .select-dropdown .dropdown-item[data-value="LIGHT"],
      .add-pivot-area .area-left .data-row .select-dropdown .dropdown-item[data-value="LIGHT"],
      .add-chart-area .area-left .data-row .select-dropdown .dropdown-item[data-value="LIGHT"],
      .add-location-area .area-left .data-row .select-dropdown .dropdown-item[data-value="LIGHT"] {
        font-weight: 300; }
      .add-table-area .area-left .data-row .select-dropdown .dropdown-item[data-value="REGULAR"],
      .add-pivot-area .area-left .data-row .select-dropdown .dropdown-item[data-value="REGULAR"],
      .add-chart-area .area-left .data-row .select-dropdown .dropdown-item[data-value="REGULAR"],
      .add-location-area .area-left .data-row .select-dropdown .dropdown-item[data-value="REGULAR"] {
        font-weight: 400; }
      .add-table-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BOLD"],
      .add-pivot-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BOLD"],
      .add-chart-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BOLD"],
      .add-location-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BOLD"] {
        font-weight: 700; }
      .add-table-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BLACK"],
      .add-pivot-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BLACK"],
      .add-chart-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BLACK"],
      .add-location-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BLACK"] {
        font-weight: 900; }
      .add-table-area .area-left .data-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"],
      .add-pivot-area .area-left .data-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"],
      .add-chart-area .area-left .data-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"],
      .add-location-area .area-left .data-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"] {
        font-weight: 300;
        font-style: italic; }
      .add-table-area .area-left .data-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"],
      .add-pivot-area .area-left .data-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"],
      .add-chart-area .area-left .data-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"],
      .add-location-area .area-left .data-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"] {
        font-weight: 400;
        font-style: italic; }
      .add-table-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"],
      .add-pivot-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"],
      .add-chart-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"],
      .add-location-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"] {
        font-weight: 700;
        font-style: italic; }
      .add-table-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"],
      .add-pivot-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"],
      .add-chart-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"],
      .add-location-area .area-left .data-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"] {
        font-weight: 900;
        font-style: italic; }
      .add-table-area .area-left .data-row .form-control,
      .add-pivot-area .area-left .data-row .form-control,
      .add-chart-area .area-left .data-row .form-control,
      .add-location-area .area-left .data-row .form-control {
        max-width: 140px; }
        .add-table-area .area-left .data-row .form-control.short,
        .add-pivot-area .area-left .data-row .form-control.short,
        .add-chart-area .area-left .data-row .form-control.short,
        .add-location-area .area-left .data-row .form-control.short {
          max-width: 70px; }
      .add-table-area .area-left .data-row .inline-input,
      .add-pivot-area .area-left .data-row .inline-input,
      .add-chart-area .area-left .data-row .inline-input,
      .add-location-area .area-left .data-row .inline-input {
        display: inline-block;
        width: auto; }
      .add-table-area .area-left .data-row .display-input,
      .add-pivot-area .area-left .data-row .display-input,
      .add-chart-area .area-left .data-row .display-input,
      .add-location-area .area-left .data-row .display-input {
        background: #E3F6FF;
        border: 1px solid #0073AE; }
      .add-table-area .area-left .data-row .color-box,
      .add-table-area .area-left .data-row .input-box,
      .add-pivot-area .area-left .data-row .color-box,
      .add-pivot-area .area-left .data-row .input-box,
      .add-chart-area .area-left .data-row .color-box,
      .add-chart-area .area-left .data-row .input-box,
      .add-location-area .area-left .data-row .color-box,
      .add-location-area .area-left .data-row .input-box {
        width: auto;
        padding: 0 5px; }
        .add-table-area .area-left .data-row .color-box .label,
        .add-table-area .area-left .data-row .input-box .label,
        .add-pivot-area .area-left .data-row .color-box .label,
        .add-pivot-area .area-left .data-row .input-box .label,
        .add-chart-area .area-left .data-row .color-box .label,
        .add-chart-area .area-left .data-row .input-box .label,
        .add-location-area .area-left .data-row .color-box .label,
        .add-location-area .area-left .data-row .input-box .label {
          margin-bottom: 0;
          line-height: 38px;
          margin-right: 5px;
          font-size: 14px; }
        .add-table-area .area-left .data-row .color-box input[type=text],
        .add-table-area .area-left .data-row .input-box input[type=text],
        .add-pivot-area .area-left .data-row .color-box input[type=text],
        .add-pivot-area .area-left .data-row .input-box input[type=text],
        .add-chart-area .area-left .data-row .color-box input[type=text],
        .add-chart-area .area-left .data-row .input-box input[type=text],
        .add-location-area .area-left .data-row .color-box input[type=text],
        .add-location-area .area-left .data-row .input-box input[type=text] {
          width: 120px; }
      .add-table-area .area-left .data-row .input-box .form-control,
      .add-pivot-area .area-left .data-row .input-box .form-control,
      .add-chart-area .area-left .data-row .input-box .form-control,
      .add-location-area .area-left .data-row .input-box .form-control {
        border-top-right-radius: .25rem;
        border-bottom-right-radius: .25rem; }
      .add-table-area .area-left .data-row .input-box .form-control.radius,
      .add-pivot-area .area-left .data-row .input-box .form-control.radius,
      .add-chart-area .area-left .data-row .input-box .form-control.radius,
      .add-location-area .area-left .data-row .input-box .form-control.radius {
        border-radius: .25rem; }
      .add-table-area .area-left .data-row .input-box .inline-input,
      .add-pivot-area .area-left .data-row .input-box .inline-input,
      .add-chart-area .area-left .data-row .input-box .inline-input,
      .add-location-area .area-left .data-row .input-box .inline-input {
        display: inline-block; }
      .add-table-area .area-left .data-row .input-box .unit-input,
      .add-pivot-area .area-left .data-row .input-box .unit-input,
      .add-chart-area .area-left .data-row .input-box .unit-input,
      .add-location-area .area-left .data-row .input-box .unit-input {
        max-width: 60px; }
      .add-table-area .area-left .data-row .input-box .form-check,
      .add-pivot-area .area-left .data-row .input-box .form-check,
      .add-chart-area .area-left .data-row .input-box .form-check,
      .add-location-area .area-left .data-row .input-box .form-check {
        height: 100%;
        margin-bottom: 0; }
      .add-table-area .area-left .data-row .color-box .clr-field,
      .add-pivot-area .area-left .data-row .color-box .clr-field,
      .add-chart-area .area-left .data-row .color-box .clr-field,
      .add-location-area .area-left .data-row .color-box .clr-field {
        width: auto; }
        .add-table-area .area-left .data-row .color-box .clr-field button,
        .add-pivot-area .area-left .data-row .color-box .clr-field button,
        .add-chart-area .area-left .data-row .color-box .clr-field button,
        .add-location-area .area-left .data-row .color-box .clr-field button {
          width: 35px; }
        .add-table-area .area-left .data-row .color-box .clr-field button:after,
        .add-pivot-area .area-left .data-row .color-box .clr-field button:after,
        .add-chart-area .area-left .data-row .color-box .clr-field button:after,
        .add-location-area .area-left .data-row .color-box .clr-field button:after {
          border: 1px solid #6c757d; }
      .add-table-area .area-left .data-row .color-box input.clr-input-color,
      .add-pivot-area .area-left .data-row .color-box input.clr-input-color,
      .add-chart-area .area-left .data-row .color-box input.clr-input-color,
      .add-location-area .area-left .data-row .color-box input.clr-input-color {
        width: 155px;
        max-width: 155px;
        height: 100%; }
      .add-table-area .area-left .data-row .color-box .btn,
      .add-pivot-area .area-left .data-row .color-box .btn,
      .add-chart-area .area-left .data-row .color-box .btn,
      .add-location-area .area-left .data-row .color-box .btn {
        width: 100%;
        height: 100%; }
      .add-table-area .area-left .data-row .doughnut-value-box .select-value-type,
      .add-pivot-area .area-left .data-row .doughnut-value-box .select-value-type,
      .add-chart-area .area-left .data-row .doughnut-value-box .select-value-type,
      .add-location-area .area-left .data-row .doughnut-value-box .select-value-type {
        max-width: initial;
        padding-right: 30px; }
      .add-table-area .area-left .data-row .doughnut-value-box .unit-input,
      .add-pivot-area .area-left .data-row .doughnut-value-box .unit-input,
      .add-chart-area .area-left .data-row .doughnut-value-box .unit-input,
      .add-location-area .area-left .data-row .doughnut-value-box .unit-input {
        max-width: 60px; }
      .add-table-area .area-left .data-row .select-symbol,
      .add-pivot-area .area-left .data-row .select-symbol,
      .add-chart-area .area-left .data-row .select-symbol,
      .add-location-area .area-left .data-row .select-symbol {
        margin-top: 5px;
        margin-bottom: 5px;
        padding: 0 5px; }
        .add-table-area .area-left .data-row .select-symbol .color-box,
        .add-pivot-area .area-left .data-row .select-symbol .color-box,
        .add-chart-area .area-left .data-row .select-symbol .color-box,
        .add-location-area .area-left .data-row .select-symbol .color-box {
          width: 90%;
          height: 20px;
          background-color: #efefef;
          vertical-align: middle;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          padding: 0; }
        .add-table-area .area-left .data-row .select-symbol .color-box.multi-color,
        .add-pivot-area .area-left .data-row .select-symbol .color-box.multi-color,
        .add-chart-area .area-left .data-row .select-symbol .color-box.multi-color,
        .add-location-area .area-left .data-row .select-symbol .color-box.multi-color {
          height: auto;
          -webkit-box-flex-direction: column;
          -moz-box-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column; }
        .add-table-area .area-left .data-row .select-symbol .color-line,
        .add-pivot-area .area-left .data-row .select-symbol .color-line,
        .add-chart-area .area-left .data-row .select-symbol .color-line,
        .add-location-area .area-left .data-row .select-symbol .color-line {
          width: 100%;
          vertical-align: middle;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          padding: 0; }
        .add-table-area .area-left .data-row .select-symbol .color-item,
        .add-pivot-area .area-left .data-row .select-symbol .color-item,
        .add-chart-area .area-left .data-row .select-symbol .color-item,
        .add-location-area .area-left .data-row .select-symbol .color-item {
          display: block;
          flex: 1;
          height: 100%; }
        .add-table-area .area-left .data-row .select-symbol .color-box.multi-color .color-item,
        .add-pivot-area .area-left .data-row .select-symbol .color-box.multi-color .color-item,
        .add-chart-area .area-left .data-row .select-symbol .color-box.multi-color .color-item,
        .add-location-area .area-left .data-row .select-symbol .color-box.multi-color .color-item {
          height: 15px; }
        .add-table-area .area-left .data-row .select-symbol .dropdown-menu,
        .add-pivot-area .area-left .data-row .select-symbol .dropdown-menu,
        .add-chart-area .area-left .data-row .select-symbol .dropdown-menu,
        .add-location-area .area-left .data-row .select-symbol .dropdown-menu {
          max-height: 200px;
          overflow-y: auto; }
        .add-table-area .area-left .data-row .select-symbol .color-scheme-box .dropdown-item,
        .add-pivot-area .area-left .data-row .select-symbol .color-scheme-box .dropdown-item,
        .add-chart-area .area-left .data-row .select-symbol .color-scheme-box .dropdown-item,
        .add-location-area .area-left .data-row .select-symbol .color-scheme-box .dropdown-item {
          position: relative; }
        .add-table-area .area-left .data-row .select-symbol .color-scheme-box .btn-color-delete,
        .add-pivot-area .area-left .data-row .select-symbol .color-scheme-box .btn-color-delete,
        .add-chart-area .area-left .data-row .select-symbol .color-scheme-box .btn-color-delete,
        .add-location-area .area-left .data-row .select-symbol .color-scheme-box .btn-color-delete {
          position: absolute;
          top: 50%;
          right: 0;
          transform: translateY(-50%); }
      .add-table-area .area-left .data-row .btn-select-dropdown,
      .add-pivot-area .area-left .data-row .btn-select-dropdown,
      .add-chart-area .area-left .data-row .btn-select-dropdown,
      .add-location-area .area-left .data-row .btn-select-dropdown {
        padding: 0 0.75em;
        text-align: left;
        font-size: 14px;
        background-color: #fff; }
      .add-table-area .area-left .data-row .btn-select-dropdown + .dropdown-menu,
      .add-pivot-area .area-left .data-row .btn-select-dropdown + .dropdown-menu,
      .add-chart-area .area-left .data-row .btn-select-dropdown + .dropdown-menu,
      .add-location-area .area-left .data-row .btn-select-dropdown + .dropdown-menu {
        width: 100%;
        font-size: 14px; }
      .add-table-area .area-left .data-row .check-single-color,
      .add-pivot-area .area-left .data-row .check-single-color,
      .add-chart-area .area-left .data-row .check-single-color,
      .add-location-area .area-left .data-row .check-single-color {
        display: inline-block;
        margin-bottom: 0; }
        .add-table-area .area-left .data-row .check-single-color .form-check-input,
        .add-pivot-area .area-left .data-row .check-single-color .form-check-input,
        .add-chart-area .area-left .data-row .check-single-color .form-check-input,
        .add-location-area .area-left .data-row .check-single-color .form-check-input {
          top: 50%;
          margin-top: -10px; }
      .add-table-area .area-left .data-row .maximum-box,
      .add-pivot-area .area-left .data-row .maximum-box,
      .add-chart-area .area-left .data-row .maximum-box,
      .add-location-area .area-left .data-row .maximum-box {
        position: absolute;
        top: 0;
        right: 10px; }
        .add-table-area .area-left .data-row .maximum-box .form-control,
        .add-pivot-area .area-left .data-row .maximum-box .form-control,
        .add-chart-area .area-left .data-row .maximum-box .form-control,
        .add-location-area .area-left .data-row .maximum-box .form-control {
          width: 90px !important;
          text-align: center;
          border-color: #ff0000;
          padding-left: 3px;
          padding-right: 3px; }
      .add-table-area .area-left .data-row .data-item,
      .add-pivot-area .area-left .data-row .data-item,
      .add-chart-area .area-left .data-row .data-item,
      .add-location-area .area-left .data-row .data-item {
        width: 100%;
        color: #2F373A;
        padding-left: 5px;
        padding-right: 5px; }
        .add-table-area .area-left .data-row .data-item .btn,
        .add-pivot-area .area-left .data-row .data-item .btn,
        .add-chart-area .area-left .data-row .data-item .btn,
        .add-location-area .area-left .data-row .data-item .btn {
          width: 100%;
          text-overflow: ellipsis;
          overflow: hidden; }
        .add-table-area .area-left .data-row .data-item .btn-data,
        .add-pivot-area .area-left .data-row .data-item .btn-data,
        .add-chart-area .area-left .data-row .data-item .btn-data,
        .add-location-area .area-left .data-row .data-item .btn-data {
          text-align: left;
          background: #E3F6FF;
          border: 1px solid #0073AE;
          border-radius: 4px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          padding: 3px 5px; }
          .add-table-area .area-left .data-row .data-item .btn-data .unit,
          .add-pivot-area .area-left .data-row .data-item .btn-data .unit,
          .add-chart-area .area-left .data-row .data-item .btn-data .unit,
          .add-location-area .area-left .data-row .data-item .btn-data .unit {
            width: 60px;
            height: 30px; }
            .add-table-area .area-left .data-row .data-item .btn-data .unit .form-control,
            .add-pivot-area .area-left .data-row .data-item .btn-data .unit .form-control,
            .add-chart-area .area-left .data-row .data-item .btn-data .unit .form-control,
            .add-location-area .area-left .data-row .data-item .btn-data .unit .form-control {
              width: 60px;
              font-size: 13px; }
          .add-table-area .area-left .data-row .data-item .btn-data .label,
          .add-pivot-area .area-left .data-row .data-item .btn-data .label,
          .add-chart-area .area-left .data-row .data-item .btn-data .label,
          .add-location-area .area-left .data-row .data-item .btn-data .label {
            flex: 1;
            height: 30px;
            line-height: 30px; }
          .add-table-area .area-left .data-row .data-item .btn-data.with-chart-type,
          .add-pivot-area .area-left .data-row .data-item .btn-data.with-chart-type,
          .add-chart-area .area-left .data-row .data-item .btn-data.with-chart-type,
          .add-location-area .area-left .data-row .data-item .btn-data.with-chart-type {
            overflow: visible; }
          .add-table-area .area-left .data-row .data-item .btn-data .chart-type,
          .add-pivot-area .area-left .data-row .data-item .btn-data .chart-type,
          .add-chart-area .area-left .data-row .data-item .btn-data .chart-type,
          .add-location-area .area-left .data-row .data-item .btn-data .chart-type {
            width: 55px;
            height: 30px;
            margin-right: 5px; }
            .add-table-area .area-left .data-row .data-item .btn-data .chart-type .select-dropdown,
            .add-pivot-area .area-left .data-row .data-item .btn-data .chart-type .select-dropdown,
            .add-chart-area .area-left .data-row .data-item .btn-data .chart-type .select-dropdown,
            .add-location-area .area-left .data-row .data-item .btn-data .chart-type .select-dropdown {
              width: 100%;
              height: 100%;
              margin: 0; }
            .add-table-area .area-left .data-row .data-item .btn-data .chart-type .btn,
            .add-pivot-area .area-left .data-row .data-item .btn-data .chart-type .btn,
            .add-chart-area .area-left .data-row .data-item .btn-data .chart-type .btn,
            .add-location-area .area-left .data-row .data-item .btn-data .chart-type .btn {
              width: 100%;
              height: 100%;
              min-width: 100%;
              padding: 0 3px;
              background-color: #fff;
              border: 1px solid #ced4da;
              color: #495057;
              font-size: 18px; }
            .add-table-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu,
            .add-pivot-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu,
            .add-chart-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu,
            .add-location-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu {
              min-width: 80px; }
              .add-table-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu .dropdown-item,
              .add-pivot-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu .dropdown-item,
              .add-chart-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu .dropdown-item,
              .add-location-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu .dropdown-item {
                padding: 3px 10px; }
              .add-table-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu .icon,
              .add-pivot-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu .icon,
              .add-chart-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu .icon,
              .add-location-area .area-left .data-row .data-item .btn-data .chart-type .dropdown-menu .icon {
                font-size: 18px; }
        .add-table-area .area-left .data-row .data-item .btn-label,
        .add-pivot-area .area-left .data-row .data-item .btn-label,
        .add-chart-area .area-left .data-row .data-item .btn-label,
        .add-location-area .area-left .data-row .data-item .btn-label {
          text-align: left;
          background: #F8FFE3;
          border: 1px solid #76AE00;
          border-radius: 4px; }
        .add-table-area .area-left .data-row .data-item > .dropdown-menu,
        .add-pivot-area .area-left .data-row .data-item > .dropdown-menu,
        .add-chart-area .area-left .data-row .data-item > .dropdown-menu,
        .add-location-area .area-left .data-row .data-item > .dropdown-menu {
          max-height: 650px;
          overflow-y: auto; }
        .add-table-area .area-left .data-row .data-item.time-series-item,
        .add-pivot-area .area-left .data-row .data-item.time-series-item,
        .add-chart-area .area-left .data-row .data-item.time-series-item,
        .add-location-area .area-left .data-row .data-item.time-series-item {
          position: absolute;
          top: 0;
          right: 0;
          padding: 6px; }
          .add-table-area .area-left .data-row .data-item.time-series-item .form-check,
          .add-pivot-area .area-left .data-row .data-item.time-series-item .form-check,
          .add-chart-area .area-left .data-row .data-item.time-series-item .form-check,
          .add-location-area .area-left .data-row .data-item.time-series-item .form-check {
            margin-bottom: 0; }
      .add-table-area .area-left .data-row .row-options-box,
      .add-pivot-area .area-left .data-row .row-options-box,
      .add-chart-area .area-left .data-row .row-options-box,
      .add-location-area .area-left .data-row .row-options-box {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0 6px;
        height: 48px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .add-table-area .area-left .data-row .row-options-box.multi-axis,
        .add-pivot-area .area-left .data-row .row-options-box.multi-axis,
        .add-chart-area .area-left .data-row .row-options-box.multi-axis,
        .add-location-area .area-left .data-row .row-options-box.multi-axis {
          height: 30px;
          top: -32px; }
        .add-table-area .area-left .data-row .row-options-box .label,
        .add-pivot-area .area-left .data-row .row-options-box .label,
        .add-chart-area .area-left .data-row .row-options-box .label,
        .add-location-area .area-left .data-row .row-options-box .label {
          margin-bottom: 0; }
        .add-table-area .area-left .data-row .row-options-box .form-control,
        .add-pivot-area .area-left .data-row .row-options-box .form-control,
        .add-chart-area .area-left .data-row .row-options-box .form-control,
        .add-location-area .area-left .data-row .row-options-box .form-control {
          display: inline-block; }
        .add-table-area .area-left .data-row .row-options-box .form-check,
        .add-pivot-area .area-left .data-row .row-options-box .form-check,
        .add-chart-area .area-left .data-row .row-options-box .form-check,
        .add-location-area .area-left .data-row .row-options-box .form-check {
          margin-bottom: 0;
          padding-left: 25px; }
        .add-table-area .area-left .data-row .row-options-box .begin-at-zero,
        .add-table-area .area-left .data-row .row-options-box .bg-point-value,
        .add-table-area .area-left .data-row .row-options-box .value-min-max,
        .add-pivot-area .area-left .data-row .row-options-box .begin-at-zero,
        .add-pivot-area .area-left .data-row .row-options-box .bg-point-value,
        .add-pivot-area .area-left .data-row .row-options-box .value-min-max,
        .add-chart-area .area-left .data-row .row-options-box .begin-at-zero,
        .add-chart-area .area-left .data-row .row-options-box .bg-point-value,
        .add-chart-area .area-left .data-row .row-options-box .value-min-max,
        .add-location-area .area-left .data-row .row-options-box .begin-at-zero,
        .add-location-area .area-left .data-row .row-options-box .bg-point-value,
        .add-location-area .area-left .data-row .row-options-box .value-min-max {
          margin-top: -3px; }
        .add-table-area .area-left .data-row .row-options-box .dropdown-item,
        .add-pivot-area .area-left .data-row .row-options-box .dropdown-item,
        .add-chart-area .area-left .data-row .row-options-box .dropdown-item,
        .add-location-area .area-left .data-row .row-options-box .dropdown-item {
          padding-left: 10px;
          padding-right: 10px; }
          .add-table-area .area-left .data-row .row-options-box .dropdown-item:hover, .add-table-area .area-left .data-row .row-options-box .dropdown-item:focus, .add-table-area .area-left .data-row .row-options-box .dropdown-item:active,
          .add-pivot-area .area-left .data-row .row-options-box .dropdown-item:hover,
          .add-pivot-area .area-left .data-row .row-options-box .dropdown-item:focus,
          .add-pivot-area .area-left .data-row .row-options-box .dropdown-item:active,
          .add-chart-area .area-left .data-row .row-options-box .dropdown-item:hover,
          .add-chart-area .area-left .data-row .row-options-box .dropdown-item:focus,
          .add-chart-area .area-left .data-row .row-options-box .dropdown-item:active,
          .add-location-area .area-left .data-row .row-options-box .dropdown-item:hover,
          .add-location-area .area-left .data-row .row-options-box .dropdown-item:focus,
          .add-location-area .area-left .data-row .row-options-box .dropdown-item:active {
            background-color: transparent;
            color: inherit; }
          .add-table-area .area-left .data-row .row-options-box .dropdown-item .inline-form,
          .add-pivot-area .area-left .data-row .row-options-box .dropdown-item .inline-form,
          .add-chart-area .area-left .data-row .row-options-box .dropdown-item .inline-form,
          .add-location-area .area-left .data-row .row-options-box .dropdown-item .inline-form {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -ms-flex-align: center;
            flex-align: center;
            -webkit-align-items: center;
            -moz-box-align-items: center;
            -ms-align-items: center;
            -webkit-align-items: center;
            align-items: center;
            -ms-flex-pack: justify;
            flex-pack: justify;
            -webkit-justify-content: space-between;
            -moz-box-justify-content: space-between;
            -ms-justify-content: space-between;
            -webkit-justify-content: space-between;
            justify-content: space-between; }
            .add-table-area .area-left .data-row .row-options-box .dropdown-item .inline-form .label,
            .add-pivot-area .area-left .data-row .row-options-box .dropdown-item .inline-form .label,
            .add-chart-area .area-left .data-row .row-options-box .dropdown-item .inline-form .label,
            .add-location-area .area-left .data-row .row-options-box .dropdown-item .inline-form .label {
              font-size: 14px;
              margin-right: 5px; }
            .add-table-area .area-left .data-row .row-options-box .dropdown-item .inline-form .form-group,
            .add-pivot-area .area-left .data-row .row-options-box .dropdown-item .inline-form .form-group,
            .add-chart-area .area-left .data-row .row-options-box .dropdown-item .inline-form .form-group,
            .add-location-area .area-left .data-row .row-options-box .dropdown-item .inline-form .form-group {
              margin: 0; }
            .add-table-area .area-left .data-row .row-options-box .dropdown-item .inline-form .form-control,
            .add-pivot-area .area-left .data-row .row-options-box .dropdown-item .inline-form .form-control,
            .add-chart-area .area-left .data-row .row-options-box .dropdown-item .inline-form .form-control,
            .add-location-area .area-left .data-row .row-options-box .dropdown-item .inline-form .form-control {
              margin: 0; }
        .add-table-area .area-left .data-row .row-options-box .form-group,
        .add-pivot-area .area-left .data-row .row-options-box .form-group,
        .add-chart-area .area-left .data-row .row-options-box .form-group,
        .add-location-area .area-left .data-row .row-options-box .form-group {
          margin-bottom: 2px; }
          .add-table-area .area-left .data-row .row-options-box .form-group label,
          .add-pivot-area .area-left .data-row .row-options-box .form-group label,
          .add-chart-area .area-left .data-row .row-options-box .form-group label,
          .add-location-area .area-left .data-row .row-options-box .form-group label {
            font-size: 14px; }
          .add-table-area .area-left .data-row .row-options-box .form-group .form-control-sm,
          .add-pivot-area .area-left .data-row .row-options-box .form-group .form-control-sm,
          .add-chart-area .area-left .data-row .row-options-box .form-group .form-control-sm,
          .add-location-area .area-left .data-row .row-options-box .form-group .form-control-sm {
            width: 70px; }
      .add-table-area .area-left .data-row .form-check,
      .add-pivot-area .area-left .data-row .form-check,
      .add-chart-area .area-left .data-row .form-check,
      .add-location-area .area-left .data-row .form-check {
        padding-left: 1.75rem;
        font-size: 14px; }
      .add-table-area .area-left .data-row .form-check .form-check-input,
      .add-pivot-area .area-left .data-row .form-check .form-check-input,
      .add-chart-area .area-left .data-row .form-check .form-check-input,
      .add-location-area .area-left .data-row .form-check .form-check-input {
        margin: 0;
        top: 50%;
        margin-top: -10px;
        left: 3px; }
      .add-table-area .area-left .data-row .form-check .form-check-input:checked,
      .add-pivot-area .area-left .data-row .form-check .form-check-input:checked,
      .add-chart-area .area-left .data-row .form-check .form-check-input:checked,
      .add-location-area .area-left .data-row .form-check .form-check-input:checked {
        background-color: #0073AE;
        border-color: #0073AE; }
      .add-table-area .area-left .data-row .form-check .form-check-input:focus,
      .add-pivot-area .area-left .data-row .form-check .form-check-input:focus,
      .add-chart-area .area-left .data-row .form-check .form-check-input:focus,
      .add-location-area .area-left .data-row .form-check .form-check-input:focus {
        border-color: #758eae;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(182, 210, 253, 0.25); }
      .add-table-area .area-left .data-row .box-area .form-check.in-check,
      .add-pivot-area .area-left .data-row .box-area .form-check.in-check,
      .add-chart-area .area-left .data-row .box-area .form-check.in-check,
      .add-location-area .area-left .data-row .box-area .form-check.in-check {
        height: 38px;
        margin-top: 5px;
        margin-bottom: 5px;
        line-height: 38px; }
      .add-table-area .area-left .data-row .form-input-select,
      .add-pivot-area .area-left .data-row .form-input-select,
      .add-chart-area .area-left .data-row .form-input-select,
      .add-location-area .area-left .data-row .form-input-select {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
        .add-table-area .area-left .data-row .form-input-select .form-control,
        .add-pivot-area .area-left .data-row .form-input-select .form-control,
        .add-chart-area .area-left .data-row .form-input-select .form-control,
        .add-location-area .area-left .data-row .form-input-select .form-control {
          display: inline-block;
          max-width: 100px; }
        .add-table-area .area-left .data-row .form-input-select select.form-control,
        .add-pivot-area .area-left .data-row .form-input-select select.form-control,
        .add-chart-area .area-left .data-row .form-input-select select.form-control,
        .add-location-area .area-left .data-row .form-input-select select.form-control {
          position: relative;
          margin-left: -5px;
          z-index: 1; }
        .add-table-area .area-left .data-row .form-input-select select.form-control.no-arrow,
        .add-pivot-area .area-left .data-row .form-input-select select.form-control.no-arrow,
        .add-chart-area .area-left .data-row .form-input-select select.form-control.no-arrow,
        .add-location-area .area-left .data-row .form-input-select select.form-control.no-arrow {
          background-image: none; }
      .add-table-area .area-left .data-row .dropdown-toggle::after,
      .add-pivot-area .area-left .data-row .dropdown-toggle::after,
      .add-chart-area .area-left .data-row .dropdown-toggle::after,
      .add-location-area .area-left .data-row .dropdown-toggle::after {
        vertical-align: middle; }
      .add-table-area .area-left .data-row .btn-select-color span,
      .add-pivot-area .area-left .data-row .btn-select-color span,
      .add-chart-area .area-left .data-row .btn-select-color span,
      .add-location-area .area-left .data-row .btn-select-color span {
        display: inline-block;
        vertical-align: middle; }
      .add-table-area .area-left .data-row .btn-select-color .color-box,
      .add-pivot-area .area-left .data-row .btn-select-color .color-box,
      .add-chart-area .area-left .data-row .btn-select-color .color-box,
      .add-location-area .area-left .data-row .btn-select-color .color-box {
        width: 30px;
        height: 16px;
        margin-right: 3px; }
      .add-table-area .area-left .data-row .btn-select-color + .dropdown-menu span,
      .add-pivot-area .area-left .data-row .btn-select-color + .dropdown-menu span,
      .add-chart-area .area-left .data-row .btn-select-color + .dropdown-menu span,
      .add-location-area .area-left .data-row .btn-select-color + .dropdown-menu span {
        display: inline-block;
        vertical-align: middle; }
      .add-table-area .area-left .data-row .btn-select-color + .dropdown-menu .color-box,
      .add-pivot-area .area-left .data-row .btn-select-color + .dropdown-menu .color-box,
      .add-chart-area .area-left .data-row .btn-select-color + .dropdown-menu .color-box,
      .add-location-area .area-left .data-row .btn-select-color + .dropdown-menu .color-box {
        width: 30px;
        height: 16px;
        margin-right: 3px; }
      .add-table-area .area-left .data-row .select-table-type-box,
      .add-pivot-area .area-left .data-row .select-table-type-box,
      .add-chart-area .area-left .data-row .select-table-type-box,
      .add-location-area .area-left .data-row .select-table-type-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .add-table-area .area-left .data-row .select-table-type-box label,
        .add-pivot-area .area-left .data-row .select-table-type-box label,
        .add-chart-area .area-left .data-row .select-table-type-box label,
        .add-location-area .area-left .data-row .select-table-type-box label {
          margin-right: 20px;
          margin-bottom: 0; }
        .add-table-area .area-left .data-row .select-table-type-box .form-control,
        .add-pivot-area .area-left .data-row .select-table-type-box .form-control,
        .add-chart-area .area-left .data-row .select-table-type-box .form-control,
        .add-location-area .area-left .data-row .select-table-type-box .form-control {
          flex: 1;
          max-width: none; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR01,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR01,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR01,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR01 {
        background-color: #15a5b7; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR02,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR02,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR02,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR02 {
        background-color: #f73c57; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR03,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR03,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR03,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR03 {
        background-color: #2091eb; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR04,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR04,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR04,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR04 {
        background-color: #fb5289; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR05,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR05,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR05,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR05 {
        background-color: #00c9cc; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR06,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR06,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR06,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR06 {
        background-color: #00ea90; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR07,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR07,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR07,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR07 {
        background-color: #ff5a00; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR08,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR08,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR08,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR08 {
        background-color: #e7e7e7; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR09,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR09,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR09,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR09 {
        background-color: #3a89f6; }
      .add-table-area .area-left .data-row .TOOLTIP-COLOR10,
      .add-pivot-area .area-left .data-row .TOOLTIP-COLOR10,
      .add-chart-area .area-left .data-row .TOOLTIP-COLOR10,
      .add-location-area .area-left .data-row .TOOLTIP-COLOR10 {
        background-color: #10182f; }
      .add-table-area .area-left .data-row .icon-action,
      .add-pivot-area .area-left .data-row .icon-action,
      .add-chart-area .area-left .data-row .icon-action,
      .add-location-area .area-left .data-row .icon-action {
        width: 30px;
        min-width: 30px;
        height: 30px;
        background-color: transparent;
        background-image: url("/static/img/icon_no_action.png");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center; }
        .add-table-area .area-left .data-row .icon-action.on,
        .add-pivot-area .area-left .data-row .icon-action.on,
        .add-chart-area .area-left .data-row .icon-action.on,
        .add-location-area .area-left .data-row .icon-action.on {
          background-image: url("/static/img/icon_action.png"); }
      .add-table-area .area-left .data-row.treemap-option .form-control[type=number],
      .add-pivot-area .area-left .data-row.treemap-option .form-control[type=number],
      .add-chart-area .area-left .data-row.treemap-option .form-control[type=number],
      .add-location-area .area-left .data-row.treemap-option .form-control[type=number] {
        width: 80px; }
      .add-table-area .area-left .data-row.color-option-row,
      .add-pivot-area .area-left .data-row.color-option-row,
      .add-chart-area .area-left .data-row.color-option-row,
      .add-location-area .area-left .data-row.color-option-row {
        position: relative; }
        .add-table-area .area-left .data-row.color-option-row .gradient-check,
        .add-pivot-area .area-left .data-row.color-option-row .gradient-check,
        .add-chart-area .area-left .data-row.color-option-row .gradient-check,
        .add-location-area .area-left .data-row.color-option-row .gradient-check {
          position: absolute;
          top: -2px;
          right: 0; }
    .add-table-area .area-left .data-row-info,
    .add-pivot-area .area-left .data-row-info,
    .add-chart-area .area-left .data-row-info,
    .add-location-area .area-left .data-row-info {
      position: relative; }
      .add-table-area .area-left .data-row-info .use-download-check,
      .add-pivot-area .area-left .data-row-info .use-download-check,
      .add-chart-area .area-left .data-row-info .use-download-check,
      .add-location-area .area-left .data-row-info .use-download-check {
        display: inline-block; }
        .add-table-area .area-left .data-row-info .use-download-check .form-check-label,
        .add-pivot-area .area-left .data-row-info .use-download-check .form-check-label,
        .add-chart-area .area-left .data-row-info .use-download-check .form-check-label,
        .add-location-area .area-left .data-row-info .use-download-check .form-check-label {
          font-size: 14px;
          font-weight: bold; }
      .add-table-area .area-left .data-row-info .switch-box,
      .add-pivot-area .area-left .data-row-info .switch-box,
      .add-chart-area .area-left .data-row-info .switch-box,
      .add-location-area .area-left .data-row-info .switch-box {
        display: inline-flex;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .add-table-area .area-left .data-row-info .switch-box .switch-label,
        .add-pivot-area .area-left .data-row-info .switch-box .switch-label,
        .add-chart-area .area-left .data-row-info .switch-box .switch-label,
        .add-location-area .area-left .data-row-info .switch-box .switch-label {
          font-size: 14px;
          margin-right: 5px;
          font-weight: bold; }
      .add-table-area .area-left .data-row-info .row-text-edit-box,
      .add-pivot-area .area-left .data-row-info .row-text-edit-box,
      .add-chart-area .area-left .data-row-info .row-text-edit-box,
      .add-location-area .area-left .data-row-info .row-text-edit-box {
        margin-top: 5px;
        width: 350px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .add-table-area .area-left .data-row-info .row-text-edit-box .text-label,
        .add-table-area .area-left .data-row-info .row-text-edit-box label,
        .add-pivot-area .area-left .data-row-info .row-text-edit-box .text-label,
        .add-pivot-area .area-left .data-row-info .row-text-edit-box label,
        .add-chart-area .area-left .data-row-info .row-text-edit-box .text-label,
        .add-chart-area .area-left .data-row-info .row-text-edit-box label,
        .add-location-area .area-left .data-row-info .row-text-edit-box .text-label,
        .add-location-area .area-left .data-row-info .row-text-edit-box label {
          font-size: 14px; }
        .add-table-area .area-left .data-row-info .row-text-edit-box .text-label,
        .add-pivot-area .area-left .data-row-info .row-text-edit-box .text-label,
        .add-chart-area .area-left .data-row-info .row-text-edit-box .text-label,
        .add-location-area .area-left .data-row-info .row-text-edit-box .text-label {
          font-weight: bold; }
        .add-table-area .area-left .data-row-info .row-text-edit-box .form-group,
        .add-pivot-area .area-left .data-row-info .row-text-edit-box .form-group,
        .add-chart-area .area-left .data-row-info .row-text-edit-box .form-group,
        .add-location-area .area-left .data-row-info .row-text-edit-box .form-group {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          margin: 0; }
          .add-table-area .area-left .data-row-info .row-text-edit-box .form-group label,
          .add-pivot-area .area-left .data-row-info .row-text-edit-box .form-group label,
          .add-chart-area .area-left .data-row-info .row-text-edit-box .form-group label,
          .add-location-area .area-left .data-row-info .row-text-edit-box .form-group label {
            margin: 0 0 0 5px; }
        .add-table-area .area-left .data-row-info .row-text-edit-box .form-control,
        .add-pivot-area .area-left .data-row-info .row-text-edit-box .form-control,
        .add-chart-area .area-left .data-row-info .row-text-edit-box .form-control,
        .add-location-area .area-left .data-row-info .row-text-edit-box .form-control {
          width: 50px; }
      .add-table-area .area-left .data-row-info .use-table-action,
      .add-pivot-area .area-left .data-row-info .use-table-action,
      .add-chart-area .area-left .data-row-info .use-table-action,
      .add-location-area .area-left .data-row-info .use-table-action {
        display: inline-block; }
      .add-table-area .area-left .data-row-info .use-table-search,
      .add-pivot-area .area-left .data-row-info .use-table-search,
      .add-chart-area .area-left .data-row-info .use-table-search,
      .add-location-area .area-left .data-row-info .use-table-search {
        display: inline-block; }
      .add-table-area .area-left .data-row-info .table-search-position,
      .add-pivot-area .area-left .data-row-info .table-search-position,
      .add-chart-area .area-left .data-row-info .table-search-position,
      .add-location-area .area-left .data-row-info .table-search-position {
        display: inline-block; }
    .add-table-area .area-left .step,
    .add-pivot-area .area-left .step,
    .add-chart-area .area-left .step,
    .add-location-area .area-left .step {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 60px;
      background: #F2F2F2;
      padding: 15px; }
      .add-table-area .area-left .step .btn,
      .add-pivot-area .area-left .step .btn,
      .add-chart-area .area-left .step .btn,
      .add-location-area .area-left .step .btn {
        padding: 2px 20px;
        font-size: 18px; }
      .add-table-area .area-left .step .btn-cancel,
      .add-pivot-area .area-left .step .btn-cancel,
      .add-chart-area .area-left .step .btn-cancel,
      .add-location-area .area-left .step .btn-cancel {
        color: #0073AE; }
      .add-table-area .area-left .step .btn-next, .add-table-area .area-left .step .btn-save,
      .add-pivot-area .area-left .step .btn-next,
      .add-pivot-area .area-left .step .btn-save,
      .add-chart-area .area-left .step .btn-next,
      .add-chart-area .area-left .step .btn-save,
      .add-location-area .area-left .step .btn-next,
      .add-location-area .area-left .step .btn-save {
        position: absolute;
        right: 50px;
        color: #ffffff;
        background: #0073AE;
        border-radius: 4px;
        min-width: 140px; }
      .add-table-area .area-left .step .btn-prev,
      .add-pivot-area .area-left .step .btn-prev,
      .add-chart-area .area-left .step .btn-prev,
      .add-location-area .area-left .step .btn-prev {
        position: absolute;
        right: 220px;
        color: #0073AE; }
    .add-table-area .area-left .number-chart-box,
    .add-pivot-area .area-left .number-chart-box,
    .add-chart-area .area-left .number-chart-box,
    .add-location-area .area-left .number-chart-box {
      position: relative;
      background-color: #eee;
      border: 1px solid #ddd;
      text-align: center;
      display: block;
      width: 160px;
      height: 110px;
      margin-top: 10px;
      resize: both;
      overflow: auto; }
    .add-table-area .area-left .sort-type-box,
    .add-pivot-area .area-left .sort-type-box,
    .add-chart-area .area-left .sort-type-box,
    .add-location-area .area-left .sort-type-box {
      position: absolute;
      top: 50%;
      right: 20px;
      margin-top: -13px; }
      .add-table-area .area-left .sort-type-box .form-check + .form-check,
      .add-pivot-area .area-left .sort-type-box .form-check + .form-check,
      .add-chart-area .area-left .sort-type-box .form-check + .form-check,
      .add-location-area .area-left .sort-type-box .form-check + .form-check {
        margin-left: 20px; }
      .add-table-area .area-left .sort-type-box .form-check .form-check-input,
      .add-pivot-area .area-left .sort-type-box .form-check .form-check-input,
      .add-chart-area .area-left .sort-type-box .form-check .form-check-input,
      .add-location-area .area-left .sort-type-box .form-check .form-check-input {
        margin: 0 5px 0 0; }
    .add-table-area .area-left .color-type-box,
    .add-pivot-area .area-left .color-type-box,
    .add-chart-area .area-left .color-type-box,
    .add-location-area .area-left .color-type-box {
      position: relative;
      padding-right: 95px !important; }
      @media (min-width: 992px) {
        .add-table-area .area-left .color-type-box,
        .add-pivot-area .area-left .color-type-box,
        .add-chart-area .area-left .color-type-box,
        .add-location-area .area-left .color-type-box {
          padding-right: 120px !important; } }
      .add-table-area .area-left .color-type-box [class^="col-"],
      .add-pivot-area .area-left .color-type-box [class^="col-"],
      .add-chart-area .area-left .color-type-box [class^="col-"],
      .add-location-area .area-left .color-type-box [class^="col-"] {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
      .add-table-area .area-left .color-type-box .colorpicker-element,
      .add-pivot-area .area-left .color-type-box .colorpicker-element,
      .add-chart-area .area-left .color-type-box .colorpicker-element,
      .add-location-area .area-left .color-type-box .colorpicker-element {
        min-width: 186px; }
      .add-table-area .area-left .color-type-box .form-check,
      .add-pivot-area .area-left .color-type-box .form-check,
      .add-chart-area .area-left .color-type-box .form-check,
      .add-location-area .area-left .color-type-box .form-check {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        margin-bottom: 0; }
      .add-table-area .area-left .color-type-box .form-check-input,
      .add-pivot-area .area-left .color-type-box .form-check-input,
      .add-chart-area .area-left .color-type-box .form-check-input,
      .add-location-area .area-left .color-type-box .form-check-input {
        margin-top: -1px; }
      .add-table-area .area-left .color-type-box .dropdown,
      .add-pivot-area .area-left .color-type-box .dropdown,
      .add-chart-area .area-left .color-type-box .dropdown,
      .add-location-area .area-left .color-type-box .dropdown {
        flex: 1; }
      .add-table-area .area-left .color-type-box .color-option-btns .btn,
      .add-pivot-area .area-left .color-type-box .color-option-btns .btn,
      .add-chart-area .area-left .color-type-box .color-option-btns .btn,
      .add-location-area .area-left .color-type-box .color-option-btns .btn {
        position: absolute;
        top: 50%;
        font-size: 20px;
        transform: translateY(-50%);
        padding: 5px; }
      .add-table-area .area-left .color-type-box .color-option-btns .btn-remove,
      .add-pivot-area .area-left .color-type-box .color-option-btns .btn-remove,
      .add-chart-area .area-left .color-type-box .color-option-btns .btn-remove,
      .add-location-area .area-left .color-type-box .color-option-btns .btn-remove {
        right: 55px; }
        .add-table-area .area-left .color-type-box .color-option-btns .btn-remove:hover, .add-table-area .area-left .color-type-box .color-option-btns .btn-remove:active, .add-table-area .area-left .color-type-box .color-option-btns .btn-remove:focus-visible,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-remove:hover,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-remove:active,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-remove:focus-visible,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-remove:hover,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-remove:active,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-remove:focus-visible,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-remove:hover,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-remove:active,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-remove:focus-visible {
          color: #ed0001; }
      .add-table-area .area-left .color-type-box .color-option-btns .btn-add,
      .add-pivot-area .area-left .color-type-box .color-option-btns .btn-add,
      .add-chart-area .area-left .color-type-box .color-option-btns .btn-add,
      .add-location-area .area-left .color-type-box .color-option-btns .btn-add {
        right: 20px;
        font-size: 28px;
        line-height: 1; }
        .add-table-area .area-left .color-type-box .color-option-btns .btn-add:hover, .add-table-area .area-left .color-type-box .color-option-btns .btn-add:active, .add-table-area .area-left .color-type-box .color-option-btns .btn-add:focus-visible,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-add:hover,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-add:active,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-add:focus-visible,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-add:hover,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-add:active,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-add:focus-visible,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-add:hover,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-add:active,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-add:focus-visible {
          color: #15a5b7; }
      @media (min-width: 992px) {
        .add-table-area .area-left .color-type-box .color-option-btns .btn-remove,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-remove,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-remove,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-remove {
          right: 70px; }
        .add-table-area .area-left .color-type-box .color-option-btns .btn-add,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-add,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-add,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-add {
          right: 25px; } }
      @media (min-width: 1200px) {
        .add-table-area .area-left .color-type-box .color-option-btns .btn-remove,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-remove,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-remove,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-remove {
          right: 100px; }
        .add-table-area .area-left .color-type-box .color-option-btns .btn-add,
        .add-pivot-area .area-left .color-type-box .color-option-btns .btn-add,
        .add-chart-area .area-left .color-type-box .color-option-btns .btn-add,
        .add-location-area .area-left .color-type-box .color-option-btns .btn-add {
          right: 40px; } }
      .add-table-area .area-left .color-type-box + .color-type-box,
      .add-pivot-area .area-left .color-type-box + .color-type-box,
      .add-chart-area .area-left .color-type-box + .color-type-box,
      .add-location-area .area-left .color-type-box + .color-type-box {
        margin-top: 10px; }
  .add-table-area .area-right,
  .add-pivot-area .area-right,
  .add-chart-area .area-right,
  .add-location-area .area-right {
    background: #2F373A;
    height: 820px; }
    .add-table-area .area-right .info,
    .add-pivot-area .area-right .info,
    .add-chart-area .area-right .info,
    .add-location-area .area-right .info {
      position: absolute;
      left: -25px;
      padding: 0 15px 0 0; }
      .add-table-area .area-right .info .num,
      .add-pivot-area .area-right .info .num,
      .add-chart-area .area-right .info .num,
      .add-location-area .area-right .info .num {
        position: absolute;
        width: 50px;
        height: 50px;
        border-radius: 25px;
        text-align: center;
        padding-top: 2px;
        font-size: 2em;
        background: #ffffff;
        color: #2F373A;
        border: 1px solid #2F373A;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .add-table-area .area-right .info .num svg,
        .add-pivot-area .area-right .info .num svg,
        .add-chart-area .area-right .info .num svg,
        .add-location-area .area-right .info .num svg {
          display: none;
          color: #ffffff; }
        .add-table-area .area-right .info .num span,
        .add-pivot-area .area-right .info .num span,
        .add-chart-area .area-right .info .num span,
        .add-location-area .area-right .info .num span {
          display: inline;
          line-height: 1;
          margin-bottom: 2px; }
      .add-table-area .area-right .info .num.active,
      .add-pivot-area .area-right .info .num.active,
      .add-chart-area .area-right .info .num.active,
      .add-location-area .area-right .info .num.active {
        background: #0073AE;
        color: #ffffff;
        border: 1px solid #ffffff; }
      .add-table-area .area-right .info .num.complete,
      .add-pivot-area .area-right .info .num.complete,
      .add-chart-area .area-right .info .num.complete,
      .add-location-area .area-right .info .num.complete {
        background: #000000; }
        .add-table-area .area-right .info .num.complete svg,
        .add-pivot-area .area-right .info .num.complete svg,
        .add-chart-area .area-right .info .num.complete svg,
        .add-location-area .area-right .info .num.complete svg {
          display: inline; }
        .add-table-area .area-right .info .num.complete span,
        .add-pivot-area .area-right .info .num.complete span,
        .add-chart-area .area-right .info .num.complete span,
        .add-location-area .area-right .info .num.complete span {
          display: none; }
      .add-table-area .area-right .info .desc,
      .add-pivot-area .area-right .info .desc,
      .add-chart-area .area-right .info .desc,
      .add-location-area .area-right .info .desc {
        margin-left: 70px;
        color: #ffffff;
        opacity: 25%; }
      .add-table-area .area-right .info .desc.active,
      .add-pivot-area .area-right .info .desc.active,
      .add-chart-area .area-right .info .desc.active,
      .add-location-area .area-right .info .desc.active {
        opacity: 100%; }
    .add-table-area .area-right .info-01,
    .add-pivot-area .area-right .info-01,
    .add-chart-area .area-right .info-01,
    .add-location-area .area-right .info-01 {
      top: 157px; }
    .add-table-area .area-right .info-02,
    .add-pivot-area .area-right .info-02,
    .add-chart-area .area-right .info-02,
    .add-location-area .area-right .info-02 {
      top: 374px; }
    .add-table-area .area-right .info-03,
    .add-pivot-area .area-right .info-03,
    .add-chart-area .area-right .info-03,
    .add-location-area .area-right .info-03 {
      top: 591px; }
  .add-table-area .interval-select-box,
  .add-pivot-area .interval-select-box,
  .add-chart-area .interval-select-box,
  .add-location-area .interval-select-box {
    position: absolute;
    top: -40px;
    right: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .add-table-area .interval-select-box .text-label,
    .add-pivot-area .interval-select-box .text-label,
    .add-chart-area .interval-select-box .text-label,
    .add-location-area .interval-select-box .text-label {
      font-weight: bold;
      margin-right: 15px;
      font-size: 14px; }
  .add-table-area .threshold-wrap,
  .add-pivot-area .threshold-wrap,
  .add-chart-area .threshold-wrap,
  .add-location-area .threshold-wrap {
    max-height: 210px;
    overflow-y: auto; }
  .add-table-area .threshold-box,
  .add-pivot-area .threshold-box,
  .add-chart-area .threshold-box,
  .add-location-area .threshold-box {
    display: table;
    width: 100%; }
    .add-table-area .threshold-box .threshold-header,
    .add-table-area .threshold-box .threshold-row,
    .add-pivot-area .threshold-box .threshold-header,
    .add-pivot-area .threshold-box .threshold-row,
    .add-chart-area .threshold-box .threshold-header,
    .add-chart-area .threshold-box .threshold-row,
    .add-location-area .threshold-box .threshold-header,
    .add-location-area .threshold-box .threshold-row {
      display: table-row; }
    .add-table-area .threshold-box .threshold-th,
    .add-table-area .threshold-box .threshold-td,
    .add-pivot-area .threshold-box .threshold-th,
    .add-pivot-area .threshold-box .threshold-td,
    .add-chart-area .threshold-box .threshold-th,
    .add-chart-area .threshold-box .threshold-td,
    .add-location-area .threshold-box .threshold-th,
    .add-location-area .threshold-box .threshold-td {
      display: table-cell; }
    .add-table-area .threshold-box .threshold-th,
    .add-pivot-area .threshold-box .threshold-th,
    .add-chart-area .threshold-box .threshold-th,
    .add-location-area .threshold-box .threshold-th {
      text-align: center;
      font-size: 11px;
      padding: 10px; }
    .add-table-area .threshold-box .threshold-td,
    .add-pivot-area .threshold-box .threshold-td,
    .add-chart-area .threshold-box .threshold-td,
    .add-location-area .threshold-box .threshold-td {
      padding: 0 5px; }
      .add-table-area .threshold-box .threshold-td .form-group,
      .add-table-area .threshold-box .threshold-td .input-group,
      .add-pivot-area .threshold-box .threshold-td .form-group,
      .add-pivot-area .threshold-box .threshold-td .input-group,
      .add-chart-area .threshold-box .threshold-td .form-group,
      .add-chart-area .threshold-box .threshold-td .input-group,
      .add-location-area .threshold-box .threshold-td .form-group,
      .add-location-area .threshold-box .threshold-td .input-group {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin-bottom: 10px; }
      .add-table-area .threshold-box .threshold-td .form-group > .form-group,
      .add-pivot-area .threshold-box .threshold-td .form-group > .form-group,
      .add-chart-area .threshold-box .threshold-td .form-group > .form-group,
      .add-location-area .threshold-box .threshold-td .form-group > .form-group {
        margin: 0; }
      .add-table-area .threshold-box .threshold-td .form-control,
      .add-pivot-area .threshold-box .threshold-td .form-control,
      .add-chart-area .threshold-box .threshold-td .form-control,
      .add-location-area .threshold-box .threshold-td .form-control {
        margin: 0 5px;
        text-align: center; }
      .add-table-area .threshold-box .threshold-td .btn,
      .add-pivot-area .threshold-box .threshold-td .btn,
      .add-chart-area .threshold-box .threshold-td .btn,
      .add-location-area .threshold-box .threshold-td .btn {
        background-color: #fff;
        border: 1px solid #ced4da;
        min-width: 55px; }
      .add-table-area .threshold-box .threshold-td .btn-delete,
      .add-pivot-area .threshold-box .threshold-td .btn-delete,
      .add-chart-area .threshold-box .threshold-td .btn-delete,
      .add-location-area .threshold-box .threshold-td .btn-delete {
        color: #ed0001; }
      .add-table-area .threshold-box .threshold-td .btn-add,
      .add-pivot-area .threshold-box .threshold-td .btn-add,
      .add-chart-area .threshold-box .threshold-td .btn-add,
      .add-location-area .threshold-box .threshold-td .btn-add {
        color: #0073AE; }
      .add-table-area .threshold-box .threshold-td .bar,
      .add-pivot-area .threshold-box .threshold-td .bar,
      .add-chart-area .threshold-box .threshold-td .bar,
      .add-location-area .threshold-box .threshold-td .bar {
        font-size: 14px;
        margin: 0 8px;
        color: #555; }
      .add-table-area .threshold-box .threshold-td .form-input-select .form-control,
      .add-pivot-area .threshold-box .threshold-td .form-input-select .form-control,
      .add-chart-area .threshold-box .threshold-td .form-input-select .form-control,
      .add-location-area .threshold-box .threshold-td .form-input-select .form-control {
        margin: 0; }
      .add-table-area .threshold-box .threshold-td .form-input-select select.form-control,
      .add-pivot-area .threshold-box .threshold-td .form-input-select select.form-control,
      .add-chart-area .threshold-box .threshold-td .form-input-select select.form-control,
      .add-location-area .threshold-box .threshold-td .form-input-select select.form-control {
        margin-left: -5px;
        max-width: 50px; }
      .add-table-area .threshold-box .threshold-td .form-input-select.reverse select.form-control,
      .add-pivot-area .threshold-box .threshold-td .form-input-select.reverse select.form-control,
      .add-chart-area .threshold-box .threshold-td .form-input-select.reverse select.form-control,
      .add-location-area .threshold-box .threshold-td .form-input-select.reverse select.form-control {
        margin-left: 0;
        margin-right: -5px;
        max-width: 50px; }
      .add-table-area .threshold-box .threshold-td .btn-icon,
      .add-pivot-area .threshold-box .threshold-td .btn-icon,
      .add-chart-area .threshold-box .threshold-td .btn-icon,
      .add-location-area .threshold-box .threshold-td .btn-icon {
        padding: 0;
        margin: 0;
        border: none; }
      .add-table-area .threshold-box .threshold-td .icon-action,
      .add-pivot-area .threshold-box .threshold-td .icon-action,
      .add-chart-area .threshold-box .threshold-td .icon-action,
      .add-location-area .threshold-box .threshold-td .icon-action {
        width: 30px;
        min-width: 30px;
        height: 30px;
        background-color: transparent;
        background-image: url("/static/img/icon_no_action.png");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center; }
        .add-table-area .threshold-box .threshold-td .icon-action.on,
        .add-pivot-area .threshold-box .threshold-td .icon-action.on,
        .add-chart-area .threshold-box .threshold-td .icon-action.on,
        .add-location-area .threshold-box .threshold-td .icon-action.on {
          background-image: url("/static/img/icon_action.png"); }
    .add-table-area .threshold-box .value-box .form-control,
    .add-pivot-area .threshold-box .value-box .form-control,
    .add-chart-area .threshold-box .value-box .form-control,
    .add-location-area .threshold-box .value-box .form-control {
      max-width: 80px; }
    .add-table-area .threshold-box .color-box .clr-field input.clr-input-color,
    .add-pivot-area .threshold-box .color-box .clr-field input.clr-input-color,
    .add-chart-area .threshold-box .color-box .clr-field input.clr-input-color,
    .add-location-area .threshold-box .color-box .clr-field input.clr-input-color {
      max-width: 130px;
      text-align: left; }
    .add-table-area .threshold-box .color-box .clr-field button,
    .add-pivot-area .threshold-box .color-box .clr-field button,
    .add-chart-area .threshold-box .color-box .clr-field button,
    .add-location-area .threshold-box .color-box .clr-field button {
      width: 30px !important; }
    .add-table-area .threshold-box .color-box .form-control,
    .add-pivot-area .threshold-box .color-box .form-control,
    .add-chart-area .threshold-box .color-box .form-control,
    .add-location-area .threshold-box .color-box .form-control {
      margin: 0;
      border-top-left-radius: 0.2rem;
      border-bottom-left-radius: 0.2rem; }
    .add-table-area .threshold-box .color-box .btn,
    .add-pivot-area .threshold-box .color-box .btn,
    .add-chart-area .threshold-box .color-box .btn,
    .add-location-area .threshold-box .color-box .btn {
      border-color: #ced4da;
      min-width: 31px !important;
      width: 31px !important;
      height: 31px !important; }

.add-pivot-area .area-left .chart-name {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  margin-bottom: 10px; }
  .add-pivot-area .area-left .chart-name input {
    width: 75%;
    border: 1px solid #bfbfbf;
    background: #f2f2f2;
    border-radius: 0; }
  .add-pivot-area .area-left .chart-name .btn-box {
    position: absolute;
    top: 14px;
    right: 0;
    width: 23%; }

.add-pivot-area .pivot-data {
  height: calc(100% - 110px - 80px); }

.pivot-iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: scroll;
  border: none; }

.pivot-iframe-player {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: scroll;
  border: none; }

.api-area {
  top: calc(50% - 360px);
  left: calc(50% - 600px);
  width: 1200px;
  height: 720px;
  background: #ffffff;
  position: absolute;
  z-index: 2001;
  padding: 10px;
  overflow: hidden; }
  .api-area .header {
    display: flex;
    padding-bottom: 10px; }
  .api-area .left-area {
    padding-left: 5px; }
    .api-area .left-area .request-area {
      padding-top: 5px;
      height: 356px;
      border-top: 1px solid #cccccc;
      border-right: 1px solid #cccccc;
      border-bottom: 1px solid #cccccc; }
      .api-area .left-area .request-area textarea {
        height: 250px; }
      .api-area .left-area .request-area .scroll-area {
        overflow-y: scroll;
        height: 267px; }
    .api-area .left-area .response-area {
      height: 256px;
      border-right: 1px solid #cccccc; }
      .api-area .left-area .response-area .response-text {
        margin-left: -15px;
        width: 800px; }
      .api-area .left-area .response-area .status-code {
        position: absolute;
        right: 10px;
        top: 16px;
        font-size: 0.8em;
        width: 130px; }
        .api-area .left-area .response-area .status-code span {
          color: #0d6efd; }
  .api-area .right-area {
    padding-right: 5px; }
    .api-area .right-area .fields-area {
      border-top: 1px solid #cccccc;
      padding-top: 5px; }
      .api-area .right-area .fields-area .scroll-area {
        overflow-y: scroll;
        height: 495px; }
  .api-area .bottom {
    margin-left: -10px;
    width: calc(100% + 20px);
    height: 50px;
    background: #cccccc;
    padding: 5px; }

.gateway-area {
  top: calc(50% - 360px);
  left: calc(50% - 600px);
  width: 1200px;
  height: 720px;
  background: #ffffff;
  position: absolute;
  z-index: 2001;
  padding: 10px; }
  .gateway-area .header {
    display: flex;
    padding-bottom: 10px; }
  .gateway-area .left-area {
    padding-left: 5px; }
    .gateway-area .left-area .request-area {
      padding-top: 5px;
      height: 412px;
      border-top: 1px solid #cccccc;
      border-right: 1px solid #cccccc;
      border-bottom: 1px solid #cccccc; }
      .gateway-area .left-area .request-area textarea {
        height: 250px; }
      .gateway-area .left-area .request-area .scroll-area {
        overflow-y: scroll;
        height: 267px; }
    .gateway-area .left-area .response-area {
      height: 200px;
      border-right: 1px solid #cccccc; }
      .gateway-area .left-area .response-area .response-text {
        margin-left: -15px;
        width: 800px; }
      .gateway-area .left-area .response-area .status-code {
        position: absolute;
        right: 10px;
        top: 16px;
        font-size: 0.8em;
        width: 130px; }
        .gateway-area .left-area .response-area .status-code span {
          color: #0d6efd; }
  .gateway-area .right-area {
    padding-right: 5px; }
    .gateway-area .right-area .fields-area {
      border-top: 1px solid #cccccc;
      padding-top: 5px; }
      .gateway-area .right-area .fields-area .scroll-area {
        overflow-y: scroll;
        height: 595px; }
  .gateway-area .bottom {
    margin-left: -10px;
    width: calc(100% + 20px);
    height: 50px;
    background: #cccccc;
    padding: 5px; }

.iot-area {
  top: calc(50% - 360px);
  left: calc(50% - 600px);
  width: 1200px;
  height: 720px;
  background: #ffffff;
  position: absolute;
  z-index: 2001;
  padding: 10px; }
  .iot-area .header {
    display: flex;
    padding-bottom: 10px; }
  .iot-area .left-area {
    padding-left: 5px; }
    .iot-area .left-area .request-area {
      padding-top: 5px;
      height: 205px;
      border-top: 1px solid #cccccc;
      border-right: 1px solid #cccccc;
      border-bottom: 1px solid #cccccc; }
      .iot-area .left-area .request-area textarea {
        height: 250px; }
      .iot-area .left-area .request-area .tab-area {
        height: 323px;
        padding: 5px; }
    .iot-area .left-area .response-area {
      height: 420px;
      border-right: 1px solid #cccccc; }
      .iot-area .left-area .response-area .response-text {
        margin-left: -15px;
        width: 800px; }
      .iot-area .left-area .response-area .topic-view {
        margin-top: 5px; }
      .iot-area .left-area .response-area .status {
        text-align: right;
        font-size: 0.8em;
        width: 130px; }
        .iot-area .left-area .response-area .status span {
          color: #0d6efd; }
  .iot-area .right-area {
    padding-right: 5px; }
    .iot-area .right-area .fields-area {
      border-top: 1px solid #cccccc;
      padding-top: 5px; }
      .iot-area .right-area .fields-area .scroll-area {
        overflow-y: scroll;
        height: 495px; }
  .iot-area .bottom {
    margin-left: -10px;
    width: calc(100% + 20px);
    height: 50px;
    background: #cccccc;
    padding: 5px; }

@keyframes spin {
  100% {
    transform: rotate(359deg); } }

@keyframes logo-show-top {
  from {
    stroke-dashoffset: 0; }
  to {
    stroke-dashoffset: -460px; } }

@keyframes logo-show-bottom {
  from {
    stroke-dashoffset: 0; }
  to {
    stroke-dashoffset: 460px; } }

.loading-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: transparent;
  z-index: 1000000; }
  .loading-box.active {
    display: block; }
  .loading-box:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    content: 'LOADING';
    width: 100px;
    margin-left: -50px;
    margin-top: 20px;
    text-align: center; }
  .loading-box .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -30px;
    display: block;
    border-width: 30px;
    border-style: double;
    border-color: #555 #fff #fff;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }
  .loading-box.upload:after {
    display: none; }
  .loading-box .data-loading-box {
    position: fixed;
    /* 화면 기준으로 중앙 정렬 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto; }
    .loading-box .data-loading-box .loading-inner-box {
      display: flex;
      flex-direction: column;
      gap: 10px;
      /* item 간 간격 */ }
    .loading-box .data-loading-box .toe {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 12px;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-family: sans-serif;
      min-width: 250px; }
    .loading-box .data-loading-box .dot-loader {
      display: flex;
      align-items: center;
      gap: 4px;
      height: 12px; }
    .loading-box .data-loading-box .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #666;
      animation: bounce 1.2s infinite ease-in-out; }
    .loading-box .data-loading-box .dot:nth-child(1) {
      animation-delay: 0s; }
    .loading-box .data-loading-box .dot:nth-child(2) {
      animation-delay: 0.2s; }
    .loading-box .data-loading-box .dot:nth-child(3) {
      animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.3; }
  40% {
    transform: scale(1.4);
    opacity: 1; } }
  .loading-box .upload-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 40px;
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .loading-box .upload-box .progress-box {
      position: relative;
      width: 280px;
      height: 100%; }
    .loading-box .upload-box .progress {
      width: 100%;
      height: 100%;
      background-color: #fff; }
    .loading-box .upload-box .progress-bar {
      position: relative;
      background-color: #00b9ff !important; }
      .loading-box .upload-box .progress-bar:after {
        position: absolute;
        display: block;
        content: "";
        background-color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 60px;
        top: -10px;
        right: -52px; }
      .loading-box .upload-box .progress-bar.done:after {
        display: none; }
    .loading-box .upload-box .loading-inner-box {
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      background-color: #fff;
      padding: 3px 80px 3px 15px;
      color: #c7c7c7;
      font-size: 15px; }
      .loading-box .upload-box .loading-inner-box .detail {
        position: absolute;
        top: 4px;
        right: 25px;
        color: #333; }
      .loading-box .upload-box .loading-inner-box .value {
        color: #00b9ff; }
    .loading-box .upload-box .btn {
      background-color: #30373a;
      border-color: #30373a;
      color: #fff;
      padding: 6px 25px;
      font-size: 15px; }
      .loading-box .upload-box .btn:hover, .loading-box .upload-box .btn:focus, .loading-box .upload-box .btn:active, .loading-box .upload-box .btn:not(:disabled):not(.disabled).active, .loading-box .upload-box .btn:not(:disabled):not(.disabled):active {
        background-color: #24292b;
        border-color: #24292b; }

.loading-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transform: translate(-50%, -50%); }
  .loading-svg .sclab-logo-1, .loading-svg .sclab-logo-2 {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 15px; }
  .loading-svg .sclab-logo-1 {
    stroke-dasharray: 230px;
    stroke-dashoffset: -230px;
    animation-name: logo-show-top;
    animation-timing-function: ease-out;
    animation-duration: 3s;
    animation-iteration-count: infinite; }
  .loading-svg .sclab-logo-2 {
    stroke-dasharray: 230px;
    stroke-dashoffset: -230px;
    animation-name: logo-show-bottom;
    animation-timing-function: ease-out;
    animation-duration: 3s;
    animation-iteration-count: infinite; }

.lp-block-loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  vertical-align: middle;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99998; }
  .lp-block-loading.active {
    display: flex; }
  .lp-block-loading .loader-spinner {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-bottom-color: #fff;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }
  .lp-block-loading.clear-dimmed {
    background-color: rgba(0, 0, 0, 0); }
  .lp-block-loading .loading-svg {
    width: 30px; }

.lp-block-loading-nb {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  vertical-align: middle;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
  z-index: 99998; }
  .lp-block-loading-nb.active {
    display: flex; }
  .lp-block-loading-nb .loader-spinner {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-bottom-color: #fff;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }

.thumbnail-list-item {
  padding: 10px; }
  .thumbnail-list-item .thumbnail {
    border: 1px solid #ccc;
    background-color: #fff; }
  .thumbnail-list-item .thumb-box {
    position: relative;
    height: 0;
    padding-bottom: 55.6%;
    overflow: hidden; }
    .thumbnail-list-item .thumb-box img {
      width: 100%; }
    .thumbnail-list-item .thumb-box.mobile-thumb {
      width: 35%;
      margin: 0 auto;
      overflow: visible; }
      .thumbnail-list-item .thumb-box.mobile-thumb > div {
        border: 3px solid #fff;
        box-shadow: 0 0 4px -1px #ccc;
        overflow: hidden; }
  .thumbnail-list-item .caption {
    padding: 10px; }
  .thumbnail-list-item .form-group {
    margin-bottom: 0.5rem; }
  .thumbnail-list-item .btn-area {
    padding-top: 5px; }
    .thumbnail-list-item .btn-area span {
      font-size: 1.3em; }
  .thumbnail-list-item .btn-item {
    padding: 0 4px; }
    @media (min-width: 992px) {
      .thumbnail-list-item .btn-item {
        padding: 0 5px; } }
  .thumbnail-list-item .btn-last {
    padding-right: 15px; }
  @media (min-width: 1200px) {
    .thumbnail-list-item .btn-area {
      padding-top: 10px; }
      .thumbnail-list-item .btn-area span {
        font-size: 1.4em; } }

.iframe-player, .youtube-player {
  position: absolute;
  border: none;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.chart-table-wrap {
  max-height: 630px;
  overflow-y: auto; }
  .chart-table-wrap.sticky-table-box {
    border-top: 1px solid #ccc; }
    .chart-table-wrap.sticky-table-box table {
      position: relative; }
    .chart-table-wrap.sticky-table-box th {
      position: sticky;
      top: -1px;
      background-color: #fff;
      box-shadow: 0 2px 0 -1px #888;
      z-index: 1; }
  .chart-table-wrap .table th,
  .chart-table-wrap .table td {
    font-size: 15px;
    text-align: left;
    white-space: nowrap; }
  .chart-table-wrap .table th {
    border-bottom-color: #888; }
  .chart-table-wrap .table-sm th,
  .chart-table-wrap .table-sm td {
    padding: 0.15rem; }

.tabulator .file-download {
  color: #15a5b7 !important;
  cursor: pointer; }

.lp-common-center .table-popup {
  max-width: 1000px;
  max-height: 800px; }
  .lp-common-center .table-popup .chart-table-wrap .table td:hover {
    position: relative; }
  .lp-common-center .table-popup .chart-table-wrap .table td:hover:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid red; }
  .lp-common-center .table-popup .chart-table-wrap .table td.active {
    position: relative;
    background-color: #ffdddd; }
    .lp-common-center .table-popup .chart-table-wrap .table td.active:before {
      display: block;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 1px solid red; }
  .lp-common-center .table-popup .tabulator {
    width: 100%; }
    .lp-common-center .table-popup .tabulator .tabulator-cell:hover {
      position: relative; }
    .lp-common-center .table-popup .tabulator .tabulator-cell:hover:before {
      display: block;
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 1px solid red; }
    .lp-common-center .table-popup .tabulator .tabulator-cell.active {
      position: relative;
      background-color: #ffdddd; }
      .lp-common-center .table-popup .tabulator .tabulator-cell.active:before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px solid red; }

.defaultPlayer {
  position: absolute;
  display: flex;
  padding: 0 10px;
  width: 100%;
  height: 100%;
  word-break: break-word;
  overflow-y: hidden; }

.editorBody .layout-container,
.siteBody .layout-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  overflow-y: hidden;
  overflow-x: hidden; }

.editorBody .layout-item,
.siteBody .layout-item {
  position: absolute;
  padding: 0; }
  .editorBody .layout-item .layout-warp,
  .siteBody .layout-item .layout-warp {
    width: 100%;
    height: 100%; }
  .editorBody .layout-item .bg,
  .siteBody .layout-item .bg {
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden; }
  .editorBody .layout-item .player-no-permission,
  .siteBody .layout-item .player-no-permission {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    color: #15a5b7; }
  .editorBody .layout-item iframe.layout-item-iframe,
  .siteBody .layout-item iframe.layout-item-iframe {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none; }
  .editorBody .layout-item .content > div,
  .siteBody .layout-item .content > div {
    width: 100%;
    height: 100%;
    border-radius: 0; }
  .editorBody .layout-item .background,
  .siteBody .layout-item .background {
    width: 100%;
    height: 100%;
    border-radius: 0; }
  .editorBody .layout-item .btn.btn-post,
  .siteBody .layout-item .btn.btn-post {
    position: absolute;
    top: 10px;
    padding: 0;
    margin: 0;
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 22px;
    z-index: 1000; }
    .editorBody .layout-item .btn.btn-post.btn-my-location,
    .siteBody .layout-item .btn.btn-post.btn-my-location {
      left: 10px; }
    .editorBody .layout-item .btn.btn-post.btn-view-type,
    .siteBody .layout-item .btn.btn-post.btn-view-type {
      right: 10px; }

.editorBody .popup-info-box,
.siteBody .popup-info-box {
  background-color: #ffffff;
  width: 90%;
  max-width: 386px; }
  .editorBody .popup-info-box .title,
  .siteBody .popup-info-box .title {
    position: relative;
    background-color: #1598A3;
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
    padding: 10px; }
  .editorBody .popup-info-box .btn-close,
  .siteBody .popup-info-box .btn-close {
    position: absolute;
    top: 3px;
    right: 5px;
    border: 0;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    width: 30px;
    height: 30px; }
    .editorBody .popup-info-box .btn-close:before, .editorBody .popup-info-box .btn-close:after,
    .siteBody .popup-info-box .btn-close:before,
    .siteBody .popup-info-box .btn-close:after {
      position: absolute;
      top: 5px;
      left: 14px;
      content: ' ';
      height: 18px;
      width: 2px;
      border-radius: 3px;
      background-color: #ffffff; }
    .editorBody .popup-info-box .btn-close:before,
    .siteBody .popup-info-box .btn-close:before {
      transform: rotate(45deg); }
    .editorBody .popup-info-box .btn-close:after,
    .siteBody .popup-info-box .btn-close:after {
      transform: rotate(-45deg); }
  .editorBody .popup-info-box .popup-body,
  .siteBody .popup-info-box .popup-body {
    padding: 10px 15px; }
  .editorBody .popup-info-box .btn-box,
  .siteBody .popup-info-box .btn-box {
    text-align: center;
    border-top: 1px solid #cdcdcd;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .editorBody .popup-info-box .btn-box .btn,
    .siteBody .popup-info-box .btn-box .btn {
      width: 100%;
      border-radius: 0 !important; }
    .editorBody .popup-info-box .btn-box .btn-primary,
    .siteBody .popup-info-box .btn-box .btn-primary {
      background-color: #30373a;
      border-color: #30373a; }
      .editorBody .popup-info-box .btn-box .btn-primary:hover, .editorBody .popup-info-box .btn-box .btn-primary:focus, .editorBody .popup-info-box .btn-box .btn-primary:active, .editorBody .popup-info-box .btn-box .btn-primary:not(:disabled):not(.disabled).active, .editorBody .popup-info-box .btn-box .btn-primary:not(:disabled):not(.disabled):active,
      .siteBody .popup-info-box .btn-box .btn-primary:hover,
      .siteBody .popup-info-box .btn-box .btn-primary:focus,
      .siteBody .popup-info-box .btn-box .btn-primary:active,
      .siteBody .popup-info-box .btn-box .btn-primary:not(:disabled):not(.disabled).active,
      .siteBody .popup-info-box .btn-box .btn-primary:not(:disabled):not(.disabled):active {
        background-color: #24292b;
        border-color: #24292b; }
    .editorBody .popup-info-box .btn-box .btn-default,
    .siteBody .popup-info-box .btn-box .btn-default {
      background-color: #747c7f;
      border-color: #969696;
      color: #fff; }
      .editorBody .popup-info-box .btn-box .btn-default:hover, .editorBody .popup-info-box .btn-box .btn-default:focus, .editorBody .popup-info-box .btn-box .btn-default:active,
      .siteBody .popup-info-box .btn-box .btn-default:hover,
      .siteBody .popup-info-box .btn-box .btn-default:focus,
      .siteBody .popup-info-box .btn-box .btn-default:active {
        background-color: #686f72; }
  .editorBody .popup-info-box .row-group,
  .siteBody .popup-info-box .row-group {
    margin-bottom: 0.8em; }
    .editorBody .popup-info-box .row-group .label,
    .siteBody .popup-info-box .row-group .label {
      display: inline-block;
      font-size: 14px;
      margin-bottom: 3px; }

.editorBody .popup-gis-info,
.siteBody .popup-gis-info {
  max-width: 500px; }
  .editorBody .popup-gis-info .gis-title,
  .editorBody .popup-gis-info .gis-info-table,
  .siteBody .popup-gis-info .gis-title,
  .siteBody .popup-gis-info .gis-info-table {
    border: 1px solid #bfbfbf;
    background-color: #f2f2f2; }
  .editorBody .popup-gis-info .gis-title,
  .siteBody .popup-gis-info .gis-title {
    padding: 5px 10px;
    font-size: 13px; }
  .editorBody .popup-gis-info .gis-info-table,
  .siteBody .popup-gis-info .gis-info-table {
    padding: 10px; }
    .editorBody .popup-gis-info .gis-info-table .table-box,
    .siteBody .popup-gis-info .gis-info-table .table-box {
      max-height: 350px;
      overflow-y: auto; }
    .editorBody .popup-gis-info .gis-info-table .table,
    .siteBody .popup-gis-info .gis-info-table .table {
      margin-bottom: 0;
      background-color: #fff; }
    .editorBody .popup-gis-info .gis-info-table th, .editorBody .popup-gis-info .gis-info-table td,
    .siteBody .popup-gis-info .gis-info-table th,
    .siteBody .popup-gis-info .gis-info-table td {
      padding: 0.2rem 0.5rem;
      font-size: 12px; }
    .editorBody .popup-gis-info .gis-info-table th,
    .siteBody .popup-gis-info .gis-info-table th {
      min-width: 90px; }
    .editorBody .popup-gis-info .gis-info-table td,
    .siteBody .popup-gis-info .gis-info-table td {
      text-align: right; }
  .editorBody .popup-gis-info .gis-chart-box,
  .siteBody .popup-gis-info .gis-chart-box {
    width: 100%;
    height: 240px; }
  .editorBody .popup-gis-info .gis-info-table.with-chart .gis-chart-box,
  .siteBody .popup-gis-info .gis-info-table.with-chart .gis-chart-box {
    margin-top: 10px; }
  @media (min-width: 768px) {
    .editorBody .popup-gis-info .gis-title,
    .siteBody .popup-gis-info .gis-title {
      font-size: 15px; }
    .editorBody .popup-gis-info .gis-info-table th, .editorBody .popup-gis-info .gis-info-table td,
    .siteBody .popup-gis-info .gis-info-table th,
    .siteBody .popup-gis-info .gis-info-table td {
      font-size: 14px; }
    .editorBody .popup-gis-info .gis-info-table th,
    .siteBody .popup-gis-info .gis-info-table th {
      min-width: 130px; } }

.editorBody .leaflet-container a.leaflet-popup-close-button,
.siteBody .leaflet-container a.leaflet-popup-close-button {
  color: #fff; }

.editorBody .leaflet-popup-content-wrapper,
.editorBody .leaflet-popup-tip,
.siteBody .leaflet-popup-content-wrapper,
.siteBody .leaflet-popup-tip {
  background-color: #15a5b7;
  color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4); }

.editorBody .leaflet-popup-content-wrapper,
.siteBody .leaflet-popup-content-wrapper {
  border-radius: 10px; }

.editorBody .leaflet-popup-tip-container,
.siteBody .leaflet-popup-tip-container {
  margin-top: -1px; }

.editorBody .leaflet-popup-content,
.siteBody .leaflet-popup-content {
  font-size: 13px;
  line-height: 1.6; }

.editorBody .TOOLTIP-COLOR01 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR01 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR01 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR01 .leaflet-popup-tip {
  background-color: #15a5b7;
  color: #fff; }

.editorBody .TOOLTIP-COLOR02 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR02 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR02 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR02 .leaflet-popup-tip {
  background-color: #f73c57;
  color: #fff; }

.editorBody .TOOLTIP-COLOR03 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR03 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR03 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR03 .leaflet-popup-tip {
  background-color: #2091eb;
  color: #fff; }

.editorBody .TOOLTIP-COLOR04 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR04 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR04 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR04 .leaflet-popup-tip {
  background-color: #fb5289;
  color: #fff; }

.editorBody .TOOLTIP-COLOR05 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR05 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR05 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR05 .leaflet-popup-tip {
  background-color: #00c9cc;
  color: #fff; }

.editorBody .TOOLTIP-COLOR06 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR06 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR06 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR06 .leaflet-popup-tip {
  background-color: #00ea90;
  color: #fff; }

.editorBody .TOOLTIP-COLOR07 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR07 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR07 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR07 .leaflet-popup-tip {
  background-color: #ff5a00;
  color: #fff; }

.editorBody .TOOLTIP-COLOR08 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR08 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR08 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR08 .leaflet-popup-tip {
  background-color: #e7e7e7;
  color: #000; }

.editorBody .TOOLTIP-COLOR08 a.leaflet-popup-close-button,
.siteBody .TOOLTIP-COLOR08 a.leaflet-popup-close-button {
  color: #666; }
  .editorBody .TOOLTIP-COLOR08 a.leaflet-popup-close-button:hover,
  .siteBody .TOOLTIP-COLOR08 a.leaflet-popup-close-button:hover {
    color: #888; }

.editorBody .TOOLTIP-COLOR09 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR09 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR09 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR09 .leaflet-popup-tip {
  background-color: #3a89f6;
  color: #fff; }

.editorBody .TOOLTIP-COLOR10 .leaflet-popup-content-wrapper,
.editorBody .TOOLTIP-COLOR10 .leaflet-popup-tip,
.siteBody .TOOLTIP-COLOR10 .leaflet-popup-content-wrapper,
.siteBody .TOOLTIP-COLOR10 .leaflet-popup-tip {
  background-color: #10182f;
  color: #fff; }

.editorBody .reportPopup a.leaflet-popup-close-button,
.siteBody .reportPopup a.leaflet-popup-close-button {
  top: 5px;
  right: 5px; }

.editorBody .reportPopup .leaflet-popup-content-wrapper,
.siteBody .reportPopup .leaflet-popup-content-wrapper {
  position: relative;
  background-color: #fff;
  color: #333;
  border-radius: 0; }

.editorBody .reportPopup .report-popup-wrap,
.siteBody .reportPopup .report-popup-wrap {
  padding-top: 30px;
  padding-bottom: 30px; }
  .editorBody .reportPopup .report-popup-wrap .btn,
  .siteBody .reportPopup .report-popup-wrap .btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background-color: #2f373a;
    color: #fff; }
    .editorBody .reportPopup .report-popup-wrap .btn:hover, .editorBody .reportPopup .report-popup-wrap .btn:focus, .editorBody .reportPopup .report-popup-wrap .btn:active,
    .siteBody .reportPopup .report-popup-wrap .btn:hover,
    .siteBody .reportPopup .report-popup-wrap .btn:focus,
    .siteBody .reportPopup .report-popup-wrap .btn:active {
      background-color: #242a2c; }

.editorBody .reportPopup .report-popup-title,
.siteBody .reportPopup .report-popup-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  background: #57a845;
  padding: 10px 20px;
  background: -moz-linear-gradient(left, #57a845 0%, #0073ae 100%);
  background: -webkit-linear-gradient(left, #57a845 0%, #0073ae 100%);
  background: linear-gradient(to right, #57a845 0%, #0073ae 100%); }

.editorBody .reportPopup .report-row,
.siteBody .reportPopup .report-row {
  margin-bottom: 5px; }

.editorBody .reportPopup .img-wrap,
.siteBody .reportPopup .img-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0; }
  .editorBody .reportPopup .img-wrap li,
  .siteBody .reportPopup .img-wrap li {
    max-width: 50%;
    padding: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .editorBody .reportPopup .img-wrap img,
  .siteBody .reportPopup .img-wrap img {
    max-width: 100%; }

.editorBody .reportPopup .reply-box,
.siteBody .reportPopup .reply-box {
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
  background-color: #f2f2f2;
  border: 1px solid #bfbfbf;
  color: #000; }

.editorBody .reportPopup .leaflet-popup-tip,
.siteBody .reportPopup .leaflet-popup-tip {
  display: none; }

.editorBody .popup-gis-info-wrap,
.siteBody .popup-gis-info-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999; }
  .editorBody .popup-gis-info-wrap a.leaflet-popup-close-button,
  .siteBody .popup-gis-info-wrap a.leaflet-popup-close-button {
    color: #fff;
    z-index: 2;
    top: 10px;
    right: 10px;
    padding: 5px;
    width: auto;
    height: auto; }
  .editorBody .popup-gis-info-wrap .leaflet-popup-content-wrapper,
  .siteBody .popup-gis-info-wrap .leaflet-popup-content-wrapper {
    background-color: transparent;
    box-shadow: none;
    color: #333; }
  .editorBody .popup-gis-info-wrap .leaflet-popup-tip,
  .siteBody .popup-gis-info-wrap .leaflet-popup-tip {
    display: none; }
  .editorBody .popup-gis-info-wrap .leaflet-popup-content,
  .siteBody .popup-gis-info-wrap .leaflet-popup-content {
    margin: 5px; }
  .editorBody .popup-gis-info-wrap .popup-info-box,
  .siteBody .popup-gis-info-wrap .popup-info-box {
    position: relative;
    z-index: 1;
    width: 260px; }
    .editorBody .popup-gis-info-wrap .popup-info-box .title,
    .siteBody .popup-gis-info-wrap .popup-info-box .title {
      padding-right: 30px; }
    @media (min-width: 768px) {
      .editorBody .popup-gis-info-wrap .popup-info-box,
      .siteBody .popup-gis-info-wrap .popup-info-box {
        width: 386px; } }

.editorBody .mobile-view-content .popup-gis-info-wrap .popup-info-box,
.siteBody .mobile-view-content .popup-gis-info-wrap .popup-info-box {
  width: 260px; }

.editorBody .mobile-view-content .popup-gis-info .gis-title,
.siteBody .mobile-view-content .popup-gis-info .gis-title {
  font-size: 13px; }

.editorBody .mobile-view-content .popup-gis-info .gis-info-table th, .editorBody .mobile-view-content .popup-gis-info .gis-info-table td,
.siteBody .mobile-view-content .popup-gis-info .gis-info-table th,
.siteBody .mobile-view-content .popup-gis-info .gis-info-table td {
  font-size: 12px; }

.editorBody .mobile-view-content .popup-gis-info .gis-info-table th,
.siteBody .mobile-view-content .popup-gis-info .gis-info-table th {
  min-width: 90px; }

.siteBody .layout-container {
  background-color: #f4f4f2; }

.chart-player .btn-chart-download,
.pivot-player .btn-chart-download,
.table-player .btn-chart-download {
  position: absolute;
  top: 7px;
  left: 5px;
  padding: 0;
  color: #15a5b7;
  z-index: 100001;
  font-size: 18px; }
  .chart-player .btn-chart-download .icon,
  .pivot-player .btn-chart-download .icon,
  .table-player .btn-chart-download .icon {
    display: block; }

.chart-player .time-series-box,
.pivot-player .time-series-box,
.table-player .time-series-box {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  top: 5px;
  left: 5px;
  z-index: 100001; }
  .chart-player .time-series-box.use-download,
  .pivot-player .time-series-box.use-download,
  .table-player .time-series-box.use-download {
    left: 26px; }
  .chart-player .time-series-box .btn,
  .pivot-player .time-series-box .btn,
  .table-player .time-series-box .btn {
    padding: 2px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #15a5b7;
    line-height: 1; }
    .chart-player .time-series-box .btn svg,
    .pivot-player .time-series-box .btn svg,
    .table-player .time-series-box .btn svg {
      vertical-align: middle; }
  .chart-player .time-series-box .date,
  .pivot-player .time-series-box .date,
  .table-player .time-series-box .date {
    font-size: 12px;
    margin-left: 5px; }
  .chart-player .time-series-box .live,
  .pivot-player .time-series-box .live,
  .table-player .time-series-box .live {
    color: #ff0000;
    font-weight: bold; }
  .chart-player .time-series-box .live:before,
  .pivot-player .time-series-box .live:before,
  .table-player .time-series-box .live:before {
    display: inline-block;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #ff0000;
    margin-right: 4px;
    margin-bottom: 1px; }

.chart-player .search-time-btn-group,
.pivot-player .search-time-btn-group,
.table-player .search-time-btn-group {
  position: absolute;
  top: 30px;
  z-index: 100001; }

.chart-player.chart-download .time-series-box,
.pivot-player.chart-download .time-series-box,
.table-player.chart-download .time-series-box {
  left: 30px; }

.chart-player-setting-box {
  z-index: 100001;
  padding: 0;
  min-width: 280px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; }
  .chart-player-setting-box .setting-title {
    position: relative;
    font-size: 16px;
    background-color: #f2f2f2;
    padding: 10px;
    margin: 0;
    border-radius: .25rem; }
  .chart-player-setting-box .btn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    border: 0;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    transition: opacity .2s; }
    .chart-player-setting-box .btn-close:hover {
      opacity: 1; }
    .chart-player-setting-box .btn-close:before, .chart-player-setting-box .btn-close:after {
      position: absolute;
      top: 5px;
      left: 14px;
      content: ' ';
      height: 18px;
      width: 2px;
      border-radius: 3px;
      background-color: #2f373a; }
    .chart-player-setting-box .btn-close:before {
      transform: rotate(45deg); }
    .chart-player-setting-box .btn-close:after {
      transform: rotate(-45deg); }
  .chart-player-setting-box .setting-btns {
    border-top: 1px solid #ccc; }
    .chart-player-setting-box .setting-btns .btn {
      width: 100%;
      color: #15a5b7; }
  .chart-player-setting-box .setting-body {
    padding: 10px; }
  .chart-player-setting-box .btn-dropdown-file {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 38px; }
    .chart-player-setting-box .btn-dropdown-file svg {
      color: #15a5b7;
      margin-right: 5px; }
    .chart-player-setting-box .btn-dropdown-file:hover, .chart-player-setting-box .btn-dropdown-file:active, .chart-player-setting-box .btn-dropdown-file:focus-visible {
      color: #15a5b7;
      border-color: #15a5b7; }
  .chart-player-setting-box .btn-dropdown-file + .axis-value-box {
    margin-top: 15px; }
  .chart-player-setting-box .axis-value-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px 5px; }
  .chart-player-setting-box .axis-item .label {
    font-size: 13px;
    margin-bottom: 3px;
    padding: 0 10px; }
    .chart-player-setting-box .axis-item .label .name {
      color: #15a5b7; }
  .chart-player-setting-box .axis-item .input-box-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .chart-player-setting-box .axis-item .form-group {
    width: 50%;
    margin: 0 10px; }
  .chart-player-setting-box .axis-item .form-group + .form-group {
    margin-top: 0; }
  .chart-player-setting-box .axis-item .form-control {
    width: 100px;
    min-width: 100px; }
  .chart-player-setting-box .axis-item + .axis-item {
    margin-top: 10px; }

.color-line-chart {
  display: block;
  width: 100%;
  height: 100%; }
  .color-line-chart .boxs {
    position: relative;
    padding: 0;
    color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0); }
    .color-line-chart .boxs .boxs-inner {
      display: block;
      padding: 15px; }
      .color-line-chart .boxs .boxs-inner.invisible-box {
        padding: 0;
        height: 15px;
        overflow: hidden;
        visibility: hidden; }
    .color-line-chart .boxs .title {
      display: block;
      padding: 0;
      font-size: 12px;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase; }
    .color-line-chart .boxs .nums {
      padding: 0 0 20px;
      margin: 0;
      font-size: 2em;
      line-height: 1.1; }
    .color-line-chart .boxs .chart-hr {
      height: 1px;
      padding: 0;
      margin: 0 -15px;
      border: 0;
      background-color: rgba(255, 255, 255, 0.8);
      box-sizing: content-box;
      overflow: visible; }
    .color-line-chart .boxs .percent {
      font-size: 13px;
      font-weight: bold;
      vertical-align: middle; }
    .color-line-chart .boxs .canvas-wrap {
      position: relative;
      flex: 1; }
      .color-line-chart .boxs .canvas-wrap canvas {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100% !important;
        height: 100% !important; }
  .color-line-chart .arrows:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    content: '';
    vertical-align: middle;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent; }
  .color-line-chart .arrows-up:after {
    border-top: 0;
    border-bottom: 4px solid; }
  .color-line-chart .arrows-down:after {
    border-bottom: 0;
    border-top: 4px solid; }

.search-time-btn-group {
  border-radius: 8px;
  border: 1px solid #15a5b7;
  display: inline-block;
  background-color: #fff; }
  .search-time-btn-group .btn-group-box {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap; }
  .search-time-btn-group .btn {
    font-size: 14px;
    margin: 0.3rem;
    padding: 3px 8px; }
  .search-time-btn-group .btn-with-right-icon {
    position: relative;
    padding-right: 30px; }
    .search-time-btn-group .btn-with-right-icon .icon-cal {
      position: absolute;
      font-size: 20px;
      top: 50%;
      margin-top: -15px;
      right: 5px; }
  .search-time-btn-group .btn-item:hover, .search-time-btn-group .btn-item.active {
    outline: none !important;
    box-shadow: none;
    color: #15a5b7; }
  .search-time-btn-group .btn-item:focus, .search-time-btn-group .btn-item:active {
    outline: none !important;
    box-shadow: none; }
  .search-time-btn-group .btn-item:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important; }

.message-box-btn {
  border-radius: 5px;
  background-color: #1598A3 !important;
  overflow: hidden;
  z-index: 2001 !important; }
  .message-box-btn.message-box-btn-close {
    width: 1px;
    height: 1px;
    box-shadow: none;
    visibility: hidden; }

.message-content-box {
  flex: 1;
  overflow-y: auto; }
  .message-content-box .message-bar-text,
  .message-content-box .message-item {
    padding: 5px 10px; }
  .message-content-box .message-bar-text {
    position: relative;
    text-align: center; }
    .message-content-box .message-bar-text .h-line {
      display: block;
      height: 1px;
      top: 50%;
      content: "";
      position: absolute;
      left: 15px;
      right: 15px;
      background-color: #bfbfbf;
      z-index: 1; }
    .message-content-box .message-bar-text .text {
      position: relative;
      font-size: 12px;
      color: #404040;
      display: inline-block;
      padding: 0 10px;
      background-color: #fff;
      z-index: 2; }
  .message-content-box .message-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    color: #333;
    font-size: 12px; }
    .message-content-box .message-item .user-thumb {
      width: 26px;
      height: 26px;
      border-radius: 26px;
      overflow: hidden;
      margin-right: 5px;
      background-color: #dcdcdc;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .message-content-box .message-item .user-thumb img {
        max-width: 70%;
        vertical-align: middle; }
    .message-content-box .message-item .user-message {
      flex: 1;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
    .message-content-box .message-item .user-text {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .message-content-box .message-item .user-text .message {
        display: inline-block;
        max-width: 75%;
        padding: 10px;
        background-color: #f8f8f8;
        border-radius: 6px; }
      .message-content-box .message-item .user-text .user-btns {
        padding: 0 5px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: end;
        flex-pack: end;
        -webkit-justify-content: flex-end;
        -moz-box-justify-content: flex-end;
        -ms-justify-content: flex-end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end; }
      .message-content-box .message-item .user-text .icon-button {
        display: inline-block;
        width: 15px;
        padding: 0;
        border: 0;
        background-color: transparent;
        color: #777; }
      .message-content-box .message-item .user-text .time {
        font-size: 11px; }
    .message-content-box .message-item.me {
      -webkit-box-flex-direction: row-reverse;
      -moz-box-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      -webkit-flex-direction: row-reverse;
      flex-direction: row-reverse; }
      .message-content-box .message-item.me .user-thumb,
      .message-content-box .message-item.me .user-name {
        display: none; }
      .message-content-box .message-item.me .user-message {
        -ms-flex-align: end;
        flex-align: end;
        -webkit-align-items: flex-end;
        -moz-box-align-items: flex-end;
        -ms-align-items: flex-end;
        -webkit-align-items: flex-end;
        align-items: flex-end; }
      .message-content-box .message-item.me .user-text {
        -webkit-box-flex-direction: row-reverse;
        -moz-box-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse; }
        .message-content-box .message-item.me .user-text .message {
          background-color: #1598A3;
          color: #fff; }
        .message-content-box .message-item.me .user-text .user-btns {
          -ms-flex-align: end;
          flex-align: end;
          -webkit-align-items: flex-end;
          -moz-box-align-items: flex-end;
          -ms-align-items: flex-end;
          -webkit-align-items: flex-end;
          align-items: flex-end; }

.message-input-box label.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  top: -999em;
  left: -999em;
  visibility: hidden; }

.message-input-box .message-input {
  border: 0;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-top: 1px solid #f1f1f1; }
  .message-input-box .message-input:focus {
    outline: 0;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1); }

.sclab-search-box {
  margin-bottom: 0; }
  .sclab-search-box .form-control {
    background-color: #f5f8fa;
    border-color: #c9c9c9;
    font-size: 18px;
    padding: .65rem .75rem;
    border-radius: 10px; }

.list-search-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }
  .list-search-box .form-check {
    font-size: 14px;
    margin-bottom: 5px; }
    .list-search-box .form-check .form-check-input {
      margin-left: -1.5em;
      margin-top: .05rem; }
  .list-search-box .select-box {
    position: relative;
    width: 100%;
    margin-bottom: 5px; }
    .list-search-box .select-box .dropdown-toggle {
      position: relative;
      width: 100%;
      text-align: left;
      border: 1px solid #ccc;
      border-radius: 0;
      font-size: 14px;
      padding-right: 40px; }
    .list-search-box .select-box .dropdown-toggle:after {
      position: absolute;
      top: 50%;
      right: 10px;
      margin-top: -2px;
      z-index: 1; }
    .list-search-box .select-box .dropdown-menu {
      width: 100%;
      max-height: 30vh;
      margin-top: 0;
      border-radius: 0;
      overflow-y: auto;
      min-width: inherit;
      padding: 0; }
    .list-search-box .select-box .dropdown-menu > li > button {
      display: block;
      width: 100%;
      padding: 10px;
      font-size: 13px;
      color: inherit;
      cursor: pointer;
      background-color: transparent;
      border: 0;
      text-align: left; }
      .list-search-box .select-box .dropdown-menu > li > button:hover, .list-search-box .select-box .dropdown-menu > li > button:focus, .list-search-box .select-box .dropdown-menu > li > button:active {
        background-color: #f8f8f8;
        outline: none; }
  .list-search-box .search-box .form-control {
    font-size: 14px; }
  .list-search-box .search-box .input-group-addon {
    border: 1px solid #ced4da;
    border-left: 0;
    padding-left: 15px;
    padding-right: 15px;
    color: #585858; }
  @media (min-width: 992px) {
    .list-search-box {
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-flex-direction: row;
      -moz-box-flex-direction: row;
      -ms-flex-direction: row;
      -webkit-flex-direction: row;
      flex-direction: row; }
      .list-search-box .form-check {
        margin-bottom: 0;
        margin-right: 10px; }
      .list-search-box .select-box {
        min-width: 130px;
        width: auto;
        margin-bottom: 0;
        margin-right: 10px; } }

.category-nav .nav-link {
  opacity: .5;
  border-radius: 0; }
  .category-nav .nav-link span {
    display: block;
    border-bottom: 2px solid transparent;
    padding: 0 3px; }
  .category-nav .nav-link:hover, .category-nav .nav-link:focus, .category-nav .nav-link:active {
    outline: none;
    box-shadow: none;
    opacity: 1; }
    .category-nav .nav-link:hover span, .category-nav .nav-link:focus span, .category-nav .nav-link:active span {
      border-bottom-color: #15a5b7; }
  .category-nav .nav-link.active {
    opacity: 1; }
    .category-nav .nav-link.active span {
      border-bottom-color: #15a5b7; }

.pin-view {
  position: absolute;
  z-index: 1000; }

.popup-pin-view-list {
  width: 400px;
  background-color: #ffffff;
  border: 1px solid #737373;
  display: flex;
  flex-direction: column; }
  .popup-pin-view-list .content-box {
    padding: 10px 5px; }
  .popup-pin-view-list .title {
    font-size: 18px;
    background-color: #1598A3;
    color: #ffffff;
    padding: 10px;
    margin: 0; }
  .popup-pin-view-list .btn-close {
    align-self: flex-end;
    margin-top: -35px;
    border: 0;
    cursor: pointer;
    background-color: transparent;
    width: 30px;
    height: 30px;
    transition: opacity .2s; }
    .popup-pin-view-list .btn-close:hover {
      opacity: 1; }
    .popup-pin-view-list .btn-close:before {
      transform: rotate(45deg); }
    .popup-pin-view-list .btn-close:after {
      transform: rotate(-45deg); }
  .popup-pin-view-list ul {
    padding: 0 10px;
    margin-bottom: 0;
    max-height: 450px;
    overflow-y: auto; }
  .popup-pin-view-list .list-item {
    display: block;
    width: 100%;
    height: 32px;
    border: 1px solid #ccc;
    text-align: left;
    padding: 5px 10px 3px;
    border-radius: 5px;
    color: #555;
    background-color: transparent;
    margin: 2px;
    cursor: pointer; }
    .popup-pin-view-list .list-item:hover, .popup-pin-view-list .list-item:focus, .popup-pin-view-list .list-item:active {
      background-color: #1598A3; }

.page-category-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1999; }
  .page-category-wrap .paging-btn-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 100%;
    display: none;
    border-left: 1px solid #b3b3b3; }
    .page-category-wrap .paging-btn-box .btn {
      float: left;
      padding: 0;
      border: 0;
      color: inherit;
      width: 50%;
      height: 35px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      font-size: 26px;
      border-radius: 0; }
      .page-category-wrap .paging-btn-box .btn:last-child {
        border-left: 1px solid #b3b3b3; }
    .page-category-wrap .paging-btn-box .disabled {
      cursor: default; }
  .page-category-wrap.show-paging {
    padding-right: 90px; }
    .page-category-wrap.show-paging .paging-btn-box {
      display: block; }
  .page-category-wrap .category-nav-box {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0; }
    .page-category-wrap .category-nav-box > ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      margin: 0;
      height: 100%; }
    .page-category-wrap .category-nav-box .category-item {
      position: relative;
      width: auto;
      max-width: 260px;
      min-width: 200px;
      height: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      font-size: 16px; }
      .page-category-wrap .category-nav-box .category-item .icon {
        display: inline-block;
        width: 26px;
        height: 26px;
        min-width: 26px;
        overflow: hidden;
        margin-right: 5px; }
        .page-category-wrap .category-nav-box .category-item .icon img {
          width: 100%;
          height: 100%; }
      .page-category-wrap .category-nav-box .category-item > a,
      .page-category-wrap .category-nav-box .category-item > button {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        padding: 5px 15px;
        color: inherit;
        width: 100%;
        height: 100%;
        background-color: transparent;
        border: 0; }
        .page-category-wrap .category-nav-box .category-item > a:focus,
        .page-category-wrap .category-nav-box .category-item > button:focus {
          outline: none !important; }
      .page-category-wrap .category-nav-box .category-item > a:hover {
        text-decoration: none; }
      .page-category-wrap .category-nav-box .category-item > button {
        padding-right: 30px; }
      .page-category-wrap .category-nav-box .category-item .dropdown-toggle:before,
      .page-category-wrap .category-nav-box .category-item .dropdown-toggle:after {
        border-width: .45em; }
      .page-category-wrap .category-nav-box .category-item.dropdown .dropdown-toggle:after, .page-category-wrap .category-nav-box .category-item.dropup .dropdown-toggle:after {
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -4px; }
      .page-category-wrap .category-nav-box .category-item.dropright .dropdown-toggle:after {
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -8px; }
      .page-category-wrap .category-nav-box .category-item.dropleft .dropdown-toggle {
        padding-right: 15px; }
      .page-category-wrap .category-nav-box .category-item.dropleft .dropdown-toggle:before {
        margin-right: 10px; }
      .page-category-wrap .category-nav-box .category-item:after {
        display: block;
        content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        right: 0;
        width: 1px;
        background-color: #b3b3b3; }
      .page-category-wrap .category-nav-box .category-item .svg-inline--fa {
        display: block;
        font-size: 22px;
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -11px; }
    .page-category-wrap .category-nav-box .category-popup-box {
      position: absolute;
      width: 64px;
      height: 100%;
      top: 0;
      right: 0; }
    .page-category-wrap .category-nav-box .btn-category-popup {
      width: 100%;
      height: 100%;
      padding: 0;
      border: none;
      color: inherit;
      font-size: 29px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center; }
  .page-category-wrap .dropdown-menu {
    padding: 10px;
    width: 100%; }
    .page-category-wrap .dropdown-menu .dropdown-item {
      position: relative;
      font-size: 14px;
      border: 1px solid #ccc !important;
      border-radius: 3px;
      margin-bottom: 3px;
      padding: 0 !important; }
      .page-category-wrap .dropdown-menu .dropdown-item:hover, .page-category-wrap .dropdown-menu .dropdown-item:focus {
        background-color: #f8f9fa; }
      .page-category-wrap .dropdown-menu .dropdown-item:active {
        background-color: #15a5b7; }
      .page-category-wrap .dropdown-menu .dropdown-item.active {
        background-color: #15a5b7; }
        .page-category-wrap .dropdown-menu .dropdown-item.active a {
          color: #fff; }
      .page-category-wrap .dropdown-menu .dropdown-item a {
        padding: 5px 20px 5px 10px;
        display: block;
        color: #333; }
        .page-category-wrap .dropdown-menu .dropdown-item a:hover {
          text-decoration: none; }
      .page-category-wrap .dropdown-menu .dropdown-item .btn {
        position: absolute;
        display: block;
        padding: 0;
        width: auto;
        top: 0;
        right: 5px;
        font-size: 14px;
        color: #888; }
      .page-category-wrap .dropdown-menu .dropdown-item:last-child {
        margin-bottom: 0; }
  .page-category-wrap .dropdown-category-popup {
    padding: 0;
    border: 0;
    background-color: transparent;
    width: auto;
    margin: 30px 10px; }
  .page-category-wrap.category-position-LEFT .paging-btn-box, .page-category-wrap.category-position-RIGHT .paging-btn-box {
    width: 100%;
    height: 80px;
    top: auto;
    bottom: 0;
    border-left: 0;
    border-top: 1px solid #b3b3b3; }
    .page-category-wrap.category-position-LEFT .paging-btn-box .btn, .page-category-wrap.category-position-RIGHT .paging-btn-box .btn {
      width: 100%;
      height: 50%; }
      .page-category-wrap.category-position-LEFT .paging-btn-box .btn:last-child, .page-category-wrap.category-position-RIGHT .paging-btn-box .btn:last-child {
        border-left: 0;
        border-top: 1px solid #b3b3b3; }
      .page-category-wrap.category-position-LEFT .paging-btn-box .btn svg, .page-category-wrap.category-position-RIGHT .paging-btn-box .btn svg {
        transform: rotate(90deg); }
  .page-category-wrap.category-position-LEFT.show-paging, .page-category-wrap.category-position-RIGHT.show-paging {
    padding-right: 0;
    padding-bottom: 80px; }
  .page-category-wrap.category-position-LEFT .category-nav-box, .page-category-wrap.category-position-RIGHT .category-nav-box {
    width: 100%;
    height: auto; }
    .page-category-wrap.category-position-LEFT .category-nav-box ul, .page-category-wrap.category-position-RIGHT .category-nav-box ul {
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
    .page-category-wrap.category-position-LEFT .category-nav-box .category-item, .page-category-wrap.category-position-RIGHT .category-nav-box .category-item {
      max-width: 100%;
      min-width: 100%;
      height: 45px; }
      .page-category-wrap.category-position-LEFT .category-nav-box .category-item:after, .page-category-wrap.category-position-RIGHT .category-nav-box .category-item:after {
        top: auto;
        bottom: 0;
        left: 10px;
        right: 10px;
        width: auto;
        height: 1px; }
  .page-category-wrap.category-position-LEFT .dropdown-category-popup, .page-category-wrap.category-position-RIGHT .dropdown-category-popup {
    margin: 10px 30px; }

.poweredBy-box {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  padding: 0.3em 0.5em;
  border-radius: 5px;
  color: #fff;
  bottom: 10px;
  right: 10px;
  white-space: nowrap;
  z-index: 2001; }
  .poweredBy-box img {
    width: 65px; }

.category-position-BOTTOM {
  height: 35px;
  bottom: 0;
  left: 0; }
  .category-position-BOTTOM .poweredBy-box {
    position: absolute;
    bottom: 3px;
    right: 5px;
    background-color: transparent; }
  .category-position-BOTTOM .poweredBy-box.float {
    background-color: rgba(0, 0, 0, 0.15);
    bottom: 40px; }

.category-position-TOP {
  height: 35px;
  top: 0;
  left: 0; }

.category-position-LEFT {
  width: 12%;
  max-width: 170px;
  top: 0;
  left: 0; }
  .category-position-LEFT .poweredBy-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: auto;
    background-color: transparent; }
  .category-position-LEFT .poweredBy-box.float {
    background-color: rgba(0, 0, 0, 0.15);
    left: 175px; }

.category-position-RIGHT {
  width: 12%;
  max-width: 170px;
  top: 0;
  right: 0; }
  .category-position-RIGHT .poweredBy-box {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: transparent; }
  .category-position-RIGHT .poweredBy-box.float {
    background-color: rgba(0, 0, 0, 0.15);
    right: 175px; }

.layout-link-area {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100000; }

.tutorial-popup-area {
  position: relative;
  width: 756px;
  height: 608px;
  background-color: #fff;
  z-index: 2001; }

.tutorial-content-box {
  width: 100%;
  height: 100%; }
  .tutorial-content-box .carousel-indicators {
    margin: 0;
    bottom: 35px; }
    .tutorial-content-box .carousel-indicators li {
      width: 40px;
      height: 12px;
      background-color: #e6e6e6;
      opacity: 1;
      border-radius: 18px;
      border: 0;
      margin: 0 9px;
      transition: background-color 0.6s ease 0s; }
      .tutorial-content-box .carousel-indicators li.active {
        background-color: #15a5b7; }
  .tutorial-content-box .carousel-control-prev,
  .tutorial-content-box .carousel-control-next {
    width: 75px;
    display: none;
    opacity: 1; }
    .tutorial-content-box .carousel-control-prev.on,
    .tutorial-content-box .carousel-control-next.on {
      display: block; }
    .tutorial-content-box .carousel-control-prev .carousel-control-prev-icon,
    .tutorial-content-box .carousel-control-prev .carousel-control-next-icon,
    .tutorial-content-box .carousel-control-next .carousel-control-prev-icon,
    .tutorial-content-box .carousel-control-next .carousel-control-next-icon {
      position: absolute;
      background-image: none;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .tutorial-content-box .carousel-control-prev .carousel-control-prev-icon:before, .tutorial-content-box .carousel-control-prev .carousel-control-prev-icon:after,
      .tutorial-content-box .carousel-control-prev .carousel-control-next-icon:before,
      .tutorial-content-box .carousel-control-prev .carousel-control-next-icon:after,
      .tutorial-content-box .carousel-control-next .carousel-control-prev-icon:before,
      .tutorial-content-box .carousel-control-next .carousel-control-prev-icon:after,
      .tutorial-content-box .carousel-control-next .carousel-control-next-icon:before,
      .tutorial-content-box .carousel-control-next .carousel-control-next-icon:after {
        position: relative;
        display: block;
        content: "";
        width: 30px;
        height: 7px;
        border-radius: 7px;
        background-color: #4d4d4d; }
    .tutorial-content-box .carousel-control-prev .carousel-control-prev-icon:before,
    .tutorial-content-box .carousel-control-next .carousel-control-prev-icon:before {
      left: -6px;
      top: -3px;
      transform: rotate(-45deg); }
    .tutorial-content-box .carousel-control-prev .carousel-control-prev-icon:after,
    .tutorial-content-box .carousel-control-next .carousel-control-prev-icon:after {
      left: -6px;
      top: 7px;
      transform: rotate(45deg); }
    .tutorial-content-box .carousel-control-prev .carousel-control-next-icon:before,
    .tutorial-content-box .carousel-control-next .carousel-control-next-icon:before {
      right: 3px;
      top: -3px;
      transform: rotate(45deg); }
    .tutorial-content-box .carousel-control-prev .carousel-control-next-icon:after,
    .tutorial-content-box .carousel-control-next .carousel-control-next-icon:after {
      right: 3px;
      top: 7px;
      transform: rotate(-45deg); }
  .tutorial-content-box .carousel-inner {
    height: 100%; }
    .tutorial-content-box .carousel-inner .carousel-item {
      width: 100%;
      height: 100%;
      padding: 30px 75px 80px; }
    .tutorial-content-box .carousel-inner .item-title {
      font-size: 23px;
      margin-bottom: 20px; }

.survey-view-box {
  width: 100%;
  height: 100%; }
  .survey-view-box .survey-content-header {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px; }
    .survey-view-box .survey-content-header .survey-title {
      font-size: 20px;
      padding: 10px;
      margin-bottom: 10px; }
    .survey-view-box .survey-content-header .survey-content img {
      max-width: 100%; }
    .survey-view-box .survey-content-header .survey-content iframe {
      max-width: 100%; }
  .survey-view-box .survey-content-body {
    border-top: 1px solid #999;
    margin-top: 10px; }
    .survey-view-box .survey-content-body .survey-item-box {
      padding: 10px 0; }
    .survey-view-box .survey-content-body .btn-box {
      padding: 10px 0;
      border-top: 1px solid #999;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .survey-view-box .survey-content-body .btn-box .btn {
        display: block;
        flex: 1;
        margin: 0 0.15rem; }
  .survey-view-box .survey-view-item {
    width: 100%;
    background-color: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px; }
    .survey-view-box .survey-view-item:last-child {
      margin-bottom: 0; }
    .survey-view-box .survey-view-item .question {
      margin-bottom: 10px; }
    .survey-view-box .survey-view-item .required {
      display: inline-block;
      vertical-align: top;
      margin: 0 5px;
      color: #15a5b7; }
    .survey-view-box .survey-view-item .img-box {
      margin-bottom: 10px; }
      .survey-view-box .survey-view-item .img-box img {
        max-width: 100%; }
    .survey-view-box .survey-view-item .item-box .form-control {
      border-radius: 0;
      font-size: .9rem;
      line-height: 1.4; }
    .survey-view-box .survey-view-item .item-box textarea.form-control {
      height: 35px; }
    .survey-view-box .survey-view-item .checkbox-box .form-check {
      padding-left: 2em; }
      .survey-view-box .survey-view-item .checkbox-box .form-check .form-check-input {
        margin-left: -1.8em;
        margin-top: .5rem; }
      .survey-view-box .survey-view-item .checkbox-box .form-check .form-check-label {
        display: block;
        border: 1px solid #ced4da;
        line-height: 1.4;
        padding: 6px; }
    .survey-view-box .survey-view-item .linear-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .survey-view-box .survey-view-item .linear-box .start-label,
      .survey-view-box .survey-view-item .linear-box .end-label {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        max-width: 90px; }
      .survey-view-box .survey-view-item .linear-box .start-label {
        text-align: left; }
      .survey-view-box .survey-view-item .linear-box .end-label {
        text-align: right; }
      .survey-view-box .survey-view-item .linear-box .scale-box {
        flex: 1;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: start;
        flex-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align-items: flex-start;
        -ms-align-items: flex-start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        flex-wrap: wrap; }
      .survey-view-box .survey-view-item .linear-box .scale-item {
        flex: 1;
        min-width: 20%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        height: 45px; }
      .survey-view-box .survey-view-item .linear-box .form-check {
        display: inline-block;
        margin: 0;
        padding: 0; }
      .survey-view-box .survey-view-item .linear-box .form-check-input {
        position: initial;
        margin: 0; }
      .survey-view-box .survey-view-item .linear-box .form-check-label {
        margin-bottom: 0; }
    .survey-view-box .survey-view-item .grid-box {
      width: 100%;
      padding: 10px;
      overflow-x: auto; }
      .survey-view-box .survey-view-item .grid-box .grid-table {
        display: table;
        width: 100%; }
      .survey-view-box .survey-view-item .grid-box .grid-row {
        display: table-row; }
        .survey-view-box .survey-view-item .grid-box .grid-row.header {
          position: inherit;
          z-index: 2000;
          width: auto;
          height: auto;
          box-shadow: none;
          background-color: transparent; }
        .survey-view-box .survey-view-item .grid-box .grid-row.header .grid-th {
          text-align: center; }
      .survey-view-box .survey-view-item .grid-box .grid-th,
      .survey-view-box .survey-view-item .grid-box .grid-td {
        display: table-cell;
        height: 32px;
        vertical-align: middle;
        padding: 3px;
        min-width: 80px;
        max-width: 100px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
      .survey-view-box .survey-view-item .grid-box .grid-th:first-child {
        min-width: 60px;
        max-width: 80px; }
      .survey-view-box .survey-view-item .grid-box .grid-td {
        text-align: center;
        vertical-align: middle; }
      .survey-view-box .survey-view-item .grid-box .grid-td:first-child {
        min-width: 60px;
        max-width: 80px; }
      .survey-view-box .survey-view-item .grid-box .grid-td .form-check {
        padding: 0;
        margin: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center; }
        .survey-view-box .survey-view-item .grid-box .grid-td .form-check .form-check-input {
          position: initial;
          margin: 0; }
      .survey-view-box .survey-view-item .grid-box.over-table {
        position: relative;
        overflow: hidden; }
        .survey-view-box .survey-view-item .grid-box.over-table:before {
          position: absolute;
          display: block;
          content: "";
          top: 0;
          right: 0;
          bottom: 0;
          width: 50px;
          box-shadow: inset -30px 0 20px #fff; }
    .survey-view-box .survey-view-item .date-box {
      position: relative;
      padding-right: 60px; }
      .survey-view-box .survey-view-item .date-box .icon {
        position: absolute;
        top: 0;
        right: 20px;
        font-size: 24px; }
      .survey-view-box .survey-view-item .date-box input[type=date].form-control::-webkit-calendar-picker-indicator,
      .survey-view-box .survey-view-item .date-box input[type=time].form-control::-webkit-calendar-picker-indicator {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        color: transparent;
        background: transparent; }
    .survey-view-box .survey-view-item .file-box {
      position: relative;
      padding-right: 60px; }
      .survey-view-box .survey-view-item .file-box .file-label {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1; }
      .survey-view-box .survey-view-item .file-box .icon {
        position: absolute;
        top: 3px;
        right: 18px;
        font-size: 22px; }
    .survey-view-box .survey-view-item .location-box .form-control {
      padding-right: 30px; }
    .survey-view-box .survey-view-item .location-box .input-group-append {
      position: relative; }
    .survey-view-box .survey-view-item .location-box .icon {
      position: absolute;
      top: 3px;
      padding: 0 5px;
      left: -26px;
      z-index: 10;
      font-size: 20px;
      color: #333; }
    .survey-view-box .survey-view-item .location-box .btn {
      font-size: 14px;
      background-color: #f4f4f2;
      border: 1px solid #ced4da; }
    .survey-view-box .survey-view-item .location-box .switch-box {
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .survey-view-box .survey-view-item .location-box .switch-box .switch-label {
        font-size: 12px; }
    .survey-view-box .survey-view-item .picture-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-wrap: wrap;
      -moz-box-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
      .survey-view-box .survey-view-item .picture-box .picture-item {
        width: 50%;
        padding: 0.5rem; }
      .survey-view-box .survey-view-item .picture-box .btn-picture-add.hide {
        display: none; }
      .survey-view-box .survey-view-item .picture-box .img-box {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 0; }
        .survey-view-box .survey-view-item .picture-box .img-box .remove {
          position: absolute;
          top: 3px;
          right: 3px;
          width: 20px;
          height: 20px;
          border: 0;
          padding: 0;
          margin: 0;
          background-color: rgba(0, 0, 0, 0.5);
          border-radius: 20px;
          color: #fff;
          font-size: 16px;
          z-index: 10;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center; }
        .survey-view-box .survey-view-item .picture-box .img-box img {
          display: block;
          position: absolute;
          width: 100%;
          height: 100%;
          object-fit: cover;
          z-index: 9; }
        .survey-view-box .survey-view-item .picture-box .img-box .file-label {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          -webkit-box-flex-direction: column;
          -moz-box-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column; }
          .survey-view-box .survey-view-item .picture-box .img-box .file-label .icon {
            border: 1px solid #ccc;
            padding: 5px;
            margin-bottom: 5px;
            font-size: 20px; }
          .survey-view-box .survey-view-item .picture-box .img-box .file-label .text {
            font-size: 12px; }
    .survey-view-box .survey-view-item .category-box .selected-post-box {
      padding: 5px 10px; }
    .survey-view-box .survey-view-item .category-box .selected-post-item {
      position: relative;
      margin: 5px 0; }
      .survey-view-box .survey-view-item .category-box .selected-post-item span {
        display: block;
        padding: 5px 30px 5px 10px;
        border: 1px solid #ccc; }
      .survey-view-box .survey-view-item .category-box .selected-post-item .btn {
        position: absolute;
        top: 50%;
        margin-top: -18px;
        right: 0;
        padding: 5px 10px; }

.layout-item .survey-view-box {
  overflow: auto; }
  .layout-item .survey-view-box .survey-content-wrap {
    width: 100%;
    min-width: 300px;
    padding: 10px; }
    @media (min-width: 768px) {
      .layout-item .survey-view-box .survey-content-wrap {
        min-width: 400px; } }

.survey-view-box.mobile-form {
  height: auto;
  padding: 10px; }
  .survey-view-box.mobile-form .survey-content-body {
    margin-top: 0;
    border-top: 0; }
  .survey-view-box.mobile-form .survey-item-box {
    padding-top: 0; }

.image-view-modal {
  width: 100% !important;
  max-width: 1024px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  min-height: 50px;
  overflow: visible !important; }
  .image-view-modal .btn-close {
    position: absolute;
    padding: 0;
    top: 10px;
    right: 10px;
    margin: 0;
    border: 0;
    color: #fff;
    font-size: 20px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background-color: rgba(0, 0, 0, 0.5); }
  .image-view-modal .lcb-content {
    padding: 5px; }
    .image-view-modal .lcb-content img {
      max-width: 100%; }

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */ }

.site-post-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 320px;
  height: 568px;
  z-index: 10000;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }
  .site-post-wrap .btn-round {
    position: absolute;
    top: 10px;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 30; }
  .site-post-wrap .btn-handle {
    left: 10px;
    font-size: 16px; }
  .site-post-wrap .btn-close {
    right: 10px;
    font-size: 24px; }
  .site-post-wrap .site-post-view {
    font-size: 12px;
    border-radius: 10px; }
  .site-post-wrap .admin-post-response-box {
    font-size: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }

/* component */
.component-box {
  position: absolute;
  width: 100%;
  height: 100%; }

.layout-dropdown-box {
  width: 100%;
  height: 100%;
  font-size: 16px;
  container-name: layout-dropdown-box;
  container-type: inline-size; }
  .layout-dropdown-box .dropdown-btn {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    padding: 0.5em 10% 0.5em 1em;
    background-color: transparent;
    background-image: url("/static/img/bg_select_caret.png");
    background-repeat: no-repeat;
    background-position: 96% 50%;
    font-size: 1em;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden; }
    .layout-dropdown-box .dropdown-btn:after {
      display: none; }
    .layout-dropdown-box .dropdown-btn .icon {
      width: 24px;
      height: 24px;
      margin-right: 10px;
      overflow: hidden; }
      .layout-dropdown-box .dropdown-btn .icon img {
        max-width: 100%; }
  .layout-dropdown-box .dropdown-menu {
    width: 100%;
    max-height: 180px;
    border-radius: 0;
    font-size: 16px;
    min-width: auto;
    overflow: hidden;
    padding: 0; }
    .layout-dropdown-box .dropdown-menu .scroll-box {
      overflow-y: auto;
      max-height: 180px;
      padding: .5rem 0; }
    .layout-dropdown-box .dropdown-menu .dropdown-item {
      font-size: 1em;
      color: inherit;
      cursor: pointer;
      font-weight: inherit;
      font-style: inherit;
      padding: .25rem 1rem;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      transition: all 0.05s; }
      .layout-dropdown-box .dropdown-menu .dropdown-item:active {
        background-color: #e5e5e5;
        color: inherit; }
      .layout-dropdown-box .dropdown-menu .dropdown-item .icon {
        min-width: 24px;
        max-width: 24px;
        min-height: 24px;
        max-height: 24px;
        overflow: hidden;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin-right: 5px; }
        .layout-dropdown-box .dropdown-menu .dropdown-item .icon img {
          display: block;
          width: 100%; }
  .layout-dropdown-box.arrow-color_BLACK .dropdown-btn {
    background-image: url("/static/img/bg_select_caret.png"); }
  .layout-dropdown-box.arrow-color_GRAY .dropdown-btn {
    background-image: url("/static/img/bg_select_caret_g.png"); }
  .layout-dropdown-box.arrow-color_WHITE .dropdown-btn {
    background-image: url("/static/img/bg_select_caret_w.png"); }
  .layout-dropdown-box.DROPDOWN_TRANS .dropdown-menu .dropdown-item:focus,
  .layout-dropdown-box.DROPDOWN_TRANS .dropdown-menu .dropdown-item:hover {
    background-color: rgba(248, 249, 250, 0.5); }

@container layout-dropdown-box (max-width: 150px) {
  .layout-dropdown-box .dropdown-btn {
    background-size: 8% 6px; } }

.layout-tab-box {
  width: 100%;
  height: 100%;
  font-size: 16px;
  overflow: hidden; }
  .layout-tab-box .nav {
    height: 100%;
    flex-wrap: nowrap; }
  .layout-tab-box .nav-tabs {
    border-bottom: none; }
  .layout-tab-box .nav-item {
    position: relative;
    flex: 1; }
    .layout-tab-box .nav-item:last-child {
      margin-right: 0 !important; }
  .layout-tab-box .tab {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px 8px;
    cursor: pointer;
    border: 1px solid #ccc;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    transition: all .2s; }
    .layout-tab-box .tab:hover, .layout-tab-box .tab:active, .layout-tab-box .tab:focus-visible {
      color: #fff;
      background-color: #15a5b7; }
  .layout-tab-box .tab .tab-icon {
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .layout-tab-box .tab .tab-icon img {
      display: block;
      width: 100%; }
  .layout-tab-box .tab .toe {
    max-width: 100%;
    text-align: center; }
  .layout-tab-box .tab.icon-LEFT {
    -webkit-box-flex-direction: row;
    -moz-box-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row; }
    .layout-tab-box .tab.icon-LEFT .tab-icon {
      margin-right: 3px; }
  .layout-tab-box .tab.icon-RIGHT {
    -webkit-box-flex-direction: row-reverse;
    -moz-box-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    .layout-tab-box .tab.icon-RIGHT .tab-icon {
      margin-left: 3px; }
  .layout-tab-box .tab.icon-TOP {
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .layout-tab-box .tab.icon-TOP .tab-icon {
      margin-bottom: 3px; }
  .layout-tab-box .tab.icon-BOTTOM {
    -webkit-box-flex-direction: column-reverse;
    -moz-box-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse; }
    .layout-tab-box .tab.icon-BOTTOM .tab-icon {
      margin-top: 3px; }
  .layout-tab-box .nav-item.active .tab {
    color: #fff;
    cursor: default;
    background-color: #15a5b7; }
  .layout-tab-box.TAB .nav, .layout-tab-box.TAB_TAB .nav {
    border-bottom: 1px solid #bfbfbf; }
    .layout-tab-box.TAB .nav .nav-item, .layout-tab-box.TAB_TAB .nav .nav-item {
      margin-bottom: -1px; }
    .layout-tab-box.TAB .nav .tab, .layout-tab-box.TAB_TAB .nav .tab {
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      border-bottom-left-radius: 0 !important;
      border-bottom-right-radius: 0 !important;
      border-bottom: 1px solid #bfbfbf !important; }
    .layout-tab-box.TAB .nav .nav-item.active .tab, .layout-tab-box.TAB_TAB .nav .nav-item.active .tab {
      border-bottom: transparent !important; }
  .layout-tab-box.TAB_BUTTON .nav .nav-item {
    margin-right: 4px; }
  .layout-tab-box.TAB_BUTTON .nav .tab {
    border-radius: 5px; }
  .layout-tab-box.TAB_LINE .nav .tab {
    border-radius: 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 3px solid #bfbfbf; }
    .layout-tab-box.TAB_LINE .nav .tab:hover, .layout-tab-box.TAB_LINE .nav .tab:active, .layout-tab-box.TAB_LINE .nav .tab:focus-visible {
      color: #15a5b7;
      background-color: transparent; }
  .layout-tab-box.TAB_LINE .nav .nav-item.active .tab {
    color: #15a5b7;
    background-color: transparent;
    border-bottom: 3px solid #15a5b7; }

.layout-date-box {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .layout-date-box .date-wrap {
    position: relative;
    flex: 1;
    height: 100%; }
  .layout-date-box .date-picker-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 100%; }
  .layout-date-box .date-time-wrap {
    width: 100%;
    height: 100%; }
  .layout-date-box .input-group {
    border: 1px solid #ccc; }
  .layout-date-box .date-input {
    flex: 1;
    height: 100%;
    line-height: 100%;
    font-size: 1em;
    min-height: auto;
    border: 0;
    padding: .375rem 20px .375rem .5em;
    border-radius: inherit;
    color: inherit;
    font-weight: inherit;
    font-style: inherit;
    background-color: transparent; }
    .layout-date-box .date-input.invisible-icon {
      padding-right: .5em; }
  .layout-date-box .icon-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    padding: 0;
    margin: 0 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: 10; }
    .layout-date-box .icon-btn .icon, .layout-date-box .icon-btn svg {
      font-size: 1.1em;
      width: 100%;
      min-width: 12px; }
    .layout-date-box .icon-btn.invisible-icon {
      display: none; }
  .layout-date-box .time-wrap {
    position: relative;
    flex: 1;
    margin-left: 10px;
    height: 100%; }
    .layout-date-box .time-wrap .date-input {
      min-width: 100px;
      padding-right: 20px; }
      .layout-date-box .time-wrap .date-input.invisible-icon {
        padding-right: 3px; }
    .layout-date-box .time-wrap .date-input::-webkit-calendar-picker-indicator {
      display: none;
      background: none; }

.layout-text-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .layout-text-box .form-control {
    flex: 1;
    height: 100%;
    line-height: 100%;
    font-size: 16px;
    min-height: auto;
    border-radius: 0; }
  .layout-text-box .btn-search {
    height: 100%;
    padding: 0 1em;
    margin: 0 0 0 10px;
    background-color: #15a5b7;
    color: #fff;
    font-size: 16px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .layout-text-box .btn-search .icon, .layout-text-box .btn-search svg {
      font-size: 1.6em; }

.layout-item .datepicker-dropdown {
  min-width: inherit; }

.table-layout-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }
  .table-layout-box.direction-bottom-left, .table-layout-box.direction-bottom-center, .table-layout-box.direction-bottom-right {
    -webkit-box-flex-direction: column-reverse;
    -moz-box-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  .table-layout-box.direction-top-left .search-container, .table-layout-box.direction-bottom-left .search-container {
    -ms-flex-pack: start;
    flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start; }
  .table-layout-box.direction-top-center .search-container, .table-layout-box.direction-bottom-center .search-container {
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
  .table-layout-box.direction-top-right .search-container, .table-layout-box.direction-bottom-right .search-container {
    -ms-flex-pack: end;
    flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end; }
  .table-layout-box .search-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 5px 0; }
    .table-layout-box .search-container .search-box {
      border: 1px solid #ccc;
      border-radius: 5px;
      width: 150px;
      background-color: #fff;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
    .table-layout-box .search-container .form-control {
      flex: 1;
      border: 0;
      padding: 5px;
      min-height: 28px;
      line-height: 1;
      font-size: 14px; }
    .table-layout-box .search-container .btn-search {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      width: 28px;
      height: 100%;
      border: 0;
      background: transparent;
      padding: 0;
      margin: 0; }
  .table-layout-box .table-tabulator {
    width: 100%;
    height: 100%; }
    .table-layout-box .table-tabulator .btn-action {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      border: 1px solid #bfbfbf;
      background-color: #fff;
      font-size: 14px;
      border-radius: 0;
      color: #333; }
      .table-layout-box .table-tabulator .btn-action.text-style {
        border: none !important;
        background-color: transparent !important;
        border-radius: 0 !important; }
      .table-layout-box .table-tabulator .btn-action.icon-right {
        -webkit-box-flex-direction: row-reverse;
        -moz-box-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse; }
      .table-layout-box .table-tabulator .btn-action .icon {
        display: inline-block;
        max-width: 50px;
        overflow: hidden;
        margin: 0 5px; }
        .table-layout-box .table-tabulator .btn-action .icon img {
          max-width: 100%; }
  .table-layout-box .tabulator {
    border: 0 solid transparent; }
    .table-layout-box .tabulator .tabulator-header {
      background-color: transparent; }
      .table-layout-box .tabulator .tabulator-header .tabulator-col {
        background-color: transparent;
        border-color: #999; }
        .table-layout-box .tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
          background-color: transparent; }
      .table-layout-box .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .table-layout-box .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {
        width: 100%; }
      .table-layout-box .tabulator .tabulator-header.tabulator-header-hidden + .tabulator-tableholder .tabulator-row:first-child {
        border-top: 1px solid #ddd; }
    .table-layout-box .tabulator .tabulator-row.tabulator-selectable:hover {
      background-color: transparent;
      cursor: default; }
    .table-layout-box .tabulator .tabulator-row .tabulator-cell a {
      display: inline;
      color: #15a5b7; }
    .table-layout-box .tabulator .tabulator-row .tabulator-cell img {
      display: inline-block;
      vertical-align: top;
      width: 100%;
      height: 100%; }
    .table-layout-box .tabulator .tabulator-row .tabulator-cell .progress-bar-container {
      height: 21px !important; }
    .table-layout-box .tabulator:not(.with-image-table) .tabulator-row .tabulator-cell {
      height: 100% !important; }
    .table-layout-box .tabulator.NONE .tabulator-header {
      border-bottom: 0; }
    .table-layout-box .tabulator.NONE .tabulator-header .tabulator-col {
      border-right: 0; }
    .table-layout-box .tabulator.NONE .tabulator-row {
      border-bottom: 0; }
    .table-layout-box .tabulator.NONE .tabulator-row .tabulator-cell {
      border-right: 0; }

.chatbot-wrap {
  container-name: chatbot-wrap;
  container-type: inline-size;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 14px;
  border-radius: inherit;
  border: 1px solid transparent; }
  .chatbot-wrap .check-mobile-size {
    display: block; }

@container chatbot-wrap (min-width: 768px) {
  .chatbot-wrap .check-mobile-size {
    display: none; } }
  .chatbot-wrap.player-no-permission {
    background-color: #fff; }
  .chatbot-wrap .btn-menu {
    position: relative;
    border: 0;
    padding: 5px;
    margin: 0;
    background-color: transparent;
    border-radius: 5px; }
    .chatbot-wrap .btn-menu .bar {
      display: block;
      width: 24px;
      height: 4px; }
      .chatbot-wrap .btn-menu .bar:nth-child(2) {
        margin: 5px 0; }
  .chatbot-wrap .new-chat {
    border: 1px solid transparent;
    margin-left: 10px;
    text-align: center;
    border-radius: 10px;
    font-size: 1em;
    flex: 1; }
  .chatbot-wrap .side-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    z-index: -1;
    transition: opacity, z-index;
    transition-delay: 0.2s; }
    .chatbot-wrap .side-section .side-wrap {
      position: absolute;
      width: 250px;
      height: 100%;
      top: 0;
      left: -250px;
      padding: 0 10px 10px;
      transition: left 0.2s ease-in-out;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }

@container chatbot-wrap (min-width: 768px) {
  .chatbot-wrap .side-section {
    position: relative;
    width: 0;
    z-index: 1;
    opacity: 1;
    visibility: hidden;
    transition: width 0.2s ease-in-out, visibility 0s 0.2s;
    background-color: transparent;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto; }
    .chatbot-wrap .side-section .side-wrap {
      position: absolute;
      width: 250px;
      top: 0;
      left: 0; } }
  .chatbot-wrap .main-section {
    position: relative;
    flex: 1;
    z-index: 1; }
    .chatbot-wrap .main-section .inner-box {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 60px 0 10px; }
    .chatbot-wrap .main-section .btn-menu {
      position: absolute;
      top: 14px;
      left: 10px;
      z-index: 10; }
    .chatbot-wrap .main-section .new-chat {
      position: absolute;
      top: 8px;
      left: 10px;
      z-index: 10;
      max-width: 200px;
      margin-left: 0;
      border: 1px solid transparent; }
    .chatbot-wrap .main-section .btn-menu + .new-chat {
      left: 55px;
      top: 13px; }

@container chatbot-wrap (min-width: 768px) {
  .chatbot-wrap .main-section .btn-menu,
  .chatbot-wrap .main-section .new-chat {
    visibility: visible;
    transition: visibility 0s 0.2s; } }
  .chatbot-wrap.on .side-section {
    z-index: 2;
    opacity: 1;
    transition: opacity; }
    .chatbot-wrap.on .side-section .side-wrap {
      left: 0;
      transition: left 0.2s ease-in-out; }

@container chatbot-wrap (min-width: 768px) {
  .chatbot-wrap.on .side-section {
    width: 250px;
    z-index: 1;
    visibility: visible;
    transition: width 0.2s ease-in-out, visibility 0.2s; } }

@container chatbot-wrap (min-width: 768px) {
  .chatbot-wrap.on .main-section .btn-menu,
  .chatbot-wrap.on .main-section .new-chat {
    visibility: hidden;
    transition: none; } }
  .chatbot-wrap .side-header {
    width: 100%;
    padding: 10px 0;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .chatbot-wrap .chat-list {
    position: relative;
    flex: 1;
    overflow-y: auto;
    border-radius: 10px; }
  .chatbot-wrap .chat-channel-list {
    margin-bottom: 10px;
    padding: 10px; }
    .chatbot-wrap .chat-channel-list .channel-time-title {
      position: sticky;
      top: 0;
      padding: 5px 10px;
      font-size: 12px;
      z-index: 1; }
    .chatbot-wrap .chat-channel-list .chat-item {
      position: relative;
      padding: 0 10px;
      border-radius: 8px; }
      .chatbot-wrap .chat-channel-list .chat-item a {
        display: block;
        padding: 5px 10px;
        cursor: pointer;
        transition: color 0.1s; }
      .chatbot-wrap .chat-channel-list .chat-item.active {
        border: 1px solid transparent;
        padding-right: 30px; }
        .chatbot-wrap .chat-channel-list .chat-item.active .item-remove {
          font-size: 14px;
          position: absolute;
          right: 5px;
          padding: 5px;
          top: 50%;
          transform: translateY(-50%); }
  .chatbot-wrap .chat-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .chatbot-wrap .chat-content .message-group-box {
      width: 100%;
      height: 100%;
      padding: 0 10px;
      flex: 1;
      overflow-y: auto;
      line-height: 1.6; }
    .chatbot-wrap .chat-content .chat-question {
      font-size: 15px;
      margin-bottom: 10px;
      padding: 5px 13px; }
      .chatbot-wrap .chat-content .chat-question .question-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
      .chatbot-wrap .chat-content .chat-question .thumb-box {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
        overflow: hidden;
        border-radius: 22px;
        background-color: #c4c4c4;
        margin-right: 8px; }
      .chatbot-wrap .chat-content .chat-question .fa-user {
        display: block;
        color: #fff;
        font-size: 14px; }
      .chatbot-wrap .chat-content .chat-question .profile-thumb {
        display: block;
        max-width: 100%;
        max-height: 100%; }
      .chatbot-wrap .chat-content .chat-question .message {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word; }
    .chatbot-wrap .chat-content .chat-answer {
      border: 1px solid transparent;
      padding: 15px 20px 15px 40px;
      border-radius: 10px;
      margin-bottom: 30px; }
      .chatbot-wrap .chat-content .chat-answer .answer-box {
        position: relative;
        min-height: 24px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word; }
        .chatbot-wrap .chat-content .chat-answer .answer-box:before {
          position: absolute;
          content: "";
          display: block;
          top: 3px;
          left: -25px;
          width: 18px;
          height: 18px;
          background-image: url("/static/img/icon_ai_detail_open.png");
          background-repeat: no-repeat;
          background-size: contain; }
      .chatbot-wrap .chat-content .chat-answer .answer-source-box-close:before {
        background-image: url("/static/img/icon_ai_detail_close.png"); }
      .chatbot-wrap .chat-content .chat-answer .answer-source-box {
        display: none;
        position: relative;
        min-height: 24px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word; }
        .chatbot-wrap .chat-content .chat-answer .answer-source-box:before {
          position: absolute;
          content: "";
          display: block;
          top: 3px;
          left: -25px;
          width: 18px;
          height: 18px;
          background-image: url("/static/img/icon_ai_chatbot.png");
          background-repeat: no-repeat;
          background-size: contain; }
      .chatbot-wrap .chat-content .chat-answer .ai-message h1, .chatbot-wrap .chat-content .chat-answer .ai-message h2, .chatbot-wrap .chat-content .chat-answer .ai-message h3 {
        font-size: 1.25rem;
        margin: 1.4rem 0 0.7rem; }
      .chatbot-wrap .chat-content .chat-answer .ai-message h4, .chatbot-wrap .chat-content .chat-answer .ai-message h5, .chatbot-wrap .chat-content .chat-answer .ai-message h6 {
        font-size: 1.1rem;
        margin: 1rem 0 0.7rem; }
      .chatbot-wrap .chat-content .chat-answer .ai-message ul, .chatbot-wrap .chat-content .chat-answer .ai-message ol {
        margin: 0.5rem 0;
        padding-left: 20px;
        list-style: initial; }
        .chatbot-wrap .chat-content .chat-answer .ai-message ul li, .chatbot-wrap .chat-content .chat-answer .ai-message ol li {
          margin: 0.2rem 0; }
      .chatbot-wrap .chat-content .chat-answer .ai-message ul {
        list-style-type: "·  "; }
      .chatbot-wrap .chat-content .chat-answer .ai-message ol {
        list-style-type: decimal; }
      .chatbot-wrap .chat-content .chat-answer .ai-message p, .chatbot-wrap .chat-content .chat-answer .ai-message pre, .chatbot-wrap .chat-content .chat-answer .ai-message div {
        margin: 0.5rem 0; }
      .chatbot-wrap .chat-content .chat-answer .ai-message strong {
        font-weight: bold; }
      .chatbot-wrap .chat-content .chat-answer .ai-message a {
        text-decoration: none; }
      .chatbot-wrap .chat-content .chat-answer .ai-message table {
        margin: 0.5rem 0;
        border-top: 1px solid #ddd;
        font-size: 0.9rem; }
        .chatbot-wrap .chat-content .chat-answer .ai-message table th, .chatbot-wrap .chat-content .chat-answer .ai-message table td {
          padding: 0.5rem;
          border-bottom: 1px solid #ddd; }
      .chatbot-wrap .chat-content .chat-answer .ai-message pre {
        position: relative;
        width: 100%;
        max-height: 500px;
        overflow: auto;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.15);
        padding: 15px; }
        .chatbot-wrap .chat-content .chat-answer .ai-message pre code {
          color: inherit; }
    .chatbot-wrap .chat-content .chat-loading .answer-box:before {
      top: 50%;
      margin-top: -9px; }
    .chatbot-wrap .chat-content .chat-loading .dot-flashing {
      position: relative;
      left: 5px; }
      .chatbot-wrap .chat-content .chat-loading .dot-flashing .dot {
        display: inline-block;
        position: relative;
        width: 8px;
        height: 8px;
        border-radius: 8px;
        margin: 0 2px;
        animation: dot-flashing 1s infinite alternate; }
      .chatbot-wrap .chat-content .chat-loading .dot-flashing .dot:nth-child(1) {
        animation-delay: 0s; }
      .chatbot-wrap .chat-content .chat-loading .dot-flashing .dot:nth-child(2) {
        animation-delay: 0.4s; }
      .chatbot-wrap .chat-content .chat-loading .dot-flashing .dot:nth-child(3) {
        animation-delay: 0.8s; }

@keyframes dot-flashing {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.3; } }
    .chatbot-wrap .chat-content .message-input-box {
      margin-top: 10px;
      padding: 0 10px; }
    .chatbot-wrap .chat-content .enter-send-box {
      text-align: right;
      padding: 0 5px 5px;
      height: auto;
      line-height: 1; }
      .chatbot-wrap .chat-content .enter-send-box .label {
        font-size: 11px;
        color: #ccc; }
      .chatbot-wrap .chat-content .enter-send-box .switch {
        height: 16px; }
        .chatbot-wrap .chat-content .enter-send-box .switch:before, .chatbot-wrap .chat-content .enter-send-box .switch:after {
          display: none;
          content: ""; }
        .chatbot-wrap .chat-content .enter-send-box .switch input.switch-toggle + label {
          height: 16px;
          width: 28px;
          border-radius: 16px;
          background-color: #000;
          border: 1px solid #ccc; }
        .chatbot-wrap .chat-content .enter-send-box .switch input.switch-toggle + label:after {
          width: 16px;
          height: 16px;
          border-radius: 16px;
          margin: -1px 0 0 -1px;
          background-color: #2A3033;
          border: 1px solid #ccc;
          transition: all .2s;
          box-shadow: none; }
        .chatbot-wrap .chat-content .enter-send-box .switch input.switch-toggle:checked + label:after {
          left: 12px;
          background-color: #15a5b7; }
    .chatbot-wrap .chat-content .message-input {
      position: relative;
      min-height: 48px;
      max-height: 200px;
      overflow-y: auto;
      border-radius: 10px;
      padding: 10px 30px 10px 15px;
      border: 1px solid transparent; }
    .chatbot-wrap .chat-content .disabled-cover {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .chatbot-wrap .chat-content .question-input {
      width: 100%;
      resize: none;
      overflow: hidden;
      padding: 0;
      border: 0;
      min-height: 26px;
      height: 26px;
      line-height: 1.6;
      background-color: transparent;
      color: inherit; }
      .chatbot-wrap .chat-content .question-input:focus {
        outline: none;
        box-shadow: none; }
    .chatbot-wrap .chat-content .btn-submit {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      padding: 0;
      background-image: url("/static/img/icon_ai_chatbot.png");
      background-repeat: no-repeat;
      background-size: contain;
      border: 0;
      background-color: transparent; }
      .chatbot-wrap .chat-content .btn-submit:focus-visible {
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
    .chatbot-wrap .chat-content .stop-chat-message {
      background-image: url("/static/img/icon_ai_chatbot_stop.png") !important; }
  .chatbot-wrap.theme-WHITE {
    background-color: #F4F4F2;
    border-color: #F4F4F2; }
    .chatbot-wrap.theme-WHITE .btn-menu .bar {
      background-color: #15a5b7; }
    .chatbot-wrap.theme-WHITE .new-chat {
      border-color: #999999;
      background-color: #FFFFFF;
      color: #000000; }
      .chatbot-wrap.theme-WHITE .new-chat:hover, .chatbot-wrap.theme-WHITE .new-chat:active, .chatbot-wrap.theme-WHITE .new-chat:focus-visible {
        color: #15a5b7; }
    .chatbot-wrap.theme-WHITE .side-section {
      background-color: rgba(0, 0, 0, 0.35); }
      .chatbot-wrap.theme-WHITE .side-section .side-wrap {
        background-color: #F4F4F2; }
    .chatbot-wrap.theme-WHITE .main-section {
      background-color: #F4F4F2; }
      .chatbot-wrap.theme-WHITE .main-section .new-chat {
        border-color: #999999;
        background-color: #FFFFFF; }
    .chatbot-wrap.theme-WHITE .chat-list {
      background-color: #FFFFFF; }
    .chatbot-wrap.theme-WHITE .chat-channel-list .channel-time-title {
      color: #404040; }
    .chatbot-wrap.theme-WHITE .chat-item a:hover, .chatbot-wrap.theme-WHITE .chat-item a:active, .chatbot-wrap.theme-WHITE .chat-item a:focus-visible {
      color: #15a5b7; }
    .chatbot-wrap.theme-WHITE .chat-item.active {
      border-color: #999999; }
      .chatbot-wrap.theme-WHITE .chat-item.active a {
        color: #15a5b7; }
      .chatbot-wrap.theme-WHITE .chat-item.active .item-remove:hover, .chatbot-wrap.theme-WHITE .chat-item.active .item-remove:active, .chatbot-wrap.theme-WHITE .chat-item.active .item-remove:focus-visible {
        color: #15a5b7; }
    .chatbot-wrap.theme-WHITE .chat-answer {
      border-color: #15a5b7;
      background-color: #FFFFFF; }
      .chatbot-wrap.theme-WHITE .chat-answer .ai-message a {
        color: #0073AE; }
      .chatbot-wrap.theme-WHITE .chat-answer .ai-message pre {
        background-color: rgba(0, 0, 0, 0.15);
        color: #333; }
    .chatbot-wrap.theme-WHITE .chat-loading .dot-flashing .dot {
      background-color: #15a5b7; }
    .chatbot-wrap.theme-WHITE .enter-send-box .label {
      color: #404040; }
    .chatbot-wrap.theme-WHITE .enter-send-box .switch input.switch-toggle + label {
      background-color: #FFFFFF;
      border-color: #999999; }
    .chatbot-wrap.theme-WHITE .enter-send-box .switch input.switch-toggle + label:after {
      background-color: #F4F4F2;
      border-color: #999999; }
    .chatbot-wrap.theme-WHITE .enter-send-box .switch input.switch-toggle:checked + label:after {
      background-color: #15a5b7; }
    .chatbot-wrap.theme-WHITE .message-input {
      border-color: #15a5b7;
      background-color: #FFFFFF; }
    .chatbot-wrap.theme-WHITE .disabled-cover {
      background-color: rgba(0, 0, 0, 0.1); }
  .chatbot-wrap.theme-DARK {
    background-color: #2A3033;
    border-color: #2A3033; }
    .chatbot-wrap.theme-DARK .btn-menu .bar {
      background-color: #FFFFFF; }
    .chatbot-wrap.theme-DARK .new-chat {
      background-color: #374248;
      color: #FFFFFF; }
      .chatbot-wrap.theme-DARK .new-chat:hover, .chatbot-wrap.theme-DARK .new-chat:active, .chatbot-wrap.theme-DARK .new-chat:focus-visible {
        color: #FFFFFF;
        background-color: #424f56; }
    .chatbot-wrap.theme-DARK .side-section {
      background-color: rgba(0, 0, 0, 0.35); }
      .chatbot-wrap.theme-DARK .side-section .side-wrap {
        background-color: #2A3033; }
    .chatbot-wrap.theme-DARK .main-section {
      background-color: #2A3033; }
      .chatbot-wrap.theme-DARK .main-section .new-chat {
        background-color: #374248; }
    .chatbot-wrap.theme-DARK .chat-list {
      background-color: #374248; }
    .chatbot-wrap.theme-DARK .chat-channel-list .channel-time-title {
      color: #828282;
      background-color: #374248; }
    .chatbot-wrap.theme-DARK .chat-item {
      color: #FFFFFF; }
      .chatbot-wrap.theme-DARK .chat-item a:hover, .chatbot-wrap.theme-DARK .chat-item a:active, .chatbot-wrap.theme-DARK .chat-item a:focus-visible {
        color: #15a5b7; }
      .chatbot-wrap.theme-DARK .chat-item.active {
        background-color: #2A3033; }
        .chatbot-wrap.theme-DARK .chat-item.active a {
          color: #FFFFFF; }
        .chatbot-wrap.theme-DARK .chat-item.active .item-remove {
          color: #FFFFFF; }
          .chatbot-wrap.theme-DARK .chat-item.active .item-remove:hover, .chatbot-wrap.theme-DARK .chat-item.active .item-remove:active, .chatbot-wrap.theme-DARK .chat-item.active .item-remove:focus-visible {
            color: #15a5b7; }
    .chatbot-wrap.theme-DARK .chat-content .chat-question {
      color: #FFFFFF; }
    .chatbot-wrap.theme-DARK .chat-answer {
      border-color: #15a5b7;
      background-color: #000000;
      color: #FFFFFF; }
      .chatbot-wrap.theme-DARK .chat-answer .ai-message a {
        color: #15a5b7; }
      .chatbot-wrap.theme-DARK .chat-answer .ai-message pre {
        background-color: rgba(255, 255, 255, 0.15);
        color: #fff; }
    .chatbot-wrap.theme-DARK .chat-loading .dot-flashing .dot {
      background-color: #FFFFFF; }
    .chatbot-wrap.theme-DARK .enter-send-box .label {
      color: #828282; }
    .chatbot-wrap.theme-DARK .enter-send-box .switch input.switch-toggle + label {
      background-color: #000000;
      border-color: #999999; }
    .chatbot-wrap.theme-DARK .enter-send-box .switch input.switch-toggle + label:after {
      background-color: #2A3033;
      border-color: #999999; }
    .chatbot-wrap.theme-DARK .enter-send-box .switch input.switch-toggle:checked + label:after {
      background-color: #15a5b7; }
    .chatbot-wrap.theme-DARK .message-input {
      border-color: #15a5b7;
      background-color: #000000;
      color: #FFFFFF; }
    .chatbot-wrap.theme-DARK .disabled-cover {
      background-color: rgba(255, 255, 255, 0.3); }
  .chatbot-wrap.theme-WHITE_BLUE {
    background-color: #FFFFFF;
    border-color: #FFFFFF; }
    .chatbot-wrap.theme-WHITE_BLUE .btn-menu .bar {
      background-color: #000000; }
    .chatbot-wrap.theme-WHITE_BLUE .new-chat {
      border: 1px solid #444444;
      background-color: #FFFFFF;
      color: #000000; }
      .chatbot-wrap.theme-WHITE_BLUE .new-chat:hover, .chatbot-wrap.theme-WHITE_BLUE .new-chat:active, .chatbot-wrap.theme-WHITE_BLUE .new-chat:focus-visible {
        color: #0094FF; }
    .chatbot-wrap.theme-WHITE_BLUE .side-section {
      background-color: rgba(0, 0, 0, 0.35); }
      .chatbot-wrap.theme-WHITE_BLUE .side-section .side-wrap {
        background-color: #FFFFFF; }
    .chatbot-wrap.theme-WHITE_BLUE .main-section {
      background-color: #FFFFFF; }
      .chatbot-wrap.theme-WHITE_BLUE .main-section .new-chat {
        background-color: #FFFFFF; }
    .chatbot-wrap.theme-WHITE_BLUE .chat-list {
      background-color: #F0F0F0; }
    .chatbot-wrap.theme-WHITE_BLUE .chat-channel-list .channel-time-title {
      color: #444444;
      background-color: #F0F0F0; }
    .chatbot-wrap.theme-WHITE_BLUE .chat-item {
      color: #000000; }
      .chatbot-wrap.theme-WHITE_BLUE .chat-item a:hover, .chatbot-wrap.theme-WHITE_BLUE .chat-item a:active, .chatbot-wrap.theme-WHITE_BLUE .chat-item a:focus-visible {
        color: #0094FF; }
      .chatbot-wrap.theme-WHITE_BLUE .chat-item.active {
        background-color: #0094FF; }
        .chatbot-wrap.theme-WHITE_BLUE .chat-item.active a {
          color: #FFFFFF; }
        .chatbot-wrap.theme-WHITE_BLUE .chat-item.active .item-remove {
          color: #FFFFFF; }
          .chatbot-wrap.theme-WHITE_BLUE .chat-item.active .item-remove:hover, .chatbot-wrap.theme-WHITE_BLUE .chat-item.active .item-remove:active, .chatbot-wrap.theme-WHITE_BLUE .chat-item.active .item-remove:focus-visible {
            color: #FFFFFF; }
    .chatbot-wrap.theme-WHITE_BLUE .chat-content .chat-question {
      color: #000000; }
    .chatbot-wrap.theme-WHITE_BLUE .chat-answer {
      background-color: #0094FF;
      color: #FFFFFF; }
      .chatbot-wrap.theme-WHITE_BLUE .chat-answer .ai-message a {
        color: #000000; }
      .chatbot-wrap.theme-WHITE_BLUE .chat-answer .ai-message pre {
        background-color: rgba(255, 255, 255, 0.15);
        color: #fff; }
    .chatbot-wrap.theme-WHITE_BLUE .chat-loading .dot-flashing .dot {
      background-color: #FFFFFF; }
    .chatbot-wrap.theme-WHITE_BLUE .enter-send-box .label {
      color: #000000; }
    .chatbot-wrap.theme-WHITE_BLUE .enter-send-box .switch input.switch-toggle + label {
      background-color: #F0F0F0;
      border-color: #0094FF; }
    .chatbot-wrap.theme-WHITE_BLUE .enter-send-box .switch input.switch-toggle + label:after {
      background-color: #FFFFFF;
      border-color: #0094FF; }
    .chatbot-wrap.theme-WHITE_BLUE .enter-send-box .switch input.switch-toggle:checked + label:after {
      background-color: #0094FF; }
    .chatbot-wrap.theme-WHITE_BLUE .message-input {
      border: 1px solid #0094FF;
      background-color: #FFFFFF;
      color: #000000; }
    .chatbot-wrap.theme-WHITE_BLUE .disabled-cover {
      background-color: rgba(0, 0, 0, 0.35); }
  .chatbot-wrap.theme-BLACK_WHITE {
    background-color: #272727;
    border-color: #272727; }
    .chatbot-wrap.theme-BLACK_WHITE .btn-menu .bar {
      background-color: #15a5b7; }
    .chatbot-wrap.theme-BLACK_WHITE .new-chat {
      border-color: #999999;
      background-color: #000000;
      color: #FFFFFF; }
      .chatbot-wrap.theme-BLACK_WHITE .new-chat:hover, .chatbot-wrap.theme-BLACK_WHITE .new-chat:active, .chatbot-wrap.theme-BLACK_WHITE .new-chat:focus-visible {
        color: #15a5b7; }
    .chatbot-wrap.theme-BLACK_WHITE .side-section {
      background-color: rgba(0, 0, 0, 0.35); }
      .chatbot-wrap.theme-BLACK_WHITE .side-section .side-wrap {
        background-color: #272727; }
    .chatbot-wrap.theme-BLACK_WHITE .main-section {
      background-color: #272727; }
      .chatbot-wrap.theme-BLACK_WHITE .main-section .new-chat {
        background-color: #272727; }
    .chatbot-wrap.theme-BLACK_WHITE .chat-list {
      background-color: #000000; }
    .chatbot-wrap.theme-BLACK_WHITE .chat-channel-list .channel-time-title {
      color: #828282;
      background-color: #000000; }
    .chatbot-wrap.theme-BLACK_WHITE .chat-item {
      color: #FFFFFF; }
      .chatbot-wrap.theme-BLACK_WHITE .chat-item a:hover, .chatbot-wrap.theme-BLACK_WHITE .chat-item a:active, .chatbot-wrap.theme-BLACK_WHITE .chat-item a:focus-visible {
        color: #15a5b7; }
      .chatbot-wrap.theme-BLACK_WHITE .chat-item.active {
        border: 1px solid #999999; }
        .chatbot-wrap.theme-BLACK_WHITE .chat-item.active a {
          color: #15a5b7; }
        .chatbot-wrap.theme-BLACK_WHITE .chat-item.active .item-remove {
          color: #FFFFFF; }
          .chatbot-wrap.theme-BLACK_WHITE .chat-item.active .item-remove:hover, .chatbot-wrap.theme-BLACK_WHITE .chat-item.active .item-remove:active, .chatbot-wrap.theme-BLACK_WHITE .chat-item.active .item-remove:focus-visible {
            color: #15a5b7; }
    .chatbot-wrap.theme-BLACK_WHITE .chat-content .chat-question {
      color: #FFFFFF; }
    .chatbot-wrap.theme-BLACK_WHITE .chat-answer {
      border-color: #15a5b7;
      background-color: #FFFFFF;
      color: #000000; }
      .chatbot-wrap.theme-BLACK_WHITE .chat-answer .ai-message a {
        color: #0073AE; }
      .chatbot-wrap.theme-BLACK_WHITE .chat-answer .ai-message pre {
        background-color: rgba(0, 0, 0, 0.15);
        color: #333; }
    .chatbot-wrap.theme-BLACK_WHITE .chat-loading .dot-flashing .dot {
      background-color: #15a5b7; }
    .chatbot-wrap.theme-BLACK_WHITE .enter-send-box .label {
      color: #828282; }
    .chatbot-wrap.theme-BLACK_WHITE .enter-send-box .switch input.switch-toggle + label {
      background-color: #000000;
      border-color: #999999; }
    .chatbot-wrap.theme-BLACK_WHITE .enter-send-box .switch input.switch-toggle + label:after {
      background-color: #272727;
      border-color: #999999; }
    .chatbot-wrap.theme-BLACK_WHITE .enter-send-box .switch input.switch-toggle:checked + label:after {
      background-color: #15a5b7;
      border-color: #15a5b7; }
    .chatbot-wrap.theme-BLACK_WHITE .message-input {
      border-color: #15a5b7;
      background-color: #000000;
      color: #FFFFFF; }
    .chatbot-wrap.theme-BLACK_WHITE .disabled-cover {
      background-color: rgba(255, 255, 255, 0.35); }
  .chatbot-wrap .thumb-list ul {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap; }
  .chatbot-wrap .thumb-list .layout-template-wrap {
    width: 120px;
    height: 75px;
    padding: 2px;
    margin: 5px 10px;
    background-color: rgba(255, 255, 255, 0.5); }
    .chatbot-wrap .thumb-list .layout-template-wrap.mobile-template {
      width: 62px;
      height: 112px;
      padding: 1px 2px; }
    .chatbot-wrap .thumb-list .layout-template-wrap .layout-item {
      border: 1px solid #0073AE;
      background-color: rgba(255, 255, 255, 0.5); }
    .chatbot-wrap .thumb-list .layout-template-wrap:hover, .chatbot-wrap .thumb-list .layout-template-wrap:focus, .chatbot-wrap .thumb-list .layout-template-wrap:active, .chatbot-wrap .thumb-list .layout-template-wrap:focus-visible, .chatbot-wrap .thumb-list .layout-template-wrap.on {
      background-color: #fff; }
      .chatbot-wrap .thumb-list .layout-template-wrap:hover .layout-item, .chatbot-wrap .thumb-list .layout-template-wrap:focus .layout-item, .chatbot-wrap .thumb-list .layout-template-wrap:active .layout-item, .chatbot-wrap .thumb-list .layout-template-wrap:focus-visible .layout-item, .chatbot-wrap .thumb-list .layout-template-wrap.on .layout-item {
        background-color: #fff; }

.chatbot-button {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid transparent;
  background-image: url("/static/img/icon_ai_chatbot.png");
  background-repeat: no-repeat;
  background-size: 18px 20px;
  background-color: transparent;
  background-position: 85% center;
  border-radius: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center; }
  .chatbot-button .arrow {
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 0 10px 12px;
    border-color: transparent transparent transparent #fff;
    transform: rotate(180deg);
    margin-left: 10%; }
  .chatbot-button.on .arrow {
    transform: rotate(0deg); }
  .chatbot-button.theme-WHITE {
    background-color: #F4F4F2;
    border-color: #15a5b7; }
    .chatbot-button.theme-WHITE .arrow {
      border-left-color: #000000; }
  .chatbot-button.theme-DARK {
    background-color: #000000;
    border-color: #15a5b7; }
    .chatbot-button.theme-DARK .arrow {
      border-left-color: #ffffff; }
  .chatbot-button.theme-WHITE_BLUE {
    background-color: #FFFFFF;
    border-color: #0094FF; }
    .chatbot-button.theme-WHITE_BLUE .arrow {
      border-left-color: #000000; }
  .chatbot-button.theme-BLACK_WHITE {
    background-color: #000000;
    border-color: #15a5b7; }
    .chatbot-button.theme-BLACK_WHITE .arrow {
      border-left-color: #ffffff; }

.chat-display-player .layout-item {
  border-radius: 10px;
  overflow: hidden; }

.chatbot-display-item {
  background-color: rgba(21, 165, 183, 0.3);
  width: 100%;
  height: 100%; }

.chatbot-display-close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: #cfcfcf;
  font-size: 20px;
  padding: 5px;
  opacity: 0.4;
  transition: all 0.2s;
  z-index: 101; }
  .chatbot-display-close-btn:hover, .chatbot-display-close-btn:focus, .chatbot-display-close-btn:active, .chatbot-display-close-btn:focus-visible {
    opacity: 0.6;
    background-color: #15a5b7;
    color: #fff; }

.layout-template-wrap {
  border: 1px solid #15a5b7;
  border-radius: 5px;
  margin: 3px;
  transition: all .1s; }
  .layout-template-wrap .layout-sample-template {
    position: relative;
    width: 100%;
    height: 100%; }
    .layout-template-wrap .layout-sample-template .layout-item {
      background-color: rgba(21, 165, 183, 0.3);
      font-size: 9px;
      border-radius: 5px;
      color: #333;
      transition: all .1s; }

.api-list-tab-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0 5px;
  margin-bottom: 10px;
  width: 100%; }
  .api-list-tab-wrap .api-category-tab {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 10px; }
    .api-list-tab-wrap .api-category-tab .category-frame {
      width: 100%;
      overflow: hidden; }
    .api-list-tab-wrap .api-category-tab .tab-item {
      width: fit-content;
      flex-shrink: 100 !important; }
      .api-list-tab-wrap .api-category-tab .tab-item .item {
        display: block;
        padding: 3px 5px;
        white-space: nowrap;
        border-bottom: 3px solid transparent;
        font-size: 14px;
        cursor: pointer;
        color: #999; }
        .api-list-tab-wrap .api-category-tab .tab-item .item:hover, .api-list-tab-wrap .api-category-tab .tab-item .item:focus, .api-list-tab-wrap .api-category-tab .tab-item .item:active, .api-list-tab-wrap .api-category-tab .tab-item .item:focus-visible {
          color: #15a5b7; }
      .api-list-tab-wrap .api-category-tab .tab-item .active {
        color: #15a5b7;
        border-bottom-color: #15a5b7; }
    .api-list-tab-wrap .api-category-tab .swiper-button-prev,
    .api-list-tab-wrap .api-category-tab .swiper-button-next {
      width: 30px;
      height: 100%;
      border: 0;
      background-image: none;
      top: 0;
      margin-top: 0;
      background-color: transparent;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .api-list-tab-wrap .api-category-tab .swiper-button-prev .arr,
      .api-list-tab-wrap .api-category-tab .swiper-button-next .arr {
        position: absolute;
        display: block;
        top: 50%;
        transform: translateY(-50%);
        font-size: 26px;
        line-height: 1;
        font-weight: bold; }
    .api-list-tab-wrap .api-category-tab .swiper-button-prev {
      left: -18px; }
    .api-list-tab-wrap .api-category-tab .swiper-button-next {
      right: -18px; }
    .api-list-tab-wrap .api-category-tab .swiper-button-disabled {
      opacity: 0; }
  .api-list-tab-wrap .form-group {
    width: 100%; }
  @media (min-width: 768px) {
    .api-list-tab-wrap {
      -webkit-box-flex-direction: row;
      -moz-box-flex-direction: row;
      -ms-flex-direction: row;
      -webkit-flex-direction: row;
      flex-direction: row; }
      .api-list-tab-wrap .api-category-tab {
        width: 72%;
        margin-bottom: 0; }
        .api-list-tab-wrap .api-category-tab .tab-item .item {
          font-size: 16px; }
      .api-list-tab-wrap .form-group {
        width: 28%;
        margin-left: 30px; } }
  @media (min-width: 992px) {
    .api-list-tab-wrap {
      margin-top: 5px; } }
  @media (min-width: 1200px) {
    .api-list-tab-wrap .api-category-tab {
      width: calc(100% - 270px); }
      .api-list-tab-wrap .api-category-tab .tab-item .item {
        padding: 5px 8px;
        font-size: 18px; }
    .api-list-tab-wrap .form-group {
      width: 270px; } }

.api-hub-list-wrap > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-wrap: wrap;
  -moz-box-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.api-hub-list-wrap .site-row-item {
  width: 50%; }

@media (min-width: 768px) {
  .api-hub-list-wrap .site-row-item {
    width: 33.333333%; } }

@media (min-width: 992px) {
  .api-hub-list-wrap .site-row-item {
    width: 25%; } }

@media (min-width: 1400px) {
  .api-hub-list-wrap .site-row-item {
    width: 20%; } }

.api-hub-item {
  padding: 10px;
  height: 100%;
  cursor: pointer; }
  .api-hub-item:hover .site-inner-box, .api-hub-item:focus .site-inner-box, .api-hub-item:active .site-inner-box, .api-hub-item:focus-visible .site-inner-box, .api-hub-item.active .site-inner-box {
    border-color: #15a5b7;
    box-shadow: 0 0 0 1px #15a5b7; }
  @media (min-width: 768px) {
    .api-hub-item {
      padding: 8px 10px; } }
  @media (min-width: 992px) {
    .api-hub-item {
      padding: 10px 20px; } }
  .api-hub-item .site-inner-box {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all 0.1s;
    padding: 5px;
    height: 100%; }
    @media (min-width: 768px) {
      .api-hub-item .site-inner-box {
        padding: 10px; } }
    .api-hub-item .site-inner-box.waiting {
      background-color: #F2F2F2; }
  .api-hub-item .item-header {
    margin-bottom: 15px; }
    .api-hub-item .item-header .icon {
      width: 180px;
      max-width: 100%;
      height: 90px;
      overflow: hidden;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .api-hub-item .item-header .icon img {
        max-width: 100%;
        vertical-align: middle; }
    .api-hub-item .item-header .status,
    .api-hub-item .item-header .pay-type {
      display: inline-block;
      font-size: 12px;
      padding: 3px 5px;
      background-color: #fff;
      border: 1px solid #15a5b7;
      color: #15a5b7;
      border-radius: 5px;
      margin-top: 5px; }
  .api-hub-item .api-category {
    font-size: 13px; }
  .api-hub-item .api-name {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0 10px; }
  .api-hub-item .api-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 1.3em;
    height: 5.2em;
    font-size: 14px; }
  .api-hub-item .api-tags {
    margin-top: 10px; }
    .api-hub-item .api-tags .tag {
      color: #15a5b7;
      font-size: 15px; }

.number-chart-svg .svg-text-center,
.number-chart-svg .svg-title,
.number-chart-svg .svg-value {
  opacity: 0; }
  .number-chart-svg .svg-text-center.on,
  .number-chart-svg .svg-title.on,
  .number-chart-svg .svg-value.on {
    opacity: 1; }

.color-gradient-table-wrap label,
.color-gradient-table-wrap .label {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 0.2rem; }

.color-gradient-table-wrap .btn-select-dropdown {
  background-color: #fff; }
  .color-gradient-table-wrap .btn-select-dropdown + .dropdown-menu {
    width: 100%; }

.color-gradient-table-wrap .select-symbol .color-box {
  width: 90%;
  height: 20px;
  background-color: #efefef;
  vertical-align: middle;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0; }

.color-gradient-table-wrap .select-symbol .color-box.multi-color {
  height: auto;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.color-gradient-table-wrap .select-symbol .color-line {
  width: 100%;
  vertical-align: middle;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0; }

.color-gradient-table-wrap .select-symbol .color-item {
  display: block;
  flex: 1;
  height: 100%; }

.color-gradient-table-wrap .select-symbol .color-box.multi-color .color-item {
  height: 15px; }

.color-gradient-table-wrap .select-symbol .dropdown-menu {
  max-height: 200px;
  overflow-y: auto; }

.color-gradient-table-wrap .select-symbol .color-scheme-box .dropdown-item {
  position: relative; }

.color-gradient-table-wrap .select-symbol .color-scheme-box .btn-color-delete {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%); }

.color-gradient-table-wrap .color-field-box {
  padding: 0 5px; }

.color-gradient-table-wrap .classes-table-box {
  margin: 1em 0 0;
  border-top: 1px solid #bfbfbf;
  padding: 10px 5px 10px;
  max-height: 200px;
  overflow-y: auto; }
  .color-gradient-table-wrap .classes-table-box .table-label {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 0.2rem; }
  .color-gradient-table-wrap .classes-table-box .table {
    margin-bottom: 0; }
  .color-gradient-table-wrap .classes-table-box th, .color-gradient-table-wrap .classes-table-box td {
    font-size: 10px;
    padding: 0.3rem; }
  .color-gradient-table-wrap .classes-table-box th {
    background-color: #efefef;
    text-align: center; }
  .color-gradient-table-wrap .classes-table-box td {
    background-color: #fff; }
    .color-gradient-table-wrap .classes-table-box td label {
      display: inline !important;
      margin-bottom: 0; }
    .color-gradient-table-wrap .classes-table-box td .form-control {
      display: inline-block;
      width: 90%;
      min-width: 50px;
      border: 0;
      height: 20px;
      min-height: 20px;
      font-size: 11px;
      padding: 0 5px; }
  .color-gradient-table-wrap .classes-table-box .color-picker {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle; }
    .color-gradient-table-wrap .classes-table-box .color-picker .form-control {
      width: 100%;
      height: 100%; }

.time-input-picker {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: .25rem;
  z-index: 999999;
  visibility: hidden;
  max-width: 220px; }

.time-input-picker h4 {
  margin: 0 0 12px;
  font-size: 12px;
  color: #666; }

.time-input-picker .time-fields {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  padding: 13px 15px 8px; }

.time-input-picker .time-fields select {
  font-size: 18px;
  padding: 4px;
  border: none;
  background: #f0f0f0;
  border-radius: 4px;
  width: 60px;
  text-align: center; }
  .time-input-picker .time-fields select:disabled {
    opacity: 0.8; }

.time-input-picker .time-fields .colon {
  font-size: 20px; }

.time-input-picker .ampm-toggle {
  display: flex;
  flex-direction: column;
  margin-left: 6px; }

.time-input-picker .ampm-toggle button {
  font-size: 12px;
  padding: 2px 5px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer; }
  .time-input-picker .ampm-toggle button:first-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .time-input-picker .ampm-toggle button:last-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -1px; }

.time-input-picker .ampm-toggle button.active {
  background: #15a5b7;
  color: #fff;
  font-weight: bold; }

.time-input-picker .actions {
  display: flex;
  justify-content: space-between; }
  .time-input-picker .actions .btn {
    flex: 1;
    font-size: 16px; }
  .time-input-picker .actions .ok {
    font-weight: bold;
    color: #15a5b7; }
  .time-input-picker .actions .cancel {
    color: #747c7f; }

.login-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/static/img/img_main_visual.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-y: auto; }
  .login-wrap .at-form {
    margin-top: 10px;
    margin-bottom: 10px; }
  .login-wrap .at-sep,
  .login-wrap .at-error {
    margin-bottom: 10px; }
  .login-wrap .at-pwd-form > form {
    margin-top: 10px; }
  .login-wrap p {
    margin: 0; }
  .login-wrap .form-group {
    margin-bottom: .4rem; }
  .login-wrap .at-signup-link {
    margin-top: 10px;
    margin-bottom: 20px; }
  .login-wrap #at-btn {
    margin-top: 15px; }
  @media (min-width: 768px) {
    .login-wrap {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      overflow-y: hidden; } }

.login-header .logo {
  text-align: center;
  margin-bottom: 30px; }
  .login-header .logo img {
    width: 138px;
    height: 44px; }

.login-header .login-title {
  color: #404040;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
  font-weight: normal;
  text-align: center;
  line-height: 1.4;
  padding: 0 10px; }

@media (min-width: 768px) {
  .login-header .logo {
    position: absolute;
    top: 30px;
    right: 45px;
    margin-bottom: 0; }
    .login-header .logo img {
      width: auto;
      height: auto; }
  .login-header .login-title {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 40px; } }

.login-footer {
  width: 100%;
  padding: 10px 0; }
  .login-footer .footer-box {
    position: relative;
    width: 100%; }
    .login-footer .footer-box img {
      max-width: 100%;
      vertical-align: top;
      margin-bottom: 10px; }
  .login-footer .copyright {
    display: block;
    color: #fff;
    font-size: 13px;
    text-align: right; }
  .login-footer .change-lang-box {
    text-align: right; }
    .login-footer .change-lang-box .select-wrap:after {
      color: #fff; }
    .login-footer .change-lang-box .select-wrap .form-control {
      color: #fff; }
  @media (min-width: 768px) {
    .login-footer {
      position: absolute;
      bottom: 0; }
      .login-footer .footer-box {
        position: relative;
        width: 100%;
        background-image: url("/static/img/bg_login_footer.png");
        background-size: 100%;
        background-position: center 60%;
        background-repeat: no-repeat;
        height: 180px; }
      .login-footer .copyright {
        position: absolute;
        width: 100%;
        text-align: center;
        top: 80%;
        font-size: 15px; }
      .login-footer .change-lang-box {
        position: absolute;
        text-align: right;
        top: 80%;
        right: 0; } }
  @media (min-width: 992px) {
    .login-footer .footer-box {
      background-position: center 100%;
      height: 203px; }
    .login-footer .copyright {
      top: 82%; }
    .login-footer .change-lang-box {
      top: 85%; } }

.login-body {
  position: relative;
  border: 1px solid #bfbfbf;
  background-color: #fff;
  z-index: 3;
  margin: 0 5% 50px; }
  .login-body button.at-social-btn i {
    float: none;
    border: 0;
    font-size: 1.15em;
    padding: 0; }
  .login-body button.at-social-btn#at-kakao {
    background-color: #ffcd00; }
    .login-body button.at-social-btn#at-kakao:hover, .login-body button.at-social-btn#at-kakao:focus, .login-body button.at-social-btn#at-kakao:active {
      background-color: #f0c100; }
  .login-body button.at-social-btn#at-naver {
    background-color: #3eaf0e;
    color: #fff; }
    .login-body button.at-social-btn#at-naver:hover, .login-body button.at-social-btn#at-naver:focus, .login-body button.at-social-btn#at-naver:active {
      background-color: #39a10d; }
  @media (min-width: 768px) {
    .login-body {
      width: 80%;
      max-width: 850px;
      margin: 0 0 150px; } }

.sign_in-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #4472c4;
  background: -moz-linear-gradient(-45deg, #4472c4 40%, #019999 100%);
  background: -webkit-linear-gradient(-45deg, #4472c4 40%, #019999 100%);
  background: linear-gradient(135deg, #4472c4 40%, #019999 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4472c4', endColorstr='#019999',GradientType=1 );
  font-size: 12px;
  overflow-y: auto; }
  @media (min-width: 768px) {
    .sign_in-wrap {
      font-size: 14px; } }
  @media (min-width: 1200px) {
    .sign_in-wrap {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: row-reverse;
      -moz-box-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      -webkit-flex-direction: row-reverse;
      flex-direction: row-reverse; } }
  .sign_in-wrap .link {
    color: #15a5b7; }
  .sign_in-wrap .header-title {
    color: #fff;
    font-size: 16px;
    padding: 5vw 5%;
    text-align: center;
    font-weight: bold; }
    @media (min-width: 768px) {
      .sign_in-wrap .header-title {
        padding: 5vw 15%;
        font-size: 24px; } }
    @media (min-width: 992px) {
      .sign_in-wrap .header-title {
        padding: 60px 15% 30px;
        font-size: 30px; } }
    @media (min-width: 1200px) {
      .sign_in-wrap .header-title {
        padding: 80px 0 40px;
        width: 70%;
        margin: 0 auto; } }
  @media (min-width: 1200px) {
    .sign_in-wrap .sign_in-bg-wrap {
      width: 100%;
      height: 100vh;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      overflow: hidden; } }
  .sign_in-wrap .sign_in-bg {
    display: none; }
    @media (min-width: 1200px) {
      .sign_in-wrap .sign_in-bg {
        flex: 1;
        display: block;
        background-image: url("/static/img/bg_login.png");
        background-size: initial;
        background-position: center 0;
        background-repeat: no-repeat; } }
  .sign_in-wrap .sign_in-frame {
    width: 920px;
    height: 516px;
    margin: 41px auto 0;
    background-color: rgba(0, 0, 0, 0.5); }
    .sign_in-wrap .sign_in-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .sign_in-wrap .sign_in-box {
    position: relative;
    margin: 0 5% 20px; }
    .sign_in-wrap .sign_in-box .inner-box {
      background-color: #fff;
      padding: 10px; }
    @media (min-width: 768px) {
      .sign_in-wrap .sign_in-box {
        margin: 0 10% 40px; }
        .sign_in-wrap .sign_in-box .inner-box {
          padding: 30px; } }
    @media (min-width: 992px) {
      .sign_in-wrap .sign_in-box {
        width: 60%;
        margin: 0 auto 80px; } }
    @media (min-width: 1200px) {
      .sign_in-wrap .sign_in-box {
        width: 35%;
        max-width: 600px;
        min-width: 380px;
        height: 100vh;
        margin: 0;
        overflow-y: auto;
        background-color: #fff;
        z-index: 10; } }
    .sign_in-wrap .sign_in-box .logo {
      display: block;
      width: 100px;
      margin: 0 auto 10px; }
      .sign_in-wrap .sign_in-box .logo img {
        max-width: 100%; }
      @media (min-width: 768px) {
        .sign_in-wrap .sign_in-box .logo {
          width: 140px;
          margin: 0 auto 20px; } }
      @media (min-width: 992px) {
        .sign_in-wrap .sign_in-box .logo {
          width: 182px;
          margin-top: 40px; } }
    .sign_in-wrap .sign_in-box .btn-back {
      position: absolute;
      top: 12px;
      left: 10px;
      font-size: 14px;
      border: 1px solid #15a5b7;
      background-color: #fff;
      padding: 3px 10px; }
      @media (min-width: 768px) {
        .sign_in-wrap .sign_in-box .btn-back {
          top: 30px;
          left: 30px; } }
      @media (min-width: 992px) {
        .sign_in-wrap .sign_in-box .btn-back {
          font-size: 15px;
          padding: 5px 20px;
          top: 20px;
          left: 20px; } }
    .sign_in-wrap .sign_in-box.hide-title .at-title {
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      height: 1px;
      visibility: hidden;
      z-index: -1; }
  .sign_in-wrap .at-form {
    padding: 10px 16px;
    margin: 0; }
    @media (min-width: 768px) {
      .sign_in-wrap .at-form {
        padding: 20px 40px; } }
    @media (min-width: 992px) {
      .sign_in-wrap .at-form {
        padding: 20px 60px; } }
    @media (min-width: 1200px) {
      .sign_in-wrap .at-form {
        padding: 20px 0;
        margin: 0 auto;
        width: 100%;
        max-width: 320px; } }
  .sign_in-wrap .at-title h3 {
    font-weight: normal; }
  .sign_in-wrap .at-oauth {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 120px;
    margin: 0; }
    @media (min-width: 768px) {
      .sign_in-wrap .at-oauth {
        min-height: 150px; } }
    .sign_in-wrap .at-oauth button.at-social-btn {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      margin: 10px 0 0; }
      .sign_in-wrap .at-oauth button.at-social-btn:first-child {
        margin-top: 0; }
      .sign_in-wrap .at-oauth button.at-social-btn i,
      .sign_in-wrap .at-oauth button.at-social-btn svg {
        float: none;
        border: 0;
        font-size: 1.15em;
        padding: 0;
        margin-right: 5px;
        width: auto; }
      .sign_in-wrap .at-oauth button.at-social-btn#at-kakao {
        background-color: #ffcd00; }
        .sign_in-wrap .at-oauth button.at-social-btn#at-kakao:hover, .sign_in-wrap .at-oauth button.at-social-btn#at-kakao:focus, .sign_in-wrap .at-oauth button.at-social-btn#at-kakao:active {
          background-color: #f0c100; }
      .sign_in-wrap .at-oauth button.at-social-btn#at-naver {
        background-color: #3eaf0e;
        color: #fff; }
        .sign_in-wrap .at-oauth button.at-social-btn#at-naver:hover, .sign_in-wrap .at-oauth button.at-social-btn#at-naver:focus, .sign_in-wrap .at-oauth button.at-social-btn#at-naver:active {
          background-color: #39a10d; }
  .sign_in-wrap .at-sep strong {
    font-size: 13px;
    color: #ccc;
    text-transform: lowercase;
    font-weight: normal; }
  @media (min-width: 768px) {
    .sign_in-wrap .at-sep {
      margin: 10px 0; }
      .sign_in-wrap .at-sep strong {
        font-size: 15px; } }
  @media (min-width: 992px) {
    .sign_in-wrap .at-sep strong {
      font-size: 16px; } }
  .sign_in-wrap .at-error.alert {
    padding: 0.5rem 0; }
  .sign_in-wrap .at-pwd-form .form-group + .form-group {
    margin-top: 20px; }
  .sign_in-wrap .at-pwd-form label {
    font-size: 12px;
    margin-bottom: 3px;
    font-weight: normal; }
  .sign_in-wrap .at-pwd-form .form-control {
    font-size: 14px; }
  .sign_in-wrap .at-pwd-form .at-pwd-link {
    padding: 10px 0; }
  .sign_in-wrap .at-pwd-form .btn-box {
    margin-top: 30px; }
    .sign_in-wrap .at-pwd-form .btn-box .btn {
      width: 100%; }
  .sign_in-wrap .at-pwd-form .help-block {
    font-size: 11px;
    color: #ed0001; }
  @media (min-width: 768px) {
    .sign_in-wrap .at-pwd-form label {
      font-size: 14px;
      margin-bottom: 5px; }
    .sign_in-wrap .at-pwd-form .form-control {
      font-size: 16px;
      padding-top: 8px;
      padding-bottom: 8px; }
    .sign_in-wrap .at-pwd-form .help-block {
      font-size: 12px; } }
  @media (min-width: 992px) {
    .sign_in-wrap .at-pwd-form .btn-box {
      margin-top: 50px; }
      .sign_in-wrap .at-pwd-form .btn-box .btn {
        font-size: 16px; } }
  .sign_in-wrap .at-signup-link {
    margin-bottom: 60px; }
  .sign_in-wrap .at-signin-link {
    margin-top: 40px; }
  .sign_in-wrap .at-resend-verification-email-link p {
    text-align: center; }
  .sign_in-wrap .at-terms-link a {
    color: #15a5b7; }
  .sign_in-wrap .at-terms-link .form-check {
    display: inline-block;
    padding: 0;
    vertical-align: middle; }
    .sign_in-wrap .at-terms-link .form-check .form-check-input {
      position: relative;
      margin: 0; }

.user-wrap {
  position: relative;
  width: 100%;
  font-family: 'NanumSquare', sans-serif; }

.user-header {
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #2f373a;
  color: #fff;
  text-align: center;
  z-index: 3; }
  .user-header .brand-logo {
    display: inline-block;
    padding: 7px 0 8px; }
  .user-header .btn-menu {
    position: absolute;
    top: 0;
    left: 2%;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    z-index: 1; }
    .user-header .btn-menu .icon-bar {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 1px;
      background-color: #fff; }
    .user-header .btn-menu .icon-bar + .icon-bar {
      margin-top: 4px; }
    .user-header .btn-menu.on {
      background-color: #fff; }
      .user-header .btn-menu.on .icon-bar {
        background-color: #28ace2; }
  .user-header .page-title {
    display: none; }
  .user-header .user-profile {
    position: absolute;
    right: 5px;
    top: 0;
    z-index: 1; }
    .user-header .user-profile .thumb-icon {
      display: block;
      width: 32px;
      height: 32px;
      border-radius: 32px;
      overflow: hidden;
      background-color: #c4c4c4; }
      .user-header .user-profile .thumb-icon .fa-user {
        color: #fff;
        font-size: 1.6em;
        padding: 3px 0; }
    .user-header .user-profile .profile-thumb {
      width: 100%;
      height: 100%;
      border-radius: 16px; }
    .user-header .user-profile .dropdown.pc {
      display: none; }
    .user-header .user-profile .dropdown-toggle {
      display: block;
      min-width: 50px;
      height: 50px;
      padding: 9px; }
      .user-header .user-profile .dropdown-toggle:after {
        display: none; }
    .user-header .user-profile .dropdown-menu {
      right: 0;
      left: auto;
      min-width: 300px;
      background-color: #2f373a;
      margin-top: 0; }
    .user-header .user-profile .dropdown-menu .item {
      display: block;
      text-align: center;
      color: #fff;
      padding: 0 10px;
      line-height: 32px; }
    .user-header .user-profile .dropdown-menu .thumb-icon {
      display: inline-block;
      margin-left: 8px;
      margin-right: 8px; }
  @media (min-width: 768px) {
    .user-header .btn-menu {
      left: 10px; }
    .user-header .brand-logo,
    .user-header .user-profile {
      position: absolute;
      top: 50%; }
    .user-header .brand-logo {
      padding: 0;
      left: 60px;
      margin-top: -18px; }
    .user-header .user-profile {
      right: 2%;
      margin-top: -25px; }
      .user-header .user-profile .dropdown.pc {
        display: block; }
      .user-header .user-profile .dropdown.mobile {
        display: none; }
      .user-header .user-profile .dropdown-toggle {
        line-height: 32px;
        color: #fff; }
        .user-header .user-profile .dropdown-toggle:hover {
          text-decoration: none; }
      .user-header .user-profile .dropdown-toggle .user-name {
        display: inline-block;
        vertical-align: middle; }
      .user-header .user-profile .dropdown-toggle .thumb-icon {
        display: inline-block;
        margin-left: 8px;
        margin-right: 8px;
        vertical-align: middle; }
      .user-header .user-profile .dropdown-menu {
        min-width: 150px; }
      .user-header .user-profile .dropdown-menu > li.dropdown-item > a {
        color: #fff; }
      .user-header .user-profile .dropdown-menu > li.dropdown-item:hover,
      .user-header .user-profile .dropdown-menu > li.dropdown-item:focus,
      .user-header .user-profile .dropdown-menu > li.dropdown-item > a:hover,
      .user-header .user-profile .dropdown-menu > li.dropdown-item > a:focus {
        color: #fff;
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.2);
        cursor: pointer; }
    .user-header .page-title {
      display: block;
      font-size: 18px;
      line-height: 50px; } }
  @media (min-width: 992px) {
    .user-header .btn-menu {
      display: none; }
    .user-header .brand-logo {
      left: 3%; } }

.user-site-header {
  position: fixed;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #fff;
  width: 100%;
  height: 50px;
  z-index: 3; }
  .user-site-header .brand-logo {
    width: 10%;
    min-width: 100px;
    max-width: 160px;
    margin: 0 3%; }
    .user-site-header .brand-logo img {
      max-width: 100%; }
    @media (min-width: 768px) {
      .user-site-header .brand-logo {
        margin-left: 20px;
        margin-right: 20px; } }
    @media (min-width: 1200px) {
      .user-site-header .brand-logo {
        margin-left: 40px;
        margin-right: 40px; } }
  .user-site-header .header-login {
    position: absolute;
    right: 3%;
    font-size: 0.9rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .user-site-header .header-login .dropdown {
      margin-left: 20px; }
    .user-site-header .header-login .btn-login {
      font-size: 12px;
      padding: 0.2em .7em;
      color: #333; }
      .user-site-header .header-login .btn-login:hover, .user-site-header .header-login .btn-login:focus, .user-site-header .header-login .btn-login:active, .user-site-header .header-login .btn-login:focus-visible {
        color: #15a5b7; }
      @media (min-width: 768px) {
        .user-site-header .header-login .btn-login {
          font-size: 14px; } }
      @media (min-width: 992px) {
        .user-site-header .header-login .btn-login {
          font-size: 16px;
          margin: 0 10px; } }

.user-container {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 2; }

.user-menu-wrap {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: -240px;
  width: 240px;
  border-right: 1px solid #a6a6a6;
  background-color: #fff;
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  -ms-transition: left 0.2s ease;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease; }
  .user-menu-wrap.organ-open {
    width: 300px;
    left: -300px; }
  .user-menu-wrap.on {
    left: 0; }
  .user-menu-wrap .user-menu {
    padding: 20px 0; }
  .user-menu-wrap .btn-make-organ {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    border: 0;
    border-radius: 0;
    font-size: 16px;
    color: #2f373a;
    padding-top: 20px;
    padding-bottom: 20px; }
    .user-menu-wrap .btn-make-organ:before {
      display: block;
      position: absolute;
      top: 0;
      left: 13px;
      right: 13px;
      content: '';
      height: 1px;
      background-color: #d9d9d9; }
  .user-menu-wrap .menu-item {
    position: relative; }
    .user-menu-wrap .menu-item .icon {
      position: absolute;
      display: block;
      width: 30px;
      height: 30px;
      top: 50%;
      left: 20px;
      margin-top: -15px;
      background-repeat: no-repeat;
      background-position: 0 0; }
      .user-menu-wrap .menu-item .icon.site {
        background-image: url("/static/img/icon_user_menu01.png"); }
      .user-menu-wrap .menu-item .icon.organization {
        background-image: url("/static/img/icon_user_menu03.png"); }
      .user-menu-wrap .menu-item .icon.activity {
        background-image: url("/static/img/icon_user_menu02.png"); }
      .user-menu-wrap .menu-item .icon.profile {
        background-image: url("/static/img/icon_user_menu04.png"); }
    .user-menu-wrap .menu-item a {
      display: block;
      padding: 20px 30px 20px 60px;
      color: #333;
      font-size: 16px;
      cursor: pointer; }
  @media (min-width: 992px) {
    .user-menu-wrap {
      position: relative;
      top: 0;
      left: 0; } }

.user-body {
  width: 100%;
  height: 100%;
  background-color: #f4f4f2;
  overflow: auto; }
  .user-body > .row {
    margin-left: 0;
    margin-right: 0;
    height: 100%; }
  .user-body .row {
    margin-left: 0;
    margin-right: 0; }
  .user-body [class*="col-"] {
    padding-left: 0;
    padding-right: 0; }
  .user-body .user-title {
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: 28px; }

.user-content-header .content-title {
  font-size: 16px;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .user-content-header .content-title {
      font-size: 24px;
      margin-bottom: 20px; } }

.user-form-wrap {
  max-width: 552px;
  margin: 0 auto; }
  .user-form-wrap .form-group {
    padding: 0 1em; }
    .user-form-wrap .form-group label {
      font-size: 14px; }
    .user-form-wrap .form-group .form-control {
      height: 42px;
      border-radius: 0; }
  .user-form-wrap .btn[type=submit] {
    margin-top: 35px;
    background-color: #2f373a;
    border-color: #2f373a;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px; }
    .user-form-wrap .btn[type=submit]:hover, .user-form-wrap .btn[type=submit]:focus, .user-form-wrap .btn[type=submit]:active {
      background-color: #394144; }
  @media (min-width: 768px) {
    .user-form-wrap .form-group {
      padding: 0 3.5em;
      margin-bottom: 20px; }
      .user-form-wrap .form-group label {
        font-size: 18px; }
      .user-form-wrap .form-group .form-control {
        height: 56px;
        font-size: 16px; }
    .user-form-wrap .btn[type=submit] {
      margin-top: 70px;
      padding: 15px 10px;
      font-size: 18px; } }

.user-site-main {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  overflow: hidden; }
  .user-site-main .nav-wrap {
    height: 33%;
    background-color: #f4f4f2; }
  .user-site-main .us-nav-header {
    height: 50px;
    text-align: center; }
    .user-site-main .us-nav-header .brand-logo {
      display: inline-block;
      width: 10%;
      min-width: 100px;
      max-width: 190px;
      padding: 5px 0; }
      .user-site-main .us-nav-header .brand-logo img {
        max-width: 100%; }
  .user-site-main .theme-category-nav {
    height: calc(100% - 50px); }
  .user-site-main .us-theme-list-box {
    position: relative;
    flex: 1;
    background-color: #fff; }
  @media (min-width: 768px) {
    .user-site-main {
      -webkit-box-flex-direction: row;
      -moz-box-flex-direction: row;
      -ms-flex-direction: row;
      -webkit-flex-direction: row;
      flex-direction: row; }
      .user-site-main .nav-wrap {
        width: 40%;
        max-width: 400px;
        height: 100%; }
      .user-site-main .us-theme-list-box {
        max-width: 1000px; } }
  @media (min-width: 992px) {
    .user-site-main .us-nav-header {
      height: 80px;
      text-align: left;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      padding: 0 30px; }
      .user-site-main .us-nav-header .brand-logo {
        width: 180px;
        min-width: auto;
        max-width: none;
        padding: 0; }
    .user-site-main .theme-category-nav .tc-header {
      padding: 30px 30px 15px; }
    .user-site-main .theme-category-nav .tc-title {
      font-size: 28px; }
    .user-site-main .theme-category-nav .category-box {
      padding: 0 30px; }
    .user-site-main .theme-category-nav {
      height: calc(100% - 80px); } }
  .user-site-main .create-theme-box {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    top: 0;
    right: -100%;
    transition: right 0.1s;
    background-color: #f4f4f2;
    z-index: 10; }
    .user-site-main .create-theme-box.active {
      right: 0; }
    @media (min-width: 768px) {
      .user-site-main .create-theme-box {
        width: 40%;
        height: 100%;
        right: -45%;
        transition-duration: 0.15s;
        box-shadow: -3px 0 15px 4px rgba(0, 0, 0, 0.2); } }
    @media (min-width: 992px) {
      .user-site-main .create-theme-box {
        width: 450px;
        right: -470px; } }
    .user-site-main .create-theme-box .btn-close {
      position: absolute;
      top: 15px;
      right: 20px;
      width: 24px;
      height: 24px;
      border-radius: 24px;
      color: #fff;
      font-size: 26px;
      padding: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 10; }
    .user-site-main .create-theme-box .theme-view-box {
      margin-top: 30px;
      margin-bottom: 10px; }
      .user-site-main .create-theme-box .theme-view-box .label {
        display: inline-block;
        font-size: 12px;
        margin-bottom: 3px; }
      .user-site-main .create-theme-box .theme-view-box .required {
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px;
        color: #15a5b7; }
      .user-site-main .create-theme-box .theme-view-box .theme {
        position: relative;
        width: 50%;
        min-width: 200px;
        margin: 0 auto; }
      .user-site-main .create-theme-box .theme-view-box .btn-close {
        top: 10px;
        right: 10px; }
      .user-site-main .create-theme-box .theme-view-box .thumbnail-list-item {
        padding: 0; }
        .user-site-main .create-theme-box .theme-view-box .thumbnail-list-item:hover .thumbnail,
        .user-site-main .create-theme-box .theme-view-box .thumbnail-list-item:focus .thumbnail,
        .user-site-main .create-theme-box .theme-view-box .thumbnail-list-item:active .thumbnail {
          border-color: #ccc;
          box-shadow: none; }
      .user-site-main .create-theme-box .theme-view-box .no-theme {
        width: 50%;
        min-width: 200px;
        height: 150px;
        font-size: 16px;
        font-weight: bold;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #fff;
        margin: 0 auto; }
      @media (min-width: 992px) {
        .user-site-main .create-theme-box .theme-view-box .label {
          font-size: 14px;
          margin-bottom: 5px; }
        .user-site-main .create-theme-box .theme-view-box .theme {
          width: 60%; }
        .user-site-main .create-theme-box .theme-view-box .no-theme {
          width: 60%;
          height: 200px; } }
      @media (min-width: 1200px) {
        .user-site-main .create-theme-box .theme-view-box .theme {
          width: 300px; }
        .user-site-main .create-theme-box .theme-view-box .no-theme {
          width: 300px;
          height: 260px; } }

.theme-category-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%; }
  .theme-category-nav .tc-header {
    padding: 10px 15px; }
  .theme-category-nav .tc-title {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px; }
  .theme-category-nav .tc-search-box {
    position: relative;
    margin-bottom: 10px; }
    .theme-category-nav .tc-search-box .icon {
      position: absolute;
      top: 50%;
      left: 5%;
      margin-top: -10px; }
    .theme-category-nav .tc-search-box .form-control {
      padding-left: 17%; }
  .theme-category-nav .category-box {
    overflow-y: auto;
    padding: 0 15px; }
  .theme-category-nav .tc-nav-item {
    margin-bottom: 5px; }
  .theme-category-nav .btn-item {
    width: 100%;
    padding: 0.35em 0.8em;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-radius: 5px;
    border: 0;
    background-color: transparent; }
    .theme-category-nav .btn-item.active {
      background-color: #fff; }
    .theme-category-nav .btn-item:focus {
      outline: 0;
      box-shadow: none; }
    .theme-category-nav .btn-item:last-child {
      margin-bottom: 0; }
    .theme-category-nav .btn-item .count {
      height: 24px;
      min-width: 24px;
      border-radius: 24px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      background-color: #15a5b7;
      color: #fff;
      font-size: 12px;
      font-weight: bold; }

.ut-blank-theme {
  padding: 10px;
  margin-bottom: 10px; }
  .ut-blank-theme .go-to-back {
    color: #333;
    font-size: 14px; }
  .ut-blank-theme .blank-theme-text {
    font-weight: bold;
    text-align: center;
    padding: 5px 0; }
  .ut-blank-theme .btn {
    display: block;
    margin: 0 auto;
    font-size: 12px;
    width: auto; }
  @media (min-width: 768px) {
    .ut-blank-theme {
      margin-bottom: 20px; }
      .ut-blank-theme .go-to-back {
        font-size: 16px; }
      .ut-blank-theme .blank-theme-text {
        text-align: left;
        padding: 10px 0; }
      .ut-blank-theme .btn {
        display: inline-block;
        margin: 0;
        font-size: 14px; } }
  @media (min-width: 992px) {
    .ut-blank-theme {
      padding: 30px 40px;
      margin-bottom: 0; }
      .ut-blank-theme .go-to-back {
        font-size: 18px; }
      .ut-blank-theme .blank-theme-text {
        font-size: 24px; } }
  @media (min-width: 1200px) {
    .ut-blank-theme .go-to-back {
      font-size: 20px; }
    .ut-blank-theme .blank-theme-text {
      font-size: 26px; }
    .ut-blank-theme .btn {
      font-size: 16px; } }

.us-theme-list-box .use-theme-box {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.us-theme-list-box .theme-list-wrap {
  flex: 1;
  overflow-y: auto; }

.us-theme-list-box .ut-category-title {
  font-size: 15px;
  padding: 0 10px;
  font-weight: bold; }

.us-theme-list-box .inner-item-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-wrap: wrap;
  -moz-box-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.us-theme-list-box .theme-item {
  width: 50%; }

@media (min-width: 768px) {
  .us-theme-list-box .use-theme-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto; }
  .us-theme-list-box .ut-category-title {
    font-size: 18px; } }

@media (min-width: 992px) {
  .us-theme-list-box .theme-list-wrap {
    padding: 0 10px 10px; }
  .us-theme-list-box .ut-category-title {
    margin-bottom: 0;
    padding: 0 20px; }
  .us-theme-list-box .theme-item {
    padding: 15px 20px; } }

@media (min-width: 1200px) {
  .us-theme-list-box .theme-list-wrap {
    padding: 0 20px 20px; }
  .us-theme-list-box .ut-category-title {
    font-size: 20px; } }

.admin-container .theme-item,
.user-container .theme-item {
  font-size: 14px; }
  .admin-container .theme-item label,
  .user-container .theme-item label {
    margin-bottom: 0; }
  .admin-container .theme-item .form-control,
  .user-container .theme-item .form-control {
    font-size: 1em;
    min-height: calc(1.5em + 0.75rem); }
  .admin-container .theme-item select.form-control:not([size]):not([multiple]),
  .user-container .theme-item select.form-control:not([size]):not([multiple]) {
    height: calc(2.20rem); }
  .admin-container .theme-item .thumbnail,
  .user-container .theme-item .thumbnail {
    transition: all 0.1s; }
  @media (min-width: 992px) {
    .admin-container .theme-item,
    .user-container .theme-item {
      font-size: 16px; }
      .admin-container .theme-item .form-control,
      .user-container .theme-item .form-control {
        min-height: calc(1.5em + 0.75rem + 2px); }
      .admin-container .theme-item select.form-control:not([size]):not([multiple]),
      .user-container .theme-item select.form-control:not([size]):not([multiple]) {
        height: calc(2.25rem + 2px); } }
  .admin-container .theme-item .theme-description,
  .user-container .theme-item .theme-description {
    margin-bottom: 2rem; }
  .admin-container .theme-item .btn-area,
  .user-container .theme-item .btn-area {
    font-size: 12px;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    @media (min-width: 992px) {
      .admin-container .theme-item .btn-area,
      .user-container .theme-item .btn-area {
        font-size: 13px; } }
  .admin-container .theme-item .btn-last,
  .user-container .theme-item .btn-last {
    padding-right: 0; }
  .admin-container .theme-item .btn-outline-primary,
  .user-container .theme-item .btn-outline-primary {
    width: 100%;
    font-size: 0.8rem;
    padding: 3px;
    color: #333;
    border-color: #15a5b7; }
    .admin-container .theme-item .btn-outline-primary:hover, .admin-container .theme-item .btn-outline-primary:focus, .admin-container .theme-item .btn-outline-primary:focus-visible, .admin-container .theme-item .btn-outline-primary:active,
    .user-container .theme-item .btn-outline-primary:hover,
    .user-container .theme-item .btn-outline-primary:focus,
    .user-container .theme-item .btn-outline-primary:focus-visible,
    .user-container .theme-item .btn-outline-primary:active {
      background-color: #15a5b7;
      color: #fff; }
  .admin-container .theme-item:hover .thumbnail, .admin-container .theme-item:focus .thumbnail, .admin-container .theme-item:active .thumbnail, .admin-container .theme-item:focus-visible .thumbnail, .admin-container .theme-item.active .thumbnail,
  .user-container .theme-item:hover .thumbnail,
  .user-container .theme-item:focus .thumbnail,
  .user-container .theme-item:active .thumbnail,
  .user-container .theme-item:focus-visible .thumbnail,
  .user-container .theme-item.active .thumbnail {
    border-color: #15a5b7;
    box-shadow: 0 0 0 1px #15a5b7; }

.user-wrap.admin .user-body {
  position: relative;
  overflow: hidden; }

.admin-container {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 50px;
  z-index: 2; }
  @media (min-width: 768px) {
    .admin-container {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; } }

.admin-layout-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .admin-layout-wrap .admin-nav {
    position: relative;
    width: 40px;
    background-color: #017dc2;
    padding: 18px 0; }
    .admin-layout-wrap .admin-nav .btn-menu {
      width: 100%;
      padding: 10px 0;
      background-color: transparent;
      font-size: 12px;
      color: #fff;
      text-align: center;
      border: 0;
      opacity: .6;
      border-radius: 0;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .admin-layout-wrap .admin-nav .btn-menu:hover, .admin-layout-wrap .admin-nav .btn-menu:focus, .admin-layout-wrap .admin-nav .btn-menu:active, .admin-layout-wrap .admin-nav .btn-menu.active {
        background-color: #15a5b7;
        opacity: 1; }
      .admin-layout-wrap .admin-nav .btn-menu i, .admin-layout-wrap .admin-nav .btn-menu svg {
        font-size: 20px;
        margin-bottom: 3px; }
      .admin-layout-wrap .admin-nav .btn-menu .icon {
        display: block;
        width: 24px; }
        .admin-layout-wrap .admin-nav .btn-menu .icon img {
          max-width: 100%; }
      .admin-layout-wrap .admin-nav .btn-menu span {
        display: none; }
    .admin-layout-wrap .admin-nav .btn-create-theme {
      position: absolute;
      bottom: 20px;
      opacity: 1;
      margin-bottom: 0; }
    @media (min-width: 768px) {
      .admin-layout-wrap .admin-nav {
        width: 90px; }
        .admin-layout-wrap .admin-nav .btn-menu i, .admin-layout-wrap .admin-nav .btn-menu svg {
          font-size: 26px; }
        .admin-layout-wrap .admin-nav .btn-menu .icon {
          width: 28px;
          margin-bottom: 3px; }
        .admin-layout-wrap .admin-nav .btn-menu span {
          display: block; } }
  .admin-layout-wrap .admin-content-body {
    flex: 1;
    background-color: #fff;
    overflow-y: auto; }
  .admin-layout-wrap .admin-list-wrap {
    padding: 0 15px;
    width: 100%;
    margin: 0 auto; }
    @media (min-width: 1200px) {
      .admin-layout-wrap .admin-list-wrap {
        padding: 0 30px; } }
    .admin-layout-wrap .admin-list-wrap .admin-tabs {
      margin-top: 20px; }
      .admin-layout-wrap .admin-list-wrap .admin-tabs .nav {
        border-bottom: 1px solid #cfcfcf; }
        .admin-layout-wrap .admin-list-wrap .admin-tabs .nav a {
          display: block;
          padding: 8px 20px;
          color: #999;
          border-bottom: 3px solid transparent;
          margin-bottom: -1px;
          margin-right: 20px;
          font-size: 14px; }
          .admin-layout-wrap .admin-list-wrap .admin-tabs .nav a:hover, .admin-layout-wrap .admin-list-wrap .admin-tabs .nav a:focus, .admin-layout-wrap .admin-list-wrap .admin-tabs .nav a:active, .admin-layout-wrap .admin-list-wrap .admin-tabs .nav a:focus-visible {
            color: #017dc2; }
        .admin-layout-wrap .admin-list-wrap .admin-tabs .nav .active a {
          color: #017dc2;
          border-bottom-color: #017dc2; }
    .admin-layout-wrap .admin-list-wrap .admin-list-header {
      position: relative;
      padding: 30px 0 0;
      margin-bottom: 15px; }
      .admin-layout-wrap .admin-list-wrap .admin-list-header .title {
        font-size: 20px; }
      .admin-layout-wrap .admin-list-wrap .admin-list-header small {
        font-size: 12px;
        color: #808080; }
      .admin-layout-wrap .admin-list-wrap .admin-list-header .btn-download {
        position: absolute;
        top: 25px;
        right: 0; }
      @media (min-width: 992px) {
        .admin-layout-wrap .admin-list-wrap .admin-list-header .title {
          font-size: 30px; }
        .admin-layout-wrap .admin-list-wrap .admin-list-header small {
          font-size: 14px; }
        .admin-layout-wrap .admin-list-wrap .admin-list-header .btn-add-license {
          font-size: 16px;
          top: 30px; } }
    .admin-layout-wrap .admin-list-wrap .admin-search-wrap {
      margin: 15px 0; }
    .admin-layout-wrap .admin-list-wrap .table thead th {
      border-color: #d9d9d9;
      border-bottom-width: 1px;
      background-color: #f2f2f2; }
    .admin-layout-wrap .admin-list-wrap .table th,
    .admin-layout-wrap .admin-list-wrap .table td {
      font-size: 14px;
      padding: 0.75rem 15px;
      vertical-align: middle; }
    .admin-layout-wrap .admin-list-wrap .table .btn {
      padding: 0 5px; }
    .admin-layout-wrap .admin-list-wrap .btn-td {
      text-align: center; }
    .admin-layout-wrap .admin-list-wrap .btn-log {
      font-size: 20px; }
    .admin-layout-wrap .admin-list-wrap .in-table {
      padding: 0;
      margin: 0; }
      .admin-layout-wrap .admin-list-wrap .in-table th, .admin-layout-wrap .admin-list-wrap .in-table td {
        padding: 0;
        margin: 0;
        text-align: left;
        border-width: 0;
        width: 150px; }
    .admin-layout-wrap .admin-list-wrap .td-in-table {
      padding: 0.75em 0 !important; }
      .admin-layout-wrap .admin-list-wrap .td-in-table .in-table {
        width: 100%;
        padding: 0;
        margin: 0; }
        .admin-layout-wrap .admin-list-wrap .td-in-table .in-table th, .admin-layout-wrap .admin-list-wrap .td-in-table .in-table td {
          padding: 0 15px;
          margin: 0;
          text-align: left;
          border-width: 0;
          width: 150px; }
    .admin-layout-wrap .admin-list-wrap .admin-list-footer {
      padding: 10px 0 20px; }
    .admin-layout-wrap .admin-list-wrap .text-color-blue {
      color: #0073ae; }
    .admin-layout-wrap .admin-list-wrap .text-color-red {
      color: #f61e1e; }
    .admin-layout-wrap .admin-list-wrap .text-color-green {
      color: #42b112; }
    .admin-layout-wrap .admin-list-wrap.admin-license .btn-add-license {
      position: absolute;
      top: 23px;
      right: 0;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 14px; }
    .admin-layout-wrap .admin-list-wrap.admin-license .license-key-td {
      width: 30%;
      min-width: 200px; }
      .admin-layout-wrap .admin-list-wrap.admin-license .license-key-td .key-box {
        display: block;
        position: relative; }
      .admin-layout-wrap .admin-list-wrap.admin-license .license-key-td textarea {
        width: 100%;
        border: 0;
        padding-right: 40px; }
        .admin-layout-wrap .admin-list-wrap.admin-license .license-key-td textarea:focus {
          outline: 0; }
      .admin-layout-wrap .admin-list-wrap.admin-license .license-key-td .btn-copy {
        position: absolute;
        top: 3px;
        right: 20px;
        color: #777; }
    @media (min-width: 992px) {
      .admin-layout-wrap .admin-list-wrap.admin-license .btn-add-license {
        font-size: 16px;
        top: 30px; } }
    .admin-layout-wrap .admin-list-wrap.admin-site-credit .btn-refresh-list {
      position: absolute;
      top: 23px;
      right: 0;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 14px; }
    .admin-layout-wrap .admin-list-wrap.admin-site-credit .link-to-view {
      color: #15a5b7;
      cursor: pointer; }
    @media (min-width: 992px) {
      .admin-layout-wrap .admin-list-wrap.admin-site-credit .btn-refresh-list {
        font-size: 16px;
        top: 30px; } }

.admin-message-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%; }
  .admin-message-wrap .admin-message-list-wrap {
    position: relative;
    width: 100%;
    border-right: 1px solid #d9d9d9;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .admin-message-wrap .admin-message-list-wrap.active {
      display: none;
      width: 0; }
    .admin-message-wrap .admin-message-list-wrap .message-header {
      padding: 25px 25px 15px;
      border-bottom: 1px solid #d9d9d9; }
      .admin-message-wrap .admin-message-list-wrap .message-header .title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px; }
      .admin-message-wrap .admin-message-list-wrap .message-header .sclab-search-box {
        margin-bottom: 0; }
    .admin-message-wrap .admin-message-list-wrap .message-body {
      flex: 1;
      overflow-y: auto; }
      .admin-message-wrap .admin-message-list-wrap .message-body ul {
        margin-bottom: 0; }
      .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item {
        position: relative;
        padding: 15px 15px 15px 80px;
        font-size: 14px;
        border-bottom: 1px solid #d9d9d9;
        cursor: pointer;
        min-height: 5em; }
        .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item.active {
          background-color: #f2f2f2; }
        .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item.new .thumb:before {
          position: absolute;
          display: block;
          content: "";
          width: 10px;
          height: 10px;
          border-radius: 10px;
          background-color: #ff9900;
          top: -5px;
          left: -5px;
          z-index: 1; }
        .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item .thumb {
          position: absolute;
          width: 48px;
          height: 48px;
          top: 50%;
          left: 15px;
          margin-top: -24px; }
        .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item .thumb-icon {
          display: block;
          width: 100%;
          height: 100%;
          border-radius: 48px;
          overflow: hidden;
          background-color: #c4c4c4;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center; }
          .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item .thumb-icon .fa-user {
            color: #fff;
            font-size: 31px; }
        .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item .profile-thumb {
          width: 100%;
          height: 100%;
          border-radius: 24px; }
        .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item .info {
          margin-bottom: 5px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between; }
          .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item .info .date {
            color: #808080; }
        .admin-message-wrap .admin-message-list-wrap .message-body .message-list-item .message {
          padding-right: 20%;
          line-height: 1.6em;
          height: auto;
          max-height: 3.2em; }
    .admin-message-wrap .admin-message-list-wrap .admin-list-footer {
      border-top: 1px solid #d9d9d9;
      height: 65px;
      padding: 20px 0 20px; }
    @media (min-width: 768px) {
      .admin-message-wrap .admin-message-list-wrap {
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        width: 40% !important; } }
  .admin-message-wrap .admin-message-box {
    display: none;
    width: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .admin-message-wrap .admin-message-box.active {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      width: 100%; }
    .admin-message-wrap .admin-message-box .message-box-header {
      position: static;
      width: auto;
      height: auto;
      padding: 25px;
      border-bottom: 1px solid #d9d9d9; }
      .admin-message-wrap .admin-message-box .message-box-header .title {
        font-size: 30px; }
      .admin-message-wrap .admin-message-box .message-box-header .close {
        position: absolute;
        top: 28px;
        right: 20px;
        font-size: 30px; }
    .admin-message-wrap .admin-message-box .message-box-body {
      flex: 1; }
    .admin-message-wrap .admin-message-box .message-box-area {
      position: static;
      top: 0;
      width: 100%;
      height: 100%; }
    .admin-message-wrap .admin-message-box .message-content-box .message-item {
      font-size: 14px; }
      .admin-message-wrap .admin-message-box .message-content-box .message-item .user-name {
        display: none; }
      .admin-message-wrap .admin-message-box .message-content-box .message-item .user-thumb {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        width: 48px;
        height: 48px;
        border-radius: 48px;
        margin-right: 10px; }
        .admin-message-wrap .admin-message-box .message-content-box .message-item .user-thumb img {
          max-width: 100%; }
      .admin-message-wrap .admin-message-box .message-content-box .message-item.me .user-thumb {
        margin-right: 0;
        margin-left: 10px; }
      .admin-message-wrap .admin-message-box .message-content-box .message-item .user-text .message {
        padding: 15px; }
      .admin-message-wrap .admin-message-box .message-content-box .message-item .user-text .time {
        font-size: 12px; }
    .admin-message-wrap .admin-message-box .message-input-box .message-input {
      padding: 30px 20px; }
    @media (min-width: 768px) {
      .admin-message-wrap .admin-message-box {
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        width: 60% !important; }
        .admin-message-wrap .admin-message-box .message-box-header .close {
          display: none; } }

.admin-dashboard-wrap {
  position: relative;
  height: 100%; }
  .admin-dashboard-wrap .admin-fit-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .admin-dashboard-wrap .admin-flex-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .admin-dashboard-wrap .admin-flex-box.direction-column {
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
  .admin-dashboard-wrap .dashboard-top {
    height: 54%; }
  .admin-dashboard-wrap .dashboard-bottom > .row {
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
  @media (min-width: 768px) {
    .admin-dashboard-wrap .dashboard-bottom {
      height: 46%; }
      .admin-dashboard-wrap .dashboard-bottom > .row {
        height: 100%; } }
  .admin-dashboard-wrap .dashboard-info-box {
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid #e6eaeb;
    height: 120px; }
    .admin-dashboard-wrap .dashboard-info-box .info-item {
      width: 50%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      padding: 0 5%; }
      .admin-dashboard-wrap .dashboard-info-box .info-item strong {
        font-size: 11px; }
      .admin-dashboard-wrap .dashboard-info-box .info-item span {
        font-size: 20px;
        line-height: 1.3; }
    @media (min-width: 768px) {
      .admin-dashboard-wrap .dashboard-info-box {
        height: 86px; }
        .admin-dashboard-wrap .dashboard-info-box .row {
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center; }
        .admin-dashboard-wrap .dashboard-info-box .info-item {
          width: auto; }
          .admin-dashboard-wrap .dashboard-info-box .info-item strong {
            font-size: 12px; }
          .admin-dashboard-wrap .dashboard-info-box .info-item span {
            font-size: 30px; } }
  .admin-dashboard-wrap .dashboard-chart-box .chart-box {
    width: 100%; }
    .admin-dashboard-wrap .dashboard-chart-box .chart-box canvas {
      width: 100% !important; }
  @media (min-width: 768px) {
    .admin-dashboard-wrap .dashboard-chart-box {
      height: calc(100% - 86px); }
      .admin-dashboard-wrap .dashboard-chart-box .row {
        height: 100%; }
      .admin-dashboard-wrap .dashboard-chart-box .chart-box {
        width: 50%;
        height: 100%;
        overflow: hidden; }
        .admin-dashboard-wrap .dashboard-chart-box .chart-box canvas {
          height: 100% !important; } }

.admin-tabs-wrap {
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: wrap;
  margin: 15px 0; }
  .admin-tabs-wrap .tab-item {
    padding: 5px 15px; }
    .admin-tabs-wrap .tab-item a {
      color: #ccc; }
    .admin-tabs-wrap .tab-item a.active {
      color: #15a5b7;
      font-weight: 700; }
    @media (min-width: 768px) {
      .admin-tabs-wrap .tab-item {
        padding: 5px 30px; } }

.theme-main {
  position: relative;
  height: 100%;
  overflow-y: auto; }
  .theme-main .theme-list-box {
    background-color: #fff; }
  @media (min-width: 768px) {
    .theme-main {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      overflow-y: hidden; }
      .theme-main .create-theme-box {
        width: 40%;
        height: 100%;
        overflow-y: auto; }
      .theme-main .theme-list-box {
        flex: 1;
        height: 100%;
        overflow-y: auto; } }
  @media (min-width: 992px) {
    .theme-main .create-theme-box {
      width: 30%; } }

.create-theme-box {
  padding: 10px 3%; }
  .create-theme-box .user-title {
    font-size: 18px;
    margin: 1em 0; }
  .create-theme-box .form-group label {
    font-size: 12px;
    margin-bottom: 3px; }
  .create-theme-box .form-group .required {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    color: #15a5b7; }
  .create-theme-box .form-group .optional {
    display: inline-block;
    vertical-align: middle;
    color: #999;
    font-style: italic;
    font-size: 12px; }
  .create-theme-box .form-group + .form-group {
    margin-top: 20px; }
  .create-theme-box .form-control + .form-group {
    margin-top: 10px; }
  .create-theme-box .form-control {
    font-size: 14px; }
  .create-theme-box .checkbox {
    position: relative; }
  .create-theme-box .input-group {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    background-color: #fff; }
    .create-theme-box .input-group .form-control {
      border: 0; }
    .create-theme-box .input-group .form-control:read-only + .input-group-append {
      background-color: #e9ecef; }
    .create-theme-box .input-group .input-group-text {
      font-size: 14px;
      border: 0;
      background-color: transparent; }
    .create-theme-box .input-group .on svg,
    .create-theme-box .input-group .on i {
      color: #15a5b7; }
  .create-theme-box .input-group.copy-theme .input-group-text {
    border-left: 1px solid #ced4da;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    min-width: 80px;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .create-theme-box .input-group.copy-theme .input-group-text:hover {
      background-color: rgba(0, 0, 0, 0.05); }
  .create-theme-box select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 0px); }
  .create-theme-box .form-group.checkbox .form-check-input {
    margin-left: 0;
    margin-top: 3px; }
  .create-theme-box .form-group.checkbox .form-check-input:checked {
    background-color: #15a5b7;
    border-color: #15a5b7; }
  .create-theme-box .form-group.checkbox .form-check-label {
    margin-bottom: 0;
    padding-left: 30px; }
  .create-theme-box .btn.btn-block {
    font-size: 16px; }
  .create-theme-box .btn-go-dashboard {
    margin-top: 20px; }
  .create-theme-box .field-site-code.error,
  .create-theme-box .field-name.error,
  .create-theme-box .field-address.error,
  .create-theme-box .no-theme.error {
    border-color: #f00; }
  @media (min-width: 768px) {
    .create-theme-box {
      padding-left: 20px;
      padding-right: 20px; }
      .create-theme-box .user-title {
        font-size: 20px; } }
  @media (min-width: 992px) {
    .create-theme-box .user-title {
      font-size: 24px; }
    .create-theme-box .form-group label {
      font-size: 14px;
      margin-bottom: 5px; }
    .create-theme-box .form-control {
      font-size: 16px; }
    .create-theme-box .input-group .input-group-text {
      font-size: 16px; } }
  @media (min-width: 1200px) {
    .create-theme-box {
      padding-left: 40px;
      padding-right: 40px; } }

.theme-list-box {
  padding: 10px 0; }
  @media (min-width: 992px) {
    .theme-list-box {
      padding: 20px 0; } }
  .theme-list-box .list-search-box {
    padding: 10px 3%;
    margin-bottom: 10px; }
    .theme-list-box .list-search-box .select-box .dropdown-toggle {
      border-radius: 5px; }
    .theme-list-box .list-search-box .search-box .form-control {
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }
    .theme-list-box .list-search-box .search-box .input-group-addon {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px; }
    @media (min-width: 768px) {
      .theme-list-box .list-search-box {
        padding: 10px 20px;
        margin-bottom: 15px;
        -webkit-box-flex-direction: row;
        -moz-box-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-flex-direction: row;
        flex-direction: row; }
        .theme-list-box .list-search-box .select-box {
          min-width: 200px;
          width: auto;
          margin-bottom: 0;
          margin-right: 10px; }
        .theme-list-box .list-search-box .search-box {
          flex: 1; } }
    @media (min-width: 1200px) {
      .theme-list-box .list-search-box {
        padding: 10px 40px;
        margin-bottom: 20px; } }

.theme-list-box .content-wrap .site-category-box .category-title > a {
  padding-left: 3%;
  padding-right: 3%; }
  @media (min-width: 768px) {
    .theme-list-box .content-wrap .site-category-box .category-title > a {
      padding-left: 20px;
      padding-right: 20px; } }
  @media (min-width: 1200px) {
    .theme-list-box .content-wrap .site-category-box .category-title > a {
      padding-left: 40px;
      padding-right: 40px; } }

.theme-list-box .content-wrap .contents-item-wrap {
  padding: 0 2%; }
  @media (min-width: 768px) {
    .theme-list-box .content-wrap .contents-item-wrap {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 1200px) {
    .theme-list-box .content-wrap .contents-item-wrap {
      padding-left: 25px;
      padding-right: 25px; } }
  .theme-list-box .content-wrap .contents-item-wrap .swiper-button-prev,
  .theme-list-box .content-wrap .contents-item-wrap .swiper-button-next {
    width: calc(3% + 5px); }
    @media (min-width: 768px) {
      .theme-list-box .content-wrap .contents-item-wrap .swiper-button-prev,
      .theme-list-box .content-wrap .contents-item-wrap .swiper-button-next {
        width: calc(4% + 5px); } }
    @media (min-width: 1400px) {
      .theme-list-box .content-wrap .contents-item-wrap .swiper-button-prev,
      .theme-list-box .content-wrap .contents-item-wrap .swiper-button-next {
        width: 45px; } }

.theme-list-box.list-all .list-search-box {
  margin-bottom: 0; }

.theme-list-box.list-all .breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
  padding: 10px 3%; }
  .theme-list-box.list-all .breadcrumb span {
    display: inline-block;
    margin: 0 10px; }

@media (min-width: 768px) {
  .theme-list-box.list-all .breadcrumb {
    padding-left: 20px;
    padding-right: 20px; } }

@media (min-width: 1200px) {
  .theme-list-box.list-all .list-search-box {
    margin-bottom: 10px; }
  .theme-list-box.list-all .breadcrumb {
    padding-left: 30px;
    padding-right: 30px; } }

.theme-list-box .theme-all-list {
  padding: 0 2%; }
  .theme-list-box .theme-all-list .theme-item {
    padding: 10px;
    width: 50%; }
  @media (min-width: 768px) {
    .theme-list-box .theme-all-list {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 992px) {
    .theme-list-box .theme-all-list .theme-item {
      width: 33.33333%; } }
  @media (min-width: 1200px) {
    .theme-list-box .theme-all-list {
      padding-left: 25px;
      padding-right: 25px; }
      .theme-list-box .theme-all-list .theme-item {
        width: 25%; } }
  @media (min-width: 1400px) {
    .theme-list-box .theme-all-list .theme-item {
      padding: 15px; } }

.admin-content-body .payment-wrap {
  background-color: #f4f4f2; }
  .admin-content-body .payment-wrap .side-menu {
    max-width: 350px; }
  .admin-content-body .payment-wrap .title-box .title {
    color: #0073ae;
    font-weight: bold; }
  .admin-content-body .payment-wrap .credit-box.is-lockdown {
    border-color: red; }

.admin-customer .customer-tab-box {
  margin-bottom: 20px; }
  .admin-customer .customer-tab-box .tab-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .admin-customer .customer-tab-box .tab-list li {
      margin: 0 10px 10px; }
  .admin-customer .customer-tab-box .btn-tab {
    background-color: #D9D9D9;
    width: 150px;
    font-size: 18px;
    color: #666; }
    .admin-customer .customer-tab-box .btn-tab:hover, .admin-customer .customer-tab-box .btn-tab.active {
      background-color: #15a5b7;
      color: #fff; }

.admin-customer .chart-box,
.admin-customer .used-box {
  margin-bottom: 30px; }

.admin-customer .chart-item {
  margin-right: 20px;
  flex: 1; }
  .admin-customer .chart-item:last-child {
    margin-right: 0; }
  .admin-customer .chart-item .color-chart-frame {
    position: relative;
    width: 100%;
    padding-bottom: 60%; }
    .admin-customer .chart-item .color-chart-frame .color-chart {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 1px solid #ccc; }

.admin-customer .customer-title {
  font-size: 24px;
  color: #15a5b7;
  padding: 5px 0 8px; }

.admin-customer .used-box {
  position: relative; }
  .admin-customer .used-box .search-wrap {
    margin-bottom: 10px; }
  .admin-customer .used-box .used-this-month-search {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: start;
    flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .admin-customer .used-box .used-this-month-search .select-box {
      margin-right: 10px; }
      .admin-customer .used-box .used-this-month-search .select-box .form-control {
        width: 120px;
        height: calc(2rem + 2px);
        min-height: auto;
        font-size: 14px; }
  @media (min-width: 768px) {
    .admin-customer .used-box .search-wrap {
      position: absolute;
      top: 0;
      right: 0; } }
  .admin-customer .used-box .bill-box {
    position: relative;
    border: 1px solid #ccc;
    padding: 60px 20px 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    @media (min-width: 992px) {
      .admin-customer .used-box .bill-box {
        -webkit-box-flex-direction: row;
        -moz-box-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-flex-direction: row;
        flex-direction: row; } }
  .admin-customer .used-box .bill-title {
    position: absolute;
    font-size: 20px;
    top: 20px;
    left: 20px; }
  .admin-customer .used-box .bill-date {
    position: absolute;
    font-size: 15px;
    top: 20px;
    right: 20px; }
    .admin-customer .used-box .bill-date:before {
      display: inline-block;
      content: "";
      width: 3px;
      height: 3px;
      background-color: #000;
      margin-right: 8px;
      margin-bottom: 2px;
      vertical-align: middle; }
  .admin-customer .used-box .bill-item {
    position: relative;
    padding: 0 30px;
    font-weight: bold;
    font-size: 40px; }
    .admin-customer .used-box .bill-item small {
      font-size: 50%;
      font-weight: normal; }
    .admin-customer .used-box .bill-item:after {
      position: absolute;
      content: "/";
      right: 0;
      bottom: 12px;
      font-size: 50%;
      font-weight: normal; }
    .admin-customer .used-box .bill-item:last-child:after {
      display: none; }
    @media (min-width: 992px) {
      .admin-customer .used-box .bill-item {
        font-size: 50px; } }
    @media (min-width: 1200px) {
      .admin-customer .used-box .bill-item {
        font-size: 60px; } }

.admin-customer .admin-list-body .admin-search-wrap {
  margin-top: 0; }

.admin-data-hub-api .search-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px; }
  .admin-data-hub-api .search-wrap .search-title {
    font-size: 18px;
    margin-right: 30px; }
  .admin-data-hub-api .search-wrap .search-box {
    flex: 1; }
  .admin-data-hub-api .search-wrap .input-group .form-control {
    border: 2px solid #20366F;
    border-radius: 5px; }
  .admin-data-hub-api .search-wrap .input-group-addon {
    margin-left: 10px;
    background-color: #2B5798;
    border: 1px solid #2B5798;
    color: #fff;
    border-radius: 5px;
    font-size: 20px;
    width: 40px; }

.admin-data-hub-api .allowed-tabs {
  margin-right: 10px; }
  .admin-data-hub-api .allowed-tabs .btn {
    border: 1px solid #2B5798;
    color: #2B5798; }
    .admin-data-hub-api .allowed-tabs .btn:hover, .admin-data-hub-api .allowed-tabs .btn:focus, .admin-data-hub-api .allowed-tabs .btn:active, .admin-data-hub-api .allowed-tabs .btn:focus-visible, .admin-data-hub-api .allowed-tabs .btn.active {
      background-color: #2B5798;
      color: #fff; }

.admin-data-hub-api .api-hub-item:hover .site-inner-box, .admin-data-hub-api .api-hub-item:focus .site-inner-box, .admin-data-hub-api .api-hub-item:active .site-inner-box, .admin-data-hub-api .api-hub-item:focus-visible .site-inner-box, .admin-data-hub-api .api-hub-item.active .site-inner-box {
  border-color: #15a5b7;
  box-shadow: 0 0 0 1px #15a5b7; }

.admin-data-hub-api .api-hub-item:hover .waiting, .admin-data-hub-api .api-hub-item:focus .waiting, .admin-data-hub-api .api-hub-item:active .waiting, .admin-data-hub-api .api-hub-item:focus-visible .waiting, .admin-data-hub-api .api-hub-item.active .waiting {
  border-color: #ed0001;
  box-shadow: 0 0 0 1px #ed0001; }

.admin-data-hub-api .api-hub-item .waiting {
  border-color: #ed0001; }
  .admin-data-hub-api .api-hub-item .waiting .api-category,
  .admin-data-hub-api .api-hub-item .waiting .api-name,
  .admin-data-hub-api .api-hub-item .waiting .api-desc,
  .admin-data-hub-api .api-hub-item .waiting .api-tags {
    opacity: 0.5; }

.admin-data-hub-api .api-hub-item .status {
  display: none; }

.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0;
  border-bottom: 10px solid #C30060;
  cursor: nwse-resize;
  position: absolute;
  right: 0;
  bottom: 0; }

.editorBody {
  position: absolute;
  width: 100%;
  height: 100vh; }
  .editorBody .editor-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow-y: auto;
    overflow-x: hidden; }
    .editorBody .editor-content .data-content {
      background-color: #fff; }
  .editorBody .content-margin-top {
    padding-top: 40px;
    width: 100%;
    height: 100%; }
    .editorBody .content-margin-top .relative-box {
      position: relative;
      width: 100%;
      height: 100%; }
    .editorBody .content-margin-top .fit-box {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
      .editorBody .content-margin-top .fit-box.ovf-y-auto {
        overflow-y: auto; }
  .editorBody button, .editorBody .btn:focus, .editorBody .btn:active {
    outline: none !important;
    box-shadow: none; }
  .editorBody .header {
    position: absolute;
    z-index: 2000;
    width: 100%;
    height: 40px;
    background-color: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1); }
    .editorBody .header .header-logo {
      position: relative;
      width: 145px;
      height: 100%;
      float: left;
      text-align: center;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .editorBody .header .header-logo img {
        max-width: 140px;
        max-height: 35px; }
      @media (min-width: 1200px) {
        .editorBody .header .header-logo {
          width: 160px; } }
  .editorBody .header-name-box {
    float: left;
    width: 11%;
    height: 100%;
    max-width: 213px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 0 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .editorBody .header-name-box .name {
      display: block;
      font-size: 18px;
      color: #15a5b7;
      margin-top: 2px; }
    @media (min-width: 1080px) {
      .editorBody .header-name-box {
        width: 13%; } }
    @media (min-width: 1200px) {
      .editorBody .header-name-box {
        padding: 0 20px; } }
  .editorBody .header-button-area {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .editorBody .header-button-area.left {
      float: left; }
    .editorBody .header-button-area.right {
      float: right;
      border-left: 1px solid #ddd; }
    .editorBody .header-button-area .svg,
    .editorBody .header-button-area .icon {
      transition: opacity .2s, color .2s;
      margin-bottom: 3px; }
    .editorBody .header-button-area .active {
      color: #15a5b7 !important; }
      .editorBody .header-button-area .active .svg,
      .editorBody .header-button-area .active .icon {
        opacity: 1; }
    .editorBody .header-button-area.left .active:after {
      position: absolute;
      left: 50%;
      margin-left: -25%;
      bottom: 3px;
      display: block;
      content: '';
      width: 50%;
      height: 3px;
      background-color: transparent; }
    .editorBody .header-button-area .undo,
    .editorBody .header-button-area .redo {
      opacity: 0.4; }
    .editorBody .header-button-area .undo.active,
    .editorBody .header-button-area .redo.active {
      opacity: 1;
      color: #333 !important; }
    .editorBody .header-button-area .button-item {
      position: relative;
      width: 38px;
      height: 100%;
      border: 0;
      border-right: 1px solid #ddd;
      color: #333;
      font-size: 18px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      cursor: pointer;
      background-color: transparent; }
      .editorBody .header-button-area .button-item .item-inner {
        width: 100%;
        height: 100%; }
      .editorBody .header-button-area .button-item:hover, .editorBody .header-button-area .button-item:focus, .editorBody .header-button-area .button-item:active {
        text-decoration: none;
        color: #15a5b7 !important; }
        .editorBody .header-button-area .button-item:hover .icon, .editorBody .header-button-area .button-item:focus .icon, .editorBody .header-button-area .button-item:active .icon {
          opacity: 1; }
      .editorBody .header-button-area .button-item:focus-visible {
        outline: 1px solid blue !important; }
      .editorBody .header-button-area .button-item.undo:not(.active), .editorBody .header-button-area .button-item.redo:not(.active) {
        color: #333 !important; }
      .editorBody .header-button-area .button-item .icon-svg {
        width: 20px; }
      @media (min-width: 1080px) {
        .editorBody .header-button-area .button-item {
          width: 40px;
          font-size: 20px; } }
      @media (min-width: 1200px) {
        .editorBody .header-button-area .button-item {
          width: 44px; } }
    .editorBody .header-button-area .userList {
      font-size: 24px; }
    .editorBody .header-button-area .alarm .icon,
    .editorBody .header-button-area .question .icon,
    .editorBody .header-button-area .full-screen .icon,
    .editorBody .header-button-area .setting .icon {
      opacity: 1; }
    .editorBody .header-button-area .alarm:after,
    .editorBody .header-button-area .question:after,
    .editorBody .header-button-area .full-screen:after,
    .editorBody .header-button-area .setting:after {
      display: none; }
    .editorBody .header-button-area .publish {
      width: auto !important; }
      .editorBody .header-button-area .publish .btn {
        font-size: 12px;
        padding: 5px 6px; }
        @media (min-width: 1200px) {
          .editorBody .header-button-area .publish .btn {
            padding: 5px 8px; } }
    .editorBody .header-button-area .notice-badge {
      position: absolute;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      top: 2px;
      right: 2px;
      width: 18px;
      height: 18px;
      background-color: #ff0000;
      color: #fff;
      font-size: 12px;
      text-align: center;
      border-radius: 5px;
      line-height: 1;
      overflow: hidden; }
  .editorBody .share-dropdown {
    padding: 5px 10px; }
    .editorBody .share-dropdown .dropdown-item {
      padding: 5px 10px;
      border-bottom: 1px solid #888; }
      .editorBody .share-dropdown .dropdown-item:last-child {
        border-bottom: 0; }
      .editorBody .share-dropdown .dropdown-item:hover {
        background-color: transparent; }
        .editorBody .share-dropdown .dropdown-item:hover > a {
          color: #15a5b7; }
      .editorBody .share-dropdown .dropdown-item > a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        font-size: 0.9rem;
        color: #333;
        transition: color .1s; }
      .editorBody .share-dropdown .dropdown-item .sns-icon {
        display: block;
        font-size: 24px;
        width: 30px; }
  .editorBody .setting-dropdown {
    position: fixed !important;
    top: 40px !important;
    right: 5px !important;
    left: auto !important;
    transform: translate3d(0, 0, 0) !important;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    color: #404040;
    border-radius: 0;
    min-width: 260px; }
    .editorBody .setting-dropdown .profile {
      padding: 5px 10px; }
    .editorBody .setting-dropdown .profile-info {
      padding-left: 70px; }
      .editorBody .setting-dropdown .profile-info .thumb-icon {
        position: absolute;
        top: 14px;
        left: 10px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        width: 68px;
        height: 68px;
        border-radius: 68px;
        overflow: hidden;
        background-color: #c4c4c4; }
        .editorBody .setting-dropdown .profile-info .thumb-icon .fa-user {
          color: #fff;
          font-size: 40px; }
        .editorBody .setting-dropdown .profile-info .thumb-icon .profile-thumb {
          width: auto;
          height: 100%;
          border-radius: 16px; }
      .editorBody .setting-dropdown .profile-info .info-item {
        margin-bottom: 5px; }
      .editorBody .setting-dropdown .profile-info .link {
        color: #15a5b7; }
      .editorBody .setting-dropdown .profile-info .btn-setting {
        height: 26px;
        border-radius: 26px;
        padding: 0 5px; }
        .editorBody .setting-dropdown .profile-info .btn-setting .icon {
          margin-right: 5px;
          color: #fff;
          opacity: 1; }
    .editorBody .setting-dropdown .dropdown-item {
      padding: 5px 10px; }
      .editorBody .setting-dropdown .dropdown-item a {
        display: block;
        color: #404040;
        cursor: pointer; }
      .editorBody .setting-dropdown .dropdown-item:active {
        background-color: #efefef;
        color: #404040; }
    .editorBody .setting-dropdown .form-group {
      margin-bottom: 0; }
    .editorBody .setting-dropdown .select-wrap {
      display: block;
      margin: 5px 0;
      padding-right: 0; }
      .editorBody .setting-dropdown .select-wrap select.form-control {
        border: 1px solid #ced4da;
        height: 34px;
        min-height: 34px;
        padding-top: 0;
        padding-bottom: 0;
        font-size: 14px; }
      .editorBody .setting-dropdown .select-wrap:after {
        display: none; }
  .editorBody .header-user-box {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
  .editorBody .thumb-item {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 0 7px;
    background-color: #ccc;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    overflow: hidden; }
    .editorBody .thumb-item img {
      max-width: 100%; }
    .editorBody .thumb-item span {
      line-height: 1; }
  .editorBody .header-toggle-btn {
    position: absolute;
    z-index: 2000;
    top: 40px;
    width: 100px;
    height: 10px;
    background-color: #fff;
    left: calc(50% - 50px);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 5px -3px rgba(0, 0, 0, 0.2); }
    .editorBody .header-toggle-btn svg {
      position: absolute;
      left: calc(50% - 3.23px);
      color: #15a5b7;
      transform-origin: center;
      margin-top: -3px; }
  .editorBody .editor-btn-group-wrap {
    position: fixed;
    z-index: 2000;
    top: 60px;
    left: -135px;
    transition: left ease-in-out .35s; }
    .editorBody .editor-btn-group-wrap.on {
      left: 20px !important; }
      .editorBody .editor-btn-group-wrap.on .btn-open {
        display: none !important; }
    .editorBody .editor-btn-group-wrap .btn-arrow {
      position: absolute;
      top: 0;
      border: 0;
      background-color: #15a5b7;
      color: #fff;
      padding: 0 0 0 6px;
      height: 21px; }
      .editorBody .editor-btn-group-wrap .btn-arrow svg + svg {
        margin-left: -1px; }
      .editorBody .editor-btn-group-wrap .btn-arrow.btn-close {
        border-top-left-radius: 22px;
        border-bottom-left-radius: 22px; }
      .editorBody .editor-btn-group-wrap .btn-arrow.btn-open {
        display: block;
        left: auto;
        right: -25px;
        padding: 0 8px;
        border-top-right-radius: 22px;
        border-bottom-right-radius: 22px; }
    .editorBody .editor-btn-group-wrap .editor-btn-group {
      display: flex;
      flex-direction: column;
      width: 135px;
      border-radius: 8px;
      border: 1px solid #15a5b7;
      background-color: #fff; }
      .editorBody .editor-btn-group-wrap .editor-btn-group + .editor-btn-group {
        margin-top: 10px; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .title {
        text-align: center;
        font-size: 11px;
        font-weight: normal;
        padding: 5px 0;
        background-color: #15a5b7;
        color: #fff;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        height: 21px; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .btn-box {
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .btn-section {
        position: relative;
        padding: 8px 5px; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-section:after {
          position: absolute;
          display: block;
          content: "";
          height: 1px;
          background-color: #ccc;
          opacity: 0.4;
          left: 5px;
          right: 5px;
          bottom: 0; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-section:last-child:after {
          display: none; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .btn-item {
        position: relative;
        width: 100%;
        font-size: 12px;
        color: #333;
        padding: 5px 5px 5px 35px;
        border-radius: 0;
        text-align: left;
        vertical-align: middle;
        margin-bottom: 8px; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-item:last-child {
          margin-bottom: 0; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-item:focus-visible {
          color: #15a5b7; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-item.btn-dpg {
          background-color: #022c51;
          color: #fff; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-item.btn-data-hub {
          background-color: #2B5798;
          color: #fff; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .btn-icon {
        position: absolute;
        top: 50%;
        left: 5px;
        width: 24px;
        text-align: center;
        transform: translateY(-55%); }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-icon svg,
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-icon .icon {
          font-size: 20px;
          padding: 0;
          vertical-align: middle; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-icon .icon:before {
          vertical-align: initial;
          margin-bottom: 0; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .btn-icon img {
          max-width: 100%; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .btn-label {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .drag-item {
        background-color: #fff;
        border-radius: 3px;
        margin-bottom: 10px;
        border-color: #c9c9c9; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .drag-item .btn-icon {
          transform: translateY(-50%); }
        .editorBody .editor-btn-group-wrap .editor-btn-group .drag-item.dragging {
          width: 160px;
          position: fixed; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .data-item {
        padding-left: 38px; }
        .editorBody .editor-btn-group-wrap .editor-btn-group .data-item .btn-label {
          font-size: 13px; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .menu-sub-title {
        font-size: 11px;
        color: #aaa;
        padding: 3px 0;
        margin-bottom: 5px; }
      .editorBody .editor-btn-group-wrap .editor-btn-group .switch-box .label {
        font-size: 13px; }
    .editorBody .editor-btn-group-wrap.ai-agent-block {
      left: -180px; }
      .editorBody .editor-btn-group-wrap.ai-agent-block .editor-btn-group {
        width: 180px; }
      .editorBody .editor-btn-group-wrap.ai-agent-block .btn-box.scroll-box {
        max-height: calc(100vh - 150px);
        overflow-y: auto; }
      .editorBody .editor-btn-group-wrap.ai-agent-block .search-box {
        position: relative;
        padding: 5px 5px 0; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .search-box .form-control {
          padding-left: 30px; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .search-box .search-icon {
          position: absolute;
          top: 8px;
          left: 12px;
          color: #ccc; }
      .editorBody .editor-btn-group-wrap.ai-agent-block .sub-title {
        font-size: 14px;
        margin-bottom: 5px; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .sub-title .btn {
          position: relative;
          font-size: 14px;
          width: 100%;
          padding: 0;
          text-align: left; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .sub-title .arrow {
          display: block;
          position: absolute;
          top: 6px;
          right: 3px;
          width: 14px;
          height: 8px;
          transform-origin: center; }
          .editorBody .editor-btn-group-wrap.ai-agent-block .sub-title .arrow:before, .editorBody .editor-btn-group-wrap.ai-agent-block .sub-title .arrow:after {
            position: absolute;
            display: block;
            content: '';
            width: 10px;
            height: 2px;
            border-radius: 2px;
            top: 3px;
            background-color: #ccc; }
          .editorBody .editor-btn-group-wrap.ai-agent-block .sub-title .arrow:before {
            transform: rotate(-45deg);
            left: -1px; }
          .editorBody .editor-btn-group-wrap.ai-agent-block .sub-title .arrow:after {
            transform: rotate(45deg);
            left: 5px; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .sub-title .btn.collapsed .arrow {
          transform: rotate(180deg); }
      .editorBody .editor-btn-group-wrap.ai-agent-block .icon-block {
        display: inline-block;
        color: #fff;
        background-color: #ccc;
        font-size: 14px !important;
        line-height: 20px;
        width: 18px;
        height: 20px;
        border-radius: 3px; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .icon-block.trigger {
          background-color: #AF4ACE; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .icon-block.logic {
          background-color: #15A5B7; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .icon-block.producer {
          background-color: #FF9100; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .icon-block.consumer {
          background-color: #4A6ACE; }
        .editorBody .editor-btn-group-wrap.ai-agent-block .icon-block.deliver {
          background-color: #007EC3; }
  .editorBody .editor-btn-box {
    position: absolute;
    z-index: 1000;
    top: 70px;
    left: 20px; }
    .editorBody .editor-btn-box .btn-item {
      display: block;
      width: 100%;
      font-size: 12px;
      color: #333; }
  .editorBody .popup-setting,
  .editorBody .popup-list-box {
    position: absolute;
    z-index: 99990;
    background-color: #ffffff;
    border: 1px solid #15a5b7;
    display: flex;
    flex-direction: column;
    width: 300px;
    border-radius: 10px; }
    .editorBody .popup-setting .form,
    .editorBody .popup-setting form,
    .editorBody .popup-list-box .form,
    .editorBody .popup-list-box form {
      overflow-y: auto;
      padding: 10px 15px;
      max-height: 600px; }
      .editorBody .popup-setting .form label,
      .editorBody .popup-setting .form .label,
      .editorBody .popup-setting form label,
      .editorBody .popup-setting form .label,
      .editorBody .popup-list-box .form label,
      .editorBody .popup-list-box .form .label,
      .editorBody .popup-list-box form label,
      .editorBody .popup-list-box form .label {
        display: inline-block;
        font-size: 12px;
        color: #999;
        margin-bottom: 0; }
      .editorBody .popup-setting .form .section-title,
      .editorBody .popup-setting form .section-title,
      .editorBody .popup-list-box .form .section-title,
      .editorBody .popup-list-box form .section-title {
        font-size: 13px;
        margin-bottom: 5px;
        font-weight: bold; }
    .editorBody .popup-setting .form form,
    .editorBody .popup-list-box .form form {
      padding: 0;
      max-height: initial;
      overflow-y: visible; }
    .editorBody .popup-setting .page-list-form,
    .editorBody .popup-list-box .page-list-form {
      max-height: 200px; }
    .editorBody .popup-setting .title,
    .editorBody .popup-list-box .title {
      font-size: 16px;
      background-color: #f2f2f2;
      padding: 10px;
      margin: 0;
      border-radius: 10px; }
    .editorBody .popup-setting .sub-title,
    .editorBody .popup-list-box .sub-title {
      opacity: 0.7; }
    .editorBody .popup-setting .thumb-box,
    .editorBody .popup-list-box .thumb-box {
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap;
      width: 100%; }
      .editorBody .popup-setting .thumb-box .btn-remove,
      .editorBody .popup-list-box .thumb-box .btn-remove {
        position: absolute;
        padding: 0;
        color: #fff;
        width: 26px;
        height: 26px;
        border-radius: 26px;
        font-size: 20px;
        top: 8px;
        right: 8px;
        background-color: rgba(0, 0, 0, 0.5); }
        .editorBody .popup-setting .thumb-box .btn-remove .icon,
        .editorBody .popup-list-box .thumb-box .btn-remove .icon {
          display: block; }
      .editorBody .popup-setting .thumb-box .mixed-thumb,
      .editorBody .popup-list-box .thumb-box .mixed-thumb {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 8px;
        height: 100px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
        .editorBody .popup-setting .thumb-box .mixed-thumb .icon,
        .editorBody .popup-list-box .thumb-box .mixed-thumb .icon {
          font-size: 22px; }
        .editorBody .popup-setting .thumb-box .mixed-thumb .text,
        .editorBody .popup-list-box .thumb-box .mixed-thumb .text {
          font-size: 14px; }
    .editorBody .popup-setting .file-upload-label,
    .editorBody .popup-list-box .file-upload-label {
      display: block;
      margin: 5px 0 0 0;
      padding: 0;
      font-size: 24px;
      color: #15a5b7;
      height: 24px; }
      .editorBody .popup-setting .file-upload-label .icon,
      .editorBody .popup-list-box .file-upload-label .icon {
        display: block;
        margin-top: -1px; }
    .editorBody .popup-setting .btn-close,
    .editorBody .popup-list-box .btn-close {
      position: absolute;
      top: 5px;
      right: 5px;
      border: 0;
      padding: 0;
      cursor: pointer;
      background-color: transparent;
      width: 30px;
      height: 30px;
      opacity: 0.5;
      transition: opacity .2s; }
      .editorBody .popup-setting .btn-close:hover,
      .editorBody .popup-list-box .btn-close:hover {
        opacity: 1; }
      .editorBody .popup-setting .btn-close:before, .editorBody .popup-setting .btn-close:after,
      .editorBody .popup-list-box .btn-close:before,
      .editorBody .popup-list-box .btn-close:after {
        position: absolute;
        top: 5px;
        left: 14px;
        content: ' ';
        height: 18px;
        width: 2px;
        border-radius: 3px;
        background-color: #2f373a; }
      .editorBody .popup-setting .btn-close:before,
      .editorBody .popup-list-box .btn-close:before {
        transform: rotate(45deg); }
      .editorBody .popup-setting .btn-close:after,
      .editorBody .popup-list-box .btn-close:after {
        transform: rotate(-45deg); }
    .editorBody .popup-setting .form-group + .form-group,
    .editorBody .popup-list-box .form-group + .form-group {
      margin-top: 10px; }
    .editorBody .popup-setting .form-group + .form-check,
    .editorBody .popup-list-box .form-group + .form-check {
      margin-top: 10px; }
    .editorBody .popup-setting .form-group + .btn,
    .editorBody .popup-list-box .form-group + .btn {
      margin-top: 10px; }
    .editorBody .popup-setting .form-check,
    .editorBody .popup-list-box .form-check {
      padding-left: 1.75rem; }
      .editorBody .popup-setting .form-check label,
      .editorBody .popup-list-box .form-check label {
        margin-bottom: 0;
        font-size: 14px;
        color: #333; }
      .editorBody .popup-setting .form-check .form-check-input,
      .editorBody .popup-list-box .form-check .form-check-input {
        margin-left: -1.5em;
        margin-top: .2rem; }
      .editorBody .popup-setting .form-check .form-check-input:checked,
      .editorBody .popup-list-box .form-check .form-check-input:checked {
        background-color: #15a5b7;
        border-color: #15a5b7; }
      .editorBody .popup-setting .form-check .form-check-input:focus,
      .editorBody .popup-list-box .form-check .form-check-input:focus {
        border-color: #b1e6ea;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(177, 230, 234, 0.25); }
    .editorBody .popup-setting .form-control,
    .editorBody .popup-setting select.form-control,
    .editorBody .popup-setting select.form-control:not([size]):not([multiple]),
    .editorBody .popup-setting .select2-container,
    .editorBody .popup-list-box .form-control,
    .editorBody .popup-list-box select.form-control,
    .editorBody .popup-list-box select.form-control:not([size]):not([multiple]),
    .editorBody .popup-list-box .select2-container {
      height: 30px;
      min-height: 30px;
      font-size: 14px; }
    .editorBody .popup-setting select.form-control,
    .editorBody .popup-list-box select.form-control {
      padding: 0 2em 0 0.75em; }
    .editorBody .popup-setting select.form-control.no-arrow,
    .editorBody .popup-list-box select.form-control.no-arrow {
      padding: 0 0.75em; }
    .editorBody .popup-setting textarea.form-control,
    .editorBody .popup-list-box textarea.form-control {
      height: 56px;
      min-height: 56px;
      font-size: 14px; }
    .editorBody .popup-setting .select-symbol .color-box,
    .editorBody .popup-list-box .select-symbol .color-box {
      display: inline-block;
      width: 90%;
      height: 16px;
      background-color: #efefef;
      vertical-align: middle; }
    .editorBody .popup-setting .select-symbol .dropdown-menu,
    .editorBody .popup-list-box .select-symbol .dropdown-menu {
      max-height: 200px;
      overflow-y: auto; }
    .editorBody .popup-setting .btn-select-dropdown,
    .editorBody .popup-list-box .btn-select-dropdown {
      padding: 0 0.75em;
      text-align: left;
      height: 30px;
      min-height: 30px;
      font-size: 14px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .editorBody .popup-setting .btn-select-dropdown + .dropdown-menu,
    .editorBody .popup-list-box .btn-select-dropdown + .dropdown-menu {
      width: 100%;
      font-size: 14px; }
    .editorBody .popup-setting .input-group-append,
    .editorBody .popup-list-box .input-group-append {
      width: 28px;
      padding: 0;
      border: 0;
      background-color: transparent; }
      .editorBody .popup-setting .input-group-append .input-group-addon,
      .editorBody .popup-list-box .input-group-append .input-group-addon {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        border: 1px solid #bbb;
        overflow: hidden;
        z-index: 1; }
      .editorBody .popup-setting .input-group-append .input-group-addon i,
      .editorBody .popup-list-box .input-group-append .input-group-addon i {
        width: 100%;
        height: 100%;
        vertical-align: inherit; }
    .editorBody .popup-setting .btn-reset,
    .editorBody .popup-list-box .btn-reset {
      border-radius: 26px;
      border: 1px solid #15a5b7;
      background-color: #fff;
      color: #15a5b7;
      font-size: 14px;
      height: 26px;
      padding: 0; }
      .editorBody .popup-setting .btn-reset:hover, .editorBody .popup-setting .btn-reset:focus, .editorBody .popup-setting .btn-reset:active,
      .editorBody .popup-list-box .btn-reset:hover,
      .editorBody .popup-list-box .btn-reset:focus,
      .editorBody .popup-list-box .btn-reset:active {
        background-color: #15a5b7;
        color: #fff; }
    .editorBody .popup-setting div.btn-reset,
    .editorBody .popup-list-box div.btn-reset {
      padding: 2px; }
    .editorBody .popup-setting .footer-btn-box,
    .editorBody .popup-list-box .footer-btn-box {
      border-top: 1px solid #ccc; }
      .editorBody .popup-setting .footer-btn-box .btn-ok,
      .editorBody .popup-list-box .footer-btn-box .btn-ok {
        display: block;
        width: 100%;
        text-align: center;
        color: #15a5b7; }
    .editorBody .popup-setting .btn-box,
    .editorBody .popup-list-box .btn-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      overflow: hidden; }
      .editorBody .popup-setting .btn-box .btn,
      .editorBody .popup-list-box .btn-box .btn {
        flex: 1; }
      .editorBody .popup-setting .btn-box .btn-remove,
      .editorBody .popup-list-box .btn-box .btn-remove {
        background-color: #bfbfbf; }
        .editorBody .popup-setting .btn-box .btn-remove:hover, .editorBody .popup-setting .btn-box .btn-remove:focus, .editorBody .popup-setting .btn-box .btn-remove:active,
        .editorBody .popup-list-box .btn-box .btn-remove:hover,
        .editorBody .popup-list-box .btn-box .btn-remove:focus,
        .editorBody .popup-list-box .btn-box .btn-remove:active {
          background-color: #afafaf; }
      .editorBody .popup-setting .btn-box .btn-copy,
      .editorBody .popup-list-box .btn-box .btn-copy {
        background-color: #f19101; }
        .editorBody .popup-setting .btn-box .btn-copy:hover, .editorBody .popup-setting .btn-box .btn-copy:focus, .editorBody .popup-setting .btn-box .btn-copy:active,
        .editorBody .popup-list-box .btn-box .btn-copy:hover,
        .editorBody .popup-list-box .btn-box .btn-copy:focus,
        .editorBody .popup-list-box .btn-box .btn-copy:active {
          background-color: #e08701; }
    .editorBody .popup-setting .layout-row,
    .editorBody .popup-list-box .layout-row {
      margin-left: -5px;
      margin-right: -5px;
      margin-bottom: 0.3rem; }
      .editorBody .popup-setting .layout-row div[class^="col"],
      .editorBody .popup-list-box .layout-row div[class^="col"] {
        padding-left: 5px;
        padding-right: 5px; }
    .editorBody .popup-setting .form-inline,
    .editorBody .popup-list-box .form-inline {
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .editorBody .popup-setting .form-inline label, .editorBody .popup-setting .form-inline .label,
      .editorBody .popup-list-box .form-inline label,
      .editorBody .popup-list-box .form-inline .label {
        margin-bottom: 0; }
      .editorBody .popup-setting .form-inline .form-control,
      .editorBody .popup-list-box .form-inline .form-control {
        width: 66%;
        padding-left: .4rem;
        padding-right: .4rem; }
    .editorBody .popup-setting .template-box,
    .editorBody .popup-list-box .template-box {
      margin-bottom: 10px; }
      .editorBody .popup-setting .template-box .btn-row,
      .editorBody .popup-list-box .template-box .btn-row {
        margin: 0;
        padding: 0; }
      .editorBody .popup-setting .template-box .btn,
      .editorBody .popup-list-box .template-box .btn {
        border: 1px solid #ccc;
        background-color: transparent;
        color: #333;
        font-size: 12px;
        padding: 3px 10px;
        margin: 0 5px;
        flex: 1; }
        .editorBody .popup-setting .template-box .btn:hover, .editorBody .popup-setting .template-box .btn:focus-visible,
        .editorBody .popup-list-box .template-box .btn:hover,
        .editorBody .popup-list-box .template-box .btn:focus-visible {
          color: #15a5b7;
          border-color: #15a5b7; }
      .editorBody .popup-setting .template-box .btn-layout-add,
      .editorBody .popup-list-box .template-box .btn-layout-add {
        font-size: 16px; }
    .editorBody .popup-setting.popup-page-category,
    .editorBody .popup-list-box.popup-page-category {
      width: 350px; }
  .editorBody .popup-setting {
    overflow: hidden; }
  .editorBody .btn-add-action {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid #bfbfbf;
    font-size: .9rem;
    border-radius: 32px;
    height: 32px;
    background-color: #fff; }
    .editorBody .btn-add-action:hover, .editorBody .btn-add-action:focus-visible {
      color: #15a5b7;
      border-color: #15a5b7; }
    .editorBody .btn-add-action .icon {
      display: inline-block;
      position: relative;
      padding: 0;
      width: 18px;
      height: 18px;
      border-radius: 18px;
      border: none;
      margin: 0 5px;
      background-color: #15a5b7; }
      .editorBody .btn-add-action .icon:before, .editorBody .btn-add-action .icon:after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        content: "";
        background-color: #fff;
        transform: translate(-50%, -50%); }
      .editorBody .btn-add-action .icon:before {
        width: 10px;
        height: 3px; }
      .editorBody .btn-add-action .icon:after {
        width: 3px;
        height: 10px; }
    .editorBody .btn-add-action svg {
      margin-right: 5px;
      color: #15a5b7; }
  .editorBody .action-panel {
    margin: 0 -8px; }
    .editorBody .action-panel > .btn-box {
      padding: 0 10px;
      margin-bottom: 10px; }
  .editorBody .tip-text {
    font-size: 13px; }
  .editorBody .action-box {
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    margin: 15px 0;
    padding: 8px; }
    .editorBody .action-box .action-title {
      font-size: 15px;
      margin-bottom: 5px; }
    .editorBody .action-box .tip-text {
      color: #0050AE; }
    .editorBody .action-box .action-type {
      position: relative;
      padding-right: 40px;
      padding-bottom: 8px;
      margin-bottom: 8px;
      border-bottom: 1px solid #bfbfbf; }
      .editorBody .action-box .action-type .btn {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0 10px; }
    .editorBody .action-box .btn-location {
      display: block;
      font-size: 24px;
      padding: 5px 10px;
      color: #15a5b7; }
      .editorBody .action-box .btn-location:hover, .editorBody .action-box .btn-location:focus, .editorBody .action-box .btn-location:active {
        color: #1290a0; }
  .editorBody .empty-alert {
    font-size: 11px;
    color: #ff3333;
    display: block;
    padding: 5px; }
  .editorBody .popup-list-box {
    min-height: 86px; }
    .editorBody .popup-list-box .btn-container {
      cursor: pointer; }
      .editorBody .popup-list-box .btn-container.none-cursor {
        cursor: default; }
    .editorBody .popup-list-box .list-items-container {
      padding: 0 10px;
      margin-bottom: 0;
      max-height: 450px;
      overflow-y: auto; }
    .editorBody .popup-list-box .list-box-wrap {
      position: relative; }
      .editorBody .popup-list-box .list-box-wrap.top-bar:before {
        position: absolute;
        display: block;
        content: '';
        height: 1px;
        top: 0;
        left: 10px;
        right: 10px;
        border-top: 1px solid #d9d9d9; }
      .editorBody .popup-list-box .list-box-wrap .list-sub-title {
        padding: 5px 13px 3px;
        font-size: 14px; }
      .editorBody .popup-list-box .list-box-wrap .list-items-container {
        max-height: 230px; }
    .editorBody .popup-list-box .list-item {
      margin: 10px 0; }
      .editorBody .popup-list-box .list-item .btn-group {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center; }
      .editorBody .popup-list-box .list-item .btn {
        cursor: pointer;
        padding: 0 3px;
        color: #333; }
        .editorBody .popup-list-box .list-item .btn:hover, .editorBody .popup-list-box .list-item .btn:focus-visible {
          color: #15a5b7; }
      .editorBody .popup-list-box .list-item .row,
      .editorBody .popup-list-box .list-item .btn-container {
        position: relative;
        width: 100%;
        min-height: 32px;
        text-align: left; }
      .editorBody .popup-list-box .list-item > .row {
        margin-left: 0;
        margin-right: 0; }
      .editorBody .popup-list-box .list-item .row [class^="col-"] {
        padding-left: 10px;
        padding-right: 10px;
        line-height: 1.8; }
      .editorBody .popup-list-box .list-item .btn-template-download {
        transform: rotate(90deg); }
      .editorBody .popup-list-box .list-item .btn-common-template-add {
        transform: rotate(180deg); }
      .editorBody .popup-list-box .list-item .border-box,
      .editorBody .popup-list-box .list-item .draggable-item,
      .editorBody .popup-list-box .list-item .btn-item {
        width: 100%;
        min-height: 32px;
        border: 1px solid #ccc;
        text-align: left;
        padding: 3px 10px;
        border-radius: 5px;
        color: #555;
        background-color: transparent;
        font-size: 1rem;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .editorBody .popup-list-box .list-item .border-box .item-title,
        .editorBody .popup-list-box .list-item .draggable-item .item-title,
        .editorBody .popup-list-box .list-item .btn-item .item-title {
          flex: 1;
          word-break: break-all;
          white-space: normal; }
      .editorBody .popup-list-box .list-item .draggable-item,
      .editorBody .popup-list-box .list-item .btn-item {
        position: relative;
        top: 0;
        left: 0; }
        .editorBody .popup-list-box .list-item .draggable-item.mobile-form-item,
        .editorBody .popup-list-box .list-item .btn-item.mobile-form-item {
          background-color: #f9f9f9; }
        .editorBody .popup-list-box .list-item .draggable-item .item-type-icon,
        .editorBody .popup-list-box .list-item .btn-item .item-type-icon {
          display: inline-block;
          margin-right: 5px;
          color: #666666; }
      .editorBody .popup-list-box .list-item .draggable-item.column {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
        .editorBody .popup-list-box .list-item .draggable-item.column .item-title input[type=text] {
          height: 26px;
          border: 1px solid #ccc;
          padding: 0 5px;
          border-radius: 3px;
          margin-top: 3px; }
        .editorBody .popup-list-box .list-item .draggable-item.column .btn-group {
          -ms-flex-pack: end;
          flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-justify-content: flex-end;
          -ms-justify-content: flex-end;
          -webkit-justify-content: flex-end;
          justify-content: flex-end; }
      .editorBody .popup-list-box .list-item .draggable-item.with-thumb {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        padding: 10px 10px 0; }
        .editorBody .popup-list-box .list-item .draggable-item.with-thumb .thumb {
          position: relative;
          border: 1px solid #ccc;
          border-radius: 5px;
          overflow: hidden;
          height: 0;
          padding-bottom: 55.4%; }
          .editorBody .popup-list-box .list-item .draggable-item.with-thumb .thumb .bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat; }
        .editorBody .popup-list-box .list-item .draggable-item.with-thumb .title-wrap {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between; }
          .editorBody .popup-list-box .list-item .draggable-item.with-thumb .title-wrap .item-title {
            background-color: transparent;
            font-size: 14px;
            padding: 5px 0; }
            .editorBody .popup-list-box .list-item .draggable-item.with-thumb .title-wrap .item-title input[type=text] {
              border: 1px solid #ccc;
              padding: 0 5px;
              border-radius: 3px;
              height: 26px; }
      .editorBody .popup-list-box .list-item .combine-box {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        padding-top: 10px;
        padding-bottom: 10px;
        cursor: default; }
        .editorBody .popup-list-box .list-item .combine-box .title-row {
          width: 100%;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between; }
        .editorBody .popup-list-box .list-item .combine-box .item-title {
          font-size: 1rem;
          line-height: 1.5;
          font-weight: normal; }
          .editorBody .popup-list-box .list-item .combine-box .item-title .type {
            font-size: 0.8em;
            color: #888; }
      .editorBody .popup-list-box .list-item .row.border-box {
        -ms-flex-pack: initial;
        flex-pack: initial;
        -webkit-justify-content: initial;
        -moz-box-justify-content: initial;
        -ms-justify-content: initial;
        -webkit-justify-content: initial;
        justify-content: initial; }
      .editorBody .popup-list-box .list-item .btn-container.dragging {
        position: static; }
        .editorBody .popup-list-box .list-item .btn-container.dragging .draggable-item,
        .editorBody .popup-list-box .list-item .btn-container.dragging .btn-item {
          position: absolute; }
        .editorBody .popup-list-box .list-item .btn-container.dragging .draggable-item {
          top: auto;
          left: auto;
          border-color: #15a5b7;
          color: #15a5b7;
          background-color: #fff; }
      .editorBody .popup-list-box .list-item .icon-box .icon {
        display: inline-block;
        min-width: 20px;
        font-size: 14px; }
        .editorBody .popup-list-box .list-item .icon-box .icon:last-child {
          margin-right: 0; }
      .editorBody .popup-list-box .list-item .item-title label {
        display: inline-block;
        margin-bottom: 0;
        width: 100%;
        height: 100%; }
      .editorBody .popup-list-box .list-item .item-title input[type=text] {
        width: 100%;
        height: 100%;
        border: 0;
        background-color: #f2f2f2;
        padding: 0; }
        .editorBody .popup-list-box .list-item .item-title input[type=text]:read-only {
          background-color: transparent; }
        .editorBody .popup-list-box .list-item .item-title input[type=text]:focus {
          outline: 0; }
    .editorBody .popup-list-box .function-list-box {
      max-height: initial;
      padding: 0;
      overflow-y: visible;
      min-height: 32px;
      margin-top: 5px; }
      .editorBody .popup-list-box .function-list-box .function-item {
        min-height: 32px;
        margin-bottom: 10px; }
        .editorBody .popup-list-box .function-list-box .function-item:last-child {
          margin-bottom: 0; }
      .editorBody .popup-list-box .function-list-box .draggable-item {
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .editorBody .popup-list-box .function-list-box .item-title {
        font-size: 14px; }
      .editorBody .popup-list-box .function-list-box .type {
        font-size: 12px;
        color: #999; }
    .editorBody .popup-list-box .pagination {
      overflow-y: visible;
      padding: 5px 0;
      max-height: none; }
    .editorBody .popup-list-box .section-box {
      padding: 0 10px; }
      .editorBody .popup-list-box .section-box + .section-box:before {
        position: absolute;
        display: block;
        content: '';
        height: 1px;
        left: 5px;
        right: 5px;
        border-top: 1px solid #d9d9d9; }
    .editorBody .popup-list-box .btn-box {
      border-top: 1px solid #ccc;
      padding: 9px 13px; }
      .editorBody .popup-list-box .btn-box.column {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
      .editorBody .popup-list-box .btn-box.no-border {
        border-top: none; }
    .editorBody .popup-list-box .btn-default-color-green,
    .editorBody .popup-list-box .btn-default-color-gray {
      height: 26px;
      border-radius: 26px;
      padding: 0;
      font-size: 14px;
      line-height: 26px; }
    .editorBody .popup-list-box.popup-element-list {
      bottom: 0;
      overflow: hidden; }
    .editorBody .popup-list-box.popup-data-list {
      width: 320px;
      z-index: 1999; }
    .editorBody .popup-list-box.popup-layout-list {
      width: 300px; }
    .editorBody .popup-list-box .list-wrap {
      height: calc(100% - 40px); }
    .editorBody .popup-list-box .list-search {
      padding: 10px;
      height: 54px; }
      .editorBody .popup-list-box .list-search .search-box {
        position: relative;
        padding-right: 30px;
        border: 1px solid #ccc;
        border-radius: 10px; }
      .editorBody .popup-list-box .list-search input[type=text] {
        display: block;
        border: 0;
        width: 100%;
        height: 32px;
        background: transparent;
        padding: 0 10px; }
        .editorBody .popup-list-box .list-search input[type=text]:focus {
          outline: none; }
      .editorBody .popup-list-box .list-search button {
        position: absolute;
        width: 36px;
        height: 32px;
        top: 0;
        right: 0;
        border: 0;
        background: transparent;
        padding: 0;
        margin: 0; }
        .editorBody .popup-list-box .list-search button:hover, .editorBody .popup-list-box .list-search button:focus, .editorBody .popup-list-box .list-search button:active {
          color: #15a5b7; }
    .editorBody .popup-list-box .list-tabs {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      margin: 0 10px;
      padding: 0;
      height: 30px; }
      .editorBody .popup-list-box .list-tabs .tab-item {
        font-size: 12px;
        text-align: center; }
      .editorBody .popup-list-box .list-tabs .tab-item a {
        position: relative;
        padding: 2px 5px;
        height: 28px;
        color: #333;
        cursor: pointer;
        white-space: nowrap;
        word-break: normal;
        line-height: 24px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center; }
        .editorBody .popup-list-box .list-tabs .tab-item a:hover, .editorBody .popup-list-box .list-tabs .tab-item a:focus, .editorBody .popup-list-box .list-tabs .tab-item a:active {
          color: #15a5b7; }
        .editorBody .popup-list-box .list-tabs .tab-item a:focus-visible {
          outline: none; }
      .editorBody .popup-list-box .list-tabs .tab-item a.active {
        color: #15a5b7; }
        .editorBody .popup-list-box .list-tabs .tab-item a.active:after {
          position: absolute;
          display: block;
          content: "";
          width: 100%;
          left: 0;
          bottom: 0;
          height: 2px;
          background-color: #15a5b7; }
      .editorBody .popup-list-box .list-tabs .icon {
        font-size: 16px; }
      .editorBody .popup-list-box .list-tabs .btn-icon {
        display: block;
        width: 18px;
        height: 18px;
        overflow: hidden; }
        .editorBody .popup-list-box .list-tabs .btn-icon img {
          display: block;
          max-width: 100%; }
      .editorBody .popup-list-box .list-tabs.data-tabs {
        flex-wrap: wrap;
        height: auto; }
    .editorBody .popup-list-box .swiper-tab {
      position: relative;
      padding: 0 22px; }
    .editorBody .popup-list-box .swiper-frame {
      width: 100%;
      overflow: hidden;
      padding: 0; }
      .editorBody .popup-list-box .swiper-frame .list-tabs {
        margin: 0; }
        .editorBody .popup-list-box .swiper-frame .list-tabs .tab-item {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          flex-shrink: 0; }
      .editorBody .popup-list-box .swiper-frame .swiper-button-prev,
      .editorBody .popup-list-box .swiper-frame .swiper-button-next {
        width: 30px;
        height: 100%;
        border: 0;
        background-image: none;
        top: 0;
        margin-top: 0; }
        .editorBody .popup-list-box .swiper-frame .swiper-button-prev .arr,
        .editorBody .popup-list-box .swiper-frame .swiper-button-next .arr {
          position: relative;
          display: block;
          width: 14px;
          height: 14px;
          border-radius: 14px;
          background-color: #cfcfcf;
          margin-top: -2px; }
          .editorBody .popup-list-box .swiper-frame .swiper-button-prev .arr:before,
          .editorBody .popup-list-box .swiper-frame .swiper-button-next .arr:before {
            position: absolute;
            display: block;
            width: 5px;
            height: 5px;
            content: ""; }
      .editorBody .popup-list-box .swiper-frame .swiper-button-prev {
        left: 0;
        background: -moz-linear-gradient(left, white 0%, white 80%, rgba(255, 255, 255, 0) 100%);
        background: -webkit-linear-gradient(left, white 0%, white 80%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(to right, white 0%, white 80%, rgba(255, 255, 255, 0) 100%); }
        .editorBody .popup-list-box .swiper-frame .swiper-button-prev .arr {
          margin-left: -5px; }
          .editorBody .popup-list-box .swiper-frame .swiper-button-prev .arr:before {
            transform: rotate(-45deg);
            border-top: 2px solid #fff;
            border-left: 2px solid #fff;
            top: 4px;
            left: 5px; }
      .editorBody .popup-list-box .swiper-frame .swiper-button-next {
        right: 0;
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 20%, white 100%);
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 20%, white 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 20%, white 100%); }
        .editorBody .popup-list-box .swiper-frame .swiper-button-next .arr {
          margin-right: -5px; }
          .editorBody .popup-list-box .swiper-frame .swiper-button-next .arr:before {
            transform: rotate(45deg);
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
            top: 4px;
            right: 5px; }
      .editorBody .popup-list-box .swiper-frame .swiper-button-disabled {
        opacity: 0; }
    .editorBody .popup-list-box .list-wrap .list-box {
      height: calc(100% - 84px);
      overflow: hidden; }
    .editorBody .popup-list-box .list-wrap .list-box .list-items-container {
      max-height: none;
      height: 100%; }
    .editorBody .popup-list-box .layout-list-item {
      padding-left: 70px !important;
      padding-right: 50px !important; }
    .editorBody .popup-list-box .icon-list .list-item {
      position: relative;
      cursor: pointer;
      padding: 3px 20px 3px 40px;
      background-color: #f2f2f2;
      border: 2px solid #f2f2f2;
      border-radius: 8px; }
      .editorBody .popup-list-box .icon-list .list-item:hover, .editorBody .popup-list-box .icon-list .list-item:focus, .editorBody .popup-list-box .icon-list .list-item:active {
        background-color: #fff;
        border-color: #15a5b7; }
    .editorBody .popup-list-box .icon-list .list-item .item-icon {
      position: absolute;
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
      font-size: 18px; }
    .editorBody .popup-list-box .icon-list .list-item .item-icon img {
      width: 20px; }
    .editorBody .popup-list-box .icon-list .list-item .item-name {
      font-size: 14px; }
    .editorBody .popup-list-box .icon-list .list-item .btn-edit-layout {
      position: absolute;
      top: 50%;
      right: 25px;
      transform: translateY(-50%); }
    .editorBody .popup-list-box .icon-list .list-item .btn-remove-layout {
      position: absolute;
      top: 50%;
      right: 5px;
      transform: translateY(-50%); }
    .editorBody .popup-list-box .icon-list .list-item.with-sort {
      padding-left: 50px; }
      .editorBody .popup-list-box .icon-list .list-item.with-sort .sort {
        position: absolute;
        display: none;
        top: 50%;
        left: 3px;
        cursor: move;
        color: #bbbbbb;
        font-size: 14px;
        transform: translateY(-50%);
        padding: 3px;
        z-index: 10; }
      .editorBody .popup-list-box .icon-list .list-item.with-sort:hover .sort, .editorBody .popup-list-box .icon-list .list-item.with-sort:focus .sort, .editorBody .popup-list-box .icon-list .list-item.with-sort:active .sort, .editorBody .popup-list-box .icon-list .list-item.with-sort:focus-visible .sort {
        display: block; }
      .editorBody .popup-list-box .icon-list .list-item.with-sort .item-icon {
        left: 23px; }
    .editorBody .popup-list-box .sortable-list .list-item {
      padding-left: 20px; }
      .editorBody .popup-list-box .sortable-list .list-item .sort {
        display: none;
        position: absolute;
        top: 5px;
        left: 4px;
        cursor: move;
        color: #bbbbbb;
        font-size: 11px; }
      .editorBody .popup-list-box .sortable-list .list-item:hover .sort {
        display: block; }
    .editorBody .popup-list-box .sortable-list.icon-list .list-item {
      padding-left: 45px; }
      .editorBody .popup-list-box .sortable-list.icon-list .list-item .item-icon {
        left: 16px; }
  .editorBody .leftPanel {
    position: absolute;
    top: 60px;
    left: 165px;
    bottom: 60px; }
    .editorBody .leftPanel .popup-setting,
    .editorBody .leftPanel .popup-list-box {
      top: 0;
      left: 0; }
  .editorBody .rightPanel {
    position: absolute;
    right: 20px;
    top: 60px;
    bottom: 60px; }
    .editorBody .rightPanel .popup-setting,
    .editorBody .rightPanel .popup-list-box {
      top: 0;
      right: 0; }
  .editorBody .popup-internet-map-list .internet-map-box {
    padding: 4px;
    max-height: 500px;
    overflow-y: auto; }
  .editorBody .popup-internet-map-list .map-item {
    float: left;
    display: block;
    width: 50%;
    max-width: 50%;
    flex: none;
    padding: 4px; }
    .editorBody .popup-internet-map-list .map-item a {
      display: block;
      cursor: pointer; }
      .editorBody .popup-internet-map-list .map-item a:hover .thumb, .editorBody .popup-internet-map-list .map-item a:focus .thumb, .editorBody .popup-internet-map-list .map-item a:active .thumb, .editorBody .popup-internet-map-list .map-item a.active .thumb {
        border: 1px solid #15a5b7;
        box-shadow: 0 0 0 2px #15a5b7; }
    .editorBody .popup-internet-map-list .map-item .thumb {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      border-radius: 5px;
      border: 1px solid #ced6d9;
      width: 135px;
      height: 72px;
      overflow: hidden; }
      .editorBody .popup-internet-map-list .map-item .thumb img {
        width: 100%; }
    .editorBody .popup-internet-map-list .map-item .name {
      display: block;
      height: 40px;
      font-size: 12px;
      text-align: center;
      color: #404040;
      padding: 4px;
      line-height: 1.2;
      overflow: hidden; }
    .editorBody .popup-internet-map-list .map-item .add-icon {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      width: 40px;
      height: 40px;
      border: 3px solid #15a5b7;
      color: #15a5b7;
      font-size: 36px;
      font-weight: bold;
      border-radius: 10px; }
  .editorBody .popup-internet-map-list .label-title {
    font-size: 14px;
    padding: 0 4px; }
  .editorBody .popup-internet-map-list .custom-style-box {
    padding: 0 4px; }
    .editorBody .popup-internet-map-list .custom-style-box .list-item:hover .border-box, .editorBody .popup-internet-map-list .custom-style-box .list-item:focus .border-box, .editorBody .popup-internet-map-list .custom-style-box .list-item:active .border-box {
      border: 1px solid #15a5b7;
      box-shadow: 0 0 0 2px #15a5b7; }
    .editorBody .popup-internet-map-list .custom-style-box .list-item .border-box.active {
      border: 1px solid #15a5b7;
      box-shadow: 0 0 0 2px #15a5b7; }
  .editorBody .popup-gis-list .list-item .border-box {
    position: relative; }
  .editorBody .popup-gis-list .form-control.input-box {
    width: 100%;
    height: 24px;
    min-height: 24px;
    border: 0;
    padding: 0;
    font-size: 15px; }
    .editorBody .popup-gis-list .form-control.input-box:focus {
      outline: none;
      box-shadow: none; }
  .editorBody .popup-gis-list .gis-loading-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 15px; }
    .editorBody .popup-gis-list .gis-loading-box .progress {
      height: 100%;
      background-color: #f9f9f9; }
    .editorBody .popup-gis-list .gis-loading-box .loading-inner-box {
      position: absolute;
      top: 4px;
      left: 4px;
      right: 4px;
      bottom: 4px;
      background-color: #fff;
      border-radius: 3px;
      padding: 0 30% 0 6px; }
    .editorBody .popup-gis-list .gis-loading-box .fail-box {
      position: absolute;
      top: 0;
      right: 5px; }
  .editorBody .popup-info-box {
    position: absolute;
    z-index: 999999; }
  .editorBody .popup-gis-setting .title {
    padding-right: 30px; }
  .editorBody .popup-gis-setting .inner-box {
    max-height: 320px;
    overflow-y: auto;
    padding: 0 10px;
    margin: 0 -10px; }
  .editorBody .popup-gis-setting .classes-table-box {
    margin: 1em 0 0;
    border-top: 1px solid #cdcdcd;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto; }
    .editorBody .popup-gis-setting .classes-table-box .table-label {
      display: inline-block;
      font-size: 14px;
      margin-bottom: 0.2rem; }
    .editorBody .popup-gis-setting .classes-table-box .table {
      margin-bottom: 0; }
    .editorBody .popup-gis-setting .classes-table-box th, .editorBody .popup-gis-setting .classes-table-box td {
      font-size: 10px;
      padding: 0.3rem; }
    .editorBody .popup-gis-setting .classes-table-box th {
      background-color: #efefef;
      text-align: center; }
    .editorBody .popup-gis-setting .classes-table-box td label {
      display: inline;
      margin-bottom: 0; }
    .editorBody .popup-gis-setting .classes-table-box td .form-control {
      display: inline-block;
      width: 90%;
      min-width: 50px;
      border: 0;
      height: 20px;
      min-height: 20px;
      font-size: 11px;
      padding: 0 5px; }
    .editorBody .popup-gis-setting .classes-table-box .color-picker {
      display: inline-block;
      width: 20px;
      height: 20px;
      vertical-align: middle; }
      .editorBody .popup-gis-setting .classes-table-box .color-picker .form-control {
        width: 100%;
        height: 100%; }
  .editorBody .page-category-wrap {
    position: fixed; }
  .editorBody .footer {
    position: absolute;
    z-index: 2000;
    background: #ffffff;
    width: 100%;
    height: 50px;
    bottom: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
  .editorBody .add-page-btn {
    position: absolute;
    z-index: 1000;
    top: 70px;
    left: 20px;
    width: 80px;
    height: 70px;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #15A5B7;
    padding: 6px; }
    .editorBody .add-page-btn svg {
      color: #444444;
      display: block;
      font-size: 2em; }
    .editorBody .add-page-btn span {
      color: #444444;
      display: block; }
  .editorBody .layout-item .layout-warp {
    outline: 1px dashed #bfbfbf;
    transition: box-shadow .1s, outline .1s; }
  .editorBody .layout-item .layout-warp.highlight {
    outline-style: solid;
    outline-color: #ff5533; }
  .editorBody .layout-item .layout-warp.multi-selected {
    box-shadow: 0 0 0 4px rgba(0, 232, 232, 0.9) !important; }
  .editorBody .layout-item .layout-warp.layout-template {
    outline-width: 1px;
    outline-color: #ab03a8; }
  .editorBody .layout-item .layout-warp.layout-template-override {
    outline-width: 1px;
    outline-color: #ff8a02; }
  .editorBody .layout-item .layout-name-box {
    position: absolute;
    top: -23px;
    left: 0;
    z-index: 100001;
    padding: 3px 5px;
    font-size: 11px;
    color: #ffffff;
    font-weight: bold;
    display: none;
    width: auto;
    white-space: nowrap;
    background-color: rgba(21, 165, 183, 0.7); }
    .editorBody .layout-item .layout-name-box.area-top {
      top: 0; }
    .editorBody .layout-item .layout-name-box.area-top.area-right {
      top: 0;
      right: 23px; }
    .editorBody .layout-item .layout-name-box.area-right {
      left: auto;
      right: 0; }
    .editorBody .layout-item .layout-name-box.area-right.area-bottom {
      left: auto;
      right: 50px; }
  .editorBody .layout-item .menu-icon-area {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 100001;
    color: #15a5b7;
    display: none; }
    .editorBody .layout-item .menu-icon-area.area-col {
      width: 50px;
      -webkit-box-flex-wrap: wrap-reverse;
      -moz-box-flex-wrap: wrap-reverse;
      -ms-flex-wrap: wrap-reverse;
      -webkit-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
      right: -20px; }
    .editorBody .layout-item .menu-icon-area.area-bottom {
      width: 50px;
      bottom: calc(100% - 20px);
      top: auto; }
    .editorBody .layout-item .menu-icon-area .icon {
      width: 20px;
      height: 20px;
      font-size: 15px;
      margin: 1px;
      border: 1px solid rgba(127, 127, 127, 0.3);
      background-color: rgba(255, 255, 255, 0.7);
      border-radius: 3px;
      vertical-align: middle;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .editorBody .layout-item .menu-icon-area .icon svg {
        display: block; }
      .editorBody .layout-item .menu-icon-area .icon:before {
        display: block;
        margin-bottom: 0; }
  .editorBody .layout-item .resize-handle {
    display: none; }
  .editorBody .layout-item.active .layout-warp, .editorBody .layout-item:hover .layout-warp {
    box-shadow: 0 0 0 4px rgba(0, 232, 232, 0.9); }
  .editorBody .layout-item.active .layout-name-box, .editorBody .layout-item:hover .layout-name-box {
    display: block; }
  .editorBody .layout-item.active .menu-icon-area, .editorBody .layout-item:hover .menu-icon-area {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: end;
    flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    flex-wrap: wrap; }
  .editorBody .layout-item.active .resize-handle, .editorBody .layout-item:hover .resize-handle {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .editorBody .layout-item-editor {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9999; }
    .editorBody .layout-item-editor.drag-select {
      cursor: crosshair !important; }
  .editorBody .list-container {
    padding: 10px 20px; }
  .editorBody .new-map-btn {
    font-size: 0.9em;
    padding-left: 5px; }
  .editorBody .map-item {
    padding: 10px; }
    .editorBody .map-item .thumbnail {
      position: relative;
      box-shadow: 0 2px 5px 0 #ddd; }
    .editorBody .map-item .map-type-icon {
      position: absolute;
      width: 24px;
      height: 24px;
      top: 5px;
      left: 5px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 1000; }
      .editorBody .map-item .map-type-icon.icon-leaflet {
        background-image: url("/static/img/icon_leaflet.png"); }
      .editorBody .map-item .map-type-icon.icon-mapbox {
        background-image: url("/static/img/icon_mapbox.png"); }
    .editorBody .map-item .caption {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
    .editorBody .map-item .form-group {
      margin-bottom: 0;
      flex: 1; }
    .editorBody .map-item .btn-area {
      width: 100px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: end;
      flex-pack: end;
      -webkit-justify-content: flex-end;
      -moz-box-justify-content: flex-end;
      -ms-justify-content: flex-end;
      -webkit-justify-content: flex-end;
      justify-content: flex-end;
      padding-top: 5px; }
      .editorBody .map-item .btn-area .btn {
        padding: 0 5px;
        color: #666; }
        .editorBody .map-item .btn-area .btn:hover, .editorBody .map-item .btn-area .btn:focus-visible {
          color: #15a5b7; }
        .editorBody .map-item .btn-area .btn:disabled:hover, .editorBody .map-item .btn-area .btn:disabled:focus-visible {
          color: #666; }
      .editorBody .map-item .btn-area label {
        margin-bottom: 0; }
      .editorBody .map-item .btn-area span {
        font-size: 1.2em; }
    .editorBody .map-item .add-btn-wrap {
      position: relative;
      height: 100%;
      min-height: 180px; }
      .editorBody .map-item .add-btn-wrap .caption {
        height: 58px; }
      .editorBody .map-item .add-btn-wrap.data-group-btn-wrap {
        height: 120px;
        min-height: 120px; }
    .editorBody .map-item .map-add-box {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      z-index: 1; }
    .editorBody .map-item .thumbnail-add-map {
      flex: 1;
      cursor: pointer;
      text-align: center;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      border: 0;
      padding: 0;
      background-color: transparent; }
      .editorBody .map-item .thumbnail-add-map .icon {
        display: block;
        font-size: 40px;
        margin-bottom: 10px; }
      .editorBody .map-item .thumbnail-add-map .icon-text {
        font-size: 18px; }
      .editorBody .map-item .thumbnail-add-map .add-map-label {
        display: inline-block;
        line-height: 1.2; }
      .editorBody .map-item .thumbnail-add-map:after {
        position: absolute;
        content: "";
        display: block;
        width: 1px;
        top: 25px;
        bottom: 25px;
        left: 50%;
        background-color: #000; }
    .editorBody .map-item .map-device-type {
      flex: 1;
      text-align: center;
      padding: 10px 10px 15px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .editorBody .map-item .map-device-type .device-type {
        font-size: 14px;
        padding: 5px; }
      .editorBody .map-item .map-device-type .btn-box {
        position: relative;
        flex: 1; }
        .editorBody .map-item .map-device-type .btn-box .box-fit {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-box-flex-direction: column;
          -moz-box-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column; }
        .editorBody .map-item .map-device-type .btn-box .btn {
          position: relative;
          flex: 1;
          font-size: 15px;
          border: 1px solid #ccc;
          margin: 5% 0;
          padding: .375rem .15rem; }
        .editorBody .map-item .map-device-type .btn-box .icon {
          display: inline-block;
          vertical-align: middle;
          width: 24px;
          height: 24px;
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat; }
        .editorBody .map-item .map-device-type .btn-box .icon-leaflet {
          background-image: url("/static/img/icon_leaflet.png"); }
        .editorBody .map-item .map-device-type .btn-box .icon-mapbox {
          background-image: url("/static/img/icon_mapbox.png"); }
      .editorBody .map-item .map-device-type:after {
        position: absolute;
        content: "";
        display: block;
        width: 1px;
        top: 15px;
        bottom: 15px;
        left: 50%;
        background-color: #000; }
      .editorBody .map-item .map-device-type:last-child:after {
        display: none; }
    .editorBody .map-item.data-item .thumbnail-add-data {
      width: 100%;
      height: 100%;
      border: 0;
      background-color: transparent;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .editorBody .map-item.data-item .thumbnail-add-data .icon-plus {
        position: relative;
        display: block;
        width: 26px;
        height: 26px;
        margin: 0 auto 10px; }
        .editorBody .map-item.data-item .thumbnail-add-data .icon-plus:before, .editorBody .map-item.data-item .thumbnail-add-data .icon-plus:after {
          position: absolute;
          display: block;
          width: 26px;
          height: 4px;
          background-color: #000;
          content: "";
          top: 11px; }
        .editorBody .map-item.data-item .thumbnail-add-data .icon-plus:after {
          transform: rotate(90deg); }
    .editorBody .map-item.data-item .caption {
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .editorBody .map-item.data-item .caption textarea {
        resize: none;
        height: 62px; }
    .editorBody .map-item.data-item .btn-area {
      width: 100%;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .editorBody .map-item.data-item .btn-area .btn-title {
        font-size: 14px; }
    @media (min-width: 1200px) {
      .editorBody .map-item {
        flex: 0 0 20%;
        max-width: 20%; } }
  .editorBody .map-list-wrap {
    padding: 0 15px;
    height: 100%; }
    .editorBody .map-list-wrap .map-list-header {
      padding: 10px 0; }
    .editorBody .map-list-wrap .map-list-footer {
      height: 60px;
      padding: 10px 0; }
    @media (min-width: 992px) {
      .editorBody .map-list-wrap .map-list-body {
        padding-bottom: 60px;
        margin-bottom: 0; }
      .editorBody .map-list-wrap .map-list-footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ffffff;
        margin-right: 15px;
        z-index: 1000; } }
  .editorBody .data-btn-area {
    position: absolute;
    z-index: 1000;
    top: 70px;
    left: 20px; }
    .editorBody .data-btn-area div {
      margin-bottom: 4px; }
    .editorBody .data-btn-area img {
      width: 80px;
      height: 80px; }
  .editorBody .add-table-popup,
  .editorBody .add-chart-popup,
  .editorBody .add-pivot-popup,
  .editorBody .add-location-popup {
    z-index: 2000;
    overflow-y: auto; }
    .editorBody .add-table-popup .bg,
    .editorBody .add-chart-popup .bg,
    .editorBody .add-pivot-popup .bg,
    .editorBody .add-location-popup .bg {
      background: #1B1B1B;
      opacity: 50%; }
  .editorBody .data-modify-popup,
  .editorBody .data-modify-chart-popup,
  .editorBody .data-modify-pivot-popup,
  .editorBody .data-modify-location-popup,
  .editorBody .data-modify-table-popup,
  .editorBody .gateway-modify-popup,
  .editorBody .kafka-modify-popup,
  .editorBody .ai-data-modify-popup {
    z-index: 1900;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 184px; }
    .editorBody .data-modify-popup .data-modify-popup-btn-area,
    .editorBody .data-modify-popup .gateway-modify-popup-btn-area,
    .editorBody .data-modify-popup .kafka-modify-popup-btn-area,
    .editorBody .data-modify-chart-popup .data-modify-popup-btn-area,
    .editorBody .data-modify-chart-popup .gateway-modify-popup-btn-area,
    .editorBody .data-modify-chart-popup .kafka-modify-popup-btn-area,
    .editorBody .data-modify-pivot-popup .data-modify-popup-btn-area,
    .editorBody .data-modify-pivot-popup .gateway-modify-popup-btn-area,
    .editorBody .data-modify-pivot-popup .kafka-modify-popup-btn-area,
    .editorBody .data-modify-location-popup .data-modify-popup-btn-area,
    .editorBody .data-modify-location-popup .gateway-modify-popup-btn-area,
    .editorBody .data-modify-location-popup .kafka-modify-popup-btn-area,
    .editorBody .data-modify-table-popup .data-modify-popup-btn-area,
    .editorBody .data-modify-table-popup .gateway-modify-popup-btn-area,
    .editorBody .data-modify-table-popup .kafka-modify-popup-btn-area,
    .editorBody .gateway-modify-popup .data-modify-popup-btn-area,
    .editorBody .gateway-modify-popup .gateway-modify-popup-btn-area,
    .editorBody .gateway-modify-popup .kafka-modify-popup-btn-area,
    .editorBody .kafka-modify-popup .data-modify-popup-btn-area,
    .editorBody .kafka-modify-popup .gateway-modify-popup-btn-area,
    .editorBody .kafka-modify-popup .kafka-modify-popup-btn-area,
    .editorBody .ai-data-modify-popup .data-modify-popup-btn-area,
    .editorBody .ai-data-modify-popup .gateway-modify-popup-btn-area,
    .editorBody .ai-data-modify-popup .kafka-modify-popup-btn-area {
      position: relative;
      border-radius: 5px;
      border: 1px solid #C4C4C4;
      background-color: #fff; }
      .editorBody .data-modify-popup .data-modify-popup-btn-area svg,
      .editorBody .data-modify-popup .gateway-modify-popup-btn-area svg,
      .editorBody .data-modify-popup .kafka-modify-popup-btn-area svg,
      .editorBody .data-modify-chart-popup .data-modify-popup-btn-area svg,
      .editorBody .data-modify-chart-popup .gateway-modify-popup-btn-area svg,
      .editorBody .data-modify-chart-popup .kafka-modify-popup-btn-area svg,
      .editorBody .data-modify-pivot-popup .data-modify-popup-btn-area svg,
      .editorBody .data-modify-pivot-popup .gateway-modify-popup-btn-area svg,
      .editorBody .data-modify-pivot-popup .kafka-modify-popup-btn-area svg,
      .editorBody .data-modify-location-popup .data-modify-popup-btn-area svg,
      .editorBody .data-modify-location-popup .gateway-modify-popup-btn-area svg,
      .editorBody .data-modify-location-popup .kafka-modify-popup-btn-area svg,
      .editorBody .data-modify-table-popup .data-modify-popup-btn-area svg,
      .editorBody .data-modify-table-popup .gateway-modify-popup-btn-area svg,
      .editorBody .data-modify-table-popup .kafka-modify-popup-btn-area svg,
      .editorBody .gateway-modify-popup .data-modify-popup-btn-area svg,
      .editorBody .gateway-modify-popup .gateway-modify-popup-btn-area svg,
      .editorBody .gateway-modify-popup .kafka-modify-popup-btn-area svg,
      .editorBody .kafka-modify-popup .data-modify-popup-btn-area svg,
      .editorBody .kafka-modify-popup .gateway-modify-popup-btn-area svg,
      .editorBody .kafka-modify-popup .kafka-modify-popup-btn-area svg,
      .editorBody .ai-data-modify-popup .data-modify-popup-btn-area svg,
      .editorBody .ai-data-modify-popup .gateway-modify-popup-btn-area svg,
      .editorBody .ai-data-modify-popup .kafka-modify-popup-btn-area svg {
        color: #0073AE; }
      .editorBody .data-modify-popup .data-modify-popup-btn-area input,
      .editorBody .data-modify-popup .gateway-modify-popup-btn-area input,
      .editorBody .data-modify-popup .kafka-modify-popup-btn-area input,
      .editorBody .data-modify-chart-popup .data-modify-popup-btn-area input,
      .editorBody .data-modify-chart-popup .gateway-modify-popup-btn-area input,
      .editorBody .data-modify-chart-popup .kafka-modify-popup-btn-area input,
      .editorBody .data-modify-pivot-popup .data-modify-popup-btn-area input,
      .editorBody .data-modify-pivot-popup .gateway-modify-popup-btn-area input,
      .editorBody .data-modify-pivot-popup .kafka-modify-popup-btn-area input,
      .editorBody .data-modify-location-popup .data-modify-popup-btn-area input,
      .editorBody .data-modify-location-popup .gateway-modify-popup-btn-area input,
      .editorBody .data-modify-location-popup .kafka-modify-popup-btn-area input,
      .editorBody .data-modify-table-popup .data-modify-popup-btn-area input,
      .editorBody .data-modify-table-popup .gateway-modify-popup-btn-area input,
      .editorBody .data-modify-table-popup .kafka-modify-popup-btn-area input,
      .editorBody .gateway-modify-popup .data-modify-popup-btn-area input,
      .editorBody .gateway-modify-popup .gateway-modify-popup-btn-area input,
      .editorBody .gateway-modify-popup .kafka-modify-popup-btn-area input,
      .editorBody .kafka-modify-popup .data-modify-popup-btn-area input,
      .editorBody .kafka-modify-popup .gateway-modify-popup-btn-area input,
      .editorBody .kafka-modify-popup .kafka-modify-popup-btn-area input,
      .editorBody .ai-data-modify-popup .data-modify-popup-btn-area input,
      .editorBody .ai-data-modify-popup .gateway-modify-popup-btn-area input,
      .editorBody .ai-data-modify-popup .kafka-modify-popup-btn-area input {
        width: 100px; }
      .editorBody .data-modify-popup .data-modify-popup-btn-area .select-box,
      .editorBody .data-modify-popup .gateway-modify-popup-btn-area .select-box,
      .editorBody .data-modify-popup .kafka-modify-popup-btn-area .select-box,
      .editorBody .data-modify-chart-popup .data-modify-popup-btn-area .select-box,
      .editorBody .data-modify-chart-popup .gateway-modify-popup-btn-area .select-box,
      .editorBody .data-modify-chart-popup .kafka-modify-popup-btn-area .select-box,
      .editorBody .data-modify-pivot-popup .data-modify-popup-btn-area .select-box,
      .editorBody .data-modify-pivot-popup .gateway-modify-popup-btn-area .select-box,
      .editorBody .data-modify-pivot-popup .kafka-modify-popup-btn-area .select-box,
      .editorBody .data-modify-location-popup .data-modify-popup-btn-area .select-box,
      .editorBody .data-modify-location-popup .gateway-modify-popup-btn-area .select-box,
      .editorBody .data-modify-location-popup .kafka-modify-popup-btn-area .select-box,
      .editorBody .data-modify-table-popup .data-modify-popup-btn-area .select-box,
      .editorBody .data-modify-table-popup .gateway-modify-popup-btn-area .select-box,
      .editorBody .data-modify-table-popup .kafka-modify-popup-btn-area .select-box,
      .editorBody .gateway-modify-popup .data-modify-popup-btn-area .select-box,
      .editorBody .gateway-modify-popup .gateway-modify-popup-btn-area .select-box,
      .editorBody .gateway-modify-popup .kafka-modify-popup-btn-area .select-box,
      .editorBody .kafka-modify-popup .data-modify-popup-btn-area .select-box,
      .editorBody .kafka-modify-popup .gateway-modify-popup-btn-area .select-box,
      .editorBody .kafka-modify-popup .kafka-modify-popup-btn-area .select-box,
      .editorBody .ai-data-modify-popup .data-modify-popup-btn-area .select-box,
      .editorBody .ai-data-modify-popup .gateway-modify-popup-btn-area .select-box,
      .editorBody .ai-data-modify-popup .kafka-modify-popup-btn-area .select-box {
        position: relative;
        display: inline-block;
        padding-left: 10px; }
        .editorBody .data-modify-popup .data-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-popup .gateway-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-popup .kafka-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-chart-popup .data-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-chart-popup .gateway-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-chart-popup .kafka-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-pivot-popup .data-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-pivot-popup .gateway-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-pivot-popup .kafka-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-location-popup .data-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-location-popup .gateway-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-location-popup .kafka-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-table-popup .data-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-table-popup .gateway-modify-popup-btn-area .select-box:before,
        .editorBody .data-modify-table-popup .kafka-modify-popup-btn-area .select-box:before,
        .editorBody .gateway-modify-popup .data-modify-popup-btn-area .select-box:before,
        .editorBody .gateway-modify-popup .gateway-modify-popup-btn-area .select-box:before,
        .editorBody .gateway-modify-popup .kafka-modify-popup-btn-area .select-box:before,
        .editorBody .kafka-modify-popup .data-modify-popup-btn-area .select-box:before,
        .editorBody .kafka-modify-popup .gateway-modify-popup-btn-area .select-box:before,
        .editorBody .kafka-modify-popup .kafka-modify-popup-btn-area .select-box:before,
        .editorBody .ai-data-modify-popup .data-modify-popup-btn-area .select-box:before,
        .editorBody .ai-data-modify-popup .gateway-modify-popup-btn-area .select-box:before,
        .editorBody .ai-data-modify-popup .kafka-modify-popup-btn-area .select-box:before {
          position: absolute;
          display: block;
          top: 5px;
          bottom: 5px;
          left: 0;
          content: "";
          width: 1px;
          background-color: #eee; }
        .editorBody .data-modify-popup .data-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-popup .gateway-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-popup .kafka-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-chart-popup .data-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-chart-popup .gateway-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-chart-popup .kafka-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-pivot-popup .data-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-pivot-popup .gateway-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-pivot-popup .kafka-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-location-popup .data-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-location-popup .gateway-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-location-popup .kafka-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-table-popup .data-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-table-popup .gateway-modify-popup-btn-area .select-box .form-control,
        .editorBody .data-modify-table-popup .kafka-modify-popup-btn-area .select-box .form-control,
        .editorBody .gateway-modify-popup .data-modify-popup-btn-area .select-box .form-control,
        .editorBody .gateway-modify-popup .gateway-modify-popup-btn-area .select-box .form-control,
        .editorBody .gateway-modify-popup .kafka-modify-popup-btn-area .select-box .form-control,
        .editorBody .kafka-modify-popup .data-modify-popup-btn-area .select-box .form-control,
        .editorBody .kafka-modify-popup .gateway-modify-popup-btn-area .select-box .form-control,
        .editorBody .kafka-modify-popup .kafka-modify-popup-btn-area .select-box .form-control,
        .editorBody .ai-data-modify-popup .data-modify-popup-btn-area .select-box .form-control,
        .editorBody .ai-data-modify-popup .gateway-modify-popup-btn-area .select-box .form-control,
        .editorBody .ai-data-modify-popup .kafka-modify-popup-btn-area .select-box .form-control {
          min-width: 80px;
          height: 28px;
          min-height: 28px;
          padding-top: 0.25rem;
          padding-bottom: 0.25rem;
          padding-left: 0.5rem;
          font-size: 0.875rem; }
    .editorBody .data-modify-popup .edit-field-box,
    .editorBody .data-modify-chart-popup .edit-field-box,
    .editorBody .data-modify-pivot-popup .edit-field-box,
    .editorBody .data-modify-location-popup .edit-field-box,
    .editorBody .data-modify-table-popup .edit-field-box,
    .editorBody .gateway-modify-popup .edit-field-box,
    .editorBody .kafka-modify-popup .edit-field-box,
    .editorBody .ai-data-modify-popup .edit-field-box {
      position: absolute;
      width: 100%;
      top: 110%;
      border-radius: 5px;
      border: 1px solid #C4C4C4;
      background-color: #fff;
      padding: 10px; }
      .editorBody .data-modify-popup .edit-field-box textarea,
      .editorBody .data-modify-chart-popup .edit-field-box textarea,
      .editorBody .data-modify-pivot-popup .edit-field-box textarea,
      .editorBody .data-modify-location-popup .edit-field-box textarea,
      .editorBody .data-modify-table-popup .edit-field-box textarea,
      .editorBody .gateway-modify-popup .edit-field-box textarea,
      .editorBody .kafka-modify-popup .edit-field-box textarea,
      .editorBody .ai-data-modify-popup .edit-field-box textarea {
        height: 100px; }
      .editorBody .data-modify-popup .edit-field-box .form-control,
      .editorBody .data-modify-chart-popup .edit-field-box .form-control,
      .editorBody .data-modify-pivot-popup .edit-field-box .form-control,
      .editorBody .data-modify-location-popup .edit-field-box .form-control,
      .editorBody .data-modify-table-popup .edit-field-box .form-control,
      .editorBody .gateway-modify-popup .edit-field-box .form-control,
      .editorBody .kafka-modify-popup .edit-field-box .form-control,
      .editorBody .ai-data-modify-popup .edit-field-box .form-control {
        font-size: 14px; }
      .editorBody .data-modify-popup .edit-field-box .btn-box,
      .editorBody .data-modify-chart-popup .edit-field-box .btn-box,
      .editorBody .data-modify-pivot-popup .edit-field-box .btn-box,
      .editorBody .data-modify-location-popup .edit-field-box .btn-box,
      .editorBody .data-modify-table-popup .edit-field-box .btn-box,
      .editorBody .gateway-modify-popup .edit-field-box .btn-box,
      .editorBody .kafka-modify-popup .edit-field-box .btn-box,
      .editorBody .ai-data-modify-popup .edit-field-box .btn-box {
        margin-top: 10px; }
  .editorBody .map-setting {
    position: absolute;
    z-index: 1000;
    top: 70px;
    left: 150px; }
    .editorBody .map-setting .label-map-select {
      position: relative;
      display: block;
      width: 100%;
      border: 1px solid #ccc;
      text-align: left;
      border-radius: 5px;
      margin: 10px 0; }
      .editorBody .map-setting .label-map-select .form-control {
        border: 0; }
      .editorBody .map-setting .label-map-select .form-control:focus {
        outline: 0; }
    .editorBody .map-setting .btn-box {
      padding: 10px; }
  .editorBody .mobile-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%; }
  .editorBody .mobile-frame {
    position: relative;
    width: 400px;
    height: 868px;
    background-color: #fff;
    border: 1px solid #bfbfbf;
    border-radius: 30px;
    margin: 10px;
    padding: 34px 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); }
    .editorBody .mobile-frame .setting-box {
      position: absolute;
      left: -80px;
      bottom: 20px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .editorBody .mobile-frame .setting-box .btn {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        font-size: 20px;
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center; }
      .editorBody .mobile-frame .setting-box span {
        display: block;
        width: 70px;
        text-align: center;
        font-size: 12px;
        white-space: break-spaces;
        word-break: break-word;
        line-height: 1.2; }
    .editorBody .mobile-frame .report-edit-box {
      position: absolute;
      left: -80px;
      top: 108px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .editorBody .mobile-frame .report-edit-box .btn {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        font-size: 20px;
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center; }
      .editorBody .mobile-frame .report-edit-box span {
        display: block;
        width: 70px;
        text-align: center;
        font-size: 12px;
        white-space: break-spaces;
        word-break: break-word;
        line-height: 1.2; }
  .editorBody .mobile-view {
    border: 1px solid #ededed;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden; }
  .editorBody .mobile-view-header {
    position: relative;
    height: 73px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    background-image: url("/static/img/editor/bg_mobile_header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 39px 30px 10px 50px;
    font-size: 15px;
    z-index: 1; }
  .editorBody .mobile-view-content {
    position: relative;
    height: calc(100% - 73px);
    background-color: #f4f4f2; }
    .editorBody .mobile-view-content .layout-item .bg.multi-selected {
      box-shadow: none !important; }
    .editorBody .mobile-view-content .layout-item.active .bg, .editorBody .mobile-view-content .layout-item:hover .bg {
      box-shadow: none; }
  .editorBody .box-center {
    text-align: center; }
    .editorBody .box-center > div {
      display: inline-block;
      text-align: left; }
  .editorBody .site-with-nav-wrap {
    height: 100%;
    width: 100%; }
    .editorBody .site-with-nav-wrap .site-content-box {
      height: 100%;
      width: 100%; }
    @media (min-width: 1200px) {
      .editorBody .site-with-nav-wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
        .editorBody .site-with-nav-wrap .site-content-box {
          flex: 1; } }
  .editorBody .side-menu-wrap {
    position: absolute;
    width: 280px;
    height: 100%;
    padding: 20px;
    background-color: #f4f4f2;
    z-index: 3;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    left: -280px;
    transition: left 0.2s; }
    .editorBody .side-menu-wrap .btn-menu {
      position: absolute;
      top: 0;
      right: -35px;
      padding: 0;
      margin: 0;
      width: 35px;
      height: 35px;
      border: 1px solid #f4f4f2;
      background-color: #fff;
      border-radius: 0;
      font-size: 20px;
      overflow: hidden; }
      .editorBody .side-menu-wrap .btn-menu:hover {
        color: #15a5b7; }
    .editorBody .side-menu-wrap .btn-show-menu {
      display: block; }
    .editorBody .side-menu-wrap .btn-close-menu {
      display: none; }
    .editorBody .side-menu-wrap.on {
      left: 0; }
      .editorBody .side-menu-wrap.on .btn-show-menu {
        display: none; }
      .editorBody .side-menu-wrap.on .btn-close-menu {
        display: block; }
    @media (min-width: 1200px) {
      .editorBody .side-menu-wrap {
        position: relative;
        left: 0; }
        .editorBody .side-menu-wrap .btn-menu {
          display: none; }
        .editorBody .side-menu-wrap.on .btn-menu {
          display: none; }
        .editorBody .side-menu-wrap .btn-default-color-white {
          margin-bottom: 10px; } }
    .editorBody .side-menu-wrap .dev-menu-nav {
      width: 100%; }
      .editorBody .side-menu-wrap .dev-menu-nav ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
      .editorBody .side-menu-wrap .dev-menu-nav .dev-item a {
        position: relative;
        display: block;
        padding: 10px 15px;
        color: #333;
        transition: color .15s;
        border-bottom: 1px solid #555;
        margin-bottom: 5px; }
        .editorBody .side-menu-wrap .dev-menu-nav .dev-item a:hover, .editorBody .side-menu-wrap .dev-menu-nav .dev-item a:focus, .editorBody .side-menu-wrap .dev-menu-nav .dev-item a:active, .editorBody .side-menu-wrap .dev-menu-nav .dev-item a:focus-visible {
          color: #15a5b7; }
        .editorBody .side-menu-wrap .dev-menu-nav .dev-item a.active {
          color: #15a5b7; }
        .editorBody .side-menu-wrap .dev-menu-nav .dev-item a .icon {
          font-size: 25px;
          vertical-align: middle;
          margin-right: 8px; }
        .editorBody .side-menu-wrap .dev-menu-nav .dev-item a .beta {
          position: absolute;
          top: 3px;
          right: 15px;
          font-size: 10px;
          border: 1px solid #15a5b7;
          color: #15a5b7;
          padding: 0 3px;
          border-radius: 10px; }
    .editorBody .side-menu-wrap.agent-wrap {
      width: 330px;
      left: -330px;
      padding: 0; }
      .editorBody .side-menu-wrap.agent-wrap.on {
        left: 0; }
      .editorBody .side-menu-wrap.agent-wrap .dev-menu-nav {
        flex: 1;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
      @media (min-width: 1200px) {
        .editorBody .side-menu-wrap.agent-wrap {
          left: 0; } }
    .editorBody .side-menu-wrap .side-top {
      position: relative;
      padding: 20px; }
      .editorBody .side-menu-wrap .side-top:after {
        position: absolute;
        content: "";
        display: block;
        left: 15px;
        right: 15px;
        bottom: 0;
        background-color: #bcbcbc;
        height: 1px; }
      .editorBody .side-menu-wrap .side-top .side-title {
        font-size: 20px; }
      .editorBody .side-menu-wrap .side-top .btn-add-agent {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%); }
    .editorBody .side-menu-wrap .tree-list-box {
      position: relative;
      flex: 1; }
      .editorBody .side-menu-wrap .tree-list-box .inner-box {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        padding: 10px 20px; }
      .editorBody .side-menu-wrap .tree-list-box .list-item {
        padding: 10px 0; }
      .editorBody .side-menu-wrap .tree-list-box .item-header {
        position: relative;
        margin: 0;
        width: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        flex-wrap: nowrap; }
      .editorBody .side-menu-wrap .tree-list-box .btn-collapse {
        display: block;
        padding: 5px 3px;
        width: 20px;
        height: 20px;
        margin-right: 2px; }
        .editorBody .side-menu-wrap .tree-list-box .btn-collapse:after {
          position: relative;
          display: block;
          content: "";
          width: 0px;
          height: 0px;
          border-style: solid;
          border-width: 6px 6px 0 6px;
          border-color: #404040 transparent transparent transparent;
          transform: rotate(0deg); }
        .editorBody .side-menu-wrap .tree-list-box .btn-collapse.collapsed:after {
          transform: rotate(-90deg); }
      .editorBody .side-menu-wrap .tree-list-box .agent-label,
      .editorBody .side-menu-wrap .tree-list-box .agent-db-label {
        border: 1px solid #bfbfbf;
        background-color: #fff;
        padding: 7px 10px;
        border-radius: 8px;
        flex: 1;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: space-between;
        flex-align: space-between;
        -webkit-align-items: space-between;
        -moz-box-align-items: space-between;
        -ms-align-items: space-between;
        -webkit-align-items: space-between;
        align-items: space-between;
        cursor: pointer; }
        .editorBody .side-menu-wrap .tree-list-box .agent-label .label,
        .editorBody .side-menu-wrap .tree-list-box .agent-db-label .label {
          flex: 1; }
        .editorBody .side-menu-wrap .tree-list-box .agent-label .icon-box,
        .editorBody .side-menu-wrap .tree-list-box .agent-db-label .icon-box {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center; }
        .editorBody .side-menu-wrap .tree-list-box .agent-label .active-box,
        .editorBody .side-menu-wrap .tree-list-box .agent-db-label .active-box {
          width: 12px;
          height: 12px;
          display: block;
          border-radius: 12px;
          background-color: #ed0001;
          margin-right: 5px; }
          .editorBody .side-menu-wrap .tree-list-box .agent-label .active-box.on,
          .editorBody .side-menu-wrap .tree-list-box .agent-db-label .active-box.on {
            background-color: #389C2C; }
        .editorBody .side-menu-wrap .tree-list-box .agent-label .btn,
        .editorBody .side-menu-wrap .tree-list-box .agent-db-label .btn {
          padding: 0; }
          .editorBody .side-menu-wrap .tree-list-box .agent-label .btn i.icon,
          .editorBody .side-menu-wrap .tree-list-box .agent-db-label .btn i.icon {
            display: block; }
        .editorBody .side-menu-wrap .tree-list-box .agent-label.on,
        .editorBody .side-menu-wrap .tree-list-box .agent-db-label.on {
          background-color: #15a5b7;
          color: #fff; }
          .editorBody .side-menu-wrap .tree-list-box .agent-label.on .btn,
          .editorBody .side-menu-wrap .tree-list-box .agent-db-label.on .btn {
            color: #fff; }
      .editorBody .side-menu-wrap .tree-list-box .btn-add-db {
        position: relative;
        width: 24px;
        height: 24px;
        margin-left: 5px; }
        .editorBody .side-menu-wrap .tree-list-box .btn-add-db:before, .editorBody .side-menu-wrap .tree-list-box .btn-add-db:after {
          content: "";
          display: block;
          background-color: #444;
          position: absolute; }
        .editorBody .side-menu-wrap .tree-list-box .btn-add-db:before {
          width: 16px;
          height: 2px;
          top: 11px;
          left: 4px; }
        .editorBody .side-menu-wrap .tree-list-box .btn-add-db:after {
          width: 2px;
          height: 16px;
          top: 4px;
          left: 11px; }
      .editorBody .side-menu-wrap .tree-list-box .loading-wrap {
        position: relative;
        width: 100%;
        height: 30px; }
      .editorBody .side-menu-wrap .tree-list-box .loader-spinner {
        border: 3px solid rgba(255, 255, 255, 0.2);
        border-top-color: #ccc;
        border-bottom-color: #ccc; }
      .editorBody .side-menu-wrap .tree-list-box .item-body {
        padding-left: 20px; }
        .editorBody .side-menu-wrap .tree-list-box .item-body .no-data {
          padding: 10px 0;
          text-align: center; }
        .editorBody .side-menu-wrap .tree-list-box .item-body .list-item {
          position: relative;
          padding-left: 30px;
          padding-bottom: 0; }
          .editorBody .side-menu-wrap .tree-list-box .item-body .list-item:before {
            content: "";
            display: block;
            height: 50px;
            width: 1px;
            background-color: #999;
            position: absolute;
            top: 0;
            left: 16px; }
          .editorBody .side-menu-wrap .tree-list-box .item-body .list-item:after {
            content: "";
            display: block;
            height: 1px;
            width: 14px;
            background-color: #999;
            position: absolute;
            top: 30px;
            left: 16px; }
          .editorBody .side-menu-wrap .tree-list-box .item-body .list-item:last-child:before {
            height: 30px; }
    .editorBody .side-menu-wrap .side-bottom {
      position: relative;
      width: 100%;
      padding: 10px 20px 20px; }
      .editorBody .side-menu-wrap .side-bottom:after {
        position: absolute;
        content: "";
        display: block;
        left: 15px;
        right: 15px;
        top: 0;
        background-color: #bcbcbc;
        height: 1px; }
    .editorBody .side-menu-wrap .bottom-agent-box {
      width: 100%; }
      .editorBody .side-menu-wrap .bottom-agent-box .form-group {
        width: 100%;
        text-align: left;
        margin: 0; }
        .editorBody .side-menu-wrap .bottom-agent-box .form-group label,
        .editorBody .side-menu-wrap .bottom-agent-box .form-group .label {
          display: inline-block;
          margin-bottom: 3px;
          font-size: 13px; }
        .editorBody .side-menu-wrap .bottom-agent-box .form-group textarea.form-control {
          height: 80px;
          font-size: .875rem; }
      .editorBody .side-menu-wrap .bottom-agent-box .form-group + .form-group {
        margin-top: 10px; }
      .editorBody .side-menu-wrap .bottom-agent-box .btns .btn {
        width: 100%; }
      .editorBody .side-menu-wrap .bottom-agent-box .form-control:disabled, .editorBody .side-menu-wrap .bottom-agent-box .form-control[readonly] {
        background-color: #fcfcfc; }
      .editorBody .side-menu-wrap .bottom-agent-box .db-list-box {
        border: 1px solid #ccc;
        width: 100%;
        height: 100px;
        background-color: #fff;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        border-radius: 5px;
        font-size: 14px;
        text-align: center; }
        .editorBody .side-menu-wrap .bottom-agent-box .db-list-box .selected-item {
          border-radius: 5px;
          border: 1px solid #15a5b7;
          width: 80px;
          height: 80px; }
        .editorBody .side-menu-wrap .bottom-agent-box .db-list-box img {
          max-width: 100%;
          vertical-align: top; }
  .editorBody .site-content-box {
    position: relative; }
    .editorBody .site-content-box .btns {
      padding: 20px 0;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .editorBody .site-content-box .btns .btn {
        margin: 0 10px;
        font-size: 16px;
        width: 200px; }
      .editorBody .site-content-box .btns .btn-primary {
        background-color: #15a5b7;
        border-color: #15a5b7; }
        .editorBody .site-content-box .btns .btn-primary:hover, .editorBody .site-content-box .btns .btn-primary:focus, .editorBody .site-content-box .btns .btn-primary:active, .editorBody .site-content-box .btns .btn-primary:not(:disabled):not(.disabled).active, .editorBody .site-content-box .btns .btn-primary:not(:disabled):not(.disabled):active {
          background-color: #1290a0;
          border-color: #1290a0; }
      .editorBody .site-content-box .btns .btn-default {
        background-color: #747c7f;
        border-color: #969696;
        color: #fff; }
        .editorBody .site-content-box .btns .btn-default:hover, .editorBody .site-content-box .btns .btn-default:focus, .editorBody .site-content-box .btns .btn-default:active {
          background-color: #686f72; }
    .editorBody .site-content-box .float-btns {
      border-top: 1px solid #bfbfbf;
      position: absolute;
      bottom: 0;
      background-color: #fff;
      left: 15px;
      right: 15px; }
      @media (min-width: 1200px) {
        .editorBody .site-content-box .float-btns {
          left: 30px;
          right: 30px; } }
      .editorBody .site-content-box .float-btns .btn {
        width: 100%; }
  .editorBody .site-list-wrap {
    padding: 0 15px;
    height: 100%;
    width: 100%;
    background-color: #fff;
    overflow-y: auto; }
    @media (min-width: 1200px) {
      .editorBody .site-list-wrap {
        padding: 0 30px; } }
    .editorBody .site-list-wrap.with-float-btns {
      position: relative;
      padding-bottom: 80px; }
    .editorBody .site-list-wrap .site-list-header {
      position: relative;
      padding: 40px 15px 0;
      margin-bottom: 25px; }
      .editorBody .site-list-wrap .site-list-header span {
        position: relative;
        display: inline-block; }
      .editorBody .site-list-wrap .site-list-header .btn-add {
        position: absolute;
        top: 40px;
        right: 0; }
      .editorBody .site-list-wrap .site-list-header .beta {
        position: absolute;
        font-size: 12px;
        top: 0;
        right: -50px;
        border: 1px solid #15a5b7;
        color: #15a5b7;
        padding: 3px 5px;
        border-radius: 10px; }
      .editorBody .site-list-wrap .site-list-header .link {
        display: inline-block;
        color: #333;
        font-size: 2rem;
        line-height: 1.2;
        margin-right: 10px; }
      .editorBody .site-list-wrap .site-list-header .title {
        display: inline-block; }
    .editorBody .site-list-wrap .site-search-wrap {
      margin: 15px 0; }
    .editorBody .site-list-wrap .table thead th {
      border-color: #d9d9d9;
      border-bottom-width: 1px; }
    .editorBody .site-list-wrap .table th,
    .editorBody .site-list-wrap .table td {
      font-size: 14px;
      padding: 0.75rem 15px;
      vertical-align: middle; }
    .editorBody .site-list-wrap .table .btn {
      padding: 0 5px; }
    .editorBody .site-list-wrap .btn-td {
      text-align: center; }
    .editorBody .site-list-wrap .line-left {
      position: relative; }
      .editorBody .site-list-wrap .line-left:before {
        position: absolute;
        width: 2px;
        height: 24px;
        top: 50%;
        margin-top: -12px;
        left: 0;
        content: "";
        background-color: #c8c8c8;
        display: block; }
    .editorBody .site-list-wrap .table .btn-add-action {
      display: inline-block;
      width: auto;
      padding: 5px 10px;
      min-width: 125px; }
      .editorBody .site-list-wrap .table .btn-add-action .icon {
        margin-bottom: 3px; }
      .editorBody .site-list-wrap .table .btn-add-action span {
        vertical-align: middle; }
    .editorBody .site-list-wrap .front-pagination {
      margin-bottom: 15px; }
    .editorBody .site-list-wrap.clickable .table tbody > tr:hover {
      background-color: #fafafa; }
    .editorBody .site-list-wrap .user-edit-box {
      margin-bottom: 80px; }
    .editorBody .site-list-wrap .user-permission-box .title {
      margin-bottom: 10px; }
    .editorBody .site-list-wrap.agent-wrap {
      overflow-y: hidden;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .editorBody .site-list-wrap.agent-wrap .breadcrumb {
        background-color: transparent;
        padding: 0;
        font-size: 14px; }
      .editorBody .site-list-wrap.agent-wrap .site-list-header {
        padding-top: 20px;
        padding-bottom: 10px;
        margin-bottom: 0;
        height: 106px; }
      .editorBody .site-list-wrap.agent-wrap .btn-link-dev-doc {
        position: absolute;
        top: 20px;
        right: 10px;
        border: 1px solid #ccc; }
      .editorBody .site-list-wrap.agent-wrap .btn-content-box {
        border-top: 1px solid #ccc;
        height: calc(100% - 132px); }
      .editorBody .site-list-wrap.agent-wrap .btn-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
      .editorBody .site-list-wrap.agent-wrap .btn-content {
        width: 300px;
        height: 200px;
        text-align: center;
        font-size: 24px;
        border: 1px solid #15a5b7;
        margin: 40px; }
        .editorBody .site-list-wrap.agent-wrap .btn-content span {
          display: block;
          max-width: 70%;
          white-space: initial; }
        .editorBody .site-list-wrap.agent-wrap .btn-content:hover, .editorBody .site-list-wrap.agent-wrap .btn-content:focus-visible {
          background-color: #15a5b7;
          color: #fff; }
      .editorBody .site-list-wrap.agent-wrap .site-list-body {
        position: relative;
        flex: 1;
        overflow: hidden; }
        .editorBody .site-list-wrap.agent-wrap .site-list-body > .flex-column {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex; }
        .editorBody .site-list-wrap.agent-wrap .site-list-body .btn-add-convert-db {
          position: absolute;
          top: 0;
          right: 10px; }
      .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        margin-top: 15px;
        margin-bottom: -1px;
        padding: 0 10px;
        height: 38px; }
        .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect {
          position: relative;
          border: 1px solid #ccc;
          border-bottom-color: transparent;
          border-radius: 8px 8px 0 0;
          width: 100px;
          margin: 0 5px;
          padding-left: 40px; }
          .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect:hover, .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect:focus, .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect:active, .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect:focus-visible {
            color: #15a5b7; }
          .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect.on {
            color: #15a5b7;
            border-color: #15a5b7;
            border-bottom-color: transparent; }
          .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect .icon {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            top: 8px;
            left: 10px;
            background-repeat: no-repeat;
            background-size: cover;
            text-indent: -999em; }
          .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect .icon-api {
            background-image: url("/static/svg/datamenu_api_subscribe.svg"); }
          .editorBody .site-list-wrap.agent-wrap .db-connect-type-tab .btn-connect .icon-iot {
            background-image: url("/static/svg/datamenu_iot_subscribe.svg"); }
      .editorBody .site-list-wrap.agent-wrap .connector-search-box {
        border-top: 1px solid #15a5b7;
        padding: 15px; }
      .editorBody .site-list-wrap.agent-wrap .connector-list-wrap {
        flex: 1;
        overflow-y: auto;
        padding: 0  15px 15px; }
      .editorBody .site-list-wrap.agent-wrap .db-connector-item {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #fafafa;
        margin-bottom: 20px; }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          margin-bottom: 10px; }
          .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top .btn {
            margin-left: 10px; }
            .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top .btn:hover, .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top .btn:focus, .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top .btn:active, .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top .btn:focus-visible {
              color: #15a5b7; }
          .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top .form-check {
            font-size: 14px;
            margin-bottom: 0; }
          .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top .btn-delete,
          .editorBody .site-list-wrap.agent-wrap .db-connector-item .item-top .btn-edit {
            padding-left: 5px;
            padding-right: 5px;
            font-size: 18px; }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .name {
          flex: 1;
          font-size: 18px; }
          .editorBody .site-list-wrap.agent-wrap .db-connector-item .name strong {
            font-weight: normal; }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .btn-box {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center; }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .sql-view-box {
          position: relative;
          border: 1px solid #15a5b7;
          background-color: #000;
          border-radius: 10px;
          overflow: hidden;
          height: 150px; }
          .editorBody .site-list-wrap.agent-wrap .db-connector-item .sql-view-box textarea {
            display: block;
            width: 100%;
            height: 100%;
            padding: 10px 30px 10px 15px;
            color: #fff;
            overflow-y: auto;
            resize: none;
            background-color: transparent;
            border: 0; }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .api-connect-row,
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .iot-connect-row {
          position: relative;
          padding-left: 35px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center; }
          .editorBody .site-list-wrap.agent-wrap .db-connector-item .api-connect-row .icon,
          .editorBody .site-list-wrap.agent-wrap .db-connector-item .iot-connect-row .icon {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            top: 10px;
            left: 8px;
            background-repeat: no-repeat;
            background-size: cover;
            text-indent: -999em; }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .api-connect-row .icon {
          background-image: url("/static/svg/datamenu_api_subscribe.svg"); }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .api-connect-row .key-box {
          flex: 1; }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .iot-connect-row .icon {
          background-image: url("/static/svg/datamenu_iot_subscribe.svg"); }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .iot-connect-row .broker-select {
          flex: 2;
          margin: 0 5px; }
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .iot-connect-row .topic-select,
        .editorBody .site-list-wrap.agent-wrap .db-connector-item .iot-connect-row .interval-box {
          flex: 1;
          margin: 0 5px; }
    .editorBody .site-list-wrap .ai-agent-status {
      display: block;
      width: 16px;
      height: 16px;
      border-radius: 16px;
      background-color: #ccc; }
      .editorBody .site-list-wrap .ai-agent-status.READY {
        background-color: #FF9100; }
      .editorBody .site-list-wrap .ai-agent-status.WAIT_RUNNING {
        background-color: #0073AE; }
      .editorBody .site-list-wrap .ai-agent-status.RUNNING {
        background-color: #7FC464; }
      .editorBody .site-list-wrap .ai-agent-status.DONE {
        background-color: #000000; }
      .editorBody .site-list-wrap .ai-agent-status.ERROR {
        background-color: #FF0000; }
      .editorBody .site-list-wrap .ai-agent-status.STOP {
        background-color: #e9c2ff; }
  .editorBody .edit-profile-box .field-row {
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: space-between;
    flex-align: space-between;
    -webkit-align-items: space-between;
    -moz-box-align-items: space-between;
    -ms-align-items: space-between;
    -webkit-align-items: space-between;
    align-items: space-between;
    flex-wrap: wrap; }
  .editorBody .edit-profile-box .profile-item {
    width: 33.33333%;
    padding: 20px; }
    .editorBody .edit-profile-box .profile-item.top {
      padding-bottom: 0; }
    .editorBody .edit-profile-box .profile-item label,
    .editorBody .edit-profile-box .profile-item .label {
      display: block;
      font-size: 13px;
      margin-bottom: .5rem; }
    .editorBody .edit-profile-box .profile-item .form-control {
      display: block;
      border-radius: 0;
      font-size: 14px; }
    .editorBody .edit-profile-box .profile-item .form-check {
      margin-bottom: 5px; }
      .editorBody .edit-profile-box .profile-item .form-check label {
        margin-bottom: 0;
        font-size: 14px;
        line-height: 24px; }
    @media (min-width: 1400px) {
      .editorBody .edit-profile-box .profile-item {
        width: 16.66666%; }
        .editorBody .edit-profile-box .profile-item.top {
          padding-bottom: 20px; } }
  .editorBody .edit-profile-box.team-box .profile-item {
    width: 50%; }
    @media (min-width: 1200px) {
      .editorBody .edit-profile-box.team-box .profile-item.short {
        width: 40%; }
      .editorBody .edit-profile-box.team-box .profile-item.long {
        width: 60%; } }
    @media (min-width: 1400px) {
      .editorBody .edit-profile-box.team-box .profile-item {
        width: 50%; } }
  .editorBody .permission-box {
    border-top: 1px solid #bfbfbf; }
    .editorBody .permission-box .row {
      margin-left: 0;
      margin-right: 0; }
    .editorBody .permission-box .box-row {
      padding: 20px 5px; }
      .editorBody .permission-box .box-row .title {
        padding: 0 15px;
        margin-bottom: 15px;
        margin-top: -5px;
        font-size: 18px;
        font-weight: bold; }
    .editorBody .permission-box .bottom-line {
      border-bottom: 1px solid #bfbfbf; }
    .editorBody .permission-box .right-line {
      border-bottom: 1px solid #bfbfbf; }
      @media (min-width: 768px) {
        .editorBody .permission-box .right-line {
          border-bottom: none;
          border-right: 1px solid #bfbfbf; } }
    .editorBody .permission-box .btn {
      font-size: 14px;
      padding: 3px 15px;
      border-radius: 3px; }
    .editorBody .permission-box .permission-list {
      margin-bottom: 0; }
      .editorBody .permission-box .permission-list li {
        margin-bottom: 5px; }
        .editorBody .permission-box .permission-list li:last-child {
          margin-bottom: 0; }
  .editorBody .page-access-box {
    border-top: 1px solid #bfbfbf; }
    .editorBody .page-access-box .row {
      margin-left: 0;
      margin-right: 0; }
    .editorBody .page-access-box .box-row {
      padding: 20px 5px; }
    .editorBody .page-access-box .bottom-line {
      border-bottom: 1px solid #bfbfbf; }
    .editorBody .page-access-box .page-category-box {
      padding: 0; }
      .editorBody .page-access-box .page-category-box .title {
        font-size: 25px;
        margin-bottom: 40px; }
    .editorBody .page-access-box .category-box {
      position: relative; }
      .editorBody .page-access-box .category-box .form-check-input {
        border-color: #15a5b7; }
      .editorBody .page-access-box .category-box .category-inner {
        padding: 10px 15px;
        width: 100%;
        height: 100%;
        overflow-y: auto; }
      .editorBody .page-access-box .category-box .list-item {
        margin-bottom: 20px; }
        .editorBody .page-access-box .category-box .list-item .form-check {
          position: relative;
          padding-left: 30px;
          margin-bottom: 0; }
        .editorBody .page-access-box .category-box .list-item .form-check-input {
          top: 8px;
          left: 0;
          margin-left: 0;
          margin-top: 0;
          border-color: #15a5b7; }
        .editorBody .page-access-box .category-box .list-item .form-check-label {
          display: block;
          width: 100%;
          padding: 6px 100px 6px 15px;
          border: 1px solid #bfbfbf;
          font-size: 14px; }
        .editorBody .page-access-box .category-box .list-item .type {
          font-size: 13px;
          color: #999; }
        .editorBody .page-access-box .category-box .list-item.guest-item .form-check-label {
          padding-right: 15px; }
      .editorBody .page-access-box .category-box .children-category-item {
        position: relative;
        padding-top: 10px; }
        .editorBody .page-access-box .category-box .children-category-item:before {
          content: "";
          display: block;
          height: 46px;
          width: 1px;
          background-color: #777;
          position: absolute;
          top: 0;
          left: 40px; }
        .editorBody .page-access-box .category-box .children-category-item:after {
          content: "";
          display: block;
          height: 1px;
          width: 10px;
          background-color: #777;
          position: absolute;
          top: 28px;
          left: 40px; }
        .editorBody .page-access-box .category-box .children-category-item:last-child:before {
          height: 29px; }
        .editorBody .page-access-box .category-box .children-category-item .form-check {
          padding-left: 50px; }
      .editorBody .page-access-box .category-box .all-rud-box .form-check,
      .editorBody .page-access-box .category-box .item-rud-box .form-check {
        display: inline-block;
        padding-left: 0;
        margin: 0 5px; }
      .editorBody .page-access-box .category-box .all-rud-box .form-check-input,
      .editorBody .page-access-box .category-box .item-rud-box .form-check-input {
        position: relative;
        float: none;
        margin-left: 0;
        margin-top: 0; }
      .editorBody .page-access-box .category-box .all-box,
      .editorBody .page-access-box .category-box .all-rud-box {
        position: absolute; }
        .editorBody .page-access-box .category-box .all-box .form-check-label,
        .editorBody .page-access-box .category-box .all-rud-box .form-check-label {
          display: block;
          font-size: 14px;
          text-align: center; }
      .editorBody .page-access-box .category-box .all-box {
        top: -25px;
        left: 11px; }
      .editorBody .page-access-box .category-box .all-rud-box {
        top: -45px;
        right: 20px; }
      .editorBody .page-access-box .category-box .item-rud-box {
        position: absolute;
        top: 50%;
        right: 5px;
        transform: translateY(-50%); }
        .editorBody .page-access-box .category-box .item-rud-box .form-check-input {
          top: 3px; }
  .editorBody .api-action-token {
    border-radius: 10px;
    background-color: #f4f4f2;
    padding: 20px;
    margin-bottom: 15px; }
    .editorBody .api-action-token .form-group {
      position: relative;
      padding-right: 250px; }
      .editorBody .api-action-token .form-group label {
        margin-bottom: 3px; }
    .editorBody .api-action-token .btn-token-generate {
      position: absolute;
      top: 26px;
      right: 0;
      border: 1px solid #ced4da;
      background-color: #fff;
      border-radius: 38px;
      width: 230px; }
      .editorBody .api-action-token .btn-token-generate:hover, .editorBody .api-action-token .btn-token-generate:focus-visible {
        color: #15a5b7;
        border-color: #15a5b7; }
    .editorBody .api-action-token .input-wrap {
      position: relative; }
      .editorBody .api-action-token .input-wrap .form-control {
        padding-right: 35px; }
      .editorBody .api-action-token .input-wrap .btn-copy {
        position: absolute;
        top: 0;
        right: 0;
        background-color: transparent;
        border: 0; }
  .editorBody .endpoint-url-box {
    position: relative; }
    .editorBody .endpoint-url-box .form-control {
      border: 0; }
    .editorBody .endpoint-url-box .form-control.read-only,
    .editorBody .endpoint-url-box .form-control:read-only {
      background-color: transparent; }
    .editorBody .endpoint-url-box .btn-copy {
      position: absolute;
      top: 50%;
      right: 5px;
      margin-top: -12px;
      background-color: transparent;
      border: 0; }
  .editorBody .leaflet-popup-content .btn-add-action {
    margin-top: 10px;
    background-color: #fff;
    font-size: 13px;
    padding: 0 10px;
    height: 28px;
    border-radius: 28px; }
    .editorBody .leaflet-popup-content .btn-add-action .icon {
      width: 16px;
      height: 16px;
      border-radius: 16px; }
      .editorBody .leaflet-popup-content .btn-add-action .icon:before {
        width: 8px;
        height: 2px; }
      .editorBody .leaflet-popup-content .btn-add-action .icon:after {
        width: 2px;
        height: 8px; }
  .editorBody .iot-form {
    border-radius: 10px;
    background-color: #f4f4f2;
    padding: 20px;
    margin-bottom: 15px; }
    .editorBody .iot-form .btn-submit {
      margin-top: 10px; }
    .editorBody .iot-form .form-group {
      margin-top: 10px; }
  .editorBody .iot-page .input-wrap {
    position: relative; }
    .editorBody .iot-page .input-wrap .form-control {
      padding-right: 35px; }
    .editorBody .iot-page .input-wrap .btn-copy {
      position: absolute;
      top: 7px;
      right: 0;
      background-color: transparent;
      border: 0; }
  .editorBody .agent-list-wrap {
    background-color: #fff; }
    .editorBody .agent-list-wrap .map-item .add-btn-wrap.ai-agent-btn-wrap {
      height: 162px;
      min-height: 162px; }
    .editorBody .agent-list-wrap .map-item .agent-use {
      outline: 2px solid #15a5b7; }
    .editorBody .agent-list-wrap .map-list-footer {
      background-color: #fff; }
    .editorBody .agent-list-wrap .btn-box .btn {
      padding: 0 3px;
      font-size: 14px; }
    @media (min-width: 1200px) {
      .editorBody .agent-list-wrap {
        padding: 0 30px; }
        .editorBody .agent-list-wrap .map-item {
          flex: 0 0 25%;
          max-width: 25%; }
        .editorBody .agent-list-wrap .map-list-footer {
          left: 295px; } }
  .editorBody .ai-agent-action-wrap {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 380px;
    height: auto;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.1);
    padding: 8px;
    z-index: 2999;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .editorBody .ai-agent-action-wrap .section-box {
      position: relative;
      width: 25%;
      height: 54px;
      font-size: 12px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .editorBody .ai-agent-action-wrap .section-box.is-middle-bar:before {
        display: block;
        content: "";
        position: absolute;
        width: 1px;
        top: 5px;
        bottom: 5px;
        background-color: #999;
        left: 0; }
      .editorBody .ai-agent-action-wrap .section-box.is-dropdown {
        height: auto; }
      .editorBody .ai-agent-action-wrap .section-box .btn {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        font-size: inherit; }
        .editorBody .ai-agent-action-wrap .section-box .btn:disabled, .editorBody .ai-agent-action-wrap .section-box .btn.disabled {
          cursor: default; }
          .editorBody .ai-agent-action-wrap .section-box .btn:disabled .icon, .editorBody .ai-agent-action-wrap .section-box .btn.disabled .icon {
            color: #747c7f; }
          .editorBody .ai-agent-action-wrap .section-box .btn:disabled .run-icon::before, .editorBody .ai-agent-action-wrap .section-box .btn.disabled .run-icon::before {
            border-color: transparent transparent transparent #747c7f; }
      .editorBody .ai-agent-action-wrap .section-box .box-title {
        font-size: 14px;
        margin-bottom: 3px;
        text-align: center; }
      .editorBody .ai-agent-action-wrap .section-box .icon {
        font-weight: bold;
        color: #15a5b7;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: 2px; }
      .editorBody .ai-agent-action-wrap .section-box .run-icon::before {
        display: block;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7px 0 7px 12px;
        border-color: transparent transparent transparent #15a5b7; }
      .editorBody .ai-agent-action-wrap .section-box .stop-icon:before {
        display: block;
        content: "";
        width: 14px;
        height: 14px;
        background-color: #15a5b7; }
      .editorBody .ai-agent-action-wrap .section-box .spinner {
        display: block;
        width: 14px;
        height: 14px;
        border: 2px solid #15a5b7;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite; }

.common-gradient {
  background: #57a845;
  background: linear-gradient(90deg, #57a845 0%, #29a598 32%, #0084a5 63%, #0073ae 100%); }

.popup-default-form,
.popup-iframe-form,
.popup-youtube-form {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #737373;
  display: flex;
  flex-direction: column;
  width: 500px;
  margin: 0 auto; }
  .popup-default-form form label,
  .popup-iframe-form form label,
  .popup-youtube-form form label {
    font-size: 14px; }
  .popup-default-form form .checkbox,
  .popup-iframe-form form .checkbox,
  .popup-youtube-form form .checkbox {
    margin-left: 1.25em; }
  .popup-default-form form .form-check-label,
  .popup-iframe-form form .form-check-label,
  .popup-youtube-form form .form-check-label {
    padding-left: 0.5em; }
  .popup-default-form .content-box,
  .popup-iframe-form .content-box,
  .popup-youtube-form .content-box {
    padding: 10px 20px; }
  .popup-default-form .title,
  .popup-iframe-form .title,
  .popup-youtube-form .title {
    font-size: 16px;
    background-color: #1598A3;
    color: #ffffff;
    padding: 10px;
    margin: 0; }
  .popup-default-form .btn-close,
  .popup-iframe-form .btn-close,
  .popup-youtube-form .btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0;
    cursor: pointer;
    background-color: transparent;
    width: 30px;
    height: 30px;
    transition: opacity .2s; }
    .popup-default-form .btn-close:hover,
    .popup-iframe-form .btn-close:hover,
    .popup-youtube-form .btn-close:hover {
      opacity: 1; }
    .popup-default-form .btn-close:before,
    .popup-iframe-form .btn-close:before,
    .popup-youtube-form .btn-close:before {
      transform: rotate(45deg); }
    .popup-default-form .btn-close:after,
    .popup-iframe-form .btn-close:after,
    .popup-youtube-form .btn-close:after {
      transform: rotate(-45deg); }
  .popup-default-form .btn-group .btn,
  .popup-iframe-form .btn-group .btn,
  .popup-youtube-form .btn-group .btn {
    border-radius: 0;
    border: 0;
    font-size: 1em; }
  .popup-default-form .btn-group .btn-primary,
  .popup-iframe-form .btn-group .btn-primary,
  .popup-youtube-form .btn-group .btn-primary {
    background-color: #30373a;
    border-color: #30373a; }
    .popup-default-form .btn-group .btn-primary:hover, .popup-default-form .btn-group .btn-primary:focus, .popup-default-form .btn-group .btn-primary:active,
    .popup-iframe-form .btn-group .btn-primary:hover,
    .popup-iframe-form .btn-group .btn-primary:focus,
    .popup-iframe-form .btn-group .btn-primary:active,
    .popup-youtube-form .btn-group .btn-primary:hover,
    .popup-youtube-form .btn-group .btn-primary:focus,
    .popup-youtube-form .btn-group .btn-primary:active {
      background-color: #24292b; }
  .popup-default-form .btn-group .btn-default,
  .popup-iframe-form .btn-group .btn-default,
  .popup-youtube-form .btn-group .btn-default {
    background-color: #747c7f;
    border-color: #969696;
    color: #fff; }
    .popup-default-form .btn-group .btn-default:hover, .popup-default-form .btn-group .btn-default:focus, .popup-default-form .btn-group .btn-default:active,
    .popup-iframe-form .btn-group .btn-default:hover,
    .popup-iframe-form .btn-group .btn-default:focus,
    .popup-iframe-form .btn-group .btn-default:active,
    .popup-youtube-form .btn-group .btn-default:hover,
    .popup-youtube-form .btn-group .btn-default:focus,
    .popup-youtube-form .btn-group .btn-default:active {
      background-color: #686f72; }
  .popup-default-form .color-line-chart .title,
  .popup-iframe-form .color-line-chart .title,
  .popup-youtube-form .color-line-chart .title {
    color: inherit;
    background-color: transparent; }

.popup-iframe-form {
  width: 1200px; }

.qrcode {
  position: absolute;
  right: 100px;
  top: 60px;
  width: 50px;
  height: 50px; }

.report-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%; }
  .report-container .leaflet-control-attribution {
    visibility: hidden; }
  .report-container > div[class^="col-"] {
    padding: 0; }
  .report-container .change-location-container {
    display: none; }
  .report-container .pin {
    position: absolute;
    left: calc(50% + 4px);
    top: calc(50% - 10px);
    z-index: 99999; }
  .report-container .change-location {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 50px;
    z-index: 99999; }
    .report-container .change-location button {
      width: 100%; }
  .report-container .report-list-header {
    margin-top: 70px; }
  .report-container .site-list-wrap {
    overflow-y: auto; }

.btn-custom-marker-remove {
  position: absolute; }
  .btn-custom-marker-remove:hover, .btn-custom-marker-remove:focus, .btn-custom-marker-remove:active {
    color: #969696; }

.survey-form {
  width: 520px !important; }
  .survey-form .content-box {
    padding: 0;
    background-color: #f4f4f2;
    max-height: 95%;
    overflow-y: auto; }
  .survey-form .form-row {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px; }
  .survey-form .form-control {
    border-radius: 0; }
  .survey-form .survey-info-form {
    position: relative;
    padding: 15px 10px; }
    .survey-form .survey-info-form .form-row:last-child {
      margin-bottom: 0; }
    .survey-form .survey-info-form label, .survey-form .survey-info-form .label {
      font-size: 0.9em;
      margin-bottom: 0.3rem; }
    .survey-form .survey-info-form .editor-iframe {
      display: block;
      width: 100%;
      height: 230px;
      background-color: #fff;
      border: 1px solid #ced4da;
      resize: vertical; }
    .survey-form .survey-info-form:after {
      position: absolute;
      display: block;
      height: 1px;
      content: "";
      background-color: #999;
      bottom: 0;
      left: 10px;
      right: 10px; }
  .survey-form .survey-cont-box {
    padding: 15px 10px; }
    .survey-form .survey-cont-box .survey-form-item {
      width: 100%;
      background-color: #fff;
      border: 1px solid #bdbdbd;
      border-radius: 5px;
      margin-bottom: 10px;
      padding: 10px; }
      .survey-form .survey-cont-box .survey-form-item.active {
        border-color: #15a5b7;
        box-shadow: 0 0 0 1px #15a5b7; }
    .survey-form .survey-cont-box .item-title-row {
      position: relative;
      margin-bottom: 0;
      padding-right: 180px; }
      .survey-form .survey-cont-box .item-title-row .icon-box {
        position: absolute;
        top: 0;
        right: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        height: 38px; }
      .survey-form .survey-cont-box .item-title-row .btn {
        font-size: 22px;
        padding: 0 10px; }
        .survey-form .survey-cont-box .item-title-row .btn svg {
          vertical-align: middle; }
      .survey-form .survey-cont-box .item-title-row label.btn {
        margin-bottom: 0; }
    .survey-form .survey-cont-box .select-dropdown {
      position: relative;
      width: 100%; }
      .survey-form .survey-cont-box .select-dropdown .btn-select-dropdown {
        width: 100%;
        border-radius: 0;
        text-align: left; }
        .survey-form .survey-cont-box .select-dropdown .btn-select-dropdown.disabled {
          background-color: #f9f9f9; }
      .survey-form .survey-cont-box .select-dropdown .dropdown-menu {
        width: 100%;
        border-radius: 0;
        max-height: 240px;
        overflow-y: auto; }
    .survey-form .survey-cont-box .btn-add-form {
      width: 100%;
      height: 58px;
      background-color: #fff;
      border: 1px solid #bdbdbd;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center; }
      .survey-form .survey-cont-box .btn-add-form:hover, .survey-form .survey-cont-box .btn-add-form:focus, .survey-form .survey-cont-box .btn-add-form:active {
        background-color: #f9f9f9; }
      .survey-form .survey-cont-box .btn-add-form .icon {
        display: inline-block;
        font-size: 28px;
        font-weight: bold;
        width: 24px;
        height: 24px;
        line-height: 26px;
        border-radius: 24px;
        background-color: #15a5b7;
        color: #fff;
        text-align: center; }
      .survey-form .survey-cont-box .btn-add-form .text {
        margin-left: 10px;
        font-size: 1rem; }
    .survey-form .survey-cont-box .item-content {
      margin-top: 15px;
      border-top: 1px solid #ced4da;
      padding: 8px 0 0; }
    .survey-form .survey-cont-box .img-box {
      position: relative;
      width: 100%;
      padding: 10px; }
      .survey-form .survey-cont-box .img-box img {
        max-width: 100%; }
      .survey-form .survey-cont-box .img-box .btn-remove {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: #ff0000;
        color: #fff;
        font-size: 30px;
        line-height: 1;
        padding: 5px;
        width: 20px;
        height: 20px;
        border-radius: 20px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }

.survey-edit-inner {
  padding: 5px 0; }
  .survey-edit-inner .text-box {
    padding: 10px;
    color: #aaa; }
    .survey-edit-inner .text-box .text {
      height: 36px;
      border-bottom: 1px solid #ccc;
      padding: 5px 0; }
  .survey-edit-inner .checkbox-box {
    padding: 10px; }
  .survey-edit-inner .checkbox-item,
  .survey-edit-inner .category-item {
    position: relative;
    padding: 0 60px 0 40px;
    margin-bottom: 5px; }
    .survey-edit-inner .checkbox-item:last-child,
    .survey-edit-inner .category-item:last-child {
      margin-bottom: 0; }
    .survey-edit-inner .checkbox-item .btn-box,
    .survey-edit-inner .category-item .btn-box {
      position: absolute;
      width: 60px;
      top: 0;
      right: 0;
      height: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
    .survey-edit-inner .checkbox-item .btn-add,
    .survey-edit-inner .checkbox-item .btn-remove,
    .survey-edit-inner .category-item .btn-add,
    .survey-edit-inner .category-item .btn-remove {
      position: relative;
      width: 30px;
      height: 30px; }
      .survey-edit-inner .checkbox-item .btn-add:before,
      .survey-edit-inner .checkbox-item .btn-remove:before,
      .survey-edit-inner .category-item .btn-add:before,
      .survey-edit-inner .category-item .btn-remove:before {
        position: absolute;
        display: block;
        content: "";
        width: 16px;
        height: 2px;
        background-color: #555;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      .survey-edit-inner .checkbox-item .btn-add:after,
      .survey-edit-inner .checkbox-item .btn-remove:after,
      .survey-edit-inner .category-item .btn-add:after,
      .survey-edit-inner .category-item .btn-remove:after {
        position: absolute;
        display: block;
        content: "";
        height: 16px;
        width: 2px;
        background-color: #555;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .survey-edit-inner .checkbox-item .btn-remove:before,
    .survey-edit-inner .category-item .btn-remove:before {
      transform: translate(-50%, -50%) rotate(45deg);
      transform-origin: center; }
    .survey-edit-inner .checkbox-item .btn-remove:after,
    .survey-edit-inner .category-item .btn-remove:after {
      transform: translate(-50%, -50%) rotate(45deg);
      transform-origin: center; }
    .survey-edit-inner .checkbox-item:before,
    .survey-edit-inner .category-item:before {
      display: block;
      position: absolute;
      content: "";
      width: 24px;
      height: 24px;
      top: 50%;
      margin-top: -12px;
      left: 5px;
      border: 1px solid #15a5b7;
      background-color: #f5f5f5; }
  .survey-edit-inner .checkbox-box.checkbox .checkbox-item:before {
    border-radius: 3px; }
  .survey-edit-inner .checkbox-box.radio .checkbox-item:before {
    border-radius: 24px; }
  .survey-edit-inner .linear-box {
    margin-top: 10px; }
  .survey-edit-inner .linear-row {
    position: relative;
    padding-right: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 10px; }
    .survey-edit-inner .linear-row select.form-control {
      width: 100px;
      margin-right: 10px; }
    .survey-edit-inner .linear-row input.form-control {
      flex: 1; }
    .survey-edit-inner .linear-row.start:after {
      position: absolute;
      display: block;
      content: "~";
      top: 4px;
      right: 8px;
      font-size: 20px; }
  .survey-edit-inner .date-box {
    position: relative;
    margin-top: 10px;
    width: 60%; }
    .survey-edit-inner .date-box .date-input {
      width: 100%;
      height: 36px;
      border: 1px solid #ccc;
      padding: .375rem .75rem;
      font-size: 1rem;
      line-height: 1.4;
      padding-right: 40px; }
    .survey-edit-inner .date-box .icon {
      position: absolute;
      top: 2px;
      right: 10px;
      font-size: 24px; }
  .survey-edit-inner .file-box {
    position: relative;
    margin-top: 10px;
    padding-right: 50px; }
    .survey-edit-inner .file-box .file-input {
      height: 36px;
      border-bottom: 1px solid #ccc;
      padding: 5px 10px; }
    .survey-edit-inner .file-box .icon {
      position: absolute;
      top: 2px;
      right: 10px;
      font-size: 20px; }
  .survey-edit-inner .grid-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 10px; }
    .survey-edit-inner .grid-box .grid-column:first-child {
      width: 46%; }
      .survey-edit-inner .grid-box .grid-column:first-child .checkbox-item {
        padding-left: 0; }
      .survey-edit-inner .grid-box .grid-column:first-child .checkbox-item:before {
        display: none; }
    .survey-edit-inner .grid-box .grid-column:last-child {
      width: 54%; }
    .survey-edit-inner .grid-box .title {
      font-size: 0.9rem;
      background-color: transparent;
      color: #333;
      padding: 5px 10px; }
  .survey-edit-inner .location-box .location-img-box {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    overflow: hidden; }
    .survey-edit-inner .location-box .location-img-box img {
      max-width: 100%; }
    .survey-edit-inner .location-box .location-img-box .remove {
      position: absolute;
      top: 3px;
      right: 3px;
      width: 20px;
      height: 20px;
      border: 0;
      padding: 0;
      margin: 0;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 20px;
      color: #fff;
      font-size: 16px;
      z-index: 10;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
  .survey-edit-inner .location-box .file-label {
    display: inline-block;
    margin-bottom: 0; }
    .survey-edit-inner .location-box .file-label .icon {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      border: 1px solid #ccc;
      padding: 5px;
      margin-bottom: 0;
      font-size: 20px;
      width: 34px;
      margin-right: 10px;
      float: left; }
    .survey-edit-inner .location-box .file-label .location-tip {
      float: left;
      margin-top: 3px; }
  .survey-edit-inner .category-box {
    margin-top: 10px; }
    .survey-edit-inner .category-box .category-item {
      padding-left: 30px; }
      .survey-edit-inner .category-box .category-item:before {
        display: none; }

.survey-view-inner .required {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  color: #15a5b7; }

.survey-view-inner .question-box {
  padding: 5px 10px;
  margin-bottom: 5px; }

.survey-view-inner .short-box {
  border: 1px solid #bdbdbd;
  border-radius: 0;
  padding: 5px 10px;
  height: 36px;
  color: #aaa; }

.survey-view-inner .long-box {
  border: 1px solid #bdbdbd;
  border-radius: 0;
  padding: 5px 10px;
  height: 68px;
  color: #aaa; }

.survey-view-inner .checkbox-box .check-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 5px; }
  .survey-view-inner .checkbox-box .check-item:last-child {
    margin-bottom: 0; }
  .survey-view-inner .checkbox-box .check-item:before {
    display: block;
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    top: 50%;
    margin-top: -12px;
    left: 5px;
    border: 1px solid #15a5b7;
    background-color: #f4f4f4; }

.survey-view-inner .checkbox-box.checkbox .check-item:before {
  border-radius: 3px; }

.survey-view-inner .checkbox-box.radio .check-item:before {
  border-radius: 24px; }

.survey-view-inner .linear-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: .9rem; }
  .survey-view-inner .linear-box .start-label,
  .survey-view-inner .linear-box .end-label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: end;
    flex-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align-items: flex-end;
    -ms-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    max-width: 90px; }
  .survey-view-inner .linear-box .start-label {
    text-align: left; }
  .survey-view-inner .linear-box .end-label {
    text-align: right; }
  .survey-view-inner .linear-box .scale-box {
    flex: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: start;
    flex-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align-items: flex-start;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start; }
  .survey-view-inner .linear-box .scale-item {
    flex: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 50px; }
    .survey-view-inner .linear-box .scale-item span {
      display: block; }
    .survey-view-inner .linear-box .scale-item .radio {
      display: block;
      content: "";
      width: 24px;
      height: 24px;
      border-radius: 24px;
      top: 50%;
      margin-top: -12px;
      left: 5px;
      border: 1px solid #15a5b7;
      background-color: #f4f4f4; }

.survey-view-inner .date-box {
  position: relative;
  margin-top: 10px;
  width: 60%; }
  .survey-view-inner .date-box .date-input {
    width: 100%;
    height: 36px;
    border: 1px solid #ccc;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.4;
    padding-right: 40px; }
  .survey-view-inner .date-box .icon {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 24px; }

.survey-view-inner .file-box {
  position: relative;
  margin-top: 10px;
  padding-right: 50px; }
  .survey-view-inner .file-box .file-input {
    width: 100%;
    height: 36px;
    border: 1px solid #ccc;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.4; }
  .survey-view-inner .file-box .icon {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 20px; }

.survey-view-inner .grid-box {
  width: 100%;
  padding: 10px;
  overflow: hidden; }
  .survey-view-inner .grid-box .grid-table {
    display: table;
    width: 100%; }
  .survey-view-inner .grid-box .grid-row {
    display: table-row; }
    .survey-view-inner .grid-box .grid-row.header .grid-th {
      text-align: center; }
  .survey-view-inner .grid-box .grid-th,
  .survey-view-inner .grid-box .grid-td {
    display: table-cell;
    height: 32px;
    vertical-align: middle;
    padding: 3px;
    min-width: 80px;
    max-width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; }
  .survey-view-inner .grid-box .grid-th:first-child {
    min-width: 60px;
    max-width: 80px; }
  .survey-view-inner .grid-box .grid-td {
    text-align: center; }
  .survey-view-inner .grid-box .grid-td:first-child {
    min-width: 60px;
    max-width: 80px; }
  .survey-view-inner .grid-box .input-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .survey-view-inner .grid-box .input-box:before {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    border: 1px solid #15a5b7;
    background-color: #f4f4f4; }
  .survey-view-inner .grid-box.radio .input-box:before {
    border-radius: 24px; }
  .survey-view-inner .grid-box.checkbox .input-box:before {
    border-radius: 3px; }
  .survey-view-inner .grid-box.over-table {
    position: relative; }
    .survey-view-inner .grid-box.over-table:before {
      position: absolute;
      display: block;
      content: "";
      top: 0;
      right: 0;
      bottom: 0;
      width: 50px;
      box-shadow: inset -30px 0 20px #fff; }

.survey-view-inner .location-box .select-box {
  background-image: url("/static/img/bg_select_caret.png");
  background-repeat: no-repeat;
  background-position: 96% 50%; }

.survey-view-inner .location-box .input-group-append {
  position: relative; }

.survey-view-inner .location-box .icon {
  position: absolute;
  top: 3px;
  left: -22px;
  z-index: 5;
  font-size: 20px;
  color: #333; }

.survey-view-inner .location-box .btn {
  font-size: 14px;
  background-color: #f4f4f2;
  border: 1px solid #ced4da; }

.survey-view-inner .location-box .location-img-box {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  margin-top: 10px;
  overflow: hidden; }
  .survey-view-inner .location-box .location-img-box img {
    max-width: 100%; }

.survey-view-inner .picture-box .img-box {
  position: relative;
  width: 100px;
  padding: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }
  .survey-view-inner .picture-box .img-box .icon {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 5px;
    font-size: 20px; }
  .survey-view-inner .picture-box .img-box .text {
    display: block;
    font-size: 12px; }

.survey-view-inner .category-box {
  border: 1px solid #ccc;
  padding: 10px; }
  .survey-view-inner .category-box .category-item {
    position: relative;
    margin-bottom: 5px;
    padding-left: 20px; }
    .survey-view-inner .category-box .category-item:before {
      position: absolute;
      left: 5px;
      top: 50%;
      margin-top: -2px;
      width: 4px;
      height: 4px;
      border-radius: 4px;
      content: "";
      background-color: #555; }
    .survey-view-inner .category-box .category-item:last-child {
      margin-bottom: 0; }

.mobile-content-box .layout-item .survey-view-box .survey-content-wrap {
  min-width: 300px; }

.site-admin-post-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 320px;
  height: 568px;
  z-index: 10000; }
  .site-admin-post-wrap .btn-round {
    position: absolute;
    top: 10px;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 30; }
  .site-admin-post-wrap .btn-handle {
    left: 10px;
    font-size: 16px; }
  .site-admin-post-wrap .btn-close {
    right: 10px;
    font-size: 24px; }
  .site-admin-post-wrap .site-post-view {
    font-size: 12px;
    border-radius: 10px; }
  .site-admin-post-wrap .admin-post-response-box {
    font-size: 12px; }

.admin-post-response-box {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 100%;
  border-radius: 20px; }
  .admin-post-response-box .status {
    font-size: 1.1em;
    padding: 0.5em 1.5em; }
  .admin-post-response-box .btn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0;
    font-size: 20px;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    text-align: center; }
  .admin-post-response-box .item-header {
    position: relative;
    padding: 0.8em 1em 0.8em 4.5em !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .admin-post-response-box .item-header .user-name {
      font-size: 1.1em !important;
      font-weight: bold; }
  .admin-post-response-box .item-content {
    padding-top: 0.8em;
    line-height: 1.3; }
    .admin-post-response-box .item-content .form-control {
      background-color: #efefef;
      font-size: 0.8rem; }
  .admin-post-response-box .item-footer .btn {
    display: block;
    width: 100%; }

.payment-wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .payment-wrap .side-menu {
    width: 25%;
    min-width: 200px;
    max-width: 280px;
    height: 100%;
    background-color: #f4f4f2;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
  .payment-wrap .content {
    flex: 1;
    overflow-y: auto;
    padding: 0 30px; }
    @media (min-width: 1200px) {
      .payment-wrap .content {
        padding: 0 45px; } }
    @media (min-width: 1400px) {
      .payment-wrap .content {
        padding: 0 75px; } }
  .payment-wrap .side-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px; }
    .payment-wrap .side-nav .nav-item {
      border-bottom: 1px solid #ccc; }
      .payment-wrap .side-nav .nav-item a {
        display: block;
        padding: 12px 10px;
        color: #333; }
      .payment-wrap .side-nav .nav-item.active a {
        color: #0073ae; }
  .payment-wrap .side-bottom {
    padding: 20px 0; }
    .payment-wrap .side-bottom .info-box {
      padding: 20px;
      color: #999;
      line-height: 1.8; }
      .payment-wrap .side-bottom .info-box .title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 5px; }
      .payment-wrap .side-bottom .info-box .title.small {
        font-size: 16px; }
      .payment-wrap .side-bottom .info-box .desc {
        font-size: 15px; }
        .payment-wrap .side-bottom .info-box .desc a {
          color: #15a5b7; }
      .payment-wrap .side-bottom .info-box .link {
        font-size: 15px;
        color: #333;
        text-decoration: underline; }
  .payment-wrap .title-box {
    position: relative;
    margin: 30px 0 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .payment-wrap .title-box .title {
      padding: 20px 0;
      font-size: 32px; }
    .payment-wrap .title-box .alarm-box {
      background-color: rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 10px 20px;
      color: #ff0000; }
      .payment-wrap .title-box .alarm-box .middot {
        padding-left: 15px; }
        .payment-wrap .title-box .alarm-box .middot:before {
          background-color: #ff0000; }
    .payment-wrap .title-box .join-date {
      text-align: right;
      margin: 0; }
      .payment-wrap .title-box .join-date dt, .payment-wrap .title-box .join-date dd {
        display: inline-block;
        margin-bottom: 0; }
      .payment-wrap .title-box .join-date dt {
        font-weight: normal;
        margin-right: 20px; }
    .payment-wrap .title-box.saas-info {
      margin-bottom: 0; }
      .payment-wrap .title-box.saas-info .title {
        padding-top: 10px;
        padding-bottom: 10px; }
  .payment-wrap .search-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 10px 15px 15px; }
    .payment-wrap .search-box .search-start,
    .payment-wrap .search-box .search-end {
      width: 300px;
      padding: 0 10px; }
      .payment-wrap .search-box .search-start label,
      .payment-wrap .search-box .search-end label {
        margin-bottom: 3px; }
    .payment-wrap .search-box .form-control {
      background-color: #fff;
      border-radius: 0; }
  .payment-wrap .pay-section-box {
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      .payment-wrap .pay-section-box {
        margin-bottom: 50px; } }
    .payment-wrap .pay-section-box .border-box {
      border: 1px solid #ccc;
      background-color: #fff; }
      .payment-wrap .pay-section-box .border-box .site-list-footer {
        padding: 10px 0; }
    .payment-wrap .pay-section-box .section-bottom-notice {
      padding: 15px 20px;
      margin-top: 10px; }
      .payment-wrap .pay-section-box .section-bottom-notice .bottom-title {
        font-size: 22px;
        margin-bottom: 10px; }
        .payment-wrap .pay-section-box .section-bottom-notice .bottom-title .link {
          font-size: 16px;
          color: #15a5b7; }
      .payment-wrap .pay-section-box .section-bottom-notice li {
        margin: 3px 0;
        float: left;
        width: 50%;
        padding-left: 15px; }
        .payment-wrap .pay-section-box .section-bottom-notice li span.middot {
          margin-left: -15px; }
          .payment-wrap .pay-section-box .section-bottom-notice li span.middot:before {
            top: 8px;
            transform: translateY(0); }
      @media (min-width: 992px) {
        .payment-wrap .pay-section-box .section-bottom-notice {
          margin-top: 0; } }
      .payment-wrap .pay-section-box .section-bottom-notice:after {
        display: block;
        clear: both;
        content: ""; }
    .payment-wrap .pay-section-box .table {
      margin-bottom: 0; }
      .payment-wrap .pay-section-box .table th {
        border-top: 0;
        text-align: center; }
      .payment-wrap .pay-section-box .table td {
        text-align: center;
        vertical-align: middle; }
  .payment-wrap .section-title {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: bold; }
    @media (min-width: 992px) {
      .payment-wrap .section-title {
        margin-bottom: 8px; } }
  .payment-wrap .credit-box {
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .payment-wrap .credit-box .current,
    .payment-wrap .credit-box .next-month {
      flex: 1;
      text-align: center; }
      .payment-wrap .credit-box .current .summary-title,
      .payment-wrap .credit-box .next-month .summary-title {
        font-size: 14px;
        margin-bottom: 10px; }
      .payment-wrap .credit-box .current .pay,
      .payment-wrap .credit-box .next-month .pay {
        font-size: 30px;
        line-height: 1.2; }
      .payment-wrap .credit-box .current .red-text,
      .payment-wrap .credit-box .next-month .red-text {
        color: #ee2d25; }
      @media (min-width: 992px) {
        .payment-wrap .credit-box .current .summary-title,
        .payment-wrap .credit-box .next-month .summary-title {
          font-size: 16px; }
        .payment-wrap .credit-box .current .pay,
        .payment-wrap .credit-box .next-month .pay {
          font-size: 36px; } }
    .payment-wrap .credit-box .next-month {
      border-left: 1px solid #aaa; }
    .payment-wrap .credit-box.saas-info {
      height: 150px; }
      .payment-wrap .credit-box.saas-info .current,
      .payment-wrap .credit-box.saas-info .next-month {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center; }
        .payment-wrap .credit-box.saas-info .current .summary-title,
        .payment-wrap .credit-box.saas-info .next-month .summary-title {
          margin-bottom: 15px; }
      .payment-wrap .credit-box.saas-info .current {
        position: relative;
        padding-left: 110px; }
      .payment-wrap .credit-box.saas-info .class-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0; }
      @media (min-width: 1200px) {
        .payment-wrap .credit-box.saas-info {
          padding: 20px 30px; } }
  .payment-wrap .paypal-box {
    margin-top: 10px;
    height: 100%; }
    .payment-wrap .paypal-box .btn {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 10px;
      font-size: 18px;
      word-break: break-word;
      white-space: initial; }
    @media (min-width: 992px) {
      .payment-wrap .paypal-box {
        margin-top: 0; } }
  .payment-wrap .current-data {
    margin-bottom: 10px; }
    @media (min-width: 1200px) {
      .payment-wrap .current-data {
        margin-bottom: 0; } }
    .payment-wrap .current-data .border-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      height: 100%; }
    .payment-wrap .current-data .current-header {
      padding: 10px 20px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .payment-wrap .current-data .current-header .usage-info {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
        .payment-wrap .current-data .current-header .usage-info span {
          font-size: 14px; }
    .payment-wrap .current-data .current-title {
      font-size: 18px; }
    .payment-wrap .current-data .progress-box {
      padding: 0 30px; }
      .payment-wrap .current-data .progress-box .progress {
        background-color: #e0e0e0;
        border: 1px solid #bfbfbf;
        border-radius: 20px;
        height: 20px; }
      .payment-wrap .current-data .progress-box .progress-bar {
        border-radius: 20px;
        background-color: #15a5b7; }
        .payment-wrap .current-data .progress-box .progress-bar.over {
          background-color: #ed0001; }
    .payment-wrap .current-data .current-bottom {
      padding: 10px 60px 10px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .payment-wrap .current-data .current-bottom .usage-data,
      .payment-wrap .current-data .current-bottom .total-data {
        font-size: 25px; }
        .payment-wrap .current-data .current-bottom .usage-data strong,
        .payment-wrap .current-data .current-bottom .total-data strong {
          font-size: 45px;
          margin-right: 15px; }
    .payment-wrap .current-data .data {
      flex: 1;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      font-size: 40px; }
      .payment-wrap .current-data .data strong {
        font-size: 60px;
        margin-right: 15px; }
      .payment-wrap .current-data .data.storage strong {
        color: #ccc; }
      .payment-wrap .current-data .data.page-view strong {
        color: #15a5b7; }
  .payment-wrap .info-list-wrap .table {
    margin-bottom: 0;
    max-height: 500px;
    overflow: auto; }
    .payment-wrap .info-list-wrap .table th {
      background-color: #f9f9f9;
      padding: 0.75rem 15px;
      border-top: 0;
      border-bottom-width: 1px; }
    .payment-wrap .info-list-wrap .table td {
      padding: 0.75rem 15px; }
    .payment-wrap .info-list-wrap .table tr:last-child td {
      border-bottom: 0; }
  .payment-wrap .white-label-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 20px; }
    @media (min-width: 992px) {
      .payment-wrap .white-label-box {
        padding: 20px 30px; } }
    .payment-wrap .white-label-box .white-label-inner {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
    .payment-wrap .white-label-box .white-label-amount {
      width: 30%;
      min-width: 185px;
      max-width: 260px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .payment-wrap .white-label-box .white-label-amount .amount strong {
        font-size: 30px;
        color: #15a5b7; }
    .payment-wrap .white-label-box .reserved-text {
      text-align: right;
      margin-top: 5px;
      font-size: 13px;
      color: #ed0001; }
  .payment-wrap .chart-box .chart {
    height: 350px; }
  .payment-wrap .content-section {
    margin-bottom: 30px; }
  .payment-wrap .subscribe-wrap,
  .payment-wrap .paypal-wrap {
    margin-top: 10px;
    border-top: 1px solid #000;
    padding: 30px 0; }
    .payment-wrap .subscribe-wrap .section-title,
    .payment-wrap .paypal-wrap .section-title {
      font-size: 26px;
      font-weight: 800; }
    .payment-wrap .subscribe-wrap .sub-title,
    .payment-wrap .paypal-wrap .sub-title {
      font-size: 70%; }
    .payment-wrap .subscribe-wrap .row,
    .payment-wrap .paypal-wrap .row {
      margin-left: -10px;
      margin-right: -10px; }
      .payment-wrap .subscribe-wrap .row [class^="col-"],
      .payment-wrap .paypal-wrap .row [class^="col-"] {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px; }
    .payment-wrap .subscribe-wrap .charge-box,
    .payment-wrap .paypal-wrap .charge-box {
      position: relative; }
      .payment-wrap .subscribe-wrap .charge-box .form-control,
      .payment-wrap .paypal-wrap .charge-box .form-control {
        height: 100%;
        padding-left: 60px;
        font-size: 50px;
        text-align: center;
        border-color: #15a5b7; }
      .payment-wrap .subscribe-wrap .charge-box .currency,
      .payment-wrap .paypal-wrap .charge-box .currency {
        position: absolute;
        font-size: 50px;
        color: #aaa;
        top: 50%;
        transform: translateY(-50%);
        left: 40px; }
      .payment-wrap .subscribe-wrap .charge-box .btn-checkout,
      .payment-wrap .paypal-wrap .charge-box .btn-checkout {
        font-size: 20px;
        padding: 0.75rem; }
      .payment-wrap .subscribe-wrap .charge-box + .charge-box,
      .payment-wrap .paypal-wrap .charge-box + .charge-box {
        margin-top: 80px; }
    .payment-wrap .subscribe-wrap .paypal-box,
    .payment-wrap .paypal-wrap .paypal-box {
      width: 50%;
      max-width: 580px;
      background-color: #fff;
      padding: 15px 15px 0; }
    .payment-wrap .subscribe-wrap .subscribe-item,
    .payment-wrap .paypal-wrap .subscribe-item {
      background-color: #fff;
      border: 1px solid #15a5b7;
      border-radius: 8px;
      height: 220px;
      margin-bottom: 10px; }
      @media (min-width: 1400px) {
        .payment-wrap .subscribe-wrap .subscribe-item,
        .payment-wrap .paypal-wrap .subscribe-item {
          height: 320px; } }
      .payment-wrap .subscribe-wrap .subscribe-item.active,
      .payment-wrap .paypal-wrap .subscribe-item.active {
        position: relative;
        margin-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0; }
        .payment-wrap .subscribe-wrap .subscribe-item.active:before,
        .payment-wrap .paypal-wrap .subscribe-item.active:before {
          position: absolute;
          top: -12px;
          left: -1px;
          right: -1px;
          height: 12px;
          background-color: #15a5b7;
          border-top-left-radius: 8px;
          border-top-right-radius: 8px;
          content: ""; }
      .payment-wrap .subscribe-wrap .subscribe-item .subscribe-text,
      .payment-wrap .paypal-wrap .subscribe-item .subscribe-text {
        font-size: 16px;
        margin: 0.8rem 0;
        text-align: center; }
        .payment-wrap .subscribe-wrap .subscribe-item .subscribe-text strong,
        .payment-wrap .paypal-wrap .subscribe-item .subscribe-text strong {
          font-size: 24px; }
        @media (min-width: 1200px) {
          .payment-wrap .subscribe-wrap .subscribe-item .subscribe-text,
          .payment-wrap .paypal-wrap .subscribe-item .subscribe-text {
            font-size: 18px;
            margin: 1rem 0; }
            .payment-wrap .subscribe-wrap .subscribe-item .subscribe-text strong,
            .payment-wrap .paypal-wrap .subscribe-item .subscribe-text strong {
              font-size: 28px; } }
      .payment-wrap .subscribe-wrap .subscribe-item.subscribe-info,
      .payment-wrap .paypal-wrap .subscribe-item.subscribe-info {
        height: 100%; }
      .payment-wrap .subscribe-wrap .subscribe-item .info-box,
      .payment-wrap .paypal-wrap .subscribe-item .info-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        padding: 30px 10px; }
        .payment-wrap .subscribe-wrap .subscribe-item .info-box .subs-title,
        .payment-wrap .paypal-wrap .subscribe-item .info-box .subs-title {
          font-size: 18px;
          font-weight: bold; }
        .payment-wrap .subscribe-wrap .subscribe-item .info-box .amount,
        .payment-wrap .paypal-wrap .subscribe-item .info-box .amount {
          font-size: 30px;
          font-weight: bold;
          margin: 5px 0; }
        .payment-wrap .subscribe-wrap .subscribe-item .info-box .pay-type,
        .payment-wrap .paypal-wrap .subscribe-item .info-box .pay-type {
          font-size: 16px;
          text-decoration: underline;
          margin-bottom: 20px; }
        .payment-wrap .subscribe-wrap .subscribe-item .info-box .desc,
        .payment-wrap .paypal-wrap .subscribe-item .info-box .desc {
          font-size: 14px;
          text-align: center; }
        .payment-wrap .subscribe-wrap .subscribe-item .info-box .btn,
        .payment-wrap .paypal-wrap .subscribe-item .info-box .btn {
          max-width: 300px; }
        @media (min-width: 992px) {
          .payment-wrap .subscribe-wrap .subscribe-item .info-box,
          .payment-wrap .paypal-wrap .subscribe-item .info-box {
            padding: 40px 15px; }
            .payment-wrap .subscribe-wrap .subscribe-item .info-box .subs-title,
            .payment-wrap .paypal-wrap .subscribe-item .info-box .subs-title {
              font-size: 22px; }
            .payment-wrap .subscribe-wrap .subscribe-item .info-box .amount,
            .payment-wrap .paypal-wrap .subscribe-item .info-box .amount {
              font-size: 36px; }
            .payment-wrap .subscribe-wrap .subscribe-item .info-box .pay-type,
            .payment-wrap .paypal-wrap .subscribe-item .info-box .pay-type {
              font-size: 18px; }
            .payment-wrap .subscribe-wrap .subscribe-item .info-box .desc,
            .payment-wrap .paypal-wrap .subscribe-item .info-box .desc {
              font-size: 16px; } }
        @media (min-width: 1400px) {
          .payment-wrap .subscribe-wrap .subscribe-item .info-box,
          .payment-wrap .paypal-wrap .subscribe-item .info-box {
            padding: 40px 30px; } }
      .payment-wrap .subscribe-wrap .subscribe-item .item-div-box,
      .payment-wrap .paypal-wrap .subscribe-item .item-div-box {
        border-top: 1px solid #15a5b7;
        padding: 15px 0;
        font-size: 14px; }
        .payment-wrap .subscribe-wrap .subscribe-item .item-div-box .info-li-item,
        .payment-wrap .paypal-wrap .subscribe-item .item-div-box .info-li-item {
          position: relative;
          padding-left: 35px;
          padding-right: 5px;
          margin: 5px 0; }
          .payment-wrap .subscribe-wrap .subscribe-item .item-div-box .info-li-item:before,
          .payment-wrap .paypal-wrap .subscribe-item .item-div-box .info-li-item:before {
            position: absolute;
            top: 3px;
            left: 14px;
            display: block;
            width: 6px;
            height: 15px;
            border-bottom: 1px solid #15a5b7;
            border-right: 1px solid #15a5b7;
            content: "";
            transform: rotate(45deg); }
        @media (min-width: 1200px) {
          .payment-wrap .subscribe-wrap .subscribe-item .item-div-box,
          .payment-wrap .paypal-wrap .subscribe-item .item-div-box {
            font-size: 16px; }
            .payment-wrap .subscribe-wrap .subscribe-item .item-div-box .info-li-item,
            .payment-wrap .paypal-wrap .subscribe-item .item-div-box .info-li-item {
              padding-left: 40px;
              padding-right: 10px; }
              .payment-wrap .subscribe-wrap .subscribe-item .item-div-box .info-li-item:before,
              .payment-wrap .paypal-wrap .subscribe-item .item-div-box .info-li-item:before {
                width: 7px;
                height: 17px;
                border-width: 2px; } }
        @media (min-width: 1400px) {
          .payment-wrap .subscribe-wrap .subscribe-item .item-div-box .info-li-item,
          .payment-wrap .paypal-wrap .subscribe-item .item-div-box .info-li-item {
            padding-left: 44px;
            padding-right: 15px;
            margin: 8px 0; }
            .payment-wrap .subscribe-wrap .subscribe-item .item-div-box .info-li-item:before,
            .payment-wrap .paypal-wrap .subscribe-item .item-div-box .info-li-item:before {
              left: 20px;
              width: 8px;
              height: 20px;
              border-width: 2px; } }
      .payment-wrap .subscribe-wrap .subscribe-item.enterprise-info,
      .payment-wrap .paypal-wrap .subscribe-item.enterprise-info {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        height: auto;
        padding: 0 10px; }
        .payment-wrap .subscribe-wrap .subscribe-item.enterprise-info .item-div-box,
        .payment-wrap .paypal-wrap .subscribe-item.enterprise-info .item-div-box {
          flex: 1;
          border-top: 0; }
        .payment-wrap .subscribe-wrap .subscribe-item.enterprise-info .btn,
        .payment-wrap .paypal-wrap .subscribe-item.enterprise-info .btn {
          margin: 0;
          max-width: 300px; }
        @media (min-width: 1200px) {
          .payment-wrap .subscribe-wrap .subscribe-item.enterprise-info,
          .payment-wrap .paypal-wrap .subscribe-item.enterprise-info {
            padding: 0 20px; } }
        @media (min-width: 1400px) {
          .payment-wrap .subscribe-wrap .subscribe-item.enterprise-info,
          .payment-wrap .paypal-wrap .subscribe-item.enterprise-info {
            padding: 0 30px; } }
    .payment-wrap .subscribe-wrap .btn-subscribe,
    .payment-wrap .paypal-wrap .btn-subscribe {
      margin-top: 20px;
      border-radius: 8px;
      font-size: 18px;
      padding: 8px 5px; }
      .payment-wrap .subscribe-wrap .btn-subscribe.subscribing,
      .payment-wrap .paypal-wrap .btn-subscribe.subscribing {
        display: inline-block;
        width: 100%;
        color: #fff;
        background-color: #444;
        cursor: default; }
    .payment-wrap .subscribe-wrap .cancel-subscribe,
    .payment-wrap .paypal-wrap .cancel-subscribe {
      font-size: 16px;
      text-align: center;
      margin-top: 10px;
      color: #333;
      cursor: pointer; }
      .payment-wrap .subscribe-wrap .cancel-subscribe span,
      .payment-wrap .paypal-wrap .cancel-subscribe span {
        color: #333;
        border-bottom: 1px solid #333; }
  .payment-wrap .bills-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .payment-wrap .bills-header .search-box {
      padding-left: 0;
      padding-right: 0; }
  .payment-wrap .bills-box {
    font-size: 16px; }
    .payment-wrap .bills-box .title {
      font-weight: normal; }
    @media (min-width: 992px) {
      .payment-wrap .bills-box {
        font-size: 20px; } }
    .payment-wrap .bills-box .summary {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      padding: 10px 20px; }
    .payment-wrap .bills-box .detail-info {
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      padding: 10px 15px 10px 30px; }
    .payment-wrap .bills-box .item-table {
      display: table;
      width: 100%; }
      .payment-wrap .bills-box .item-table .item {
        display: table-row; }
      .payment-wrap .bills-box .item-table .item-td {
        display: table-cell;
        padding: 5px; }
      .payment-wrap .bills-box .item-table .title {
        width: 30%; }
      .payment-wrap .bills-box .item-table .amount {
        width: 10%;
        text-align: right; }
    .payment-wrap .bills-box .section-bottom-notice {
      font-size: 16px; }

.payment-alert {
  position: relative;
  height: 0;
  transition: height .1s;
  background-color: #15a5b7;
  color: #fff;
  overflow: hidden;
  z-index: 4;
  cursor: pointer; }
  .payment-alert.active {
    height: 60px; }
  .payment-alert.lock-down {
    background-color: #ed0001; }
  .payment-alert .alert-box {
    position: relative;
    max-width: 1040px;
    height: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .payment-alert .icon {
    font-size: 30px;
    margin-right: 40px; }
  .payment-alert .desc {
    font-size: 18px;
    line-height: 1.4; }
  .payment-alert .btn-close {
    position: absolute;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 26px;
    color: #fff;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 28px;
    top: 50%;
    right: 0;
    margin-top: -14px; }

.btn-checkout {
  margin-top: 7px; }

.tutorial-menu {
  max-width: 260px;
  border: none;
  overflow: hidden;
  transition-duration: 0.05s;
  background-color: transparent;
  z-index: 99999; }
  .tutorial-menu.bs-popover-bottom {
    top: -10px !important;
    padding-top: 12px; }
  .tutorial-menu.bs-popover-right {
    left: -10px !important;
    padding-left: 15px; }
  .tutorial-menu.fade.show {
    transition-duration: 0.1s; }
  .tutorial-menu.has-img {
    top: 75px !important; }
  .tutorial-menu .popover-body {
    padding: 0;
    overflow: hidden;
    border: 1px solid #333;
    border-radius: 0.3rem;
    background-color: #fff; }
  .tutorial-menu .img {
    height: 145px;
    overflow: hidden; }
    .tutorial-menu .img img {
      max-width: 100%; }
  .tutorial-menu .info {
    padding: 10px; }
  .tutorial-menu .title {
    font-size: 13px;
    line-height: 1; }
  .tutorial-menu .desc {
    line-height: 1.3;
    font-size: 12px; }
  .tutorial-menu .title + .desc {
    margin-top: 5px; }

.tutorial-process-wrap {
  position: absolute;
  width: 100%;
  height: 100vh;
  min-width: 1024px;
  min-height: 726px;
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 3000;
  color: #fff; }
  .tutorial-process-wrap .btn-close {
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 10;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 26px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    opacity: 0.6;
    transition: opacity .2s; }
    .tutorial-process-wrap .btn-close:hover, .tutorial-process-wrap .btn-close:focus, .tutorial-process-wrap .btn-close:active {
      opacity: 1; }
  .tutorial-process-wrap .header {
    width: 100%;
    height: 40px;
    background-color: #fff; }
    .tutorial-process-wrap .header .header-logo {
      position: relative;
      width: 145px;
      height: 100%;
      float: left;
      text-align: center;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .tutorial-process-wrap .header .header-logo img {
        max-width: 140px;
        max-height: 35px; }
      @media (min-width: 1200px) {
        .tutorial-process-wrap .header .header-logo {
          width: 160px; } }
  .tutorial-process-wrap .header-name-box {
    float: left;
    width: 13%;
    height: 100%;
    max-width: 213px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 0 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .tutorial-process-wrap .header-name-box .name {
      display: block;
      font-size: 18px;
      color: #15a5b7;
      margin-top: 2px; }
    @media (min-width: 1080px) {
      .tutorial-process-wrap .header-name-box {
        width: 15%; } }
    @media (min-width: 1200px) {
      .tutorial-process-wrap .header-name-box {
        padding: 0 20px; } }
  .tutorial-process-wrap .header-button-area {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .tutorial-process-wrap .header-button-area.left {
      float: left; }
    .tutorial-process-wrap .header-button-area.right {
      float: right;
      border-left: 1px solid #ddd; }
    .tutorial-process-wrap .header-button-area .svg,
    .tutorial-process-wrap .header-button-area .icon {
      transition: opacity .2s, color .2s;
      margin-bottom: 3px; }
    .tutorial-process-wrap .header-button-area .active {
      color: #15a5b7 !important; }
      .tutorial-process-wrap .header-button-area .active .svg,
      .tutorial-process-wrap .header-button-area .active .icon {
        opacity: 1; }
    .tutorial-process-wrap .header-button-area .button-item {
      position: relative;
      width: 40px;
      height: 100%;
      border: 0;
      border-right: 1px solid #ddd;
      color: #333;
      font-size: 18px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      background-color: transparent; }
      @media (min-width: 1080px) {
        .tutorial-process-wrap .header-button-area .button-item {
          width: 42px;
          font-size: 20px; } }
      @media (min-width: 1200px) {
        .tutorial-process-wrap .header-button-area .button-item {
          width: 44px; } }
    .tutorial-process-wrap .header-button-area .userList {
      font-size: 24px; }
    .tutorial-process-wrap .header-button-area .alarm .icon,
    .tutorial-process-wrap .header-button-area .question .icon,
    .tutorial-process-wrap .header-button-area .full-screen .icon,
    .tutorial-process-wrap .header-button-area .setting .icon {
      opacity: 1; }
    .tutorial-process-wrap .header-button-area .publish {
      width: auto !important; }
      .tutorial-process-wrap .header-button-area .publish .btn {
        font-size: 12px; }
        @media (min-width: 1080px) {
          .tutorial-process-wrap .header-button-area .publish .btn {
            font-size: 14px; } }
        @media (min-width: 1200px) {
          .tutorial-process-wrap .header-button-area .publish .btn {
            font-size: 16px; } }
  .tutorial-process-wrap .header-toggle-btn {
    position: absolute;
    top: 40px;
    width: 100px;
    height: 10px;
    background-color: #fff;
    left: calc(50% - 50px);
    border-radius: 0 0 5px 5px; }
    .tutorial-process-wrap .header-toggle-btn svg {
      position: absolute;
      left: calc(50% - 3.23px);
      color: #15a5b7;
      transform-origin: center;
      margin-top: -3px; }
  .tutorial-process-wrap .tutorial-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .tutorial-process-wrap .tutorial-swiper .swiper-wrapper {
      z-index: 0; }
  .tutorial-process-wrap .process-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #404040;
    overflow: auto; }
    .tutorial-process-wrap .process-box .menu {
      position: absolute;
      top: 60px;
      left: 20px; }
    .tutorial-process-wrap .process-box .arrow-line {
      display: block;
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      z-index: 20; }
    .tutorial-process-wrap .process-box .info-text {
      font-size: 20px;
      z-index: 20;
      line-height: 1.2; }
    .tutorial-process-wrap .process-box .data-hexagon {
      position: absolute;
      top: 230px;
      left: 20%; }
    @media (min-width: 1200px) {
      .tutorial-process-wrap .process-box .info-text {
        font-size: 25px; }
      .tutorial-process-wrap .process-box .data-hexagon {
        top: 260px; } }
    @media (min-width: 1400px) {
      .tutorial-process-wrap .process-box .info-text {
        font-size: 30px; }
      .tutorial-process-wrap .process-box .data-hexagon {
        left: 300px; } }
  .tutorial-process-wrap .process-box.step1 .arrow-line {
    background-image: url("/static/img/tutorialGuide/arrow1.png");
    width: 150px;
    height: 102px;
    top: 35px;
    left: calc(145px + 13% + (42px * 3) + 10px); }
  .tutorial-process-wrap .process-box.step1 .text1 {
    position: absolute;
    top: 110px;
    left: calc(calc(145px + 13% + (42px * 3) + 10px) + 165px);
    width: 360px; }
  @media (min-width: 1080px) {
    .tutorial-process-wrap .process-box.step1 .arrow-line {
      left: calc(145px + 15% + (44px * 3) + 12px); }
    .tutorial-process-wrap .process-box.step1 .text1 {
      left: calc(calc(145px + 15% + (44px * 3) + 12px) + 165px); } }
  @media (min-width: 1200px) {
    .tutorial-process-wrap .process-box.step1 .arrow-line {
      left: calc(160px + 15% + (48px * 3) + 12px); }
    .tutorial-process-wrap .process-box.step1 .text1 {
      left: calc(calc(160px + 15% + (48px * 3) + 12px) + 160px);
      top: 110px;
      width: 470px; } }
  @media (min-width: 1400px) {
    .tutorial-process-wrap .process-box.step1 .arrow-line {
      left: 523px;
      width: 227px;
      height: 154px; }
    .tutorial-process-wrap .process-box.step1 .text1 {
      left: calc(523px + 245px);
      top: 150px;
      width: 570px; } }
  .tutorial-process-wrap .process-box.step2 .arrow-line {
    background-image: url("/static/img/tutorialGuide/arrow2.png");
    width: 250px;
    height: 95px;
    top: 95px;
    left: 210px; }
  .tutorial-process-wrap .process-box.step2 .text1 {
    position: absolute;
    top: 150px;
    left: calc(210px + 260px);
    width: 410px; }
  @media (min-width: 1200px) {
    .tutorial-process-wrap .process-box.step2 .text1 {
      width: 510px; } }
  @media (min-width: 1400px) {
    .tutorial-process-wrap .process-box.step2 .arrow-line {
      width: 394px;
      height: 150px;
      top: 75px; }
    .tutorial-process-wrap .process-box.step2 .text1 {
      width: 620px;
      left: calc(210px + 410px);
      top: 175px; } }
  .tutorial-process-wrap .process-box.step3 .data-popup {
    position: absolute;
    width: 45%;
    max-width: 753px;
    top: 386px;
    left: 5%; }
    .tutorial-process-wrap .process-box.step3 .data-popup img {
      max-width: 100%; }
  .tutorial-process-wrap .process-box.step3 .text1 {
    position: absolute;
    top: 90px;
    right: 5%;
    width: 75%; }
  @media (min-width: 1200px) {
    .tutorial-process-wrap .process-box.step3 .data-popup {
      left: 10%; }
    .tutorial-process-wrap .process-box.step3 .text1 {
      top: 10%;
      width: 950px; } }
  @media (min-width: 1400px) {
    .tutorial-process-wrap .process-box.step3 .text1 {
      width: 1140px; } }
  .tutorial-process-wrap .process-box.step4 .menu {
    width: 450px; }
    .tutorial-process-wrap .process-box.step4 .menu img {
      max-width: 100%; }
  .tutorial-process-wrap .process-box.step4 .arrow-line {
    background-image: url("/static/img/tutorialGuide/arrow4.png");
    width: 280px;
    height: 95px;
    top: 75px;
    left: 210px; }
  .tutorial-process-wrap .process-box.step4 .text1 {
    position: absolute;
    top: 90px;
    left: 510px;
    padding-right: 5%; }
  @media (min-width: 1200px) {
    .tutorial-process-wrap .process-box.step4 .menu {
      width: 550px; }
    .tutorial-process-wrap .process-box.step4 .arrow-line {
      width: 325px;
      left: 260px; }
    .tutorial-process-wrap .process-box.step4 .text1 {
      left: 600px; } }
  @media (min-width: 1400px) {
    .tutorial-process-wrap .process-box.step4 .menu {
      width: 636px; }
    .tutorial-process-wrap .process-box.step4 .arrow-line {
      width: 413px;
      height: 106px;
      left: 280px; }
    .tutorial-process-wrap .process-box.step4 .text1 {
      left: 720px; } }
  .tutorial-process-wrap .process-box.step5 {
    background-image: url("/static/img/tutorialGuide/bg_step5.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0; }
    .tutorial-process-wrap .process-box.step5 .menu2 {
      position: absolute;
      width: 390px;
      top: 60px;
      left: 140px; }
      .tutorial-process-wrap .process-box.step5 .menu2 img {
        max-width: 100%; }
    .tutorial-process-wrap .process-box.step5 .arrow-line {
      background-image: url("/static/img/tutorialGuide/arrow5.png");
      width: 130px;
      height: 600px;
      top: 125px;
      left: 370px; }
    .tutorial-process-wrap .process-box.step5 .text1 {
      position: absolute;
      top: 550px;
      left: 8%;
      width: 45%; }
    @media (min-width: 1200px) {
      .tutorial-process-wrap .process-box.step5 .menu2 {
        width: 490px; }
      .tutorial-process-wrap .process-box.step5 .arrow-line {
        width: 170px;
        top: 130px;
        left: 420px; }
      .tutorial-process-wrap .process-box.step5 .text1 {
        top: 685px;
        width: 45%; } }
    @media (min-width: 1400px) {
      .tutorial-process-wrap .process-box.step5 .menu2 {
        width: 605px; }
      .tutorial-process-wrap .process-box.step5 .arrow-line {
        width: 187px;
        top: 180px;
        left: 505px; }
      .tutorial-process-wrap .process-box.step5 .text1 {
        top: 810px;
        width: 48%;
        left: 130px; } }
  .tutorial-process-wrap .process-box.step6 {
    background-image: url("/static/img/tutorialGuide/bg_step6.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0 50px; }
    .tutorial-process-wrap .process-box.step6 .arrow-line {
      background-image: url("/static/img/tutorialGuide/arrow6.png");
      width: 150px;
      height: 600px;
      top: 175px;
      left: 110px; }
    .tutorial-process-wrap .process-box.step6 .text1 {
      position: absolute;
      top: 510px;
      left: 5%;
      width: 45%; }
    @media (min-width: 1200px) {
      .tutorial-process-wrap .process-box.step6 .arrow-line {
        width: 180px;
        top: 175px; }
      .tutorial-process-wrap .process-box.step6 .text1 {
        top: 610px; } }
    @media (min-width: 1400px) {
      .tutorial-process-wrap .process-box.step6 .arrow-line {
        width: 220px;
        top: 175px; }
      .tutorial-process-wrap .process-box.step6 .text1 {
        top: 650px;
        width: 50%; } }
  .tutorial-process-wrap .process-box.step7 .menu2 {
    position: absolute;
    width: 400px;
    top: 60px;
    left: 140px; }
    .tutorial-process-wrap .process-box.step7 .menu2 img {
      max-width: 100%; }
  .tutorial-process-wrap .process-box.step7 .arrow-line {
    background-image: url("/static/img/tutorialGuide/arrow7.png");
    width: 280px;
    height: 95px;
    top: 130px;
    left: 390px; }
  .tutorial-process-wrap .process-box.step7 .text1 {
    position: absolute;
    top: 100px;
    left: 680px;
    padding-right: 2%; }
  @media (min-width: 1200px) {
    .tutorial-process-wrap .process-box.step7 .menu2 {
      width: 510px; }
    .tutorial-process-wrap .process-box.step7 .arrow-line {
      width: 350px;
      height: 162px;
      top: 155px;
      left: 460px; }
    .tutorial-process-wrap .process-box.step7 .text1 {
      top: 115px;
      left: 820px; } }
  @media (min-width: 1400px) {
    .tutorial-process-wrap .process-box.step7 .menu2 {
      width: 700px; }
    .tutorial-process-wrap .process-box.step7 .arrow-line {
      width: 400px;
      top: 210px;
      left: 575px; }
    .tutorial-process-wrap .process-box.step7 .text1 {
      top: 130px;
      left: 990px; } }
  @media (min-width: 1600px) {
    .tutorial-process-wrap .process-box.step7 .menu2 {
      width: auto; }
    .tutorial-process-wrap .process-box.step7 .arrow-line {
      width: 507px;
      top: 225px;
      left: 650px; }
    .tutorial-process-wrap .process-box.step7 .text1 {
      top: 180px;
      left: 1175px;
      max-width: 750px; } }
  .tutorial-process-wrap .process-box.step8 .menu2 {
    position: absolute;
    width: 400px;
    top: 60px;
    left: 140px; }
    .tutorial-process-wrap .process-box.step8 .menu2 img {
      max-width: 100%; }
  .tutorial-process-wrap .process-box.step8 .arrow-line {
    background-image: url("/static/img/tutorialGuide/arrow8.png");
    width: 494px;
    height: 101px;
    top: 35px;
    left: calc(145px + 13% + 42px + 13px); }
  .tutorial-process-wrap .process-box.step8 .text1 {
    position: absolute;
    top: 90px;
    left: 600px;
    padding-right: 2%; }
  @media (min-width: 1080px) {
    .tutorial-process-wrap .process-box.step8 .arrow-line {
      left: calc(145px + 15% + 44px + 13px); }
    .tutorial-process-wrap .process-box.step8 .text1 {
      left: calc(calc(145px + 15% + 44px + 13px) + 260px); } }
  @media (min-width: 1200px) {
    .tutorial-process-wrap .process-box.step8 .menu2 {
      width: 500px; }
    .tutorial-process-wrap .process-box.step8 .arrow-line {
      left: calc(160px + 15% + 48px + 13px);
      height: 140px; }
    .tutorial-process-wrap .process-box.step8 .text1 {
      left: calc(calc(160px + 15% + 48px + 13px) + 360px);
      top: 110px; } }
  @media (min-width: 1400px) {
    .tutorial-process-wrap .process-box.step8 .menu2 {
      width: 630px; }
    .tutorial-process-wrap .process-box.step8 .arrow-line {
      left: 435px;
      height: 170px; }
    .tutorial-process-wrap .process-box.step8 .text1 {
      left: calc(435px + 430px);
      top: 110px; } }
  @media (min-width: 1600px) {
    .tutorial-process-wrap .process-box.step8 .menu2 {
      width: auto; }
    .tutorial-process-wrap .process-box.step8 .arrow-line {
      height: 202px; }
    .tutorial-process-wrap .process-box.step8 .text1 {
      left: calc(435px + 510px);
      top: 160px;
      max-width: 800px; } }
  .tutorial-process-wrap .thumb-swiper {
    position: absolute;
    width: 40%;
    max-width: 800px;
    bottom: 50px;
    right: 50px;
    overflow: hidden; }
    .tutorial-process-wrap .thumb-swiper .animation-view-box {
      width: 100%;
      height: 100%; }
      .tutorial-process-wrap .thumb-swiper .animation-view-box img {
        max-width: 100%; }
  .tutorial-process-wrap .swiper-btns {
    position: relative;
    width: 100%; }
    .tutorial-process-wrap .swiper-btns .swiper-pagination {
      position: relative;
      top: 0;
      width: 100%;
      text-align: center;
      margin-bottom: 15px; }
      @media (min-width: 1200px) {
        .tutorial-process-wrap .swiper-btns .swiper-pagination {
          margin-top: 10px;
          margin-bottom: 25px; } }
    .tutorial-process-wrap .swiper-btns .swiper-pagination-bullet {
      width: 20px;
      height: 8px;
      border-radius: 3px;
      background-color: #fff;
      opacity: 1;
      margin: 0 8px; }
      @media (min-width: 1200px) {
        .tutorial-process-wrap .swiper-btns .swiper-pagination-bullet {
          width: 30px;
          height: 10px;
          margin: 0 12px;
          border-radius: 4px; } }
    .tutorial-process-wrap .swiper-btns .swiper-pagination-bullet-active {
      background-color: #15a5b7; }
    .tutorial-process-wrap .swiper-btns .btn-box {
      position: relative;
      text-align: center; }
    .tutorial-process-wrap .swiper-btns .swiper-button-disabled {
      opacity: 0; }
    .tutorial-process-wrap .swiper-btns .swiper-button-prev,
    .tutorial-process-wrap .swiper-btns .swiper-button-next,
    .tutorial-process-wrap .swiper-btns .start-sclab {
      position: static;
      display: inline-block;
      width: 180px;
      height: 38px;
      border-radius: 5px;
      background-color: #00c4cf;
      background-image: none;
      border: 0;
      font-size: 18px;
      margin: 0 10px;
      transition: opacity .3s; }
      @media (min-width: 1200px) {
        .tutorial-process-wrap .swiper-btns .swiper-button-prev,
        .tutorial-process-wrap .swiper-btns .swiper-button-next,
        .tutorial-process-wrap .swiper-btns .start-sclab {
          width: 200px;
          height: 48px;
          border-radius: 5px;
          font-size: 22px;
          margin: 0 13px; } }
    .tutorial-process-wrap .swiper-btns .start-sclab {
      position: absolute;
      top: 0;
      right: 50%;
      margin-right: -192px; }
      @media (min-width: 1200px) {
        .tutorial-process-wrap .swiper-btns .start-sclab {
          margin-right: -215px; } }

.add-data-editor-popup,
.add-ai-agent-block-popup,
.ai-agent-log-popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  overflow: auto;
  min-width: 1024px;
  background-color: #fff; }
  .add-data-editor-popup .data-header,
  .add-ai-agent-block-popup .data-header,
  .ai-agent-log-popup .data-header {
    position: relative;
    height: 45px;
    background-color: #15a5b7;
    color: #fff;
    padding: 5px 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .add-data-editor-popup .data-header .title,
    .add-ai-agent-block-popup .data-header .title,
    .ai-agent-log-popup .data-header .title {
      font-size: 18px; }
    .add-data-editor-popup .data-header .btn-close,
    .add-ai-agent-block-popup .data-header .btn-close,
    .ai-agent-log-popup .data-header .btn-close {
      position: absolute;
      top: 7px;
      right: 15px;
      border: 0;
      padding: 0;
      cursor: pointer;
      background-color: transparent;
      width: 30px;
      height: 30px;
      opacity: 0.8;
      transition: opacity .2s; }
      .add-data-editor-popup .data-header .btn-close:hover,
      .add-ai-agent-block-popup .data-header .btn-close:hover,
      .ai-agent-log-popup .data-header .btn-close:hover {
        opacity: 1; }
      .add-data-editor-popup .data-header .btn-close:before, .add-data-editor-popup .data-header .btn-close:after,
      .add-ai-agent-block-popup .data-header .btn-close:before,
      .add-ai-agent-block-popup .data-header .btn-close:after,
      .ai-agent-log-popup .data-header .btn-close:before,
      .ai-agent-log-popup .data-header .btn-close:after {
        position: absolute;
        top: 5px;
        left: 14px;
        content: ' ';
        height: 18px;
        width: 2px;
        border-radius: 3px;
        background-color: #fff; }
      .add-data-editor-popup .data-header .btn-close:before,
      .add-ai-agent-block-popup .data-header .btn-close:before,
      .ai-agent-log-popup .data-header .btn-close:before {
        transform: rotate(45deg); }
      .add-data-editor-popup .data-header .btn-close:after,
      .add-ai-agent-block-popup .data-header .btn-close:after,
      .ai-agent-log-popup .data-header .btn-close:after {
        transform: rotate(-45deg); }
  .add-data-editor-popup .data-footer,
  .add-ai-agent-block-popup .data-footer,
  .ai-agent-log-popup .data-footer {
    height: 40px; }
    .add-data-editor-popup .data-footer .btn-submit,
    .add-data-editor-popup .data-footer .btn-close,
    .add-ai-agent-block-popup .data-footer .btn-submit,
    .add-ai-agent-block-popup .data-footer .btn-close,
    .ai-agent-log-popup .data-footer .btn-submit,
    .ai-agent-log-popup .data-footer .btn-close {
      width: 100%;
      height: 100%;
      border-radius: 0;
      background-color: #000;
      color: #fff; }
  .add-data-editor-popup .data-body,
  .add-ai-agent-block-popup .data-body,
  .ai-agent-log-popup .data-body {
    width: 100%;
    height: calc(100% - 45px - 40px); }
    .add-data-editor-popup .data-body > .row,
    .add-ai-agent-block-popup .data-body > .row,
    .ai-agent-log-popup .data-body > .row {
      width: 100%;
      height: 100%;
      margin: 0;
      flex-wrap: nowrap; }
    .add-data-editor-popup .data-body .section-box,
    .add-ai-agent-block-popup .data-body .section-box,
    .ai-agent-log-popup .data-body .section-box {
      height: 100%;
      overflow: auto; }
    .add-data-editor-popup .data-body .inner-section,
    .add-ai-agent-block-popup .data-body .inner-section,
    .ai-agent-log-popup .data-body .inner-section {
      width: 100%;
      padding: 20px 15px; }
    .add-data-editor-popup .data-body .form-check,
    .add-ai-agent-block-popup .data-body .form-check,
    .ai-agent-log-popup .data-body .form-check {
      padding-left: 1.75rem;
      font-size: 14px; }
      .add-data-editor-popup .data-body .form-check .form-check-input,
      .add-ai-agent-block-popup .data-body .form-check .form-check-input,
      .ai-agent-log-popup .data-body .form-check .form-check-input {
        margin: -10px 0 0;
        top: 50%;
        left: 3px; }
      .add-data-editor-popup .data-body .form-check .form-check-input:checked,
      .add-ai-agent-block-popup .data-body .form-check .form-check-input:checked,
      .ai-agent-log-popup .data-body .form-check .form-check-input:checked {
        background-color: #0073AE;
        border-color: #0073AE; }
      .add-data-editor-popup .data-body .form-check .form-check-input:focus,
      .add-ai-agent-block-popup .data-body .form-check .form-check-input:focus,
      .ai-agent-log-popup .data-body .form-check .form-check-input:focus {
        border-color: #758eae;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(182, 210, 253, 0.25); }
  .add-data-editor-popup .info-section,
  .add-ai-agent-block-popup .info-section,
  .ai-agent-log-popup .info-section {
    width: 32%;
    min-width: 380px;
    max-width: 500px;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden !important; }
    .add-data-editor-popup .info-section .pop-header,
    .add-ai-agent-block-popup .info-section .pop-header,
    .ai-agent-log-popup .info-section .pop-header {
      padding: 0 0 0 90px;
      background-repeat: no-repeat;
      background-position: 10px center;
      background-size: 60px;
      margin-bottom: 20px;
      min-height: 65px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .add-data-editor-popup .info-section .pop-header.chart-title,
      .add-ai-agent-block-popup .info-section .pop-header.chart-title,
      .ai-agent-log-popup .info-section .pop-header.chart-title {
        background-image: url("/static/svg/computer_chart.svg"); }
      .add-data-editor-popup .info-section .pop-header.location-title,
      .add-ai-agent-block-popup .info-section .pop-header.location-title,
      .ai-agent-log-popup .info-section .pop-header.location-title {
        background-image: url("/static/svg/select_location.svg"); }
      .add-data-editor-popup .info-section .pop-header.table-title,
      .add-ai-agent-block-popup .info-section .pop-header.table-title,
      .ai-agent-log-popup .info-section .pop-header.table-title {
        background-image: url("/static/svg/assign_data_to_chart.svg"); }
      .add-data-editor-popup .info-section .pop-header.pivot-title,
      .add-ai-agent-block-popup .info-section .pop-header.pivot-title,
      .ai-agent-log-popup .info-section .pop-header.pivot-title {
        background-image: url("/static/svg/checkChart.svg"); }
      .add-data-editor-popup .info-section .pop-header .title,
      .add-ai-agent-block-popup .info-section .pop-header .title,
      .ai-agent-log-popup .info-section .pop-header .title {
        font-size: 1.3em; }
    .add-data-editor-popup .info-section .data-item-name,
    .add-ai-agent-block-popup .info-section .data-item-name,
    .ai-agent-log-popup .info-section .data-item-name {
      position: relative;
      height: 50px;
      width: 100%;
      margin-bottom: 10px; }
      .add-data-editor-popup .info-section .data-item-name input,
      .add-ai-agent-block-popup .info-section .data-item-name input,
      .ai-agent-log-popup .info-section .data-item-name input {
        width: 100%;
        height: 100%;
        border: 1px solid #bfbfbf;
        background: #f2f2f2;
        border-radius: 0;
        color: #2F373A; }
    .add-data-editor-popup .info-section .name-title-desc,
    .add-ai-agent-block-popup .info-section .name-title-desc,
    .ai-agent-log-popup .info-section .name-title-desc {
      width: 100%;
      font-size: 14px;
      line-height: 16px;
      margin-top: 10px;
      padding: 0 10px; }
    .add-data-editor-popup .info-section .preview-box,
    .add-ai-agent-block-popup .info-section .preview-box,
    .ai-agent-log-popup .info-section .preview-box {
      position: relative; }
      .add-data-editor-popup .info-section .preview-box .title,
      .add-ai-agent-block-popup .info-section .preview-box .title,
      .ai-agent-log-popup .info-section .preview-box .title {
        margin-bottom: 10px;
        font-size: 18px; }
    .add-data-editor-popup .info-section .preview-position,
    .add-ai-agent-block-popup .info-section .preview-position,
    .ai-agent-log-popup .info-section .preview-position {
      position: relative;
      width: 100%;
      padding-bottom: 68%; }
    .add-data-editor-popup .info-section .preview-frame,
    .add-ai-agent-block-popup .info-section .preview-frame,
    .ai-agent-log-popup .info-section .preview-frame {
      position: absolute;
      width: 100%;
      height: 100%; }
    .add-data-editor-popup .info-section .number-bg-color,
    .add-ai-agent-block-popup .info-section .number-bg-color,
    .ai-agent-log-popup .info-section .number-bg-color {
      position: absolute;
      top: -5px;
      right: 0;
      overflow: hidden; }
      .add-data-editor-popup .info-section .number-bg-color .form-control,
      .add-ai-agent-block-popup .info-section .number-bg-color .form-control,
      .ai-agent-log-popup .info-section .number-bg-color .form-control {
        width: 110px; }
  .add-data-editor-popup .content-section,
  .add-ai-agent-block-popup .content-section,
  .ai-agent-log-popup .content-section {
    flex: 1;
    min-width: 480px;
    background-color: #dbdbdb; }
    .add-data-editor-popup .content-section .data-row,
    .add-ai-agent-block-popup .content-section .data-row,
    .ai-agent-log-popup .content-section .data-row {
      margin-top: 30px;
      margin-bottom: 5px; }
      .add-data-editor-popup .content-section .data-row h5,
      .add-data-editor-popup .content-section .data-row .row-title,
      .add-ai-agent-block-popup .content-section .data-row h5,
      .add-ai-agent-block-popup .content-section .data-row .row-title,
      .ai-agent-log-popup .content-section .data-row h5,
      .ai-agent-log-popup .content-section .data-row .row-title {
        font-size: 16px;
        margin-bottom: 5px; }
      .add-data-editor-popup .content-section .data-row .box-area,
      .add-ai-agent-block-popup .content-section .data-row .box-area,
      .ai-agent-log-popup .content-section .data-row .box-area {
        position: relative;
        border: 1px solid #bfbfbf;
        background: #f2f2f2;
        padding: 0 5px; }
      .add-data-editor-popup .content-section .data-row .area-display-block,
      .add-ai-agent-block-popup .content-section .data-row .area-display-block,
      .ai-agent-log-popup .content-section .data-row .area-display-block {
        display: block; }
      .add-data-editor-popup .content-section .data-row .data-item,
      .add-ai-agent-block-popup .content-section .data-row .data-item,
      .ai-agent-log-popup .content-section .data-row .data-item {
        width: 100%;
        color: #2F373A;
        margin-top: 5px;
        margin-bottom: 5px;
        padding-left: 5px;
        padding-right: 5px; }
        .add-data-editor-popup .content-section .data-row .data-item .form-control,
        .add-ai-agent-block-popup .content-section .data-row .data-item .form-control,
        .ai-agent-log-popup .content-section .data-row .data-item .form-control {
          margin-top: 0;
          margin-bottom: 0;
          font-size: 14px; }
        .add-data-editor-popup .content-section .data-row .data-item .btn,
        .add-ai-agent-block-popup .content-section .data-row .data-item .btn,
        .ai-agent-log-popup .content-section .data-row .data-item .btn {
          width: 100%;
          max-width: none;
          text-overflow: ellipsis;
          overflow: hidden; }
        .add-data-editor-popup .content-section .data-row .data-item .dropdown-menu,
        .add-ai-agent-block-popup .content-section .data-row .data-item .dropdown-menu,
        .ai-agent-log-popup .content-section .data-row .data-item .dropdown-menu {
          font-size: 14px; }
        .add-data-editor-popup .content-section .data-row .data-item .btn-data,
        .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data,
        .ai-agent-log-popup .content-section .data-row .data-item .btn-data {
          text-align: left;
          background: #E3F6FF;
          border: 1px solid #0073AE;
          border-radius: 4px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          padding: 3px 5px; }
          .add-data-editor-popup .content-section .data-row .data-item .btn-data .unit,
          .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .unit,
          .ai-agent-log-popup .content-section .data-row .data-item .btn-data .unit {
            width: 60px;
            height: 30px; }
            .add-data-editor-popup .content-section .data-row .data-item .btn-data .unit .form-control,
            .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .unit .form-control,
            .ai-agent-log-popup .content-section .data-row .data-item .btn-data .unit .form-control {
              width: 60px;
              font-size: 13px; }
          .add-data-editor-popup .content-section .data-row .data-item .btn-data .label,
          .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .label,
          .ai-agent-log-popup .content-section .data-row .data-item .btn-data .label {
            flex: 1;
            height: 30px;
            line-height: 30px; }
            .add-data-editor-popup .content-section .data-row .data-item .btn-data .label .form-control,
            .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .label .form-control,
            .ai-agent-log-popup .content-section .data-row .data-item .btn-data .label .form-control {
              height: 30px;
              padding: 0 5px;
              min-height: 100%;
              max-width: 130px; }
          .add-data-editor-popup .content-section .data-row .data-item .btn-data.with-chart-type,
          .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data.with-chart-type,
          .ai-agent-log-popup .content-section .data-row .data-item .btn-data.with-chart-type {
            overflow: visible; }
          .add-data-editor-popup .content-section .data-row .data-item .btn-data .chart-type,
          .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .chart-type,
          .ai-agent-log-popup .content-section .data-row .data-item .btn-data .chart-type {
            width: 55px;
            height: 30px;
            margin-right: 5px; }
            .add-data-editor-popup .content-section .data-row .data-item .btn-data .chart-type .select-dropdown,
            .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .chart-type .select-dropdown,
            .ai-agent-log-popup .content-section .data-row .data-item .btn-data .chart-type .select-dropdown {
              width: 100%;
              height: 100%;
              margin: 0; }
            .add-data-editor-popup .content-section .data-row .data-item .btn-data .chart-type .btn,
            .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .chart-type .btn,
            .ai-agent-log-popup .content-section .data-row .data-item .btn-data .chart-type .btn {
              width: 100%;
              height: 100%;
              min-width: 100%;
              padding: 0 3px;
              background-color: #fff;
              border: 1px solid #ced4da;
              color: #495057;
              font-size: 18px; }
            .add-data-editor-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu,
            .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu,
            .ai-agent-log-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu {
              min-width: 80px; }
              .add-data-editor-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu .dropdown-item,
              .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu .dropdown-item,
              .ai-agent-log-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu .dropdown-item {
                padding: 3px 10px; }
              .add-data-editor-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu .icon,
              .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu .icon,
              .ai-agent-log-popup .content-section .data-row .data-item .btn-data .chart-type .dropdown-menu .icon {
                font-size: 18px; }
          .add-data-editor-popup .content-section .data-row .data-item .btn-data .btn-data-close,
          .add-ai-agent-block-popup .content-section .data-row .data-item .btn-data .btn-data-close,
          .ai-agent-log-popup .content-section .data-row .data-item .btn-data .btn-data-close {
            border: none;
            padding: 3px;
            background-color: transparent;
            margin-left: 3px; }
        .add-data-editor-popup .content-section .data-row .data-item .btn-label,
        .add-ai-agent-block-popup .content-section .data-row .data-item .btn-label,
        .ai-agent-log-popup .content-section .data-row .data-item .btn-label {
          text-align: left;
          background: #F8FFE3;
          border: 1px solid #76AE00;
          border-radius: 4px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          padding: 3px 5px; }
          .add-data-editor-popup .content-section .data-row .data-item .btn-label .label,
          .add-ai-agent-block-popup .content-section .data-row .data-item .btn-label .label,
          .ai-agent-log-popup .content-section .data-row .data-item .btn-label .label {
            flex: 1;
            height: 30px;
            line-height: 30px; }
          .add-data-editor-popup .content-section .data-row .data-item .btn-label .btn-data-close,
          .add-ai-agent-block-popup .content-section .data-row .data-item .btn-label .btn-data-close,
          .ai-agent-log-popup .content-section .data-row .data-item .btn-label .btn-data-close {
            border: none;
            padding: 3px;
            background-color: transparent;
            margin-left: 3px; }
        .add-data-editor-popup .content-section .data-row .data-item > .dropdown-menu,
        .add-ai-agent-block-popup .content-section .data-row .data-item > .dropdown-menu,
        .ai-agent-log-popup .content-section .data-row .data-item > .dropdown-menu {
          max-height: 650px;
          overflow-y: auto; }
          .add-data-editor-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item,
          .add-ai-agent-block-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item,
          .ai-agent-log-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item {
            padding-left: 15px; }
            .add-data-editor-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item .form-check,
            .add-ai-agent-block-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item .form-check,
            .ai-agent-log-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item .form-check {
              margin-bottom: 0; }
            .add-data-editor-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item.check-all,
            .add-ai-agent-block-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item.check-all,
            .ai-agent-log-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item.check-all {
              position: relative;
              margin-bottom: 3px; }
              .add-data-editor-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item.check-all:after,
              .add-ai-agent-block-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item.check-all:after,
              .ai-agent-log-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .dropdown-item.check-all:after {
                position: absolute;
                display: block;
                content: "";
                bottom: 0;
                left: 12px;
                right: 12px;
                height: 1px;
                background-color: #ddd; }
          .add-data-editor-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .form-check-input:disabled,
          .add-ai-agent-block-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .form-check-input:disabled,
          .ai-agent-log-popup .content-section .data-row .data-item > .dropdown-menu.with-checkbox .form-check-input:disabled {
            opacity: 1; }
        .add-data-editor-popup .content-section .data-row .data-item.row-options-item,
        .add-ai-agent-block-popup .content-section .data-row .data-item.row-options-item,
        .ai-agent-log-popup .content-section .data-row .data-item.row-options-item {
          position: absolute;
          top: 0;
          right: 0;
          padding: 6px; }
          .add-data-editor-popup .content-section .data-row .data-item.row-options-item .form-check,
          .add-ai-agent-block-popup .content-section .data-row .data-item.row-options-item .form-check,
          .ai-agent-log-popup .content-section .data-row .data-item.row-options-item .form-check {
            margin-bottom: 0; }
      .add-data-editor-popup .content-section .data-row .btn-tooltip,
      .add-ai-agent-block-popup .content-section .data-row .btn-tooltip,
      .ai-agent-log-popup .content-section .data-row .btn-tooltip {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 9px;
        color: #999;
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 0;
        text-align: center;
        vertical-align: middle;
        line-height: 16px;
        font-size: 15px;
        margin-top: -5px;
        margin-left: 3px; }
        .add-data-editor-popup .content-section .data-row .btn-tooltip:hover, .add-data-editor-popup .content-section .data-row .btn-tooltip:focus-within,
        .add-ai-agent-block-popup .content-section .data-row .btn-tooltip:hover,
        .add-ai-agent-block-popup .content-section .data-row .btn-tooltip:focus-within,
        .ai-agent-log-popup .content-section .data-row .btn-tooltip:hover,
        .ai-agent-log-popup .content-section .data-row .btn-tooltip:focus-within {
          border-color: #15a5b7;
          color: #15a5b7; }
        .add-data-editor-popup .content-section .data-row .btn-tooltip.active,
        .add-ai-agent-block-popup .content-section .data-row .btn-tooltip.active,
        .ai-agent-log-popup .content-section .data-row .btn-tooltip.active {
          border-color: #15a5b7;
          color: #15a5b7; }
      .add-data-editor-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="LIGHT"],
      .add-ai-agent-block-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="LIGHT"],
      .ai-agent-log-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="LIGHT"] {
        font-weight: 300; }
      .add-data-editor-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="REGULAR"],
      .add-ai-agent-block-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="REGULAR"],
      .ai-agent-log-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="REGULAR"] {
        font-weight: 400; }
      .add-data-editor-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BOLD"],
      .add-ai-agent-block-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BOLD"],
      .ai-agent-log-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BOLD"] {
        font-weight: 700; }
      .add-data-editor-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BLACK"],
      .add-ai-agent-block-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BLACK"],
      .ai-agent-log-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BLACK"] {
        font-weight: 900; }
      .add-data-editor-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"],
      .add-ai-agent-block-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"],
      .ai-agent-log-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"] {
        font-weight: 300;
        font-style: italic; }
      .add-data-editor-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"],
      .add-ai-agent-block-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"],
      .ai-agent-log-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"] {
        font-weight: 400;
        font-style: italic; }
      .add-data-editor-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"],
      .add-ai-agent-block-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"],
      .ai-agent-log-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"] {
        font-weight: 700;
        font-style: italic; }
      .add-data-editor-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"],
      .add-ai-agent-block-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"],
      .ai-agent-log-popup .content-section .data-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"] {
        font-weight: 900;
        font-style: italic; }
      .add-data-editor-popup .content-section .data-row .maximum-box .form-control,
      .add-ai-agent-block-popup .content-section .data-row .maximum-box .form-control,
      .ai-agent-log-popup .content-section .data-row .maximum-box .form-control {
        width: 90px !important;
        text-align: center;
        border-color: #ff0000;
        padding-left: 3px;
        padding-right: 3px; }
      .add-data-editor-popup .content-section .data-row .setting-box,
      .add-ai-agent-block-popup .content-section .data-row .setting-box,
      .ai-agent-log-popup .content-section .data-row .setting-box {
        width: 100%;
        padding: 5px; }
      .add-data-editor-popup .content-section .data-row .setting-table label,
      .add-ai-agent-block-popup .content-section .data-row .setting-table label,
      .ai-agent-log-popup .content-section .data-row .setting-table label {
        margin-bottom: 0; }
      .add-data-editor-popup .content-section .data-row .setting-table th,
      .add-ai-agent-block-popup .content-section .data-row .setting-table th,
      .ai-agent-log-popup .content-section .data-row .setting-table th {
        text-align: center;
        font-size: 14px;
        font-weight: normal;
        padding: 5px; }
      .add-data-editor-popup .content-section .data-row .setting-table td,
      .add-ai-agent-block-popup .content-section .data-row .setting-table td,
      .ai-agent-log-popup .content-section .data-row .setting-table td {
        padding: 5px 10px; }
      .add-data-editor-popup .content-section .data-row .setting-table .form-control,
      .add-ai-agent-block-popup .content-section .data-row .setting-table .form-control,
      .ai-agent-log-popup .content-section .data-row .setting-table .form-control {
        display: block;
        width: 100%; }
        .add-data-editor-popup .content-section .data-row .setting-table .form-control.disabled:disabled, .add-data-editor-popup .content-section .data-row .setting-table .form-control.disabled:read-only,
        .add-ai-agent-block-popup .content-section .data-row .setting-table .form-control.disabled:disabled,
        .add-ai-agent-block-popup .content-section .data-row .setting-table .form-control.disabled:read-only,
        .ai-agent-log-popup .content-section .data-row .setting-table .form-control.disabled:disabled,
        .ai-agent-log-popup .content-section .data-row .setting-table .form-control.disabled:read-only {
          background-color: #fff; }
      .add-data-editor-popup .content-section .data-row .setting-table .text-center,
      .add-ai-agent-block-popup .content-section .data-row .setting-table .text-center,
      .ai-agent-log-popup .content-section .data-row .setting-table .text-center {
        text-align: center; }
      .add-data-editor-popup .content-section .data-row .sort-type-box,
      .add-ai-agent-block-popup .content-section .data-row .sort-type-box,
      .ai-agent-log-popup .content-section .data-row .sort-type-box {
        position: absolute;
        top: 50%;
        right: 20px;
        margin-top: -13px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
        .add-data-editor-popup .content-section .data-row .sort-type-box .form-check,
        .add-ai-agent-block-popup .content-section .data-row .sort-type-box .form-check,
        .ai-agent-log-popup .content-section .data-row .sort-type-box .form-check {
          position: relative;
          margin-bottom: 0; }
        .add-data-editor-popup .content-section .data-row .sort-type-box .form-check + .form-check,
        .add-ai-agent-block-popup .content-section .data-row .sort-type-box .form-check + .form-check,
        .ai-agent-log-popup .content-section .data-row .sort-type-box .form-check + .form-check {
          margin-left: 10px; }
        .add-data-editor-popup .content-section .data-row .sort-type-box .form-check .form-check-input,
        .add-ai-agent-block-popup .content-section .data-row .sort-type-box .form-check .form-check-input,
        .ai-agent-log-popup .content-section .data-row .sort-type-box .form-check .form-check-input {
          margin: 0 5px 0 0;
          transform: translateY(-50%); }
      .add-data-editor-popup .content-section .data-row .dynamic-column-check,
      .add-ai-agent-block-popup .content-section .data-row .dynamic-column-check,
      .ai-agent-log-popup .content-section .data-row .dynamic-column-check {
        position: absolute;
        top: -26px;
        right: 0; }
    .add-data-editor-popup .content-section .threshold-wrap,
    .add-ai-agent-block-popup .content-section .threshold-wrap,
    .ai-agent-log-popup .content-section .threshold-wrap {
      max-height: 210px;
      overflow-y: auto; }
    .add-data-editor-popup .content-section .interval-select-box,
    .add-ai-agent-block-popup .content-section .interval-select-box,
    .ai-agent-log-popup .content-section .interval-select-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      margin-bottom: 5px;
      margin-right: -15px;
      margin-left: -15px; }
      .add-data-editor-popup .content-section .interval-select-box .group-box,
      .add-ai-agent-block-popup .content-section .interval-select-box .group-box,
      .ai-agent-log-popup .content-section .interval-select-box .group-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .add-data-editor-popup .content-section .interval-select-box .text-label,
      .add-ai-agent-block-popup .content-section .interval-select-box .text-label,
      .ai-agent-log-popup .content-section .interval-select-box .text-label {
        font-weight: bold;
        margin-right: 15px;
        font-size: 14px; }
      .add-data-editor-popup .content-section .interval-select-box .form-check,
      .add-ai-agent-block-popup .content-section .interval-select-box .form-check,
      .ai-agent-log-popup .content-section .interval-select-box .form-check {
        margin-bottom: 0;
        line-height: 31px; }
      .add-data-editor-popup .content-section .interval-select-box .form-check-input,
      .add-ai-agent-block-popup .content-section .interval-select-box .form-check-input,
      .ai-agent-log-popup .content-section .interval-select-box .form-check-input {
        margin: -9px 0 0; }
      .add-data-editor-popup .content-section .interval-select-box select.form-control,
      .add-ai-agent-block-popup .content-section .interval-select-box select.form-control,
      .ai-agent-log-popup .content-section .interval-select-box select.form-control {
        padding-right: 22px; }
    .add-data-editor-popup .content-section .form-input-select,
    .add-ai-agent-block-popup .content-section .form-input-select,
    .ai-agent-log-popup .content-section .form-input-select {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .add-data-editor-popup .content-section .form-input-select .form-control,
      .add-ai-agent-block-popup .content-section .form-input-select .form-control,
      .ai-agent-log-popup .content-section .form-input-select .form-control {
        display: inline-block;
        max-width: 100px; }
      .add-data-editor-popup .content-section .form-input-select select.form-control,
      .add-ai-agent-block-popup .content-section .form-input-select select.form-control,
      .ai-agent-log-popup .content-section .form-input-select select.form-control {
        position: relative;
        margin-left: -5px;
        z-index: 1; }
      .add-data-editor-popup .content-section .form-input-select select.form-control.no-arrow,
      .add-ai-agent-block-popup .content-section .form-input-select select.form-control.no-arrow,
      .ai-agent-log-popup .content-section .form-input-select select.form-control.no-arrow {
        background-image: none; }
    .add-data-editor-popup .content-section .threshold-box,
    .add-ai-agent-block-popup .content-section .threshold-box,
    .ai-agent-log-popup .content-section .threshold-box {
      display: table;
      width: 100%; }
      .add-data-editor-popup .content-section .threshold-box .threshold-header,
      .add-data-editor-popup .content-section .threshold-box .threshold-row,
      .add-ai-agent-block-popup .content-section .threshold-box .threshold-header,
      .add-ai-agent-block-popup .content-section .threshold-box .threshold-row,
      .ai-agent-log-popup .content-section .threshold-box .threshold-header,
      .ai-agent-log-popup .content-section .threshold-box .threshold-row {
        display: table-row; }
      .add-data-editor-popup .content-section .threshold-box .threshold-th,
      .add-data-editor-popup .content-section .threshold-box .threshold-td,
      .add-ai-agent-block-popup .content-section .threshold-box .threshold-th,
      .add-ai-agent-block-popup .content-section .threshold-box .threshold-td,
      .ai-agent-log-popup .content-section .threshold-box .threshold-th,
      .ai-agent-log-popup .content-section .threshold-box .threshold-td {
        display: table-cell; }
      .add-data-editor-popup .content-section .threshold-box .threshold-th,
      .add-ai-agent-block-popup .content-section .threshold-box .threshold-th,
      .ai-agent-log-popup .content-section .threshold-box .threshold-th {
        text-align: center;
        font-size: 11px;
        padding: 10px; }
        .add-data-editor-popup .content-section .threshold-box .threshold-th .required,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-th .required,
        .ai-agent-log-popup .content-section .threshold-box .threshold-th .required {
          color: #ed0001; }
      .add-data-editor-popup .content-section .threshold-box .threshold-td,
      .add-ai-agent-block-popup .content-section .threshold-box .threshold-td,
      .ai-agent-log-popup .content-section .threshold-box .threshold-td {
        padding: 0 5px; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .form-group,
        .add-data-editor-popup .content-section .threshold-box .threshold-td .input-group,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .form-group,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .input-group,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .form-group,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .input-group {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          margin-bottom: 10px; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .form-group > .form-group,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .form-group > .form-group,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .form-group > .form-group {
          margin: 0; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .form-control,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .form-control,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .form-control {
          margin: 0 5px;
          text-align: center; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .btn,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .btn,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .btn {
          background-color: #fff;
          border: 1px solid #ced4da;
          min-width: 30px; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .btn-delete,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .btn-delete,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .btn-delete {
          color: #ed0001; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .btn-add,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .btn-add,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .btn-add {
          color: #0073AE; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .bar,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .bar,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .bar {
          font-size: 14px;
          margin: 0 8px;
          color: #555; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .form-input-select .form-control,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .form-input-select .form-control,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .form-input-select .form-control {
          margin: 0; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .form-input-select select.form-control,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .form-input-select select.form-control,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .form-input-select select.form-control {
          margin-left: -5px;
          max-width: 50px; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .form-input-select.reverse select.form-control,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .form-input-select.reverse select.form-control,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .form-input-select.reverse select.form-control {
          margin-left: 0;
          margin-right: -5px;
          max-width: 50px; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .btn-icon,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .btn-icon,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .btn-icon {
          padding: 0;
          margin: 0;
          border: none; }
        .add-data-editor-popup .content-section .threshold-box .threshold-td .icon-action,
        .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .icon-action,
        .ai-agent-log-popup .content-section .threshold-box .threshold-td .icon-action {
          width: 30px;
          min-width: 30px;
          height: 30px;
          background-color: transparent;
          background-image: url("/static/img/icon_no_action.png");
          background-size: 100%;
          background-repeat: no-repeat;
          background-position: center; }
          .add-data-editor-popup .content-section .threshold-box .threshold-td .icon-action.on,
          .add-ai-agent-block-popup .content-section .threshold-box .threshold-td .icon-action.on,
          .ai-agent-log-popup .content-section .threshold-box .threshold-td .icon-action.on {
            background-image: url("/static/img/icon_action.png"); }
      .add-data-editor-popup .content-section .threshold-box .value-box .form-control,
      .add-ai-agent-block-popup .content-section .threshold-box .value-box .form-control,
      .ai-agent-log-popup .content-section .threshold-box .value-box .form-control {
        max-width: 100px; }
      .add-data-editor-popup .content-section .threshold-box .color-box .clr-field input.clr-input-color,
      .add-ai-agent-block-popup .content-section .threshold-box .color-box .clr-field input.clr-input-color,
      .ai-agent-log-popup .content-section .threshold-box .color-box .clr-field input.clr-input-color {
        max-width: 130px;
        text-align: left; }
      .add-data-editor-popup .content-section .threshold-box .color-box .clr-field button,
      .add-ai-agent-block-popup .content-section .threshold-box .color-box .clr-field button,
      .ai-agent-log-popup .content-section .threshold-box .color-box .clr-field button {
        width: 30px !important; }
      .add-data-editor-popup .content-section .threshold-box .color-box .form-control,
      .add-ai-agent-block-popup .content-section .threshold-box .color-box .form-control,
      .ai-agent-log-popup .content-section .threshold-box .color-box .form-control {
        margin: 0;
        border-top-left-radius: 0.2rem;
        border-bottom-left-radius: 0.2rem; }
      .add-data-editor-popup .content-section .threshold-box .color-box .btn,
      .add-ai-agent-block-popup .content-section .threshold-box .color-box .btn,
      .ai-agent-log-popup .content-section .threshold-box .color-box .btn {
        border-color: #ced4da;
        min-width: 31px !important;
        width: 31px !important;
        height: 31px !important; }
    .add-data-editor-popup .content-section .location-data-row .col-6,
    .add-ai-agent-block-popup .content-section .location-data-row .col-6,
    .ai-agent-log-popup .content-section .location-data-row .col-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
    @media (min-width: 992px) {
      .add-data-editor-popup .content-section .location-data-row .col-6,
      .add-ai-agent-block-popup .content-section .location-data-row .col-6,
      .ai-agent-log-popup .content-section .location-data-row .col-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%; } }
    .add-data-editor-popup .content-section .with-table-box,
    .add-ai-agent-block-popup .content-section .with-table-box,
    .ai-agent-log-popup .content-section .with-table-box {
      padding-top: 10px !important;
      padding-bottom: 10px !important; }
      .add-data-editor-popup .content-section .with-table-box label,
      .add-data-editor-popup .content-section .with-table-box .label,
      .add-ai-agent-block-popup .content-section .with-table-box label,
      .add-ai-agent-block-popup .content-section .with-table-box .label,
      .ai-agent-log-popup .content-section .with-table-box label,
      .ai-agent-log-popup .content-section .with-table-box .label {
        display: inline-block;
        font-size: 14px;
        margin-bottom: 0.2rem; }
      .add-data-editor-popup .content-section .with-table-box .table-field-box,
      .add-data-editor-popup .content-section .with-table-box .color-field-box,
      .add-ai-agent-block-popup .content-section .with-table-box .table-field-box,
      .add-ai-agent-block-popup .content-section .with-table-box .color-field-box,
      .ai-agent-log-popup .content-section .with-table-box .table-field-box,
      .ai-agent-log-popup .content-section .with-table-box .color-field-box {
        padding: 0 5px;
        margin-bottom: 10px; }
      .add-data-editor-popup .content-section .with-table-box .table-field-box .form-group + .row,
      .add-ai-agent-block-popup .content-section .with-table-box .table-field-box .form-group + .row,
      .ai-agent-log-popup .content-section .with-table-box .table-field-box .form-group + .row {
        margin-top: 10px; }
      .add-data-editor-popup .content-section .with-table-box .table-field-box .row + .form-group,
      .add-ai-agent-block-popup .content-section .with-table-box .table-field-box .row + .form-group,
      .ai-agent-log-popup .content-section .with-table-box .table-field-box .row + .form-group {
        margin-top: 10px; }
      .add-data-editor-popup .content-section .with-table-box .table-field-box .row,
      .add-ai-agent-block-popup .content-section .with-table-box .table-field-box .row,
      .ai-agent-log-popup .content-section .with-table-box .table-field-box .row {
        margin-left: 0;
        margin-right: 0; }
        .add-data-editor-popup .content-section .with-table-box .table-field-box .row .col-6,
        .add-ai-agent-block-popup .content-section .with-table-box .table-field-box .row .col-6,
        .ai-agent-log-popup .content-section .with-table-box .table-field-box .row .col-6 {
          padding-right: 0;
          padding-left: 0; }
        .add-data-editor-popup .content-section .with-table-box .table-field-box .row .col-6:first-child,
        .add-ai-agent-block-popup .content-section .with-table-box .table-field-box .row .col-6:first-child,
        .ai-agent-log-popup .content-section .with-table-box .table-field-box .row .col-6:first-child {
          padding-right: 5px; }
        .add-data-editor-popup .content-section .with-table-box .table-field-box .row .col-6:last-child,
        .add-ai-agent-block-popup .content-section .with-table-box .table-field-box .row .col-6:last-child,
        .ai-agent-log-popup .content-section .with-table-box .table-field-box .row .col-6:last-child {
          padding-left: 5px; }
    .add-data-editor-popup .content-section .color-gradient-table-wrap .classes-table-box,
    .add-ai-agent-block-popup .content-section .color-gradient-table-wrap .classes-table-box,
    .ai-agent-log-popup .content-section .color-gradient-table-wrap .classes-table-box {
      position: relative; }
    .add-data-editor-popup .content-section .color-gradient-table-wrap .max-width-box,
    .add-ai-agent-block-popup .content-section .color-gradient-table-wrap .max-width-box,
    .ai-agent-log-popup .content-section .color-gradient-table-wrap .max-width-box {
      position: absolute;
      top: 5px;
      right: 6px;
      display: inline-block; }
      .add-data-editor-popup .content-section .color-gradient-table-wrap .max-width-box label,
      .add-ai-agent-block-popup .content-section .color-gradient-table-wrap .max-width-box label,
      .ai-agent-log-popup .content-section .color-gradient-table-wrap .max-width-box label {
        display: inline-block;
        font-size: 12px; }
      .add-data-editor-popup .content-section .color-gradient-table-wrap .max-width-box .form-control,
      .add-ai-agent-block-popup .content-section .color-gradient-table-wrap .max-width-box .form-control,
      .ai-agent-log-popup .content-section .color-gradient-table-wrap .max-width-box .form-control {
        display: inline-block;
        height: 26px;
        min-height: 26px;
        font-size: 12px;
        width: 100px; }
  .add-data-editor-popup .setting-section,
  .add-ai-agent-block-popup .setting-section,
  .ai-agent-log-popup .setting-section {
    width: 30%;
    min-width: 300px;
    max-width: 470px; }
    .add-data-editor-popup .setting-section .setting-item-row,
    .add-ai-agent-block-popup .setting-section .setting-item-row,
    .ai-agent-log-popup .setting-section .setting-item-row {
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      margin-bottom: 15px; }
      .add-data-editor-popup .setting-section .setting-item-row:last-child,
      .add-ai-agent-block-popup .setting-section .setting-item-row:last-child,
      .ai-agent-log-popup .setting-section .setting-item-row:last-child {
        margin-bottom: 0; }
      .add-data-editor-popup .setting-section .setting-item-row label,
      .add-data-editor-popup .setting-section .setting-item-row .label,
      .add-data-editor-popup .setting-section .setting-item-row .switch-label,
      .add-ai-agent-block-popup .setting-section .setting-item-row label,
      .add-ai-agent-block-popup .setting-section .setting-item-row .label,
      .add-ai-agent-block-popup .setting-section .setting-item-row .switch-label,
      .ai-agent-log-popup .setting-section .setting-item-row label,
      .ai-agent-log-popup .setting-section .setting-item-row .label,
      .ai-agent-log-popup .setting-section .setting-item-row .switch-label {
        display: inline-block;
        width: 45%;
        font-size: 13px;
        font-weight: bold; }
        .add-data-editor-popup .setting-section .setting-item-row label.box-label,
        .add-data-editor-popup .setting-section .setting-item-row .label.box-label,
        .add-data-editor-popup .setting-section .setting-item-row .switch-label.box-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row label.box-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .label.box-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .switch-label.box-label,
        .ai-agent-log-popup .setting-section .setting-item-row label.box-label,
        .ai-agent-log-popup .setting-section .setting-item-row .label.box-label,
        .ai-agent-log-popup .setting-section .setting-item-row .switch-label.box-label {
          display: block;
          width: 100%; }
      .add-data-editor-popup .setting-section .setting-item-row .label label,
      .add-ai-agent-block-popup .setting-section .setting-item-row .label label,
      .ai-agent-log-popup .setting-section .setting-item-row .label label {
        width: auto; }
      .add-data-editor-popup .setting-section .setting-item-row .label .form-check,
      .add-ai-agent-block-popup .setting-section .setting-item-row .label .form-check,
      .ai-agent-log-popup .setting-section .setting-item-row .label .form-check {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0; }
      .add-data-editor-popup .setting-section .setting-item-row .item-box-area,
      .add-ai-agent-block-popup .setting-section .setting-item-row .item-box-area,
      .ai-agent-log-popup .setting-section .setting-item-row .item-box-area {
        flex: 1;
        border: 1px solid #bfbfbf;
        border-radius: 5px;
        padding: 5px; }
        .add-data-editor-popup .setting-section .setting-item-row .item-box-area.list-box,
        .add-ai-agent-block-popup .setting-section .setting-item-row .item-box-area.list-box,
        .ai-agent-log-popup .setting-section .setting-item-row .item-box-area.list-box {
          padding: 0; }
      .add-data-editor-popup .setting-section .setting-item-row .item-box,
      .add-ai-agent-block-popup .setting-section .setting-item-row .item-box,
      .ai-agent-log-popup .setting-section .setting-item-row .item-box {
        flex: 1; }
      .add-data-editor-popup .setting-section .setting-item-row .item-box-block,
      .add-ai-agent-block-popup .setting-section .setting-item-row .item-box-block,
      .ai-agent-log-popup .setting-section .setting-item-row .item-box-block {
        width: 100%; }
      .add-data-editor-popup .setting-section .setting-item-row.column,
      .add-ai-agent-block-popup .setting-section .setting-item-row.column,
      .ai-agent-log-popup .setting-section .setting-item-row.column {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        flex-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align-items: flex-start;
        -ms-align-items: flex-start;
        -webkit-align-items: flex-start;
        align-items: flex-start; }
        .add-data-editor-popup .setting-section .setting-item-row.column label,
        .add-data-editor-popup .setting-section .setting-item-row.column .label,
        .add-data-editor-popup .setting-section .setting-item-row.column .switch-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row.column label,
        .add-ai-agent-block-popup .setting-section .setting-item-row.column .label,
        .add-ai-agent-block-popup .setting-section .setting-item-row.column .switch-label,
        .ai-agent-log-popup .setting-section .setting-item-row.column label,
        .ai-agent-log-popup .setting-section .setting-item-row.column .label,
        .ai-agent-log-popup .setting-section .setting-item-row.column .switch-label {
          margin-bottom: 5px;
          width: auto; }
        .add-data-editor-popup .setting-section .setting-item-row.column .item-box,
        .add-data-editor-popup .setting-section .setting-item-row.column .item-box-area,
        .add-ai-agent-block-popup .setting-section .setting-item-row.column .item-box,
        .add-ai-agent-block-popup .setting-section .setting-item-row.column .item-box-area,
        .ai-agent-log-popup .setting-section .setting-item-row.column .item-box,
        .ai-agent-log-popup .setting-section .setting-item-row.column .item-box-area {
          width: 100%;
          flex: auto; }
      .add-data-editor-popup .setting-section .setting-item-row .input-group,
      .add-ai-agent-block-popup .setting-section .setting-item-row .input-group,
      .ai-agent-log-popup .setting-section .setting-item-row .input-group {
        display: inline-block;
        margin: 3px;
        width: auto; }
        .add-data-editor-popup .setting-section .setting-item-row .input-group.no-margin,
        .add-ai-agent-block-popup .setting-section .setting-item-row .input-group.no-margin,
        .ai-agent-log-popup .setting-section .setting-item-row .input-group.no-margin {
          margin: 0; }
        .add-data-editor-popup .setting-section .setting-item-row .input-group .inline-row,
        .add-ai-agent-block-popup .setting-section .setting-item-row .input-group .inline-row,
        .ai-agent-log-popup .setting-section .setting-item-row .input-group .inline-row {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          flex-wrap: wrap; }
        .add-data-editor-popup .setting-section .setting-item-row .input-group .form-control,
        .add-ai-agent-block-popup .setting-section .setting-item-row .input-group .form-control,
        .ai-agent-log-popup .setting-section .setting-item-row .input-group .form-control {
          font-size: 0.9rem;
          padding: .34rem .5rem;
          height: inherit; }
        .add-data-editor-popup .setting-section .setting-item-row .input-group .select-dropdown .btn,
        .add-ai-agent-block-popup .setting-section .setting-item-row .input-group .select-dropdown .btn,
        .ai-agent-log-popup .setting-section .setting-item-row .input-group .select-dropdown .btn {
          font-size: 0.9rem; }
        .add-data-editor-popup .setting-section .setting-item-row .input-group .select-dropdown .dropdown-menu,
        .add-ai-agent-block-popup .setting-section .setting-item-row .input-group .select-dropdown .dropdown-menu,
        .ai-agent-log-popup .setting-section .setting-item-row .input-group .select-dropdown .dropdown-menu {
          font-size: 0.9rem; }
        .add-data-editor-popup .setting-section .setting-item-row .input-group .form-check label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .input-group .form-check label,
        .ai-agent-log-popup .setting-section .setting-item-row .input-group .form-check label {
          font-weight: normal;
          margin-bottom: 0; }
      .add-data-editor-popup .setting-section .setting-item-row .input-box,
      .add-data-editor-popup .setting-section .setting-item-row .color-box,
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown,
      .add-ai-agent-block-popup .setting-section .setting-item-row .input-box,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-box,
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown,
      .ai-agent-log-popup .setting-section .setting-item-row .input-box,
      .ai-agent-log-popup .setting-section .setting-item-row .color-box,
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .add-data-editor-popup .setting-section .setting-item-row .input-box label,
        .add-data-editor-popup .setting-section .setting-item-row .input-box .label,
        .add-data-editor-popup .setting-section .setting-item-row .color-box label,
        .add-data-editor-popup .setting-section .setting-item-row .color-box .label,
        .add-data-editor-popup .setting-section .setting-item-row .select-dropdown label,
        .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .input-box label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .input-box .label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .color-box label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .color-box .label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .label,
        .ai-agent-log-popup .setting-section .setting-item-row .input-box label,
        .ai-agent-log-popup .setting-section .setting-item-row .input-box .label,
        .ai-agent-log-popup .setting-section .setting-item-row .color-box label,
        .ai-agent-log-popup .setting-section .setting-item-row .color-box .label,
        .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown label,
        .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .label {
          width: auto;
          font-weight: normal;
          margin-bottom: 0;
          font-size: 14px; }
      .add-data-editor-popup .setting-section .setting-item-row .color-box .clr-field,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-box .clr-field,
      .ai-agent-log-popup .setting-section .setting-item-row .color-box .clr-field {
        width: 130px; }
        .add-data-editor-popup .setting-section .setting-item-row .color-box .clr-field input.clr-input-color,
        .add-ai-agent-block-popup .setting-section .setting-item-row .color-box .clr-field input.clr-input-color,
        .ai-agent-log-popup .setting-section .setting-item-row .color-box .clr-field input.clr-input-color {
          max-width: 130px;
          text-align: left;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
        .add-data-editor-popup .setting-section .setting-item-row .color-box .clr-field button,
        .add-ai-agent-block-popup .setting-section .setting-item-row .color-box .clr-field button,
        .ai-agent-log-popup .setting-section .setting-item-row .color-box .clr-field button {
          width: 35px; }
      .add-data-editor-popup .setting-section .setting-item-row .input-box .form-control,
      .add-ai-agent-block-popup .setting-section .setting-item-row .input-box .form-control,
      .ai-agent-log-popup .setting-section .setting-item-row .input-box .form-control {
        max-width: 60px; }
      .add-data-editor-popup .setting-section .setting-item-row .input-box .form-control[type=number],
      .add-ai-agent-block-popup .setting-section .setting-item-row .input-box .form-control[type=number],
      .ai-agent-log-popup .setting-section .setting-item-row .input-box .form-control[type=number] {
        padding-right: 3px; }
      .add-data-editor-popup .setting-section .setting-item-row .input-box select.form-control,
      .add-ai-agent-block-popup .setting-section .setting-item-row .input-box select.form-control,
      .ai-agent-log-popup .setting-section .setting-item-row .input-box select.form-control {
        max-width: 100px; }
      .add-data-editor-popup .setting-section .setting-item-row .input-box .form-check,
      .add-ai-agent-block-popup .setting-section .setting-item-row .input-box .form-check,
      .ai-agent-log-popup .setting-section .setting-item-row .input-box .form-check {
        margin-bottom: 0; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="LIGHT"],
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="LIGHT"],
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="LIGHT"] {
        font-weight: 300; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="REGULAR"],
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="REGULAR"],
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="REGULAR"] {
        font-weight: 400; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BOLD"],
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BOLD"],
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BOLD"] {
        font-weight: 700; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BLACK"],
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BLACK"],
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BLACK"] {
        font-weight: 900; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"],
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"],
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="LIGHT_ITALIC"] {
        font-weight: 300;
        font-style: italic; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"],
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"],
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="REGULAR_ITALIC"] {
        font-weight: 400;
        font-style: italic; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"],
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"],
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BOLD_ITALIC"] {
        font-weight: 700;
        font-style: italic; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"],
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"],
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown .dropdown-item[data-value="BLACK_ITALIC"] {
        font-weight: 900;
        font-style: italic; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-toggle,
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-toggle,
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-toggle {
        border: 1px solid #ced4da;
        min-width: 70px; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item,
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item,
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item {
        padding-left: 10px;
        padding-right: 10px; }
        .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:hover, .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:focus, .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:active,
        .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:hover,
        .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:focus,
        .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:active,
        .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:hover,
        .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:focus,
        .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item:active {
          background-color: transparent;
          color: inherit; }
        .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form,
        .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form,
        .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between; }
          .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .label,
          .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .label,
          .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .label {
            font-size: 13px;
            margin-right: 5px; }
          .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .form-group,
          .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .form-group,
          .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .form-group {
            margin: 0; }
          .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .form-control,
          .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .form-control,
          .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .dropdown-item .inline-form .form-control {
            margin: 0; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group,
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group,
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group {
        margin-bottom: 2px; }
        .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group label,
        .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group label {
          font-size: 13px; }
        .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group .form-control-sm,
        .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group .form-control-sm,
        .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.value-dropdown .form-group .form-control-sm {
          width: 70px; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.box-dropdown .dropdown-toggle,
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.box-dropdown .dropdown-toggle,
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.box-dropdown .dropdown-toggle {
        border: 1px solid #ced4da;
        min-width: 70px; }
      .add-data-editor-popup .setting-section .setting-item-row .select-dropdown.box-dropdown .dropdown-item,
      .add-ai-agent-block-popup .setting-section .setting-item-row .select-dropdown.box-dropdown .dropdown-item,
      .ai-agent-log-popup .setting-section .setting-item-row .select-dropdown.box-dropdown .dropdown-item {
        font-size: 14px; }
      .add-data-editor-popup .setting-section .setting-item-row .color-item-list,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list,
      .ai-agent-log-popup .setting-section .setting-item-row .color-item-list {
        max-height: 200px;
        overflow-y: auto; }
        .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item,
        .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item,
        .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item {
          position: relative;
          padding: 5px 65px 5px 10px;
          border-bottom: 1px solid #ccc; }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item:last-child,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item:last-child,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item:last-child {
            border-bottom: 0; }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .box-area,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .box-area,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .box-area {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -ms-flex-align: center;
            flex-align: center;
            -webkit-align-items: center;
            -moz-box-align-items: center;
            -ms-align-items: center;
            -webkit-align-items: center;
            align-items: center;
            margin: 0; }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .input-group,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .input-group,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .input-group {
            margin-right: 5px !important; }
            .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .input-group:last-child,
            .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .input-group:last-child,
            .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .input-group:last-child {
              margin-right: 0; }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .label,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .label,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .label {
            margin: 0 5px 0 0; }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .clr-field,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .clr-field,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .clr-field {
            width: 30px;
            height: 30px;
            overflow: hidden; }
            .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .clr-field button,
            .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .clr-field button,
            .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .clr-field button {
              width: 100%;
              height: 100%; }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box {
            height: 30px; }
            .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color,
            .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color,
            .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color {
              height: auto;
              display: -webkit-box;
              display: -moz-box;
              display: -ms-flexbox;
              display: -webkit-flex;
              display: flex;
              -webkit-box-flex-direction: column;
              -moz-box-flex-direction: column;
              -ms-flex-direction: column;
              -webkit-flex-direction: column;
              flex-direction: column;
              -ms-flex-align: start;
              flex-align: start;
              -webkit-align-items: flex-start;
              -moz-box-align-items: flex-start;
              -ms-align-items: flex-start;
              -webkit-align-items: flex-start;
              align-items: flex-start; }
              .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color .clr-field,
              .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color .clr-field,
              .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color .clr-field {
                height: 16px; }
              .add-data-editor-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color .clr-field:last-child,
              .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color .clr-field:last-child,
              .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .list-item .color-picker-box.multi-color .clr-field:last-child {
                margin-top: 1px; }
        .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns,
        .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns,
        .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns {
          position: absolute;
          width: 60px;
          top: 50%;
          right: 5px;
          transform: translateY(-50%); }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn {
            font-size: 16px;
            padding: 5px; }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:hover, .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:active, .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:focus-visible,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:hover,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:active,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:focus-visible,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:hover,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:active,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-remove:focus-visible {
            color: #ed0001; }
          .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add,
          .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add {
            font-size: 24px;
            line-height: 1; }
            .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:hover, .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:active, .add-data-editor-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:focus-visible,
            .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:hover,
            .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:active,
            .add-ai-agent-block-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:focus-visible,
            .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:hover,
            .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:active,
            .ai-agent-log-popup .setting-section .setting-item-row .color-item-list .color-option-btns .btn-add:focus-visible {
              color: #15a5b7; }
      .add-data-editor-popup .setting-section .setting-item-row .setting-float-box,
      .add-ai-agent-block-popup .setting-section .setting-item-row .setting-float-box,
      .ai-agent-log-popup .setting-section .setting-item-row .setting-float-box {
        position: absolute;
        top: 0;
        right: 0; }
        .add-data-editor-popup .setting-section .setting-item-row .setting-float-box.form-check label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .setting-float-box.form-check label,
        .ai-agent-log-popup .setting-section .setting-item-row .setting-float-box.form-check label {
          width: auto;
          margin-bottom: 0; }
      .add-data-editor-popup .setting-section .setting-item-row .row-text-edit-box,
      .add-data-editor-popup .setting-section .setting-item-row .value-min-max,
      .add-data-editor-popup .setting-section .setting-item-row .options-content,
      .add-ai-agent-block-popup .setting-section .setting-item-row .row-text-edit-box,
      .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max,
      .add-ai-agent-block-popup .setting-section .setting-item-row .options-content,
      .ai-agent-log-popup .setting-section .setting-item-row .row-text-edit-box,
      .ai-agent-log-popup .setting-section .setting-item-row .value-min-max,
      .ai-agent-log-popup .setting-section .setting-item-row .options-content {
        flex: 1;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .add-data-editor-popup .setting-section .setting-item-row .row-text-edit-box .text-label,
        .add-data-editor-popup .setting-section .setting-item-row .row-text-edit-box label,
        .add-data-editor-popup .setting-section .setting-item-row .value-min-max .text-label,
        .add-data-editor-popup .setting-section .setting-item-row .value-min-max label,
        .add-data-editor-popup .setting-section .setting-item-row .options-content .text-label,
        .add-data-editor-popup .setting-section .setting-item-row .options-content label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .row-text-edit-box .text-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .row-text-edit-box label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max .text-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .options-content .text-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .options-content label,
        .ai-agent-log-popup .setting-section .setting-item-row .row-text-edit-box .text-label,
        .ai-agent-log-popup .setting-section .setting-item-row .row-text-edit-box label,
        .ai-agent-log-popup .setting-section .setting-item-row .value-min-max .text-label,
        .ai-agent-log-popup .setting-section .setting-item-row .value-min-max label,
        .ai-agent-log-popup .setting-section .setting-item-row .options-content .text-label,
        .ai-agent-log-popup .setting-section .setting-item-row .options-content label {
          width: auto;
          font-size: 13px;
          font-weight: normal; }
        .add-data-editor-popup .setting-section .setting-item-row .row-text-edit-box .text-label,
        .add-data-editor-popup .setting-section .setting-item-row .value-min-max .text-label,
        .add-data-editor-popup .setting-section .setting-item-row .options-content .text-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .row-text-edit-box .text-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max .text-label,
        .add-ai-agent-block-popup .setting-section .setting-item-row .options-content .text-label,
        .ai-agent-log-popup .setting-section .setting-item-row .row-text-edit-box .text-label,
        .ai-agent-log-popup .setting-section .setting-item-row .value-min-max .text-label,
        .ai-agent-log-popup .setting-section .setting-item-row .options-content .text-label {
          font-weight: bold; }
        .add-data-editor-popup .setting-section .setting-item-row .row-text-edit-box .form-group,
        .add-data-editor-popup .setting-section .setting-item-row .value-min-max .form-group,
        .add-data-editor-popup .setting-section .setting-item-row .options-content .form-group,
        .add-ai-agent-block-popup .setting-section .setting-item-row .row-text-edit-box .form-group,
        .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max .form-group,
        .add-ai-agent-block-popup .setting-section .setting-item-row .options-content .form-group,
        .ai-agent-log-popup .setting-section .setting-item-row .row-text-edit-box .form-group,
        .ai-agent-log-popup .setting-section .setting-item-row .value-min-max .form-group,
        .ai-agent-log-popup .setting-section .setting-item-row .options-content .form-group {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          margin: 0; }
          .add-data-editor-popup .setting-section .setting-item-row .row-text-edit-box .form-group label,
          .add-data-editor-popup .setting-section .setting-item-row .value-min-max .form-group label,
          .add-data-editor-popup .setting-section .setting-item-row .options-content .form-group label,
          .add-ai-agent-block-popup .setting-section .setting-item-row .row-text-edit-box .form-group label,
          .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max .form-group label,
          .add-ai-agent-block-popup .setting-section .setting-item-row .options-content .form-group label,
          .ai-agent-log-popup .setting-section .setting-item-row .row-text-edit-box .form-group label,
          .ai-agent-log-popup .setting-section .setting-item-row .value-min-max .form-group label,
          .ai-agent-log-popup .setting-section .setting-item-row .options-content .form-group label {
            margin: 0 0 0 5px; }
        .add-data-editor-popup .setting-section .setting-item-row .row-text-edit-box .form-control,
        .add-data-editor-popup .setting-section .setting-item-row .value-min-max .form-control,
        .add-data-editor-popup .setting-section .setting-item-row .options-content .form-control,
        .add-ai-agent-block-popup .setting-section .setting-item-row .row-text-edit-box .form-control,
        .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max .form-control,
        .add-ai-agent-block-popup .setting-section .setting-item-row .options-content .form-control,
        .ai-agent-log-popup .setting-section .setting-item-row .row-text-edit-box .form-control,
        .ai-agent-log-popup .setting-section .setting-item-row .value-min-max .form-control,
        .ai-agent-log-popup .setting-section .setting-item-row .options-content .form-control {
          width: 50px; }
      .add-data-editor-popup .setting-section .setting-item-row .value-min-max .form-control,
      .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max .form-control,
      .ai-agent-log-popup .setting-section .setting-item-row .value-min-max .form-control {
        width: 70px; }
      .add-data-editor-popup .setting-section .setting-item-row .value-min-max .unit,
      .add-ai-agent-block-popup .setting-section .setting-item-row .value-min-max .unit,
      .ai-agent-log-popup .setting-section .setting-item-row .value-min-max .unit {
        font-size: 14px;
        margin-left: 5px; }
      .add-data-editor-popup .setting-section .setting-item-row .axis-color-box label,
      .add-ai-agent-block-popup .setting-section .setting-item-row .axis-color-box label,
      .ai-agent-log-popup .setting-section .setting-item-row .axis-color-box label {
        font-weight: normal;
        width: auto; }
      .add-data-editor-popup .setting-section .setting-item-row .axis-color-box .form-check,
      .add-ai-agent-block-popup .setting-section .setting-item-row .axis-color-box .form-check,
      .ai-agent-log-popup .setting-section .setting-item-row .axis-color-box .form-check {
        display: block; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row.custom-row,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row.custom-row,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row.custom-row {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .form-group,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .form-group,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .form-group {
        width: 100%; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box {
        width: 90%;
        height: 20px;
        background-color: #efefef;
        vertical-align: middle;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding: 0; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box.multi-color,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box.multi-color,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box.multi-color {
        height: auto;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-line,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-line,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-line {
        width: 100%;
        vertical-align: middle;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding: 0; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-item,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-item,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-item {
        display: block;
        flex: 1;
        height: 100%; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box.multi-color .color-item,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box.multi-color .color-item,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-box.multi-color .color-item {
        height: 15px; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .dropdown-menu,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .dropdown-menu,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .dropdown-menu {
        width: 100%;
        max-height: 200px;
        overflow-y: auto; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-scheme-box .dropdown-item,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-scheme-box .dropdown-item,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-scheme-box .dropdown-item {
        position: relative; }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-scheme-box .btn-color-delete,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-scheme-box .btn-color-delete,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .select-symbol .color-scheme-box .btn-color-delete {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%); }
      .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box,
      .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box,
      .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box {
        position: relative;
        width: 100%;
        border: 1px solid #bfbfbf;
        padding: 5px 10px;
        height: 38px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker,
        .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker,
        .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker {
          display: block;
          height: 20px;
          padding: 0;
          background-color: transparent;
          flex: 1;
          margin-right: 2px; }
          .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker:last-child,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker:last-child,
          .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker:last-child {
            margin-right: 0; }
          .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .clr-field,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .clr-field,
          .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .clr-field {
            display: block;
            width: 100%;
            height: 100%; }
            .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .clr-field button:after,
            .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .clr-field button:after,
            .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .clr-field button:after {
              border: 0; }
          .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .form-control,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .form-control,
          .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box .color-picker .form-control {
            width: 100%;
            height: 100%;
            max-width: 20px;
            min-height: 20px;
            padding: 0;
            margin: 0;
            border: 0; }
        .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color,
        .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color,
        .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color {
          -webkit-box-flex-direction: column;
          -moz-box-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column;
          -ms-flex-align: start;
          flex-align: start;
          -webkit-align-items: flex-start;
          -moz-box-align-items: flex-start;
          -ms-align-items: flex-start;
          -webkit-align-items: flex-start;
          align-items: flex-start;
          height: auto; }
          .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line,
          .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line {
            width: 100%;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -ms-flex-align: center;
            flex-align: center;
            -webkit-align-items: center;
            -moz-box-align-items: center;
            -ms-align-items: center;
            -webkit-align-items: center;
            align-items: center;
            -ms-flex-pack: justify;
            flex-pack: justify;
            -webkit-justify-content: space-between;
            -moz-box-justify-content: space-between;
            -ms-justify-content: space-between;
            -webkit-justify-content: space-between;
            justify-content: space-between; }
          .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .color-picker,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .color-picker,
          .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .color-picker {
            height: 15px; }
          .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .form-control,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .form-control,
          .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .form-control {
            min-height: 15px; }
          .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line:first-child .color-picker .clr-field button:after,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line:first-child .color-picker .clr-field button:after,
          .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line:first-child .color-picker .clr-field button:after {
            border-bottom: 0; }
          .add-data-editor-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line:last-child .color-picker .clr-field button:after,
          .add-ai-agent-block-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line:last-child .color-picker .clr-field button:after,
          .ai-agent-log-popup .setting-section .setting-item-row .color-scheme-row .custom-color-box.multi-color .custom-picker-line:last-child .color-picker .clr-field button:after {
            border-top: 0; }
  .add-data-editor-popup.add-chart-data .info-section .number-chart-box,
  .add-ai-agent-block-popup.add-chart-data .info-section .number-chart-box,
  .ai-agent-log-popup.add-chart-data .info-section .number-chart-box {
    position: relative;
    border: 1px solid #dddddd;
    min-width: 80px;
    min-height: 50px;
    height: 250px;
    resize: both;
    overflow: auto; }
    .add-data-editor-popup.add-chart-data .info-section .number-chart-box .inner-box,
    .add-ai-agent-block-popup.add-chart-data .info-section .number-chart-box .inner-box,
    .ai-agent-log-popup.add-chart-data .info-section .number-chart-box .inner-box {
      width: 100%;
      height: 100%; }
  .add-data-editor-popup.add-chart-data .info-section .chart-preview-position,
  .add-ai-agent-block-popup.add-chart-data .info-section .chart-preview-position,
  .ai-agent-log-popup.add-chart-data .info-section .chart-preview-position {
    width: 100%;
    height: 100%;
    border: 1px solid #dddddd;
    overflow: hidden; }
  .add-data-editor-popup.add-chart-data .info-section .chart-preview,
  .add-ai-agent-block-popup.add-chart-data .info-section .chart-preview,
  .ai-agent-log-popup.add-chart-data .info-section .chart-preview {
    width: 100%;
    height: 100%; }
  .add-data-editor-popup.add-chart-data .info-section .chart-list-box,
  .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box,
  .ai-agent-log-popup.add-chart-data .info-section .chart-list-box {
    flex: 1;
    overflow-y: auto; }
    .add-data-editor-popup.add-chart-data .info-section .chart-list-box .title,
    .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .title,
    .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .title {
      font-size: 18px;
      padding-left: 5px;
      padding-right: 5px;
      margin-bottom: 5px; }
    .add-data-editor-popup.add-chart-data .info-section .chart-list-box .inner-section,
    .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .inner-section,
    .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .inner-section {
      padding-top: 0;
      padding-left: 10px;
      padding-right: 10px; }
    .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-list,
    .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-list,
    .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-list {
      width: 100%;
      margin-left: 0;
      margin-right: 0; }
    .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-item,
    .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-item,
    .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-item {
      width: 33.33333%;
      padding: 5px;
      margin-bottom: 10px; }
      .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-item.active .chart-box,
      .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-item.active .chart-box,
      .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-item.active .chart-box {
        background-color: #5bf1ff;
        border-color: #5bf1ff;
        box-shadow: 0 0 0 3px #5bf1ff; }
    .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-box,
    .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-box,
    .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-box {
      width: 100%;
      border: 1px solid #ccc;
      transition: all .2s; }
      .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-box .title,
      .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-box .title,
      .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-box .title {
        text-align: left;
        font-size: 13px;
        padding: 3px 10px;
        font-weight: bold;
        border-bottom: 1px solid #eee;
        margin-bottom: 0; }
      .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-box img,
      .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-box img,
      .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-box img {
        margin: 0;
        border: 0;
        max-width: 100%; }
      .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-box:hover, .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-box:active, .add-data-editor-popup.add-chart-data .info-section .chart-list-box .chart-box:focus-visible,
      .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-box:hover,
      .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-box:active,
      .add-ai-agent-block-popup.add-chart-data .info-section .chart-list-box .chart-box:focus-visible,
      .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-box:hover,
      .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-box:active,
      .ai-agent-log-popup.add-chart-data .info-section .chart-list-box .chart-box:focus-visible {
        background-color: #5bf1ff;
        border-color: #5bf1ff;
        box-shadow: 0 0 0 3px #5bf1ff; }
  .add-data-editor-popup.add-chart-data .content-section .box-area .input-box,
  .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box,
  .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box {
    display: block;
    width: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-group,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-group,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-group {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .label,
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-check-label,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .label,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-check-label,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .label,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-check-label {
      margin-bottom: 0;
      white-space: nowrap;
      font-size: 14px;
      margin-right: 5px; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-control,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-control,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-control {
      width: 120px;
      border-top-right-radius: .25rem;
      border-bottom-right-radius: .25rem;
      font-size: 15px;
      height: 38px; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-control.radius,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-control.radius,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-control.radius {
      border-radius: .25rem; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-control.inline-input,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-control.inline-input,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-control.inline-input {
      display: inline-block; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-control.unit-input,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-control.unit-input,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-control.unit-input {
      width: 60px; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-check,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-check,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-check {
      height: 38px;
      margin-bottom: 0; }
      .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-check.flex-check,
      .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-check.flex-check,
      .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-check.flex-check {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .add-data-editor-popup.add-chart-data .content-section .box-area .input-box .form-check .form-check-input,
      .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box .form-check .form-check-input,
      .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box .form-check .form-check-input {
        margin-top: -8px; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box.maximum-box .form-control,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box.maximum-box .form-control,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box.maximum-box .form-control {
      width: 80px !important;
      text-align: center;
      border-color: #ff0000;
      padding-left: 3px;
      padding-right: 3px; }
    .add-data-editor-popup.add-chart-data .content-section .box-area .input-box.inline,
    .add-ai-agent-block-popup.add-chart-data .content-section .box-area .input-box.inline,
    .ai-agent-log-popup.add-chart-data .content-section .box-area .input-box.inline {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
  .add-data-editor-popup.add-chart-data .content-section .options-box,
  .add-ai-agent-block-popup.add-chart-data .content-section .options-box,
  .ai-agent-log-popup.add-chart-data .content-section .options-box {
    position: absolute;
    right: 0;
    padding: 0 5px;
    height: 36px;
    top: -38px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .label,
    .add-data-editor-popup.add-chart-data .content-section .options-box .form-check-label,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .label,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .form-check-label,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .label,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .form-check-label {
      margin-bottom: 0;
      white-space: nowrap;
      font-size: 12px; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .form-control,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .form-control,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .form-control {
      display: inline-block;
      height: auto !important;
      font-size: 14px !important; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .form-check,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .form-check,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .form-check {
      margin-bottom: 0;
      padding-left: 25px; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .input-box,
    .add-data-editor-popup.add-chart-data .content-section .options-box .input-group,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .input-box,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .input-group,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .input-box,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .input-group {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .unit-input,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .unit-input,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .unit-input {
      width: 60px; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .color-box .clr-field input.clr-input-color,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .color-box .clr-field input.clr-input-color,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .color-box .clr-field input.clr-input-color {
      max-width: 120px;
      text-align: left; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .color-box .clr-field button,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .color-box .clr-field button,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .color-box .clr-field button {
      width: 30px !important; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .color-box .form-control,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .color-box .form-control,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .color-box .form-control {
      margin: 0;
      border-top-left-radius: 0.2rem;
      border-bottom-left-radius: 0.2rem; }
    .add-data-editor-popup.add-chart-data .content-section .options-box .color-box .btn,
    .add-ai-agent-block-popup.add-chart-data .content-section .options-box .color-box .btn,
    .ai-agent-log-popup.add-chart-data .content-section .options-box .color-box .btn {
      border-color: #ced4da;
      min-width: 31px !important;
      width: 31px !important;
      height: 31px !important; }
  .add-data-editor-popup.add-location-data .info-section,
  .add-ai-agent-block-popup.add-location-data .info-section,
  .ai-agent-log-popup.add-location-data .info-section {
    width: 38%;
    max-width: 550px; }
    .add-data-editor-popup.add-location-data .info-section .location-list-box,
    .add-ai-agent-block-popup.add-location-data .info-section .location-list-box,
    .ai-agent-log-popup.add-location-data .info-section .location-list-box {
      position: relative;
      flex: 1;
      overflow-y: auto; }
      .add-data-editor-popup.add-location-data .info-section .location-list-box .title,
      .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .title,
      .ai-agent-log-popup.add-location-data .info-section .location-list-box .title {
        margin-bottom: 10px;
        font-size: 18px; }
      .add-data-editor-popup.add-location-data .info-section .location-list-box .upload-location-btn,
      .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .upload-location-btn,
      .ai-agent-log-popup.add-location-data .info-section .location-list-box .upload-location-btn {
        position: absolute;
        top: 0;
        right: 10px;
        font-size: 13px;
        margin-bottom: 0; }
        .add-data-editor-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon,
        .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon,
        .ai-agent-log-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon {
          position: relative;
          display: inline-block;
          font-size: 18px;
          color: #15a5b7;
          border: 1px solid #15a5b7;
          border-radius: 3px;
          width: 19px;
          height: 19px;
          vertical-align: middle;
          margin: 0 3px 2px 0; }
          .add-data-editor-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:before, .add-data-editor-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:after,
          .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:before,
          .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:after,
          .ai-agent-log-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:before,
          .ai-agent-log-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:after {
            position: absolute;
            display: block;
            content: "";
            width: 9px;
            height: 1px;
            background-color: #15a5b7;
            top: 8px;
            left: 4px; }
          .add-data-editor-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:after,
          .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:after,
          .ai-agent-log-popup.add-location-data .info-section .location-list-box .upload-location-btn .icon:after {
            transform: rotate(90deg); }
      .add-data-editor-popup.add-location-data .info-section .location-list-box .inner-section,
      .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .inner-section,
      .ai-agent-log-popup.add-location-data .info-section .location-list-box .inner-section {
        padding-top: 0; }
      .add-data-editor-popup.add-location-data .info-section .location-list-box .location-list,
      .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .location-list,
      .ai-agent-log-popup.add-location-data .info-section .location-list-box .location-list {
        width: 100%;
        margin-left: 0;
        margin-right: 0; }
      .add-data-editor-popup.add-location-data .info-section .location-list-box .location-item,
      .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .location-item,
      .ai-agent-log-popup.add-location-data .info-section .location-list-box .location-item {
        text-align: center; }
        .add-data-editor-popup.add-location-data .info-section .location-list-box .location-item img,
        .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .location-item img,
        .ai-agent-log-popup.add-location-data .info-section .location-list-box .location-item img {
          border: 1px solid #ffffff;
          max-width: 100%;
          margin: 10px auto;
          transition: border-color .3s; }
        .add-data-editor-popup.add-location-data .info-section .location-list-box .location-item img:hover,
        .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .location-item img:hover,
        .ai-agent-log-popup.add-location-data .info-section .location-list-box .location-item img:hover {
          border: 1px solid #f44336; }
        .add-data-editor-popup.add-location-data .info-section .location-list-box .location-item.active img,
        .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .location-item.active img,
        .ai-agent-log-popup.add-location-data .info-section .location-list-box .location-item.active img {
          border: 1px solid #f44336; }
      .add-data-editor-popup.add-location-data .info-section .location-list-box .btn-custom-marker-remove,
      .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .btn-custom-marker-remove,
      .ai-agent-log-popup.add-location-data .info-section .location-list-box .btn-custom-marker-remove {
        position: absolute;
        top: 5px;
        right: 0;
        padding: 0;
        margin: 0;
        color: #15a5b7;
        z-index: 5; }
        .add-data-editor-popup.add-location-data .info-section .location-list-box .btn-custom-marker-remove:hover,
        .add-ai-agent-block-popup.add-location-data .info-section .location-list-box .btn-custom-marker-remove:hover,
        .ai-agent-log-popup.add-location-data .info-section .location-list-box .btn-custom-marker-remove:hover {
          color: #1290a0; }
  .add-data-editor-popup.add-location-data .content-section .box-area .input-box,
  .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box,
  .ai-agent-log-popup.add-location-data .content-section .box-area .input-box {
    display: block;
    width: auto;
    margin-top: 3px;
    margin-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-group,
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .color-box,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-group,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .color-box,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-group,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .color-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      margin-top: 2px;
      margin-bottom: 2px; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .select-dropdown,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .select-dropdown,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .select-dropdown {
      margin-top: 2px;
      margin-bottom: 2px; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box label,
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .label,
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-check-label,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box label,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .label,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-check-label,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box label,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .label,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-check-label {
      margin-bottom: 0;
      white-space: nowrap;
      font-size: 14px;
      margin-right: 5px; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-control,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-control,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-control {
      width: 120px;
      border-top-right-radius: .25rem;
      border-bottom-right-radius: .25rem;
      font-size: 15px;
      height: 38px; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-control.short,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-control.short,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-control.short {
      width: 70px; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-control.radius,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-control.radius,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-control.radius {
      border-radius: .25rem; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-control.inline-input,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-control.inline-input,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-control.inline-input {
      display: inline-block; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-control.unit-input,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-control.unit-input,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-control.unit-input {
      width: 60px; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-check,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-check,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-check {
      height: 38px;
      margin-top: 2px;
      margin-bottom: 2px; }
      .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-check.flex-check,
      .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-check.flex-check,
      .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-check.flex-check {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .add-data-editor-popup.add-location-data .content-section .box-area .input-box .form-check .form-check-input,
      .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box .form-check .form-check-input,
      .ai-agent-log-popup.add-location-data .content-section .box-area .input-box .form-check .form-check-input {
        margin-top: -8px; }
    .add-data-editor-popup.add-location-data .content-section .box-area .input-box.inline,
    .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box.inline,
    .ai-agent-log-popup.add-location-data .content-section .box-area .input-box.inline {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      flex-wrap: wrap; }
      .add-data-editor-popup.add-location-data .content-section .box-area .input-box.inline .form-group + .form-group,
      .add-ai-agent-block-popup.add-location-data .content-section .box-area .input-box.inline .form-group + .form-group,
      .ai-agent-log-popup.add-location-data .content-section .box-area .input-box.inline .form-group + .form-group {
        margin-top: 2px; }
  .add-data-editor-popup.add-location-data .content-section .icon-set-box,
  .add-ai-agent-block-popup.add-location-data .content-section .icon-set-box,
  .ai-agent-log-popup.add-location-data .content-section .icon-set-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .add-data-editor-popup.add-location-data .content-section .icon-set-box .icon-img-box,
    .add-ai-agent-block-popup.add-location-data .content-section .icon-set-box .icon-img-box,
    .ai-agent-log-popup.add-location-data .content-section .icon-set-box .icon-img-box {
      width: 30px;
      height: 30px; }
      .add-data-editor-popup.add-location-data .content-section .icon-set-box .icon-img-box img,
      .add-ai-agent-block-popup.add-location-data .content-section .icon-set-box .icon-img-box img,
      .ai-agent-log-popup.add-location-data .content-section .icon-set-box .icon-img-box img {
        max-width: 100%;
        vertical-align: top; }
    .add-data-editor-popup.add-location-data .content-section .icon-set-box label.file-icon,
    .add-ai-agent-block-popup.add-location-data .content-section .icon-set-box label.file-icon,
    .ai-agent-log-popup.add-location-data .content-section .icon-set-box label.file-icon {
      font-size: 20px;
      margin: 0; }
    .add-data-editor-popup.add-location-data .content-section .icon-set-box .btn-icon-delete,
    .add-ai-agent-block-popup.add-location-data .content-section .icon-set-box .btn-icon-delete,
    .ai-agent-log-popup.add-location-data .content-section .icon-set-box .btn-icon-delete {
      width: 30px;
      height: 30px;
      background: transparent;
      color: #ed0001;
      font-size: 12px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
  .add-data-editor-popup.add-table-data .content-section .btn.sparkline-btn,
  .add-ai-agent-block-popup.add-table-data .content-section .btn.sparkline-btn,
  .ai-agent-log-popup.add-table-data .content-section .btn.sparkline-btn {
    overflow: visible; }
  .add-data-editor-popup.add-table-data .content-section .btn-add-sparkline,
  .add-ai-agent-block-popup.add-table-data .content-section .btn-add-sparkline,
  .ai-agent-log-popup.add-table-data .content-section .btn-add-sparkline {
    border: 1px solid #0073AE;
    background-color: #fff;
    padding-left: 5px;
    padding-right: 5px; }
  .add-data-editor-popup.add-table-data .content-section .sparkline-setting,
  .add-ai-agent-block-popup.add-table-data .content-section .sparkline-setting,
  .ai-agent-log-popup.add-table-data .content-section .sparkline-setting {
    position: relative;
    border: 1px solid #bfbfbf;
    background-color: #fff;
    padding: 20px 10px 10px;
    margin-left: -15px;
    margin-right: -15px; }
    .add-data-editor-popup.add-table-data .content-section .sparkline-setting .row-title,
    .add-ai-agent-block-popup.add-table-data .content-section .sparkline-setting .row-title,
    .ai-agent-log-popup.add-table-data .content-section .sparkline-setting .row-title {
      font-size: 15px; }
    .add-data-editor-popup.add-table-data .content-section .sparkline-setting > .row,
    .add-ai-agent-block-popup.add-table-data .content-section .sparkline-setting > .row,
    .ai-agent-log-popup.add-table-data .content-section .sparkline-setting > .row {
      margin-left: 0;
      margin-right: 0; }
    .add-data-editor-popup.add-table-data .content-section .sparkline-setting .color-box,
    .add-ai-agent-block-popup.add-table-data .content-section .sparkline-setting .color-box,
    .ai-agent-log-popup.add-table-data .content-section .sparkline-setting .color-box {
      position: absolute;
      top: 7px;
      right: 10px;
      height: 30px; }
      .add-data-editor-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field,
      .add-ai-agent-block-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field,
      .ai-agent-log-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field {
        width: 120px;
        height: 100%; }
        .add-data-editor-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field input.clr-input-color,
        .add-ai-agent-block-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field input.clr-input-color,
        .ai-agent-log-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field input.clr-input-color {
          max-width: 120px;
          text-align: left;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0;
          height: 100%;
          min-height: auto;
          padding-left: 5px;
          font-size: 14px; }
        .add-data-editor-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field button,
        .add-ai-agent-block-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field button,
        .ai-agent-log-popup.add-table-data .content-section .sparkline-setting .color-box .clr-field button {
          width: 30px; }
  .add-data-editor-popup.add-table-data .content-section .table-options,
  .add-ai-agent-block-popup.add-table-data .content-section .table-options,
  .ai-agent-log-popup.add-table-data .content-section .table-options {
    top: -26px;
    margin-bottom: 0;
    -ms-flex-pack: start;
    flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start; }
  .add-data-editor-popup.add-table-data .content-section .box-area .input-box-row,
  .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box-row,
  .ai-agent-log-popup.add-table-data .content-section .box-area .input-box-row {
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .add-data-editor-popup.add-table-data .content-section .box-area .action-row .input-box,
  .add-ai-agent-block-popup.add-table-data .content-section .box-area .action-row .input-box,
  .ai-agent-log-popup.add-table-data .content-section .box-area .action-row .input-box {
    flex: 1; }
  .add-data-editor-popup.add-table-data .content-section .box-area .input-box,
  .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box,
  .ai-agent-log-popup.add-table-data .content-section .box-area .input-box {
    display: block;
    width: auto;
    margin-top: 3px;
    margin-bottom: 3px;
    padding-left: 5px;
    padding-right: 5px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-group,
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .color-box,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-group,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .color-box,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-group,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .color-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      margin-top: 2px;
      margin-bottom: 2px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .select-dropdown,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .select-dropdown,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .select-dropdown {
      margin-top: 2px;
      margin-bottom: 2px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box label,
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .label,
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-check-label,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box label,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .label,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-check-label,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box label,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .label,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-check-label {
      margin-bottom: 0;
      white-space: nowrap;
      font-size: 14px;
      margin-right: 5px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-control,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-control,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-control {
      width: 120px;
      border-top-right-radius: .25rem;
      border-bottom-right-radius: .25rem;
      font-size: 15px;
      height: 38px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-control.short,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-control.short,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-control.short {
      width: 70px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-control.radius,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-control.radius,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-control.radius {
      border-radius: .25rem; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-control.inline-input,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-control.inline-input,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-control.inline-input {
      display: inline-block; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-control.unit-input,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-control.unit-input,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-control.unit-input {
      width: 60px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-check,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-check,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-check {
      height: 38px;
      margin-top: 2px;
      margin-bottom: 2px; }
      .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-check.flex-check,
      .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-check.flex-check,
      .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-check.flex-check {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .add-data-editor-popup.add-table-data .content-section .box-area .input-box .form-check .form-check-input,
      .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box .form-check .form-check-input,
      .ai-agent-log-popup.add-table-data .content-section .box-area .input-box .form-check .form-check-input {
        margin-top: -8px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .input-box.inline,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box.inline,
    .ai-agent-log-popup.add-table-data .content-section .box-area .input-box.inline {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap; }
      .add-data-editor-popup.add-table-data .content-section .box-area .input-box.inline .form-group + .form-group,
      .add-ai-agent-block-popup.add-table-data .content-section .box-area .input-box.inline .form-group + .form-group,
      .ai-agent-log-popup.add-table-data .content-section .box-area .input-box.inline .form-group + .form-group {
        margin-top: 2px; }
  .add-data-editor-popup.add-table-data .content-section .box-area .form-group.column,
  .add-ai-agent-block-popup.add-table-data .content-section .box-area .form-group.column,
  .ai-agent-log-popup.add-table-data .content-section .box-area .form-group.column {
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    flex-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align-items: flex-start;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start; }
    .add-data-editor-popup.add-table-data .content-section .box-area .form-group.column label,
    .add-data-editor-popup.add-table-data .content-section .box-area .form-group.column .label,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .form-group.column label,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .form-group.column .label,
    .ai-agent-log-popup.add-table-data .content-section .box-area .form-group.column label,
    .ai-agent-log-popup.add-table-data .content-section .box-area .form-group.column .label {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 11px;
      margin-right: 0;
      margin-bottom: 3px; }
    .add-data-editor-popup.add-table-data .content-section .box-area .form-group.column .form-control,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .form-group.column .form-control,
    .ai-agent-log-popup.add-table-data .content-section .box-area .form-group.column .form-control {
      margin: 0 auto; }
  .add-data-editor-popup.add-table-data .content-section .box-area .icon-box,
  .add-ai-agent-block-popup.add-table-data .content-section .box-area .icon-box,
  .ai-agent-log-popup.add-table-data .content-section .box-area .icon-box {
    border: 1px solid #ccc;
    background-color: #fff;
    width: 38px;
    height: 38px;
    border-radius: .25rem;
    margin-right: 2px; }
  .add-data-editor-popup.add-table-data .content-section .box-area .btn-add-img,
  .add-ai-agent-block-popup.add-table-data .content-section .box-area .btn-add-img,
  .ai-agent-log-popup.add-table-data .content-section .box-area .btn-add-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0; }
    .add-data-editor-popup.add-table-data .content-section .box-area .btn-add-img label.file-upload-label,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .btn-add-img label.file-upload-label,
    .ai-agent-log-popup.add-table-data .content-section .box-area .btn-add-img label.file-upload-label {
      width: 100%;
      height: 100%;
      margin: 0 !important;
      cursor: pointer;
      line-height: 1;
      font-size: 18px !important;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .add-data-editor-popup.add-table-data .content-section .box-area .btn-add-img .btn-icon-delete,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .btn-add-img .btn-icon-delete,
    .ai-agent-log-popup.add-table-data .content-section .box-area .btn-add-img .btn-icon-delete {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fff;
      color: #ed0001;
      font-size: 12px;
      display: none; }
    .add-data-editor-popup.add-table-data .content-section .box-area .btn-add-img:hover .btn-icon-delete, .add-data-editor-popup.add-table-data .content-section .box-area .btn-add-img:focus .btn-icon-delete,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .btn-add-img:hover .btn-icon-delete,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .btn-add-img:focus .btn-icon-delete,
    .ai-agent-log-popup.add-table-data .content-section .box-area .btn-add-img:hover .btn-icon-delete,
    .ai-agent-log-popup.add-table-data .content-section .box-area .btn-add-img:focus .btn-icon-delete {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
  .add-data-editor-popup.add-table-data .content-section .box-area .action-btn-box,
  .add-ai-agent-block-popup.add-table-data .content-section .box-area .action-btn-box,
  .ai-agent-log-popup.add-table-data .content-section .box-area .action-btn-box {
    width: 100%;
    height: 38px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .add-data-editor-popup.add-table-data .content-section .box-area .action-btn-box .btn-icon,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .action-btn-box .btn-icon,
    .ai-agent-log-popup.add-table-data .content-section .box-area .action-btn-box .btn-icon {
      padding: 0;
      margin: 0;
      border: none; }
    .add-data-editor-popup.add-table-data .content-section .box-area .action-btn-box .icon-action,
    .add-ai-agent-block-popup.add-table-data .content-section .box-area .action-btn-box .icon-action,
    .ai-agent-log-popup.add-table-data .content-section .box-area .action-btn-box .icon-action {
      width: 30px;
      min-width: 30px;
      height: 30px;
      background-color: transparent;
      background-image: url("/static/img/icon_no_action.png");
      background-size: 100%;
      background-repeat: no-repeat;
      background-position: center; }
      .add-data-editor-popup.add-table-data .content-section .box-area .action-btn-box .icon-action.on,
      .add-ai-agent-block-popup.add-table-data .content-section .box-area .action-btn-box .icon-action.on,
      .ai-agent-log-popup.add-table-data .content-section .box-area .action-btn-box .icon-action.on {
        background-image: url("/static/img/icon_action.png"); }
  .add-data-editor-popup.add-pivot-data .info-section,
  .add-ai-agent-block-popup.add-pivot-data .info-section,
  .ai-agent-log-popup.add-pivot-data .info-section {
    width: auto;
    flex: 1;
    min-width: auto;
    max-width: none; }
    .add-data-editor-popup.add-pivot-data .info-section .inner-section,
    .add-ai-agent-block-popup.add-pivot-data .info-section .inner-section,
    .ai-agent-log-popup.add-pivot-data .info-section .inner-section {
      width: 100%;
      height: 100%;
      padding: 20px 15px; }
    .add-data-editor-popup.add-pivot-data .info-section .data-item-name input,
    .add-ai-agent-block-popup.add-pivot-data .info-section .data-item-name input,
    .ai-agent-log-popup.add-pivot-data .info-section .data-item-name input {
      width: 75%; }
    .add-data-editor-popup.add-pivot-data .info-section .data-item-name .btn-box,
    .add-ai-agent-block-popup.add-pivot-data .info-section .data-item-name .btn-box,
    .ai-agent-log-popup.add-pivot-data .info-section .data-item-name .btn-box {
      position: absolute;
      top: 10px;
      right: 0;
      width: 23%; }
    .add-data-editor-popup.add-pivot-data .info-section .pivot-data,
    .add-ai-agent-block-popup.add-pivot-data .info-section .pivot-data,
    .ai-agent-log-popup.add-pivot-data .info-section .pivot-data {
      position: relative;
      width: 100%;
      height: calc(100% - 60px);
      margin-top: 20px; }
  .add-data-editor-popup.add-pivot-data .setting-section,
  .add-ai-agent-block-popup.add-pivot-data .setting-section,
  .ai-agent-log-popup.add-pivot-data .setting-section {
    border-left: 1px solid #000; }
  .add-data-editor-popup.add-dpg-api .dpg-wrap,
  .add-ai-agent-block-popup.add-dpg-api .dpg-wrap,
  .ai-agent-log-popup.add-dpg-api .dpg-wrap {
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
  .add-data-editor-popup.add-dpg-api .dpg-search,
  .add-ai-agent-block-popup.add-dpg-api .dpg-search,
  .ai-agent-log-popup.add-dpg-api .dpg-search {
    background-color: #fff;
    padding: 20px 30px 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .add-data-editor-popup.add-dpg-api .dpg-search form,
    .add-ai-agent-block-popup.add-dpg-api .dpg-search form,
    .ai-agent-log-popup.add-dpg-api .dpg-search form {
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .add-data-editor-popup.add-dpg-api .dpg-search .search-label,
    .add-ai-agent-block-popup.add-dpg-api .dpg-search .search-label,
    .ai-agent-log-popup.add-dpg-api .dpg-search .search-label {
      width: 40%;
      margin: 0;
      font-size: 20px; }
    .add-data-editor-popup.add-dpg-api .dpg-search .search-input,
    .add-ai-agent-block-popup.add-dpg-api .dpg-search .search-input,
    .ai-agent-log-popup.add-dpg-api .dpg-search .search-input {
      height: 50px;
      border: 2px solid #20366F;
      border-radius: 10px;
      font-size: 18px; }
    .add-data-editor-popup.add-dpg-api .dpg-search .search-btn,
    .add-ai-agent-block-popup.add-dpg-api .dpg-search .search-btn,
    .ai-agent-log-popup.add-dpg-api .dpg-search .search-btn {
      width: 50px;
      height: 50px;
      background-color: #20366F;
      font-size: 24px;
      color: #fff;
      border-radius: 10px;
      margin-left: 15px; }
  .add-data-editor-popup.add-dpg-api .api-type-tab,
  .add-ai-agent-block-popup.add-dpg-api .api-type-tab,
  .ai-agent-log-popup.add-dpg-api .api-type-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    padding: 10px 30px; }
    .add-data-editor-popup.add-dpg-api .api-type-tab .btn-tab,
    .add-ai-agent-block-popup.add-dpg-api .api-type-tab .btn-tab,
    .ai-agent-log-popup.add-dpg-api .api-type-tab .btn-tab {
      width: 190px;
      font-size: 18px;
      border-radius: 10px;
      margin: 0 5px; }
      .add-data-editor-popup.add-dpg-api .api-type-tab .btn-tab:hover, .add-data-editor-popup.add-dpg-api .api-type-tab .btn-tab:active, .add-data-editor-popup.add-dpg-api .api-type-tab .btn-tab:focus, .add-data-editor-popup.add-dpg-api .api-type-tab .btn-tab:focus-visible,
      .add-ai-agent-block-popup.add-dpg-api .api-type-tab .btn-tab:hover,
      .add-ai-agent-block-popup.add-dpg-api .api-type-tab .btn-tab:active,
      .add-ai-agent-block-popup.add-dpg-api .api-type-tab .btn-tab:focus,
      .add-ai-agent-block-popup.add-dpg-api .api-type-tab .btn-tab:focus-visible,
      .ai-agent-log-popup.add-dpg-api .api-type-tab .btn-tab:hover,
      .ai-agent-log-popup.add-dpg-api .api-type-tab .btn-tab:active,
      .ai-agent-log-popup.add-dpg-api .api-type-tab .btn-tab:focus,
      .ai-agent-log-popup.add-dpg-api .api-type-tab .btn-tab:focus-visible {
        background-color: #20366F;
        color: #fff; }
      .add-data-editor-popup.add-dpg-api .api-type-tab .btn-tab.active,
      .add-ai-agent-block-popup.add-dpg-api .api-type-tab .btn-tab.active,
      .ai-agent-log-popup.add-dpg-api .api-type-tab .btn-tab.active {
        background-color: #20366F;
        color: #fff; }
  .add-data-editor-popup.add-dpg-api .api-type-list,
  .add-ai-agent-block-popup.add-dpg-api .api-type-list,
  .ai-agent-log-popup.add-dpg-api .api-type-list {
    padding: 10px 20px;
    flex: 1;
    overflow-y: auto; }
    .add-data-editor-popup.add-dpg-api .api-type-list > .row,
    .add-ai-agent-block-popup.add-dpg-api .api-type-list > .row,
    .ai-agent-log-popup.add-dpg-api .api-type-list > .row {
      margin: 0; }
    .add-data-editor-popup.add-dpg-api .api-type-list .api-card-item,
    .add-ai-agent-block-popup.add-dpg-api .api-type-list .api-card-item,
    .ai-agent-log-popup.add-dpg-api .api-type-list .api-card-item {
      width: 280px;
      height: 240px;
      margin: 10px; }
    .add-data-editor-popup.add-dpg-api .api-type-list .card-item,
    .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item,
    .ai-agent-log-popup.add-dpg-api .api-type-list .card-item {
      width: 100%;
      height: 100%;
      background-color: #fff;
      border-radius: 10px;
      padding: 20px;
      border: 2px solid transparent;
      box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 1px;
      transition: all .2s;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .add-data-editor-popup.add-dpg-api .api-type-list .card-item:hover, .add-data-editor-popup.add-dpg-api .api-type-list .card-item:active, .add-data-editor-popup.add-dpg-api .api-type-list .card-item:focus, .add-data-editor-popup.add-dpg-api .api-type-list .card-item:focus-visible,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item:hover,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item:active,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item:focus,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item:focus-visible,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item:hover,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item:active,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item:focus,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item:focus-visible {
        border-color: #20366F; }
        .add-data-editor-popup.add-dpg-api .api-type-list .card-item:hover .badge, .add-data-editor-popup.add-dpg-api .api-type-list .card-item:active .badge, .add-data-editor-popup.add-dpg-api .api-type-list .card-item:focus .badge, .add-data-editor-popup.add-dpg-api .api-type-list .card-item:focus-visible .badge,
        .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item:hover .badge,
        .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item:active .badge,
        .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item:focus .badge,
        .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item:focus-visible .badge,
        .ai-agent-log-popup.add-dpg-api .api-type-list .card-item:hover .badge,
        .ai-agent-log-popup.add-dpg-api .api-type-list .card-item:active .badge,
        .ai-agent-log-popup.add-dpg-api .api-type-list .card-item:focus .badge,
        .ai-agent-log-popup.add-dpg-api .api-type-list .card-item:focus-visible .badge {
          background-color: #20366F;
          color: #fff; }
      .add-data-editor-popup.add-dpg-api .api-type-list .card-item .card-top,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item .card-top,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item .card-top {
        margin-bottom: 25px; }
      .add-data-editor-popup.add-dpg-api .api-type-list .card-item .badge,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item .badge,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item .badge {
        display: inline-block;
        padding: 8px 13px;
        border-radius: 10px;
        background-color: #f6f6f6;
        color: #333;
        font-size: 15px;
        font-weight: normal;
        transition: all .2s; }
      .add-data-editor-popup.add-dpg-api .api-type-list .card-item .title,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item .title,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item .title {
        font-size: 20px;
        font-weight: bold; }
      .add-data-editor-popup.add-dpg-api .api-type-list .card-item .card-bottom,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item .card-bottom,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item .card-bottom {
        margin-top: auto;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        font-size: 16px; }
      .add-data-editor-popup.add-dpg-api .api-type-list .card-item .category:after,
      .add-ai-agent-block-popup.add-dpg-api .api-type-list .card-item .category:after,
      .ai-agent-log-popup.add-dpg-api .api-type-list .card-item .category:after {
        display: inline-block;
        content: "";
        width: 1px;
        height: 12px;
        background-color: #BFBFBF;
        margin-left: 10px;
        margin-right: 10px; }
  .add-data-editor-popup.add-dpg-api .dpg-content,
  .add-ai-agent-block-popup.add-dpg-api .dpg-content,
  .ai-agent-log-popup.add-dpg-api .dpg-content {
    position: relative;
    height: calc(100% - 45px - 50px);
    overflow: hidden; }
    .add-data-editor-popup.add-dpg-api .dpg-content .dpg-wrap,
    .add-ai-agent-block-popup.add-dpg-api .dpg-content .dpg-wrap,
    .ai-agent-log-popup.add-dpg-api .dpg-content .dpg-wrap {
      padding-bottom: 100px;
      overflow-y: auto; }
    .add-data-editor-popup.add-dpg-api .dpg-content .api-view-bottom,
    .add-ai-agent-block-popup.add-dpg-api .dpg-content .api-view-bottom,
    .ai-agent-log-popup.add-dpg-api .dpg-content .api-view-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px; }
  .add-data-editor-popup.add-dpg-api .dpg-content + .data-footer,
  .add-ai-agent-block-popup.add-dpg-api .dpg-content + .data-footer,
  .ai-agent-log-popup.add-dpg-api .dpg-content + .data-footer {
    border: 1px solid #BFBFBF;
    height: 50px;
    padding: 10px 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .add-data-editor-popup.add-dpg-api .dpg-content + .data-footer .btn,
    .add-ai-agent-block-popup.add-dpg-api .dpg-content + .data-footer .btn,
    .ai-agent-log-popup.add-dpg-api .dpg-content + .data-footer .btn {
      flex: 1;
      margin: 0 5px;
      padding-top: 0;
      padding-bottom: 0; }
  .add-data-editor-popup.add-dpg-api .api-view-top,
  .add-ai-agent-block-popup.add-dpg-api .api-view-top,
  .ai-agent-log-popup.add-dpg-api .api-view-top {
    background-color: #fff;
    padding: 15px; }
  .add-data-editor-popup.add-dpg-api .api-info,
  .add-ai-agent-block-popup.add-dpg-api .api-info,
  .ai-agent-log-popup.add-dpg-api .api-info {
    padding: 0 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px; }
    .add-data-editor-popup.add-dpg-api .api-info .badge,
    .add-ai-agent-block-popup.add-dpg-api .api-info .badge,
    .ai-agent-log-popup.add-dpg-api .api-info .badge {
      display: inline-block;
      padding: 8px 13px;
      border-radius: 10px;
      background-color: #20366F;
      color: #fff;
      font-size: 15px;
      font-weight: normal; }
    .add-data-editor-popup.add-dpg-api .api-info .info-content,
    .add-ai-agent-block-popup.add-dpg-api .api-info .info-content,
    .ai-agent-log-popup.add-dpg-api .api-info .info-content {
      margin: 10px 0; }
    .add-data-editor-popup.add-dpg-api .api-info .title,
    .add-ai-agent-block-popup.add-dpg-api .api-info .title,
    .ai-agent-log-popup.add-dpg-api .api-info .title {
      font-size: 24px;
      font-weight: bold; }
    .add-data-editor-popup.add-dpg-api .api-info .info-bottom,
    .add-ai-agent-block-popup.add-dpg-api .api-info .info-bottom,
    .ai-agent-log-popup.add-dpg-api .api-info .info-bottom {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      font-size: 16px; }
    .add-data-editor-popup.add-dpg-api .api-info .category:after,
    .add-ai-agent-block-popup.add-dpg-api .api-info .category:after,
    .ai-agent-log-popup.add-dpg-api .api-info .category:after {
      display: inline-block;
      content: "";
      width: 1px;
      height: 12px;
      background-color: #BFBFBF;
      margin-left: 10px;
      margin-right: 10px; }
  .add-data-editor-popup.add-dpg-api .api-desc,
  .add-ai-agent-block-popup.add-dpg-api .api-desc,
  .ai-agent-log-popup.add-dpg-api .api-desc {
    border-top: 1px solid #ccc;
    padding: 15px 15px 0; }
    .add-data-editor-popup.add-dpg-api .api-desc .desc-title,
    .add-ai-agent-block-popup.add-dpg-api .api-desc .desc-title,
    .ai-agent-log-popup.add-dpg-api .api-desc .desc-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 5px; }
    .add-data-editor-popup.add-dpg-api .api-desc .ver,
    .add-ai-agent-block-popup.add-dpg-api .api-desc .ver,
    .ai-agent-log-popup.add-dpg-api .api-desc .ver {
      font-size: 18px; }
  .add-data-editor-popup.add-dpg-api .api-view-content,
  .add-ai-agent-block-popup.add-dpg-api .api-view-content,
  .ai-agent-log-popup.add-dpg-api .api-view-content {
    padding: 20px 30px; }
  .add-data-editor-popup.add-dpg-api .cont-row,
  .add-ai-agent-block-popup.add-dpg-api .cont-row,
  .ai-agent-log-popup.add-dpg-api .cont-row {
    margin-bottom: 50px; }
    .add-data-editor-popup.add-dpg-api .cont-row:last-child,
    .add-ai-agent-block-popup.add-dpg-api .cont-row:last-child,
    .ai-agent-log-popup.add-dpg-api .cont-row:last-child {
      margin-bottom: 0; }
    .add-data-editor-popup.add-dpg-api .cont-row .form-check,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .form-check,
    .ai-agent-log-popup.add-dpg-api .cont-row .form-check {
      padding-left: 2rem;
      font-size: 16px;
      margin-bottom: 5px; }
      .add-data-editor-popup.add-dpg-api .cont-row .form-check .form-check-input,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .form-check .form-check-input,
      .ai-agent-log-popup.add-dpg-api .cont-row .form-check .form-check-input {
        margin: -10px 0 0;
        top: 50%;
        left: 3px;
        cursor: pointer; }
      .add-data-editor-popup.add-dpg-api .cont-row .form-check .form-check-label,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .form-check .form-check-label,
      .ai-agent-log-popup.add-dpg-api .cont-row .form-check .form-check-label {
        cursor: pointer; }
      .add-data-editor-popup.add-dpg-api .cont-row .form-check .form-check-input:checked,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .form-check .form-check-input:checked,
      .ai-agent-log-popup.add-dpg-api .cont-row .form-check .form-check-input:checked {
        background-color: #15a5b7;
        border-color: #15a5b7; }
      .add-data-editor-popup.add-dpg-api .cont-row .form-check .form-check-input:focus,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .form-check .form-check-input:focus,
      .ai-agent-log-popup.add-dpg-api .cont-row .form-check .form-check-input:focus {
        border-color: #b1e6ea;
        box-shadow: 0 0 0 0.2rem rgba(177, 230, 234, 0.25); }
      .add-data-editor-popup.add-dpg-api .cont-row .form-check .form-check-input:checked + .form-check-label,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .form-check .form-check-input:checked + .form-check-label,
      .ai-agent-log-popup.add-dpg-api .cont-row .form-check .form-check-input:checked + .form-check-label {
        color: #15a5b7; }
    .add-data-editor-popup.add-dpg-api .cont-row .cont-title,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .cont-title,
    .ai-agent-log-popup.add-dpg-api .cont-row .cont-title {
      font-size: 18px;
      color: #20366F;
      margin-bottom: 10px;
      font-weight: bold; }
    .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-box,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-box,
    .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-box {
      margin-bottom: 10px; }
      .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-box:last-child,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-box:last-child,
      .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-box:last-child {
        margin-bottom: 0; }
    .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-top,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-top,
    .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-top {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-top .form-check,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-top .form-check,
      .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-top .form-check {
        width: auto;
        margin-bottom: 0; }
      .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-top .api-summary,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-top .api-summary,
      .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-top .api-summary {
        flex: 1;
        border: 1px solid #15a5b7;
        border-radius: 8px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        background-color: #fff; }
        .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .method,
        .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .url,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .method,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .url,
        .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .method,
        .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .url {
          display: block;
          padding: 5px 20px; }
        .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .method,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .method,
        .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-top .api-summary .method {
          width: 130px;
          text-align: center;
          border: 1px solid #15a5b7;
          border-radius: 8px;
          margin: -1px; }
        .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-top .api-summary.collapsed,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-top .api-summary.collapsed,
        .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-top .api-summary.collapsed {
          border-color: #ccc; }
          .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-top .api-summary.collapsed .method,
          .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-top .api-summary.collapsed .method,
          .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-top .api-summary.collapsed .method {
            border-color: #ccc; }
    .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-body,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-body,
    .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-body {
      padding: 20px 0 20px 32px; }
      .add-data-editor-popup.add-dpg-api .cont-row .api-collapse-body.collapsing,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .api-collapse-body.collapsing,
      .ai-agent-log-popup.add-dpg-api .cont-row .api-collapse-body.collapsing {
        -webkit-transition: none;
        transition: none;
        display: none; }
    .add-data-editor-popup.add-dpg-api .cont-row .collapse-inner-box,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .collapse-inner-box,
    .ai-agent-log-popup.add-dpg-api .cont-row .collapse-inner-box {
      margin-bottom: 30px; }
      .add-data-editor-popup.add-dpg-api .cont-row .collapse-inner-box .title,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .collapse-inner-box .title,
      .ai-agent-log-popup.add-dpg-api .cont-row .collapse-inner-box .title {
        font-size: 18px;
        margin-bottom: 5px; }
      .add-data-editor-popup.add-dpg-api .cont-row .collapse-inner-box .description,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .collapse-inner-box .description,
      .ai-agent-log-popup.add-dpg-api .cont-row .collapse-inner-box .description {
        font-size: 15px; }
      .add-data-editor-popup.add-dpg-api .cont-row .collapse-inner-box .request-area,
      .add-data-editor-popup.add-dpg-api .cont-row .collapse-inner-box .response-area,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .collapse-inner-box .request-area,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .collapse-inner-box .response-area,
      .ai-agent-log-popup.add-dpg-api .cont-row .collapse-inner-box .request-area,
      .ai-agent-log-popup.add-dpg-api .cont-row .collapse-inner-box .response-area {
        border: 1px solid #15a5b7;
        background-color: #fff;
        border-radius: 8px; }
    .add-data-editor-popup.add-dpg-api .cont-row .request-area,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area,
    .ai-agent-log-popup.add-dpg-api .cont-row .request-area {
      padding: 10px; }
      .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box,
      .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box {
        width: 100%; }
        .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box tr:last-child th, .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box tr:last-child td,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box tr:last-child th,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box tr:last-child td,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box tr:last-child th,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box tr:last-child td {
          border-bottom: 0; }
        .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box th, .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box td,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box th,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box td,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box th,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box td {
          font-size: 14px;
          font-weight: normal;
          border-bottom: 1px solid #ccc;
          padding: 5px 10px; }
        .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box th,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box th,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box th {
          text-align: right;
          width: 180px;
          line-height: 1.3; }
        .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box .params,
        .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box .type,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box .params,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box .type,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box .params,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box .type {
          display: block; }
        .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box .params,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box .params,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box .params {
          font-size: 13px; }
          .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box .params.required:before,
          .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box .params.required:before,
          .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box .params.required:before {
            content: "*";
            color: #f00;
            display: inline-block;
            margin-bottom: -1px;
            margin-right: 5px;
            line-height: 1; }
        .add-data-editor-popup.add-dpg-api .cont-row .request-area .table-box .type,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .request-area .table-box .type,
        .ai-agent-log-popup.add-dpg-api .cont-row .request-area .table-box .type {
          font-size: 12px;
          color: #999; }
    .add-data-editor-popup.add-dpg-api .cont-row .response-area,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .response-area,
    .ai-agent-log-popup.add-dpg-api .cont-row .response-area {
      overflow: hidden; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-area textarea,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-area textarea,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-area textarea {
        border: 0;
        width: 100%;
        height: 100%; }
    .add-data-editor-popup.add-dpg-api .cont-row .response-table,
    .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table,
    .ai-agent-log-popup.add-dpg-api .cont-row .response-table {
      font-size: 14px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .table,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table {
        margin-bottom: 5px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .table-header,
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .table-row,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table-header,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table-row,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table-header,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table-row {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .table-header,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table-header,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table-header {
        padding: 8px 4px;
        border-bottom: 1px solid #ccc;
        background-color: #f6f6f6; }
        .add-data-editor-popup.add-dpg-api .cont-row .response-table .table-header .key-field,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table-header .key-field,
        .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table-header .key-field {
          padding-left: 30px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .table-row,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table-row,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table-row {
        padding: 4px;
        border-bottom: 1px dotted #ccc; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .key-field,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .key-field,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .key-field {
        width: 300px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .key-type,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .key-type,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .key-type {
        width: 150px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .table-row .key-field,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table-row .key-field,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table-row .key-field {
        padding-left: 40px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .table-row .key-type,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table-row .key-type,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table-row .key-type {
        font-size: 12px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .table-row .key-desc,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .table-row .key-desc,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .table-row .key-desc {
        font-size: 12px;
        color: #999; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .toggle-object,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .toggle-object,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .toggle-object {
        position: relative;
        width: 15px;
        height: 15px;
        border-radius: 2px;
        border: 1px solid transparent;
        display: inline-block;
        margin-left: -20px;
        margin-bottom: -2px;
        line-height: 1; }
        .add-data-editor-popup.add-dpg-api .cont-row .response-table .toggle-object:before, .add-data-editor-popup.add-dpg-api .cont-row .response-table .toggle-object:after,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .toggle-object:before,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .toggle-object:after,
        .ai-agent-log-popup.add-dpg-api .cont-row .response-table .toggle-object:before,
        .ai-agent-log-popup.add-dpg-api .cont-row .response-table .toggle-object:after {
          position: absolute;
          display: block;
          content: "";
          width: 7px;
          height: 1px;
          background-color: #15a5b7;
          top: 6px;
          left: 3px; }
        .add-data-editor-popup.add-dpg-api .cont-row .response-table .toggle-object:after,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .toggle-object:after,
        .ai-agent-log-popup.add-dpg-api .cont-row .response-table .toggle-object:after {
          display: none;
          transform: rotate(90deg); }
        .add-data-editor-popup.add-dpg-api .cont-row .response-table .toggle-object.collapsed:after,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .toggle-object.collapsed:after,
        .ai-agent-log-popup.add-dpg-api .cont-row .response-table .toggle-object.collapsed:after {
          display: block; }
        .add-data-editor-popup.add-dpg-api .cont-row .response-table .toggle-object:hover,
        .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .toggle-object:hover,
        .ai-agent-log-popup.add-dpg-api .cont-row .response-table .toggle-object:hover {
          border-color: #15a5b7; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .object-body .key-field,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .object-body .key-field,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .object-body .key-field {
        padding-left: 55px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .object-body > .object-body .key-field,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .object-body > .object-body .key-field,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .object-body > .object-body .key-field {
        padding-left: 70px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .object-body > .object-body > .object-body .key-field,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .object-body > .object-body > .object-body .key-field,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .object-body > .object-body > .object-body .key-field {
        padding-left: 85px; }
      .add-data-editor-popup.add-dpg-api .cont-row .response-table .object-body > .object-body > .object-body > .object-body .key-field,
      .add-ai-agent-block-popup.add-dpg-api .cont-row .response-table .object-body > .object-body > .object-body > .object-body .key-field,
      .ai-agent-log-popup.add-dpg-api .cont-row .response-table .object-body > .object-body > .object-body > .object-body .key-field {
        padding-left: 100px; }
  .add-data-editor-popup.add-dpg-api .api-view-bottom,
  .add-ai-agent-block-popup.add-dpg-api .api-view-bottom,
  .ai-agent-log-popup.add-dpg-api .api-view-bottom {
    background-color: #fff;
    padding: 10px 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .add-data-editor-popup.add-dpg-api .api-view-bottom .api-name-box,
    .add-ai-agent-block-popup.add-dpg-api .api-view-bottom .api-name-box,
    .ai-agent-log-popup.add-dpg-api .api-view-bottom .api-name-box {
      width: 100%; }
    .add-data-editor-popup.add-dpg-api .api-view-bottom .api-name,
    .add-ai-agent-block-popup.add-dpg-api .api-view-bottom .api-name,
    .ai-agent-log-popup.add-dpg-api .api-view-bottom .api-name {
      margin-bottom: 5px;
      font-size: 15px;
      color: #20366F;
      font-weight: bold; }
    .add-data-editor-popup.add-dpg-api .api-view-bottom .form-control,
    .add-ai-agent-block-popup.add-dpg-api .api-view-bottom .form-control,
    .ai-agent-log-popup.add-dpg-api .api-view-bottom .form-control {
      border: 1px solid #20366F;
      border-radius: 8px; }
  .add-data-editor-popup.add-data-popup,
  .add-ai-agent-block-popup.add-data-popup,
  .ai-agent-log-popup.add-data-popup {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .add-data-editor-popup.add-data-popup .popup-content,
    .add-ai-agent-block-popup.add-data-popup .popup-content,
    .ai-agent-log-popup.add-data-popup .popup-content {
      position: relative;
      height: auto;
      flex: 1;
      min-height: 700px;
      overflow-y: auto; }
    .add-data-editor-popup.add-data-popup .popup-content + .data-footer,
    .add-ai-agent-block-popup.add-data-popup .popup-content + .data-footer,
    .ai-agent-log-popup.add-data-popup .popup-content + .data-footer {
      border: 1px solid #BFBFBF;
      height: 50px;
      padding: 10px 5px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center; }
      .add-data-editor-popup.add-data-popup .popup-content + .data-footer .btn,
      .add-ai-agent-block-popup.add-data-popup .popup-content + .data-footer .btn,
      .ai-agent-log-popup.add-data-popup .popup-content + .data-footer .btn {
        flex: 1;
        margin: 0 5px;
        padding-top: 0;
        padding-bottom: 0; }
    .add-data-editor-popup.add-data-popup .api-area,
    .add-data-editor-popup.add-data-popup .iot-area,
    .add-data-editor-popup.add-data-popup .gateway-area,
    .add-data-editor-popup.add-data-popup .union-area,
    .add-ai-agent-block-popup.add-data-popup .api-area,
    .add-ai-agent-block-popup.add-data-popup .iot-area,
    .add-ai-agent-block-popup.add-data-popup .gateway-area,
    .add-ai-agent-block-popup.add-data-popup .union-area,
    .ai-agent-log-popup.add-data-popup .api-area,
    .ai-agent-log-popup.add-data-popup .iot-area,
    .ai-agent-log-popup.add-data-popup .gateway-area,
    .ai-agent-log-popup.add-data-popup .union-area {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 0;
      z-index: 1;
      overflow-y: auto; }
      .add-data-editor-popup.add-data-popup .api-area form,
      .add-data-editor-popup.add-data-popup .api-area .form,
      .add-data-editor-popup.add-data-popup .iot-area form,
      .add-data-editor-popup.add-data-popup .iot-area .form,
      .add-data-editor-popup.add-data-popup .gateway-area form,
      .add-data-editor-popup.add-data-popup .gateway-area .form,
      .add-data-editor-popup.add-data-popup .union-area form,
      .add-data-editor-popup.add-data-popup .union-area .form,
      .add-ai-agent-block-popup.add-data-popup .api-area form,
      .add-ai-agent-block-popup.add-data-popup .api-area .form,
      .add-ai-agent-block-popup.add-data-popup .iot-area form,
      .add-ai-agent-block-popup.add-data-popup .iot-area .form,
      .add-ai-agent-block-popup.add-data-popup .gateway-area form,
      .add-ai-agent-block-popup.add-data-popup .gateway-area .form,
      .add-ai-agent-block-popup.add-data-popup .union-area form,
      .add-ai-agent-block-popup.add-data-popup .union-area .form,
      .ai-agent-log-popup.add-data-popup .api-area form,
      .ai-agent-log-popup.add-data-popup .api-area .form,
      .ai-agent-log-popup.add-data-popup .iot-area form,
      .ai-agent-log-popup.add-data-popup .iot-area .form,
      .ai-agent-log-popup.add-data-popup .gateway-area form,
      .ai-agent-log-popup.add-data-popup .gateway-area .form,
      .ai-agent-log-popup.add-data-popup .union-area form,
      .ai-agent-log-popup.add-data-popup .union-area .form {
        width: 100%;
        height: 100%; }
        .add-data-editor-popup.add-data-popup .api-area form > .row,
        .add-data-editor-popup.add-data-popup .api-area .form > .row,
        .add-data-editor-popup.add-data-popup .iot-area form > .row,
        .add-data-editor-popup.add-data-popup .iot-area .form > .row,
        .add-data-editor-popup.add-data-popup .gateway-area form > .row,
        .add-data-editor-popup.add-data-popup .gateway-area .form > .row,
        .add-data-editor-popup.add-data-popup .union-area form > .row,
        .add-data-editor-popup.add-data-popup .union-area .form > .row,
        .add-ai-agent-block-popup.add-data-popup .api-area form > .row,
        .add-ai-agent-block-popup.add-data-popup .api-area .form > .row,
        .add-ai-agent-block-popup.add-data-popup .iot-area form > .row,
        .add-ai-agent-block-popup.add-data-popup .iot-area .form > .row,
        .add-ai-agent-block-popup.add-data-popup .gateway-area form > .row,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .form > .row,
        .add-ai-agent-block-popup.add-data-popup .union-area form > .row,
        .add-ai-agent-block-popup.add-data-popup .union-area .form > .row,
        .ai-agent-log-popup.add-data-popup .api-area form > .row,
        .ai-agent-log-popup.add-data-popup .api-area .form > .row,
        .ai-agent-log-popup.add-data-popup .iot-area form > .row,
        .ai-agent-log-popup.add-data-popup .iot-area .form > .row,
        .ai-agent-log-popup.add-data-popup .gateway-area form > .row,
        .ai-agent-log-popup.add-data-popup .gateway-area .form > .row,
        .ai-agent-log-popup.add-data-popup .union-area form > .row,
        .ai-agent-log-popup.add-data-popup .union-area .form > .row {
          height: calc(100% - 58px);
          margin-left: 0;
          margin-right: 0; }
          .add-data-editor-popup.add-data-popup .api-area form > .row > .col-8,
          .add-data-editor-popup.add-data-popup .api-area form > .row > .col-4,
          .add-data-editor-popup.add-data-popup .api-area .form > .row > .col-8,
          .add-data-editor-popup.add-data-popup .api-area .form > .row > .col-4,
          .add-data-editor-popup.add-data-popup .iot-area form > .row > .col-8,
          .add-data-editor-popup.add-data-popup .iot-area form > .row > .col-4,
          .add-data-editor-popup.add-data-popup .iot-area .form > .row > .col-8,
          .add-data-editor-popup.add-data-popup .iot-area .form > .row > .col-4,
          .add-data-editor-popup.add-data-popup .gateway-area form > .row > .col-8,
          .add-data-editor-popup.add-data-popup .gateway-area form > .row > .col-4,
          .add-data-editor-popup.add-data-popup .gateway-area .form > .row > .col-8,
          .add-data-editor-popup.add-data-popup .gateway-area .form > .row > .col-4,
          .add-data-editor-popup.add-data-popup .union-area form > .row > .col-8,
          .add-data-editor-popup.add-data-popup .union-area form > .row > .col-4,
          .add-data-editor-popup.add-data-popup .union-area .form > .row > .col-8,
          .add-data-editor-popup.add-data-popup .union-area .form > .row > .col-4,
          .add-ai-agent-block-popup.add-data-popup .api-area form > .row > .col-8,
          .add-ai-agent-block-popup.add-data-popup .api-area form > .row > .col-4,
          .add-ai-agent-block-popup.add-data-popup .api-area .form > .row > .col-8,
          .add-ai-agent-block-popup.add-data-popup .api-area .form > .row > .col-4,
          .add-ai-agent-block-popup.add-data-popup .iot-area form > .row > .col-8,
          .add-ai-agent-block-popup.add-data-popup .iot-area form > .row > .col-4,
          .add-ai-agent-block-popup.add-data-popup .iot-area .form > .row > .col-8,
          .add-ai-agent-block-popup.add-data-popup .iot-area .form > .row > .col-4,
          .add-ai-agent-block-popup.add-data-popup .gateway-area form > .row > .col-8,
          .add-ai-agent-block-popup.add-data-popup .gateway-area form > .row > .col-4,
          .add-ai-agent-block-popup.add-data-popup .gateway-area .form > .row > .col-8,
          .add-ai-agent-block-popup.add-data-popup .gateway-area .form > .row > .col-4,
          .add-ai-agent-block-popup.add-data-popup .union-area form > .row > .col-8,
          .add-ai-agent-block-popup.add-data-popup .union-area form > .row > .col-4,
          .add-ai-agent-block-popup.add-data-popup .union-area .form > .row > .col-8,
          .add-ai-agent-block-popup.add-data-popup .union-area .form > .row > .col-4,
          .ai-agent-log-popup.add-data-popup .api-area form > .row > .col-8,
          .ai-agent-log-popup.add-data-popup .api-area form > .row > .col-4,
          .ai-agent-log-popup.add-data-popup .api-area .form > .row > .col-8,
          .ai-agent-log-popup.add-data-popup .api-area .form > .row > .col-4,
          .ai-agent-log-popup.add-data-popup .iot-area form > .row > .col-8,
          .ai-agent-log-popup.add-data-popup .iot-area form > .row > .col-4,
          .ai-agent-log-popup.add-data-popup .iot-area .form > .row > .col-8,
          .ai-agent-log-popup.add-data-popup .iot-area .form > .row > .col-4,
          .ai-agent-log-popup.add-data-popup .gateway-area form > .row > .col-8,
          .ai-agent-log-popup.add-data-popup .gateway-area form > .row > .col-4,
          .ai-agent-log-popup.add-data-popup .gateway-area .form > .row > .col-8,
          .ai-agent-log-popup.add-data-popup .gateway-area .form > .row > .col-4,
          .ai-agent-log-popup.add-data-popup .union-area form > .row > .col-8,
          .ai-agent-log-popup.add-data-popup .union-area form > .row > .col-4,
          .ai-agent-log-popup.add-data-popup .union-area .form > .row > .col-8,
          .ai-agent-log-popup.add-data-popup .union-area .form > .row > .col-4 {
            height: 100%; }
      .add-data-editor-popup.add-data-popup .api-area .header,
      .add-data-editor-popup.add-data-popup .iot-area .header,
      .add-data-editor-popup.add-data-popup .gateway-area .header,
      .add-data-editor-popup.add-data-popup .union-area .header,
      .add-ai-agent-block-popup.add-data-popup .api-area .header,
      .add-ai-agent-block-popup.add-data-popup .iot-area .header,
      .add-ai-agent-block-popup.add-data-popup .gateway-area .header,
      .add-ai-agent-block-popup.add-data-popup .union-area .header,
      .ai-agent-log-popup.add-data-popup .api-area .header,
      .ai-agent-log-popup.add-data-popup .iot-area .header,
      .ai-agent-log-popup.add-data-popup .gateway-area .header,
      .ai-agent-log-popup.add-data-popup .union-area .header {
        padding: 10px; }
        .add-data-editor-popup.add-data-popup .api-area .header .input-group,
        .add-data-editor-popup.add-data-popup .iot-area .header .input-group,
        .add-data-editor-popup.add-data-popup .gateway-area .header .input-group,
        .add-data-editor-popup.add-data-popup .union-area .header .input-group,
        .add-ai-agent-block-popup.add-data-popup .api-area .header .input-group,
        .add-ai-agent-block-popup.add-data-popup .iot-area .header .input-group,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .header .input-group,
        .add-ai-agent-block-popup.add-data-popup .union-area .header .input-group,
        .ai-agent-log-popup.add-data-popup .api-area .header .input-group,
        .ai-agent-log-popup.add-data-popup .iot-area .header .input-group,
        .ai-agent-log-popup.add-data-popup .gateway-area .header .input-group,
        .ai-agent-log-popup.add-data-popup .union-area .header .input-group {
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center; }
        .add-data-editor-popup.add-data-popup .api-area .header .label,
        .add-data-editor-popup.add-data-popup .iot-area .header .label,
        .add-data-editor-popup.add-data-popup .gateway-area .header .label,
        .add-data-editor-popup.add-data-popup .union-area .header .label,
        .add-ai-agent-block-popup.add-data-popup .api-area .header .label,
        .add-ai-agent-block-popup.add-data-popup .iot-area .header .label,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .header .label,
        .add-ai-agent-block-popup.add-data-popup .union-area .header .label,
        .ai-agent-log-popup.add-data-popup .api-area .header .label,
        .ai-agent-log-popup.add-data-popup .iot-area .header .label,
        .ai-agent-log-popup.add-data-popup .gateway-area .header .label,
        .ai-agent-log-popup.add-data-popup .union-area .header .label {
          color: #999;
          margin-right: 10px;
          margin-bottom: 0;
          padding: 0 10px; }
        .add-data-editor-popup.add-data-popup .api-area .header.header-column,
        .add-data-editor-popup.add-data-popup .iot-area .header.header-column,
        .add-data-editor-popup.add-data-popup .gateway-area .header.header-column,
        .add-data-editor-popup.add-data-popup .union-area .header.header-column,
        .add-ai-agent-block-popup.add-data-popup .api-area .header.header-column,
        .add-ai-agent-block-popup.add-data-popup .iot-area .header.header-column,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .header.header-column,
        .add-ai-agent-block-popup.add-data-popup .union-area .header.header-column,
        .ai-agent-log-popup.add-data-popup .api-area .header.header-column,
        .ai-agent-log-popup.add-data-popup .iot-area .header.header-column,
        .ai-agent-log-popup.add-data-popup .gateway-area .header.header-column,
        .ai-agent-log-popup.add-data-popup .union-area .header.header-column {
          -webkit-box-flex-direction: column;
          -moz-box-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column; }
          .add-data-editor-popup.add-data-popup .api-area .header.header-column .input-group,
          .add-data-editor-popup.add-data-popup .iot-area .header.header-column .input-group,
          .add-data-editor-popup.add-data-popup .gateway-area .header.header-column .input-group,
          .add-data-editor-popup.add-data-popup .union-area .header.header-column .input-group,
          .add-ai-agent-block-popup.add-data-popup .api-area .header.header-column .input-group,
          .add-ai-agent-block-popup.add-data-popup .iot-area .header.header-column .input-group,
          .add-ai-agent-block-popup.add-data-popup .gateway-area .header.header-column .input-group,
          .add-ai-agent-block-popup.add-data-popup .union-area .header.header-column .input-group,
          .ai-agent-log-popup.add-data-popup .api-area .header.header-column .input-group,
          .ai-agent-log-popup.add-data-popup .iot-area .header.header-column .input-group,
          .ai-agent-log-popup.add-data-popup .gateway-area .header.header-column .input-group,
          .ai-agent-log-popup.add-data-popup .union-area .header.header-column .input-group {
            margin-bottom: 10px; }
            .add-data-editor-popup.add-data-popup .api-area .header.header-column .input-group:last-child,
            .add-data-editor-popup.add-data-popup .iot-area .header.header-column .input-group:last-child,
            .add-data-editor-popup.add-data-popup .gateway-area .header.header-column .input-group:last-child,
            .add-data-editor-popup.add-data-popup .union-area .header.header-column .input-group:last-child,
            .add-ai-agent-block-popup.add-data-popup .api-area .header.header-column .input-group:last-child,
            .add-ai-agent-block-popup.add-data-popup .iot-area .header.header-column .input-group:last-child,
            .add-ai-agent-block-popup.add-data-popup .gateway-area .header.header-column .input-group:last-child,
            .add-ai-agent-block-popup.add-data-popup .union-area .header.header-column .input-group:last-child,
            .ai-agent-log-popup.add-data-popup .api-area .header.header-column .input-group:last-child,
            .ai-agent-log-popup.add-data-popup .iot-area .header.header-column .input-group:last-child,
            .ai-agent-log-popup.add-data-popup .gateway-area .header.header-column .input-group:last-child,
            .ai-agent-log-popup.add-data-popup .union-area .header.header-column .input-group:last-child {
              margin-bottom: 0; }
          .add-data-editor-popup.add-data-popup .api-area .header.header-column textarea.form-control,
          .add-data-editor-popup.add-data-popup .iot-area .header.header-column textarea.form-control,
          .add-data-editor-popup.add-data-popup .gateway-area .header.header-column textarea.form-control,
          .add-data-editor-popup.add-data-popup .union-area .header.header-column textarea.form-control,
          .add-ai-agent-block-popup.add-data-popup .api-area .header.header-column textarea.form-control,
          .add-ai-agent-block-popup.add-data-popup .iot-area .header.header-column textarea.form-control,
          .add-ai-agent-block-popup.add-data-popup .gateway-area .header.header-column textarea.form-control,
          .add-ai-agent-block-popup.add-data-popup .union-area .header.header-column textarea.form-control,
          .ai-agent-log-popup.add-data-popup .api-area .header.header-column textarea.form-control,
          .ai-agent-log-popup.add-data-popup .iot-area .header.header-column textarea.form-control,
          .ai-agent-log-popup.add-data-popup .gateway-area .header.header-column textarea.form-control,
          .ai-agent-log-popup.add-data-popup .union-area .header.header-column textarea.form-control {
            height: 38px; }
      .add-data-editor-popup.add-data-popup .api-area .left-area,
      .add-data-editor-popup.add-data-popup .api-area .right-area,
      .add-data-editor-popup.add-data-popup .iot-area .left-area,
      .add-data-editor-popup.add-data-popup .iot-area .right-area,
      .add-data-editor-popup.add-data-popup .gateway-area .left-area,
      .add-data-editor-popup.add-data-popup .gateway-area .right-area,
      .add-data-editor-popup.add-data-popup .union-area .left-area,
      .add-data-editor-popup.add-data-popup .union-area .right-area,
      .add-ai-agent-block-popup.add-data-popup .api-area .left-area,
      .add-ai-agent-block-popup.add-data-popup .api-area .right-area,
      .add-ai-agent-block-popup.add-data-popup .iot-area .left-area,
      .add-ai-agent-block-popup.add-data-popup .iot-area .right-area,
      .add-ai-agent-block-popup.add-data-popup .gateway-area .left-area,
      .add-ai-agent-block-popup.add-data-popup .gateway-area .right-area,
      .add-ai-agent-block-popup.add-data-popup .union-area .left-area,
      .add-ai-agent-block-popup.add-data-popup .union-area .right-area,
      .ai-agent-log-popup.add-data-popup .api-area .left-area,
      .ai-agent-log-popup.add-data-popup .api-area .right-area,
      .ai-agent-log-popup.add-data-popup .iot-area .left-area,
      .ai-agent-log-popup.add-data-popup .iot-area .right-area,
      .ai-agent-log-popup.add-data-popup .gateway-area .left-area,
      .ai-agent-log-popup.add-data-popup .gateway-area .right-area,
      .ai-agent-log-popup.add-data-popup .union-area .left-area,
      .ai-agent-log-popup.add-data-popup .union-area .right-area {
        padding: 0;
        margin-left: -15px;
        margin-right: -15px;
        height: 100%;
        overflow: hidden; }
      .add-data-editor-popup.add-data-popup .api-area .status-code,
      .add-data-editor-popup.add-data-popup .iot-area .status-code,
      .add-data-editor-popup.add-data-popup .gateway-area .status-code,
      .add-data-editor-popup.add-data-popup .union-area .status-code,
      .add-ai-agent-block-popup.add-data-popup .api-area .status-code,
      .add-ai-agent-block-popup.add-data-popup .iot-area .status-code,
      .add-ai-agent-block-popup.add-data-popup .gateway-area .status-code,
      .add-ai-agent-block-popup.add-data-popup .union-area .status-code,
      .ai-agent-log-popup.add-data-popup .api-area .status-code,
      .ai-agent-log-popup.add-data-popup .iot-area .status-code,
      .ai-agent-log-popup.add-data-popup .gateway-area .status-code,
      .ai-agent-log-popup.add-data-popup .union-area .status-code {
        position: absolute;
        right: 10px;
        top: 13px;
        font-size: 0.8em;
        width: 130px; }
        .add-data-editor-popup.add-data-popup .api-area .status-code span,
        .add-data-editor-popup.add-data-popup .iot-area .status-code span,
        .add-data-editor-popup.add-data-popup .gateway-area .status-code span,
        .add-data-editor-popup.add-data-popup .union-area .status-code span,
        .add-ai-agent-block-popup.add-data-popup .api-area .status-code span,
        .add-ai-agent-block-popup.add-data-popup .iot-area .status-code span,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .status-code span,
        .add-ai-agent-block-popup.add-data-popup .union-area .status-code span,
        .ai-agent-log-popup.add-data-popup .api-area .status-code span,
        .ai-agent-log-popup.add-data-popup .iot-area .status-code span,
        .ai-agent-log-popup.add-data-popup .gateway-area .status-code span,
        .ai-agent-log-popup.add-data-popup .union-area .status-code span {
          color: #0d6efd; }
      .add-data-editor-popup.add-data-popup .api-area .response-area,
      .add-data-editor-popup.add-data-popup .iot-area .response-area,
      .add-data-editor-popup.add-data-popup .gateway-area .response-area,
      .add-data-editor-popup.add-data-popup .union-area .response-area,
      .add-ai-agent-block-popup.add-data-popup .api-area .response-area,
      .add-ai-agent-block-popup.add-data-popup .iot-area .response-area,
      .add-ai-agent-block-popup.add-data-popup .gateway-area .response-area,
      .add-ai-agent-block-popup.add-data-popup .union-area .response-area,
      .ai-agent-log-popup.add-data-popup .api-area .response-area,
      .ai-agent-log-popup.add-data-popup .iot-area .response-area,
      .ai-agent-log-popup.add-data-popup .gateway-area .response-area,
      .ai-agent-log-popup.add-data-popup .union-area .response-area {
        padding: 0; }
        .add-data-editor-popup.add-data-popup .api-area .response-area .response-text,
        .add-data-editor-popup.add-data-popup .iot-area .response-area .response-text,
        .add-data-editor-popup.add-data-popup .gateway-area .response-area .response-text,
        .add-data-editor-popup.add-data-popup .union-area .response-area .response-text,
        .add-ai-agent-block-popup.add-data-popup .api-area .response-area .response-text,
        .add-ai-agent-block-popup.add-data-popup .iot-area .response-area .response-text,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .response-area .response-text,
        .add-ai-agent-block-popup.add-data-popup .union-area .response-area .response-text,
        .ai-agent-log-popup.add-data-popup .api-area .response-area .response-text,
        .ai-agent-log-popup.add-data-popup .iot-area .response-area .response-text,
        .ai-agent-log-popup.add-data-popup .gateway-area .response-area .response-text,
        .ai-agent-log-popup.add-data-popup .union-area .response-area .response-text {
          width: auto;
          margin-left: 0;
          height: calc(100% - 44px);
          overflow: auto;
          position: relative;
          border-top: 1px solid #cccccc; }
        .add-data-editor-popup.add-data-popup .api-area .response-area .response-data,
        .add-data-editor-popup.add-data-popup .iot-area .response-area .response-data,
        .add-data-editor-popup.add-data-popup .gateway-area .response-area .response-data,
        .add-data-editor-popup.add-data-popup .union-area .response-area .response-data,
        .add-ai-agent-block-popup.add-data-popup .api-area .response-area .response-data,
        .add-ai-agent-block-popup.add-data-popup .iot-area .response-area .response-data,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .response-area .response-data,
        .add-ai-agent-block-popup.add-data-popup .union-area .response-area .response-data,
        .ai-agent-log-popup.add-data-popup .api-area .response-area .response-data,
        .ai-agent-log-popup.add-data-popup .iot-area .response-area .response-data,
        .ai-agent-log-popup.add-data-popup .gateway-area .response-area .response-data,
        .ai-agent-log-popup.add-data-popup .union-area .response-area .response-data {
          width: 100%;
          height: 100%; }
      .add-data-editor-popup.add-data-popup .api-area .fields-area,
      .add-data-editor-popup.add-data-popup .iot-area .fields-area,
      .add-data-editor-popup.add-data-popup .gateway-area .fields-area,
      .add-data-editor-popup.add-data-popup .union-area .fields-area,
      .add-ai-agent-block-popup.add-data-popup .api-area .fields-area,
      .add-ai-agent-block-popup.add-data-popup .iot-area .fields-area,
      .add-ai-agent-block-popup.add-data-popup .gateway-area .fields-area,
      .add-ai-agent-block-popup.add-data-popup .union-area .fields-area,
      .ai-agent-log-popup.add-data-popup .api-area .fields-area,
      .ai-agent-log-popup.add-data-popup .iot-area .fields-area,
      .ai-agent-log-popup.add-data-popup .gateway-area .fields-area,
      .ai-agent-log-popup.add-data-popup .union-area .fields-area {
        padding-top: 0;
        padding-right: 0;
        width: 100%;
        height: 100%; }
        .add-data-editor-popup.add-data-popup .api-area .fields-area > .form-group,
        .add-data-editor-popup.add-data-popup .iot-area .fields-area > .form-group,
        .add-data-editor-popup.add-data-popup .gateway-area .fields-area > .form-group,
        .add-data-editor-popup.add-data-popup .union-area .fields-area > .form-group,
        .add-ai-agent-block-popup.add-data-popup .api-area .fields-area > .form-group,
        .add-ai-agent-block-popup.add-data-popup .iot-area .fields-area > .form-group,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .fields-area > .form-group,
        .add-ai-agent-block-popup.add-data-popup .union-area .fields-area > .form-group,
        .ai-agent-log-popup.add-data-popup .api-area .fields-area > .form-group,
        .ai-agent-log-popup.add-data-popup .iot-area .fields-area > .form-group,
        .ai-agent-log-popup.add-data-popup .gateway-area .fields-area > .form-group,
        .ai-agent-log-popup.add-data-popup .union-area .fields-area > .form-group {
          padding-top: 5px;
          padding-right: 15px;
          padding-bottom: 5px; }
        .add-data-editor-popup.add-data-popup .api-area .fields-area .scroll-area,
        .add-data-editor-popup.add-data-popup .iot-area .fields-area .scroll-area,
        .add-data-editor-popup.add-data-popup .gateway-area .fields-area .scroll-area,
        .add-data-editor-popup.add-data-popup .union-area .fields-area .scroll-area,
        .add-ai-agent-block-popup.add-data-popup .api-area .fields-area .scroll-area,
        .add-ai-agent-block-popup.add-data-popup .iot-area .fields-area .scroll-area,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .fields-area .scroll-area,
        .add-ai-agent-block-popup.add-data-popup .union-area .fields-area .scroll-area,
        .ai-agent-log-popup.add-data-popup .api-area .fields-area .scroll-area,
        .ai-agent-log-popup.add-data-popup .iot-area .fields-area .scroll-area,
        .ai-agent-log-popup.add-data-popup .gateway-area .fields-area .scroll-area,
        .ai-agent-log-popup.add-data-popup .union-area .fields-area .scroll-area {
          height: calc(100% - 103px); }
        .add-data-editor-popup.add-data-popup .api-area .fields-area .table th,
        .add-data-editor-popup.add-data-popup .iot-area .fields-area .table th,
        .add-data-editor-popup.add-data-popup .gateway-area .fields-area .table th,
        .add-data-editor-popup.add-data-popup .union-area .fields-area .table th,
        .add-ai-agent-block-popup.add-data-popup .api-area .fields-area .table th,
        .add-ai-agent-block-popup.add-data-popup .iot-area .fields-area .table th,
        .add-ai-agent-block-popup.add-data-popup .gateway-area .fields-area .table th,
        .add-ai-agent-block-popup.add-data-popup .union-area .fields-area .table th,
        .ai-agent-log-popup.add-data-popup .api-area .fields-area .table th,
        .ai-agent-log-popup.add-data-popup .iot-area .fields-area .table th,
        .ai-agent-log-popup.add-data-popup .gateway-area .fields-area .table th,
        .ai-agent-log-popup.add-data-popup .union-area .fields-area .table th {
          font-size: 14px; }
    .add-data-editor-popup.add-data-popup .table th, .add-data-editor-popup.add-data-popup .table td,
    .add-ai-agent-block-popup.add-data-popup .table th,
    .add-ai-agent-block-popup.add-data-popup .table td,
    .ai-agent-log-popup.add-data-popup .table th,
    .ai-agent-log-popup.add-data-popup .table td {
      vertical-align: middle; }
  .add-data-editor-popup.add-api .api-area .data-api-content,
  .add-ai-agent-block-popup.add-api .api-area .data-api-content,
  .ai-agent-log-popup.add-api .api-area .data-api-content {
    height: calc(100% - 120px) !important; }
  .add-data-editor-popup.add-api .api-area .request-area,
  .add-data-editor-popup.add-api .api-area .response-area,
  .add-ai-agent-block-popup.add-api .api-area .request-area,
  .add-ai-agent-block-popup.add-api .api-area .response-area,
  .ai-agent-log-popup.add-api .api-area .request-area,
  .ai-agent-log-popup.add-api .api-area .response-area {
    padding: 0; }
  .add-data-editor-popup.add-api .api-area .request-area,
  .add-ai-agent-block-popup.add-api .api-area .request-area,
  .ai-agent-log-popup.add-api .api-area .request-area {
    height: 400px; }
    .add-data-editor-popup.add-api .api-area .request-area .input-group,
    .add-ai-agent-block-popup.add-api .api-area .request-area .input-group,
    .ai-agent-log-popup.add-api .api-area .request-area .input-group {
      padding: 10px 10px 0; }
    .add-data-editor-popup.add-api .api-area .request-area .scroll-area,
    .add-ai-agent-block-popup.add-api .api-area .request-area .scroll-area,
    .ai-agent-log-popup.add-api .api-area .request-area .scroll-area {
      padding-left: 15px;
      height: 306px; }
    .add-data-editor-popup.add-api .api-area .request-area .setting-row,
    .add-ai-agent-block-popup.add-api .api-area .request-area .setting-row,
    .ai-agent-log-popup.add-api .api-area .request-area .setting-row {
      margin-left: 0;
      margin-right: 0; }
  .add-data-editor-popup.add-api .api-area .response-area,
  .add-ai-agent-block-popup.add-api .api-area .response-area,
  .ai-agent-log-popup.add-api .api-area .response-area {
    height: calc(100% - 400px); }
  .add-data-editor-popup.add-api .table,
  .add-ai-agent-block-popup.add-api .table,
  .ai-agent-log-popup.add-api .table {
    width: 100%;
    margin-bottom: 0; }
  .add-data-editor-popup.add-api .table-row,
  .add-ai-agent-block-popup.add-api .table-row,
  .ai-agent-log-popup.add-api .table-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%; }
    .add-data-editor-popup.add-api .table-row .table-cell,
    .add-ai-agent-block-popup.add-api .table-row .table-cell,
    .ai-agent-log-popup.add-api .table-row .table-cell {
      flex: 1; }
  .add-data-editor-popup.add-api .table-cell,
  .add-ai-agent-block-popup.add-api .table-cell,
  .ai-agent-log-popup.add-api .table-cell {
    padding: 0.3rem;
    vertical-align: top;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 48px; }
    .add-data-editor-popup.add-api .table-cell.w-sm,
    .add-ai-agent-block-popup.add-api .table-cell.w-sm,
    .ai-agent-log-popup.add-api .table-cell.w-sm {
      width: 5%;
      min-width: 50px;
      max-width: 70px;
      flex: auto; }
    .add-data-editor-popup.add-api .table-cell.bottom-border,
    .add-ai-agent-block-popup.add-api .table-cell.bottom-border,
    .ai-agent-log-popup.add-api .table-cell.bottom-border {
      width: 100%;
      border-bottom: 1px solid #dee2e6;
      padding-top: 0; }
    .add-data-editor-popup.add-api .table-cell textarea,
    .add-ai-agent-block-popup.add-api .table-cell textarea,
    .ai-agent-log-popup.add-api .table-cell textarea {
      width: 100%;
      height: 38px; }
    .add-data-editor-popup.add-api .table-cell textarea.disabled,
    .add-ai-agent-block-popup.add-api .table-cell textarea.disabled,
    .ai-agent-log-popup.add-api .table-cell textarea.disabled {
      resize: none; }
    .add-data-editor-popup.add-api .table-cell .form-check,
    .add-ai-agent-block-popup.add-api .table-cell .form-check,
    .ai-agent-log-popup.add-api .table-cell .form-check {
      padding-left: 1.75rem;
      margin-bottom: 0; }
      .add-data-editor-popup.add-api .table-cell .form-check .form-check-input,
      .add-ai-agent-block-popup.add-api .table-cell .form-check .form-check-input,
      .ai-agent-log-popup.add-api .table-cell .form-check .form-check-input {
        left: 5px; }
      .add-data-editor-popup.add-api .table-cell .form-check .form-check-input:checked,
      .add-ai-agent-block-popup.add-api .table-cell .form-check .form-check-input:checked,
      .ai-agent-log-popup.add-api .table-cell .form-check .form-check-input:checked {
        background-color: #15a5b7;
        border-color: #15a5b7; }
      .add-data-editor-popup.add-api .table-cell .form-check .form-check-input:focus,
      .add-ai-agent-block-popup.add-api .table-cell .form-check .form-check-input:focus,
      .ai-agent-log-popup.add-api .table-cell .form-check .form-check-input:focus {
        border-color: #b1e6ea;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(177, 230, 234, 0.25); }
  .add-data-editor-popup.add-api .table-header .table-cell,
  .add-ai-agent-block-popup.add-api .table-header .table-cell,
  .ai-agent-log-popup.add-api .table-header .table-cell {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-top: 1px solid #dee2e6;
    height: 38px;
    min-height: 38px;
    font-weight: bold;
    -ms-flex-pack: start;
    flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start; }
  .add-data-editor-popup.add-iot .iot-area .data-iot-content,
  .add-ai-agent-block-popup.add-iot .iot-area .data-iot-content,
  .ai-agent-log-popup.add-iot .iot-area .data-iot-content {
    height: calc(100% - 120px) !important; }
  .add-data-editor-popup.add-iot .iot-area .request-area,
  .add-ai-agent-block-popup.add-iot .iot-area .request-area,
  .ai-agent-log-popup.add-iot .iot-area .request-area {
    padding-top: 10px; }
  .add-data-editor-popup.add-iot .iot-area .response-area,
  .add-ai-agent-block-popup.add-iot .iot-area .response-area,
  .ai-agent-log-popup.add-iot .iot-area .response-area {
    height: calc(100% - 200px); }
  .add-data-editor-popup.add-iot .gateway-area .request-area,
  .add-ai-agent-block-popup.add-iot .gateway-area .request-area,
  .ai-agent-log-popup.add-iot .gateway-area .request-area {
    padding-top: 10px; }
  .add-data-editor-popup.add-iot .gateway-area .response-area,
  .add-ai-agent-block-popup.add-iot .gateway-area .response-area,
  .ai-agent-log-popup.add-iot .gateway-area .response-area {
    height: calc(100% - 412px); }
    .add-data-editor-popup.add-iot .gateway-area .response-area .topic-view,
    .add-ai-agent-block-popup.add-iot .gateway-area .response-area .topic-view,
    .ai-agent-log-popup.add-iot .gateway-area .response-area .topic-view {
      position: relative; }
      .add-data-editor-popup.add-iot .gateway-area .response-area .topic-view .form-group,
      .add-ai-agent-block-popup.add-iot .gateway-area .response-area .topic-view .form-group,
      .ai-agent-log-popup.add-iot .gateway-area .response-area .topic-view .form-group {
        width: 65%; }
      .add-data-editor-popup.add-iot .gateway-area .response-area .topic-view .custom-select,
      .add-ai-agent-block-popup.add-iot .gateway-area .response-area .topic-view .custom-select,
      .ai-agent-log-popup.add-iot .gateway-area .response-area .topic-view .custom-select {
        border-radius: 0;
        border-top: 0;
        border-bottom: 0;
        border-left: 0; }
    .add-data-editor-popup.add-iot .gateway-area .response-area .response-text,
    .add-ai-agent-block-popup.add-iot .gateway-area .response-area .response-text,
    .ai-agent-log-popup.add-iot .gateway-area .response-area .response-text {
      height: calc(100% - 38px); }
    .add-data-editor-popup.add-iot .gateway-area .response-area .response-data,
    .add-ai-agent-block-popup.add-iot .gateway-area .response-area .response-data,
    .ai-agent-log-popup.add-iot .gateway-area .response-area .response-data {
      width: 100%;
      height: 100%; }
  .add-data-editor-popup.add-iot .gateway-area .status-code,
  .add-ai-agent-block-popup.add-iot .gateway-area .status-code,
  .ai-agent-log-popup.add-iot .gateway-area .status-code {
    top: 10px; }
  .add-data-editor-popup.add-iot .gateway-area .fields-area,
  .add-ai-agent-block-popup.add-iot .gateway-area .fields-area,
  .ai-agent-log-popup.add-iot .gateway-area .fields-area {
    overflow: hidden; }
    .add-data-editor-popup.add-iot .gateway-area .fields-area .field-title,
    .add-ai-agent-block-popup.add-iot .gateway-area .fields-area .field-title,
    .ai-agent-log-popup.add-iot .gateway-area .fields-area .field-title {
      padding: 10px 5px;
      font-size: 18px; }
    .add-data-editor-popup.add-iot .gateway-area .fields-area .scroll-area,
    .add-ai-agent-block-popup.add-iot .gateway-area .fields-area .scroll-area,
    .ai-agent-log-popup.add-iot .gateway-area .fields-area .scroll-area {
      height: 100%; }
  .add-data-editor-popup.data-hub-popup .data-hub-api.api-list-wrap,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-api.api-list-wrap,
  .ai-agent-log-popup.data-hub-popup .data-hub-api.api-list-wrap {
    padding: 0 20px;
    height: 100%;
    overflow-y: auto; }
  .add-data-editor-popup.data-hub-popup .paging-box,
  .add-ai-agent-block-popup.data-hub-popup .paging-box,
  .ai-agent-log-popup.data-hub-popup .paging-box {
    padding: 10px 0; }
  .add-data-editor-popup.data-hub-popup .search-wrap,
  .add-ai-agent-block-popup.data-hub-popup .search-wrap,
  .ai-agent-log-popup.data-hub-popup .search-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 20px 10px; }
    .add-data-editor-popup.data-hub-popup .search-wrap .search-title,
    .add-ai-agent-block-popup.data-hub-popup .search-wrap .search-title,
    .ai-agent-log-popup.data-hub-popup .search-wrap .search-title {
      font-size: 18px;
      margin-right: 30px; }
    .add-data-editor-popup.data-hub-popup .search-wrap .search-box,
    .add-ai-agent-block-popup.data-hub-popup .search-wrap .search-box,
    .ai-agent-log-popup.data-hub-popup .search-wrap .search-box {
      flex: 1; }
    .add-data-editor-popup.data-hub-popup .search-wrap .input-group .form-control,
    .add-ai-agent-block-popup.data-hub-popup .search-wrap .input-group .form-control,
    .ai-agent-log-popup.data-hub-popup .search-wrap .input-group .form-control {
      border: 2px solid #20366F;
      border-radius: 5px; }
    .add-data-editor-popup.data-hub-popup .search-wrap .input-group-addon,
    .add-ai-agent-block-popup.data-hub-popup .search-wrap .input-group-addon,
    .ai-agent-log-popup.data-hub-popup .search-wrap .input-group-addon {
      margin-left: 10px;
      background-color: #2B5798;
      border: 1px solid #2B5798;
      color: #fff;
      border-radius: 5px;
      font-size: 20px;
      width: 40px; }
  .add-data-editor-popup.data-hub-popup .data-body.data-view-body,
  .add-ai-agent-block-popup.data-hub-popup .data-body.data-view-body,
  .ai-agent-log-popup.data-hub-popup .data-body.data-view-body {
    height: calc(100% - 45px - 50px); }
    .add-data-editor-popup.data-hub-popup .data-body.data-view-body + .data-footer,
    .add-ai-agent-block-popup.data-hub-popup .data-body.data-view-body + .data-footer,
    .ai-agent-log-popup.data-hub-popup .data-body.data-view-body + .data-footer {
      border-top: 1px solid #BFBFBF;
      height: 50px;
      padding: 10px 5px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center; }
      .add-data-editor-popup.data-hub-popup .data-body.data-view-body + .data-footer .btn,
      .add-ai-agent-block-popup.data-hub-popup .data-body.data-view-body + .data-footer .btn,
      .ai-agent-log-popup.data-hub-popup .data-body.data-view-body + .data-footer .btn {
        flex: 1;
        margin: 0 5px;
        padding-top: 0;
        padding-bottom: 0; }
  .add-data-editor-popup.data-hub-popup .data-view-body.dataHubBody,
  .add-ai-agent-block-popup.data-hub-popup .data-view-body.dataHubBody,
  .ai-agent-log-popup.data-hub-popup .data-view-body.dataHubBody {
    position: relative; }
  .add-data-editor-popup.data-hub-popup .data-view-body .data-hub-body,
  .add-ai-agent-block-popup.data-hub-popup .data-view-body .data-hub-body,
  .ai-agent-log-popup.data-hub-popup .data-view-body .data-hub-body {
    height: 100%; }
  .add-data-editor-popup.data-hub-popup .data-hub-content,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-content,
  .ai-agent-log-popup.data-hub-popup .data-hub-content {
    width: 100%;
    height: 100%;
    overflow-y: auto; }
  .add-data-editor-popup.data-hub-popup .btn-list,
  .add-ai-agent-block-popup.data-hub-popup .btn-list,
  .ai-agent-log-popup.data-hub-popup .btn-list {
    position: absolute;
    border: 1px solid #15a5b7;
    color: #15a5b7;
    padding: 3px 15px;
    top: 8px;
    right: 20px; }
    .add-data-editor-popup.data-hub-popup .btn-list:hover, .add-data-editor-popup.data-hub-popup .btn-list:active, .add-data-editor-popup.data-hub-popup .btn-list:focus, .add-data-editor-popup.data-hub-popup .btn-list:focus-visible,
    .add-ai-agent-block-popup.data-hub-popup .btn-list:hover,
    .add-ai-agent-block-popup.data-hub-popup .btn-list:active,
    .add-ai-agent-block-popup.data-hub-popup .btn-list:focus,
    .add-ai-agent-block-popup.data-hub-popup .btn-list:focus-visible,
    .ai-agent-log-popup.data-hub-popup .btn-list:hover,
    .ai-agent-log-popup.data-hub-popup .btn-list:active,
    .ai-agent-log-popup.data-hub-popup .btn-list:focus,
    .ai-agent-log-popup.data-hub-popup .btn-list:focus-visible {
      background-color: #15a5b7;
      color: #fff; }
  .add-data-editor-popup.data-hub-popup .api-content-about,
  .add-ai-agent-block-popup.data-hub-popup .api-content-about,
  .ai-agent-log-popup.data-hub-popup .api-content-about {
    padding: 50px 50px 30px; }
  .add-data-editor-popup.data-hub-popup .data-hub-item-info,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-item-info,
  .ai-agent-log-popup.data-hub-popup .data-hub-item-info {
    margin-bottom: 30px; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-info .api-img,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-info .api-img,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-info .api-img {
      width: 180px;
      height: 90px;
      overflow: hidden;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      margin-bottom: 10px; }
      .add-data-editor-popup.data-hub-popup .data-hub-item-info .api-img img,
      .add-ai-agent-block-popup.data-hub-popup .data-hub-item-info .api-img img,
      .ai-agent-log-popup.data-hub-popup .data-hub-item-info .api-img img {
        max-width: 180px; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-info .api-name,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-info .api-name,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-info .api-name {
      font-size: 24px;
      margin-bottom: 5px; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-info .api-desc,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-info .api-desc,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-info .api-desc {
      margin-bottom: 20px; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-info .api-link a,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-info .api-link a,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-info .api-link a {
      color: #15a5b7; }
  .add-data-editor-popup.data-hub-popup .data-hub-item-price .title,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .title,
  .ai-agent-log-popup.data-hub-popup .data-hub-item-price .title {
    font-size: 18px;
    margin-bottom: 5px; }
  .add-data-editor-popup.data-hub-popup .data-hub-item-price .price-box,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .price-box,
  .ai-agent-log-popup.data-hub-popup .data-hub-item-price .price-box {
    border: 1px solid #bdbdbd;
    padding: 0 20px; }
  .add-data-editor-popup.data-hub-popup .data-hub-item-price .price-row,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .price-row,
  .ai-agent-log-popup.data-hub-popup .data-hub-item-price .price-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-top: 1px solid #bdbdbd;
    padding: 20px 0; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-price .price-row.total,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .price-row.total,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-price .price-row.total {
      border-top: 0; }
      .add-data-editor-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .title,
      .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .title,
      .ai-agent-log-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .title {
        font-size: 26px; }
      .add-data-editor-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .price,
      .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .price,
      .ai-agent-log-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .price {
        font-size: 20px; }
      .add-data-editor-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .price-info,
      .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .price-info,
      .ai-agent-log-popup.data-hub-popup .data-hub-item-price .price-row.total .object-price .price-info {
        font-size: 18px; }
  .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-title,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-title,
  .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-title {
    font-size: 16px;
    margin-bottom: 5px; }
  .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-desc,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-desc,
  .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-desc {
    flex: 1;
    padding: 0 10px; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-desc .title,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-desc .title,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-desc .title {
      font-weight: bold;
      font-size: 16px; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-desc .desc,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-desc .desc,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-desc .desc {
      font-size: 14px; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-desc .object-data-box,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-desc .object-data-box,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-desc .object-data-box {
      border: 1px solid #bfbfbf;
      border-radius: 5px;
      padding: 5px;
      margin-top: 10px; }
      .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-desc .object-data-box .data-item,
      .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-desc .object-data-box .data-item,
      .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-desc .object-data-box .data-item {
        display: inline-block;
        border: 1px solid #15a5b7;
        padding: 5px;
        font-size: 13px;
        border-radius: 5px; }
  .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-price,
  .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-price,
  .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-price {
    flex: 1;
    padding: 0 10px; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-price .price,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-price .price,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-price .price {
      font-weight: bold; }
    .add-data-editor-popup.data-hub-popup .data-hub-item-price .object-price .price-info,
    .add-ai-agent-block-popup.data-hub-popup .data-hub-item-price .object-price .price-info,
    .ai-agent-log-popup.data-hub-popup .data-hub-item-price .object-price .price-info {
      font-size: 14px; }
  .add-data-editor-popup.data-hub-popup .api-content-data-list,
  .add-ai-agent-block-popup.data-hub-popup .api-content-data-list,
  .ai-agent-log-popup.data-hub-popup .api-content-data-list {
    padding: 50px 50px 30px; }
    .add-data-editor-popup.data-hub-popup .api-content-data-list .form-check-input:checked,
    .add-ai-agent-block-popup.data-hub-popup .api-content-data-list .form-check-input:checked,
    .ai-agent-log-popup.data-hub-popup .api-content-data-list .form-check-input:checked {
      background-color: #15a5b7;
      border-color: #15a5b7; }
    .add-data-editor-popup.data-hub-popup .api-content-data-list .form-check-input:focus,
    .add-ai-agent-block-popup.data-hub-popup .api-content-data-list .form-check-input:focus,
    .ai-agent-log-popup.data-hub-popup .api-content-data-list .form-check-input:focus {
      border-color: #b1e6ea;
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(177, 230, 234, 0.25); }
  .add-data-editor-popup.data-hub-popup .api-endpoint-wrap,
  .add-ai-agent-block-popup.data-hub-popup .api-endpoint-wrap,
  .ai-agent-log-popup.data-hub-popup .api-endpoint-wrap {
    margin-bottom: 30px; }
    .add-data-editor-popup.data-hub-popup .api-endpoint-wrap:last-child,
    .add-ai-agent-block-popup.data-hub-popup .api-endpoint-wrap:last-child,
    .ai-agent-log-popup.data-hub-popup .api-endpoint-wrap:last-child {
      margin-bottom: 0; }
  .add-data-editor-popup.data-hub-popup .api-info-content,
  .add-ai-agent-block-popup.data-hub-popup .api-info-content,
  .ai-agent-log-popup.data-hub-popup .api-info-content {
    border: 1px solid #15a5b7;
    background-color: #f7f7f7;
    padding: 5px 20px;
    border-radius: 10px; }
    .add-data-editor-popup.data-hub-popup .api-info-content .info-header,
    .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-header,
    .ai-agent-log-popup.data-hub-popup .api-info-content .info-header {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
    .add-data-editor-popup.data-hub-popup .api-info-content .endpoint-box,
    .add-ai-agent-block-popup.data-hub-popup .api-info-content .endpoint-box,
    .ai-agent-log-popup.data-hub-popup .api-info-content .endpoint-box {
      padding: 10px; }
      .add-data-editor-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-title,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-title,
      .ai-agent-log-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-title {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: bold; }
      .add-data-editor-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-desc,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-desc,
      .ai-agent-log-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-desc {
        font-size: 16px;
        margin-bottom: 5px; }
      .add-data-editor-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-link,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-link,
      .ai-agent-log-popup.data-hub-popup .api-info-content .endpoint-box .endpoint-link {
        font-size: 16px; }
    .add-data-editor-popup.data-hub-popup .api-info-content .api-btn-box,
    .add-ai-agent-block-popup.data-hub-popup .api-info-content .api-btn-box,
    .ai-agent-log-popup.data-hub-popup .api-info-content .api-btn-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .add-data-editor-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail,
      .ai-agent-log-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail {
        position: relative;
        font-size: 14px;
        font-weight: bold;
        margin-right: 20px;
        padding-right: 30px; }
        .add-data-editor-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail:after,
        .add-ai-agent-block-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail:after,
        .ai-agent-log-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail:after {
          position: absolute;
          display: block;
          content: "";
          width: 0px;
          height: 0px;
          border-style: solid;
          border-width: 6px 6px 0 6px;
          border-color: #000000 transparent transparent transparent;
          transform: rotate(180deg);
          top: 50%;
          margin-top: -3px;
          right: 5px; }
        .add-data-editor-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail.collapsed:after,
        .add-ai-agent-block-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail.collapsed:after,
        .ai-agent-log-popup.data-hub-popup .api-info-content .api-btn-box .btn-detail.collapsed:after {
          transform: rotate(0deg); }
      .add-data-editor-popup.data-hub-popup .api-info-content .api-btn-box .form-check,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .api-btn-box .form-check,
      .ai-agent-log-popup.data-hub-popup .api-info-content .api-btn-box .form-check {
        margin-bottom: 0; }
    .add-data-editor-popup.data-hub-popup .api-info-content .info-body .info-inner,
    .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .info-inner,
    .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .info-inner {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      height: 400px; }
    .add-data-editor-popup.data-hub-popup .api-info-content .info-body .code-area,
    .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .code-area,
    .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .code-area {
      padding: 10px;
      flex: 1;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .add-data-editor-popup.data-hub-popup .api-info-content .info-body .code-area .title,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .code-area .title,
      .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .code-area .title {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 3px; }
      .add-data-editor-popup.data-hub-popup .api-info-content .info-body .code-area .code-box,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .code-area .code-box,
      .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .code-area .code-box {
        border: 1px solid #999;
        width: 100%;
        flex: 1;
        background-color: #fff; }
    .add-data-editor-popup.data-hub-popup .api-info-content .info-body .fields-area,
    .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .fields-area,
    .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .fields-area {
      width: 40%;
      max-width: 450px;
      padding: 10px; }
      .add-data-editor-popup.data-hub-popup .api-info-content .info-body .fields-area .scroll-area,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .fields-area .scroll-area,
      .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .fields-area .scroll-area {
        width: 100%;
        height: 100%;
        overflow-y: auto; }
      .add-data-editor-popup.data-hub-popup .api-info-content .info-body .fields-area .table th,
      .add-data-editor-popup.data-hub-popup .api-info-content .info-body .fields-area .table td,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .fields-area .table th,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .fields-area .table td,
      .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .fields-area .table th,
      .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .fields-area .table td {
        font-size: 14px;
        border: 0; }
      .add-data-editor-popup.data-hub-popup .api-info-content .info-body .fields-area .table th,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .fields-area .table th,
      .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .fields-area .table th {
        padding: 0; }
      .add-data-editor-popup.data-hub-popup .api-info-content .info-body .fields-area .form-control:disabled, .add-data-editor-popup.data-hub-popup .api-info-content .info-body .fields-area .form-control[readonly],
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .fields-area .form-control:disabled,
      .add-ai-agent-block-popup.data-hub-popup .api-info-content .info-body .fields-area .form-control[readonly],
      .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .fields-area .form-control:disabled,
      .ai-agent-log-popup.data-hub-popup .api-info-content .info-body .fields-area .form-control[readonly] {
        background-color: #fff; }
  .add-data-editor-popup.data-hub-popup .api-chart-item-list,
  .add-ai-agent-block-popup.data-hub-popup .api-chart-item-list,
  .ai-agent-log-popup.data-hub-popup .api-chart-item-list {
    padding: 5px 0; }
    .add-data-editor-popup.data-hub-popup .api-chart-item-list > .row,
    .add-ai-agent-block-popup.data-hub-popup .api-chart-item-list > .row,
    .ai-agent-log-popup.data-hub-popup .api-chart-item-list > .row {
      margin-left: -15px !important;
      margin-right: -15px !important; }
    .add-data-editor-popup.data-hub-popup .api-chart-item-list .chart-item,
    .add-ai-agent-block-popup.data-hub-popup .api-chart-item-list .chart-item,
    .ai-agent-log-popup.data-hub-popup .api-chart-item-list .chart-item {
      border: 1px solid #bfbfbf;
      border-radius: 5px;
      overflow: hidden;
      margin: 10px 0; }
      .add-data-editor-popup.data-hub-popup .api-chart-item-list .chart-item .thumb-box,
      .add-ai-agent-block-popup.data-hub-popup .api-chart-item-list .chart-item .thumb-box,
      .ai-agent-log-popup.data-hub-popup .api-chart-item-list .chart-item .thumb-box {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 57%;
        overflow: hidden; }
        .add-data-editor-popup.data-hub-popup .api-chart-item-list .chart-item .thumb-box img,
        .add-ai-agent-block-popup.data-hub-popup .api-chart-item-list .chart-item .thumb-box img,
        .ai-agent-log-popup.data-hub-popup .api-chart-item-list .chart-item .thumb-box img {
          display: block;
          position: absolute;
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .add-data-editor-popup.data-hub-popup .api-chart-item-list .chart-item .data-info,
      .add-ai-agent-block-popup.data-hub-popup .api-chart-item-list .chart-item .data-info,
      .ai-agent-log-popup.data-hub-popup .api-chart-item-list .chart-item .data-info {
        padding: 15px;
        border-top: 1px solid #bfbfbf;
        border-radius: 5px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
      .add-data-editor-popup.data-hub-popup .api-chart-item-list .chart-item .title,
      .add-ai-agent-block-popup.data-hub-popup .api-chart-item-list .chart-item .title,
      .ai-agent-log-popup.data-hub-popup .api-chart-item-list .chart-item .title {
        font-size: 18px;
        font-weight: bold; }
  .add-data-editor-popup.add-union .union-area,
  .add-ai-agent-block-popup.add-union .union-area,
  .ai-agent-log-popup.add-union .union-area {
    overflow: hidden; }
  .add-data-editor-popup.add-union .header,
  .add-ai-agent-block-popup.add-union .header,
  .ai-agent-log-popup.add-union .header {
    border-bottom: 1px solid #ccc;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
  .add-data-editor-popup.add-union .col-3,
  .add-data-editor-popup.add-union .col-9,
  .add-ai-agent-block-popup.add-union .col-3,
  .add-ai-agent-block-popup.add-union .col-9,
  .ai-agent-log-popup.add-union .col-3,
  .ai-agent-log-popup.add-union .col-9 {
    padding: 0;
    height: 100%; }
  .add-data-editor-popup.add-union .data-check-area,
  .add-data-editor-popup.add-union .data-content-area,
  .add-ai-agent-block-popup.add-union .data-check-area,
  .add-ai-agent-block-popup.add-union .data-content-area,
  .ai-agent-log-popup.add-union .data-check-area,
  .ai-agent-log-popup.add-union .data-content-area {
    width: 100%;
    height: 100%; }
  .add-data-editor-popup.add-union .data-check-area,
  .add-ai-agent-block-popup.add-union .data-check-area,
  .ai-agent-log-popup.add-union .data-check-area {
    border-right: 1px solid #ccc;
    height: 100%; }
    .add-data-editor-popup.add-union .data-check-area .form-check,
    .add-ai-agent-block-popup.add-union .data-check-area .form-check,
    .ai-agent-log-popup.add-union .data-check-area .form-check {
      font-size: 16px;
      margin-bottom: 0;
      padding-left: 2rem; }
    .add-data-editor-popup.add-union .data-check-area .form-check-input,
    .add-ai-agent-block-popup.add-union .data-check-area .form-check-input,
    .ai-agent-log-popup.add-union .data-check-area .form-check-input {
      border-color: #15a5b7; }
    .add-data-editor-popup.add-union .data-check-area .form-check-input:checked,
    .add-ai-agent-block-popup.add-union .data-check-area .form-check-input:checked,
    .ai-agent-log-popup.add-union .data-check-area .form-check-input:checked {
      background-color: #15a5b7;
      border-color: #15a5b7; }
  .add-data-editor-popup.add-union .check-header,
  .add-ai-agent-block-popup.add-union .check-header,
  .ai-agent-log-popup.add-union .check-header {
    position: relative;
    padding: 10px; }
    .add-data-editor-popup.add-union .check-header:after,
    .add-ai-agent-block-popup.add-union .check-header:after,
    .ai-agent-log-popup.add-union .check-header:after {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 0;
      content: "";
      display: block;
      height: 1px;
      background-color: #bbb; }
  .add-data-editor-popup.add-union .check-body,
  .add-ai-agent-block-popup.add-union .check-body,
  .ai-agent-log-popup.add-union .check-body {
    padding: 5px 0;
    height: calc(100% - 44px);
    overflow-y: auto; }
    .add-data-editor-popup.add-union .check-body .data-item,
    .add-ai-agent-block-popup.add-union .check-body .data-item,
    .ai-agent-log-popup.add-union .check-body .data-item {
      padding: 10px; }
      .add-data-editor-popup.add-union .check-body .data-item.collapse-item .item-header,
      .add-ai-agent-block-popup.add-union .check-body .data-item.collapse-item .item-header,
      .ai-agent-log-popup.add-union .check-body .data-item.collapse-item .item-header {
        position: relative;
        padding-left: 30px;
        margin: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        flex-wrap: nowrap; }
        .add-data-editor-popup.add-union .check-body .data-item.collapse-item .item-header .form-check,
        .add-ai-agent-block-popup.add-union .check-body .data-item.collapse-item .item-header .form-check,
        .ai-agent-log-popup.add-union .check-body .data-item.collapse-item .item-header .form-check {
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%); }
      .add-data-editor-popup.add-union .check-body .data-item.collapse-item .btn-collapse,
      .add-ai-agent-block-popup.add-union .check-body .data-item.collapse-item .btn-collapse,
      .ai-agent-log-popup.add-union .check-body .data-item.collapse-item .btn-collapse {
        display: block;
        padding: 5px 3px;
        width: 20px;
        height: 20px;
        margin-right: 2px; }
        .add-data-editor-popup.add-union .check-body .data-item.collapse-item .btn-collapse:after,
        .add-ai-agent-block-popup.add-union .check-body .data-item.collapse-item .btn-collapse:after,
        .ai-agent-log-popup.add-union .check-body .data-item.collapse-item .btn-collapse:after {
          position: relative;
          display: block;
          content: "";
          width: 0px;
          height: 0px;
          border-style: solid;
          border-width: 6px 6px 0 6px;
          border-color: #404040 transparent transparent transparent;
          transform: rotate(0deg); }
        .add-data-editor-popup.add-union .check-body .data-item.collapse-item .btn-collapse.collapsed:after,
        .add-ai-agent-block-popup.add-union .check-body .data-item.collapse-item .btn-collapse.collapsed:after,
        .ai-agent-log-popup.add-union .check-body .data-item.collapse-item .btn-collapse.collapsed:after {
          transform: rotate(-90deg); }
      .add-data-editor-popup.add-union .check-body .data-item.collapse-item .item-body,
      .add-ai-agent-block-popup.add-union .check-body .data-item.collapse-item .item-body,
      .ai-agent-log-popup.add-union .check-body .data-item.collapse-item .item-body {
        padding: 5px 5px 0 40px; }
      .add-data-editor-popup.add-union .check-body .data-item.collapse-item .data-column-item,
      .add-ai-agent-block-popup.add-union .check-body .data-item.collapse-item .data-column-item,
      .ai-agent-log-popup.add-union .check-body .data-item.collapse-item .data-column-item {
        padding: 3px; }
      .add-data-editor-popup.add-union .check-body .data-item .type,
      .add-ai-agent-block-popup.add-union .check-body .data-item .type,
      .ai-agent-log-popup.add-union .check-body .data-item .type {
        color: #999; }
      .add-data-editor-popup.add-union .check-body .data-item .loading-wrap,
      .add-ai-agent-block-popup.add-union .check-body .data-item .loading-wrap,
      .ai-agent-log-popup.add-union .check-body .data-item .loading-wrap {
        position: relative;
        width: 100%;
        height: 30px; }
      .add-data-editor-popup.add-union .check-body .data-item .loader-spinner,
      .add-ai-agent-block-popup.add-union .check-body .data-item .loader-spinner,
      .ai-agent-log-popup.add-union .check-body .data-item .loader-spinner {
        border: 3px solid rgba(255, 255, 255, 0.2);
        border-top-color: #ccc;
        border-bottom-color: #ccc; }
  .add-data-editor-popup.add-union .data-content-area,
  .add-ai-agent-block-popup.add-union .data-content-area,
  .ai-agent-log-popup.add-union .data-content-area {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .add-data-editor-popup.add-union .data-content-area .sql-content-box,
    .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box,
    .ai-agent-log-popup.add-union .data-content-area .sql-content-box {
      position: relative;
      width: 100%;
      height: 45%;
      padding: 15px 150px 15px 20px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .add-data-editor-popup.add-union .data-content-area .sql-content-box .message-input-box,
      .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .message-input-box,
      .ai-agent-log-popup.add-union .data-content-area .sql-content-box .message-input-box {
        margin-bottom: 15px;
        min-height: 48px;
        max-height: 200px;
        height: auto; }
      .add-data-editor-popup.add-union .data-content-area .sql-content-box .message-input,
      .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .message-input,
      .ai-agent-log-popup.add-union .data-content-area .sql-content-box .message-input {
        position: relative;
        overflow-y: auto;
        border-radius: 10px;
        padding: 10px 30px 10px 15px;
        border: 1px solid #15a5b7;
        background-color: #282a36; }
        .add-data-editor-popup.add-union .data-content-area .sql-content-box .message-input .question-input,
        .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .message-input .question-input,
        .ai-agent-log-popup.add-union .data-content-area .sql-content-box .message-input .question-input {
          width: 100%;
          resize: none;
          overflow-y: auto;
          padding: 0;
          border: 0;
          min-height: 26px;
          height: 26px;
          line-height: 1.6;
          color: #fff;
          background-color: #282a36;
          max-height: 100px; }
          .add-data-editor-popup.add-union .data-content-area .sql-content-box .message-input .question-input:focus,
          .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .message-input .question-input:focus,
          .ai-agent-log-popup.add-union .data-content-area .sql-content-box .message-input .question-input:focus {
            outline: none;
            box-shadow: none; }
        .add-data-editor-popup.add-union .data-content-area .sql-content-box .message-input .btn-enter,
        .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .message-input .btn-enter,
        .ai-agent-log-popup.add-union .data-content-area .sql-content-box .message-input .btn-enter {
          position: absolute;
          right: 10px;
          top: 50%;
          transform: translateY(-50%);
          width: 20px;
          height: 20px;
          padding: 0;
          background-image: url("/static/img/icon_ai_chatbot.png");
          background-repeat: no-repeat;
          background-size: contain;
          border: 0;
          background-color: transparent; }
          .add-data-editor-popup.add-union .data-content-area .sql-content-box .message-input .btn-enter:focus-visible,
          .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .message-input .btn-enter:focus-visible,
          .ai-agent-log-popup.add-union .data-content-area .sql-content-box .message-input .btn-enter:focus-visible {
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
      .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box,
      .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box,
      .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box {
        position: relative;
        flex: 1;
        border: 1px solid #15a5b7;
        background-color: #000;
        border-radius: 10px;
        overflow: hidden; }
        .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading,
        .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading,
        .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 10;
          background-color: #282a36; }
          .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .answer-box,
          .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .answer-box,
          .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .answer-box {
            padding: 10px; }
          .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .answer-box:before,
          .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .answer-box:before,
          .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .answer-box:before {
            top: 50%;
            margin-top: -9px; }
          .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing,
          .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing,
          .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing {
            position: relative;
            left: 5px; }
            .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot,
            .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot,
            .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot {
              display: inline-block;
              position: relative;
              width: 8px;
              height: 8px;
              border-radius: 8px;
              margin: 0 2px;
              background-color: #15a5b7;
              animation: dot-flashing 1s infinite alternate; }
            .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(1),
            .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(1),
            .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(1) {
              animation-delay: 0s; }
            .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(2),
            .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(2),
            .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(2) {
              animation-delay: 0.4s; }
            .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(3),
            .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(3),
            .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-view-box .chat-loading .dot-flashing .dot:nth-child(3) {
              animation-delay: 0.8s; }

@keyframes dot-flashing {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.3; } }
      .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-output-area,
      .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-output-area,
      .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-output-area {
        display: block;
        height: 100%;
        padding: 10px 30px 10px 15px;
        color: #fff;
        overflow-y: auto;
        resize: none;
        background-color: transparent;
        border: 0; }
        .add-data-editor-popup.add-union .data-content-area .sql-content-box .sql-output-area:focus,
        .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .sql-output-area:focus,
        .ai-agent-log-popup.add-union .data-content-area .sql-content-box .sql-output-area:focus {
          outline: none;
          box-shadow: none; }
      .add-data-editor-popup.add-union .data-content-area .sql-content-box .btn-sql-run,
      .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .btn-sql-run,
      .ai-agent-log-popup.add-union .data-content-area .sql-content-box .btn-sql-run {
        position: absolute;
        top: 15px;
        right: 20px;
        width: 110px;
        height: calc(100% - 30px);
        background-color: #d9d9d9;
        border: 1px solid #bfbfbf;
        color: #15a5b7;
        transition: all 0.2s; }
        .add-data-editor-popup.add-union .data-content-area .sql-content-box .btn-sql-run:hover, .add-data-editor-popup.add-union .data-content-area .sql-content-box .btn-sql-run:active, .add-data-editor-popup.add-union .data-content-area .sql-content-box .btn-sql-run:focus, .add-data-editor-popup.add-union .data-content-area .sql-content-box .btn-sql-run:focus-visible,
        .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .btn-sql-run:hover,
        .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .btn-sql-run:active,
        .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .btn-sql-run:focus,
        .add-ai-agent-block-popup.add-union .data-content-area .sql-content-box .btn-sql-run:focus-visible,
        .ai-agent-log-popup.add-union .data-content-area .sql-content-box .btn-sql-run:hover,
        .ai-agent-log-popup.add-union .data-content-area .sql-content-box .btn-sql-run:active,
        .ai-agent-log-popup.add-union .data-content-area .sql-content-box .btn-sql-run:focus,
        .ai-agent-log-popup.add-union .data-content-area .sql-content-box .btn-sql-run:focus-visible {
          background-color: #15a5b7;
          border-color: #15a5b7;
          color: #fff; }
    .add-data-editor-popup.add-union .data-content-area .result-content-box,
    .add-ai-agent-block-popup.add-union .data-content-area .result-content-box,
    .ai-agent-log-popup.add-union .data-content-area .result-content-box {
      position: relative;
      width: 100%;
      height: 55%;
      border-top: 1px solid #ccc; }
    .add-data-editor-popup.add-union .data-content-area .no-result,
    .add-data-editor-popup.add-union .data-content-area .result-table,
    .add-ai-agent-block-popup.add-union .data-content-area .no-result,
    .add-ai-agent-block-popup.add-union .data-content-area .result-table,
    .ai-agent-log-popup.add-union .data-content-area .no-result,
    .ai-agent-log-popup.add-union .data-content-area .result-table {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: auto; }
      .add-data-editor-popup.add-union .data-content-area .no-result .table-responsive,
      .add-data-editor-popup.add-union .data-content-area .no-result .sql-frame,
      .add-data-editor-popup.add-union .data-content-area .result-table .table-responsive,
      .add-data-editor-popup.add-union .data-content-area .result-table .sql-frame,
      .add-ai-agent-block-popup.add-union .data-content-area .no-result .table-responsive,
      .add-ai-agent-block-popup.add-union .data-content-area .no-result .sql-frame,
      .add-ai-agent-block-popup.add-union .data-content-area .result-table .table-responsive,
      .add-ai-agent-block-popup.add-union .data-content-area .result-table .sql-frame,
      .ai-agent-log-popup.add-union .data-content-area .no-result .table-responsive,
      .ai-agent-log-popup.add-union .data-content-area .no-result .sql-frame,
      .ai-agent-log-popup.add-union .data-content-area .result-table .table-responsive,
      .ai-agent-log-popup.add-union .data-content-area .result-table .sql-frame {
        width: 100%;
        height: 100%; }
    .add-data-editor-popup.add-union .data-content-area .table thead th,
    .add-ai-agent-block-popup.add-union .data-content-area .table thead th,
    .ai-agent-log-popup.add-union .data-content-area .table thead th {
      border-color: #d9d9d9;
      border-bottom-width: 1px;
      background-color: #d9d9d9; }
  .add-data-editor-popup.add-agent-sql .union-area .header-row,
  .add-ai-agent-block-popup.add-agent-sql .union-area .header-row,
  .ai-agent-log-popup.add-agent-sql .union-area .header-row {
    position: relative;
    padding-left: 35px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .add-data-editor-popup.add-agent-sql .union-area .header-row .icon,
    .add-ai-agent-block-popup.add-agent-sql .union-area .header-row .icon,
    .ai-agent-log-popup.add-agent-sql .union-area .header-row .icon {
      position: absolute;
      display: block;
      width: 20px;
      height: 20px;
      top: 50%;
      left: 8px;
      transform: translateY(-50%);
      background-repeat: no-repeat;
      background-size: cover;
      text-indent: -999em; }
    .add-data-editor-popup.add-agent-sql .union-area .header-row .history-btn-wrap,
    .add-ai-agent-block-popup.add-agent-sql .union-area .header-row .history-btn-wrap,
    .ai-agent-log-popup.add-agent-sql .union-area .header-row .history-btn-wrap {
      margin-left: 10px; }
      .add-data-editor-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn,
      .add-ai-agent-block-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn,
      .ai-agent-log-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn {
        font-size: 20px; }
        .add-data-editor-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:hover, .add-data-editor-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:focus, .add-data-editor-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:active, .add-data-editor-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:focus-visible,
        .add-ai-agent-block-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:hover,
        .add-ai-agent-block-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:focus,
        .add-ai-agent-block-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:active,
        .add-ai-agent-block-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:focus-visible,
        .ai-agent-log-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:hover,
        .ai-agent-log-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:focus,
        .ai-agent-log-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:active,
        .ai-agent-log-popup.add-agent-sql .union-area .header-row .history-btn-wrap .btn:focus-visible {
          color: #15a5b7; }
  .add-data-editor-popup.add-agent-sql .union-area .api-row .icon,
  .add-ai-agent-block-popup.add-agent-sql .union-area .api-row .icon,
  .ai-agent-log-popup.add-agent-sql .union-area .api-row .icon {
    background-image: url("/static/svg/datamenu_api_subscribe.svg"); }
  .add-data-editor-popup.add-agent-sql .union-area .api-row .key-box,
  .add-ai-agent-block-popup.add-agent-sql .union-area .api-row .key-box,
  .ai-agent-log-popup.add-agent-sql .union-area .api-row .key-box {
    flex: 1; }
  .add-data-editor-popup.add-agent-sql .union-area .iot-row .icon,
  .add-ai-agent-block-popup.add-agent-sql .union-area .iot-row .icon,
  .ai-agent-log-popup.add-agent-sql .union-area .iot-row .icon {
    background-image: url("/static/svg/datamenu_iot_subscribe.svg"); }
  .add-data-editor-popup.add-agent-sql .union-area .iot-row .broker-select,
  .add-ai-agent-block-popup.add-agent-sql .union-area .iot-row .broker-select,
  .ai-agent-log-popup.add-agent-sql .union-area .iot-row .broker-select {
    flex: 2;
    margin: 0 5px; }
  .add-data-editor-popup.add-agent-sql .union-area .iot-row .topic-select,
  .add-data-editor-popup.add-agent-sql .union-area .iot-row .interval-box,
  .add-ai-agent-block-popup.add-agent-sql .union-area .iot-row .topic-select,
  .add-ai-agent-block-popup.add-agent-sql .union-area .iot-row .interval-box,
  .ai-agent-log-popup.add-agent-sql .union-area .iot-row .topic-select,
  .ai-agent-log-popup.add-agent-sql .union-area .iot-row .interval-box {
    flex: 1;
    margin: 0 5px; }
  .add-data-editor-popup.add-agent-sql .sql-tree-wrap,
  .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap,
  .ai-agent-log-popup.add-agent-sql .sql-tree-wrap {
    width: 100%;
    height: 100%;
    padding: 10px;
    overflow-y: auto; }
    .add-data-editor-popup.add-agent-sql .sql-tree-wrap .loading-wrap,
    .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .loading-wrap,
    .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .loading-wrap {
      position: relative;
      width: 100%;
      height: 30px; }
    .add-data-editor-popup.add-agent-sql .sql-tree-wrap .loader-spinner,
    .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .loader-spinner,
    .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .loader-spinner {
      border: 3px solid rgba(255, 255, 255, 0.2);
      border-top-color: #ccc;
      border-bottom-color: #ccc; }
    .add-data-editor-popup.add-agent-sql .sql-tree-wrap .item-header,
    .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .item-header,
    .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .item-header {
      position: relative;
      margin: 0;
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      flex-wrap: nowrap; }
    .add-data-editor-popup.add-agent-sql .sql-tree-wrap .btn-collapse,
    .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .btn-collapse,
    .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .btn-collapse {
      display: block;
      padding: 5px 3px;
      width: 20px;
      height: 20px;
      margin-right: 2px; }
      .add-data-editor-popup.add-agent-sql .sql-tree-wrap .btn-collapse:after,
      .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .btn-collapse:after,
      .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .btn-collapse:after {
        position: relative;
        display: block;
        content: "";
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 6px 6px 0 6px;
        border-color: #404040 transparent transparent transparent;
        transform: rotate(0deg); }
      .add-data-editor-popup.add-agent-sql .sql-tree-wrap .btn-collapse.close:after,
      .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .btn-collapse.close:after,
      .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .btn-collapse.close:after {
        transform: rotate(-90deg); }
    .add-data-editor-popup.add-agent-sql .sql-tree-wrap .children-wrap,
    .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .children-wrap,
    .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .children-wrap {
      padding-left: 20px;
      margin-bottom: 10px; }
    .add-data-editor-popup.add-agent-sql .sql-tree-wrap .list-item .item-header,
    .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .list-item .item-header,
    .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .list-item .item-header {
      padding: 5px 0; }
    .add-data-editor-popup.add-agent-sql .sql-tree-wrap .list-item .column-label,
    .add-ai-agent-block-popup.add-agent-sql .sql-tree-wrap .list-item .column-label,
    .ai-agent-log-popup.add-agent-sql .sql-tree-wrap .list-item .column-label {
      font-size: 15px;
      color: #777; }
  .add-data-editor-popup.add-agent-sql .data-content-area .sql-content-box,
  .add-ai-agent-block-popup.add-agent-sql .data-content-area .sql-content-box,
  .ai-agent-log-popup.add-agent-sql .data-content-area .sql-content-box {
    padding-right: 20px; }
    .add-data-editor-popup.add-agent-sql .data-content-area .sql-content-box .message-input,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .sql-content-box .message-input,
    .ai-agent-log-popup.add-agent-sql .data-content-area .sql-content-box .message-input {
      background-color: #282a36; }
      .add-data-editor-popup.add-agent-sql .data-content-area .sql-content-box .message-input .question-input,
      .add-ai-agent-block-popup.add-agent-sql .data-content-area .sql-content-box .message-input .question-input,
      .ai-agent-log-popup.add-agent-sql .data-content-area .sql-content-box .message-input .question-input {
        background-color: #282a36; }
    .add-data-editor-popup.add-agent-sql .data-content-area .sql-content-box .sql-view-box,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .sql-content-box .sql-view-box,
    .ai-agent-log-popup.add-agent-sql .data-content-area .sql-content-box .sql-view-box {
      background-color: #282a36;
      width: 100%;
      height: 100%; }
    .add-data-editor-popup.add-agent-sql .data-content-area .sql-content-box .btn-sql-run,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .sql-content-box .btn-sql-run,
    .ai-agent-log-popup.add-agent-sql .data-content-area .sql-content-box .btn-sql-run {
      position: relative;
      width: 80px;
      height: 100%;
      top: auto;
      right: auto;
      margin-left: 10px; }
  .add-data-editor-popup.add-agent-sql .data-content-area .content-row,
  .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-row,
  .ai-agent-log-popup.add-agent-sql .data-content-area .content-row {
    flex: 1;
    width: 100%;
    position: relative; }
    .add-data-editor-popup.add-agent-sql .data-content-area .content-row > .inner-box,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-row > .inner-box,
    .ai-agent-log-popup.add-agent-sql .data-content-area .content-row > .inner-box {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap; }
  .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box,
  .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box,
  .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box {
    position: relative;
    width: 30%;
    max-width: 350px;
    border: 1px solid #15a5b7;
    background-color: #282a36;
    border-radius: 10px;
    margin: 0 0 0 10px;
    overflow: hidden; }
    .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box > .inner-box,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box > .inner-box,
    .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box > .inner-box {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow-y: auto; }
    .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row,
    .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row {
      position: relative;
      margin: 0 0 10px;
      color: #fff;
      padding: 0 10px; }
      .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row.header-row,
      .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row.header-row,
      .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row.header-row {
        font-size: 14px;
        text-align: center;
        margin: 5px 0; }
      .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row.js-add-field,
      .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row.js-add-field,
      .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row.js-add-field {
        cursor: pointer; }
      .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row .col-6,
      .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row .col-6,
      .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row .col-6 {
        padding-left: 5px;
        padding-right: 5px; }
      .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row .btn-remove,
      .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row .btn-remove,
      .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row .btn-remove {
        position: absolute;
        top: 50%;
        right: 7px;
        transform: translateY(-50%);
        padding: 2px;
        color: #fff; }
      .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row:not(:first-child) label,
      .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row:not(:first-child) label,
      .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row:not(:first-child) label {
        position: absolute;
        left: -999px;
        top: 0;
        width: 1px;
        height: 1px; }
      .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row .form-control,
      .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row .form-control,
      .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row .form-control {
        background-color: #000;
        border-color: #000;
        color: #fff; }
        .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row .form-control.disabled,
        .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row .form-control.disabled,
        .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row .form-control.disabled {
          background-color: #3b3b3b; }
      .add-data-editor-popup.add-agent-sql .data-content-area .key-value-box .row .value-form-control,
      .add-ai-agent-block-popup.add-agent-sql .data-content-area .key-value-box .row .value-form-control,
      .ai-agent-log-popup.add-agent-sql .data-content-area .key-value-box .row .value-form-control {
        border-color: #bfbfbf; }
  .add-data-editor-popup.add-agent-sql .data-content-area .content-box-top,
  .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-box-top,
  .ai-agent-log-popup.add-agent-sql .data-content-area .content-box-top {
    height: 50px;
    border-bottom: 1px solid #ccc; }
    .add-data-editor-popup.add-agent-sql .data-content-area .content-box-top > .row,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-box-top > .row,
    .ai-agent-log-popup.add-agent-sql .data-content-area .content-box-top > .row {
      margin: 0;
      height: 100%;
      padding: 0 25px;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .add-data-editor-popup.add-agent-sql .data-content-area .content-box-top .inner-box,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-box-top .inner-box,
    .ai-agent-log-popup.add-agent-sql .data-content-area .content-box-top .inner-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .add-data-editor-popup.add-agent-sql .data-content-area .content-box-top .form-check,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-box-top .form-check,
    .ai-agent-log-popup.add-agent-sql .data-content-area .content-box-top .form-check {
      font-size: 16px;
      margin-bottom: 0;
      padding-left: 2rem; }
    .add-data-editor-popup.add-agent-sql .data-content-area .content-box-top .form-check-input,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-box-top .form-check-input,
    .ai-agent-log-popup.add-agent-sql .data-content-area .content-box-top .form-check-input {
      border-color: #15a5b7; }
    .add-data-editor-popup.add-agent-sql .data-content-area .content-box-top .form-check-input:checked,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-box-top .form-check-input:checked,
    .ai-agent-log-popup.add-agent-sql .data-content-area .content-box-top .form-check-input:checked {
      background-color: #15a5b7;
      border-color: #15a5b7; }
    .add-data-editor-popup.add-agent-sql .data-content-area .content-box-top .form-group .form-control,
    .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-box-top .form-group .form-control,
    .ai-agent-log-popup.add-agent-sql .data-content-area .content-box-top .form-group .form-control {
      max-width: 130px; }
  .add-data-editor-popup.add-agent-sql .data-content-area .content-box-body,
  .add-ai-agent-block-popup.add-agent-sql .data-content-area .content-box-body,
  .ai-agent-log-popup.add-agent-sql .data-content-area .content-box-body {
    position: relative;
    height: calc(100% - 50px); }
  .add-data-editor-popup.add-agent .union-area .form > .row,
  .add-ai-agent-block-popup.add-agent .union-area .form > .row,
  .ai-agent-log-popup.add-agent .union-area .form > .row {
    height: 100%; }
  .add-data-editor-popup.add-agent .col-3,
  .add-data-editor-popup.add-agent .col-9,
  .add-ai-agent-block-popup.add-agent .col-3,
  .add-ai-agent-block-popup.add-agent .col-9,
  .ai-agent-log-popup.add-agent .col-3,
  .ai-agent-log-popup.add-agent .col-9 {
    border-top: 1px solid #ccc;
    padding: 0;
    height: 100%; }
  .add-data-editor-popup.add-agent .tree-list-box,
  .add-ai-agent-block-popup.add-agent .tree-list-box,
  .ai-agent-log-popup.add-agent .tree-list-box {
    position: absolute;
    border-right: 1px solid #ccc;
    width: 100%;
    height: 100%;
    padding-right: 15px;
    padding-left: 15px;
    overflow-y: auto; }
    .add-data-editor-popup.add-agent .tree-list-box .tree-title,
    .add-ai-agent-block-popup.add-agent .tree-list-box .tree-title,
    .ai-agent-log-popup.add-agent .tree-list-box .tree-title {
      font-size: 20px;
      padding: 10px 0 5px; }
    .add-data-editor-popup.add-agent .tree-list-box .list-item,
    .add-ai-agent-block-popup.add-agent .tree-list-box .list-item,
    .ai-agent-log-popup.add-agent .tree-list-box .list-item {
      padding: 10px 0; }
    .add-data-editor-popup.add-agent .tree-list-box .item-header,
    .add-ai-agent-block-popup.add-agent .tree-list-box .item-header,
    .ai-agent-log-popup.add-agent .tree-list-box .item-header {
      position: relative;
      margin: 0;
      width: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      flex-wrap: nowrap; }
    .add-data-editor-popup.add-agent .tree-list-box .agent-label,
    .add-data-editor-popup.add-agent .tree-list-box .agent-db-label,
    .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label,
    .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label,
    .ai-agent-log-popup.add-agent .tree-list-box .agent-label,
    .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label {
      border: 1px solid #bfbfbf;
      background-color: #fff;
      padding: 7px 10px;
      border-radius: 8px;
      flex: 1;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: space-between;
      flex-align: space-between;
      -webkit-align-items: space-between;
      -moz-box-align-items: space-between;
      -ms-align-items: space-between;
      -webkit-align-items: space-between;
      align-items: space-between;
      cursor: pointer; }
      .add-data-editor-popup.add-agent .tree-list-box .agent-label .label,
      .add-data-editor-popup.add-agent .tree-list-box .agent-db-label .label,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label .label,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label .label,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-label .label,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label .label {
        flex: 1;
        background-color: transparent;
        text-align: initial;
        border: none;
        color: inherit; }
      .add-data-editor-popup.add-agent .tree-list-box .agent-label .icon-box,
      .add-data-editor-popup.add-agent .tree-list-box .agent-db-label .icon-box,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label .icon-box,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label .icon-box,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-label .icon-box,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label .icon-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .add-data-editor-popup.add-agent .tree-list-box .agent-label .active-box,
      .add-data-editor-popup.add-agent .tree-list-box .agent-db-label .active-box,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label .active-box,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label .active-box,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-label .active-box,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label .active-box {
        width: 12px;
        height: 12px;
        display: block;
        border-radius: 12px;
        background-color: #ed0001;
        margin-right: 5px; }
        .add-data-editor-popup.add-agent .tree-list-box .agent-label .active-box.on,
        .add-data-editor-popup.add-agent .tree-list-box .agent-db-label .active-box.on,
        .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label .active-box.on,
        .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label .active-box.on,
        .ai-agent-log-popup.add-agent .tree-list-box .agent-label .active-box.on,
        .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label .active-box.on {
          background-color: #389C2C; }
      .add-data-editor-popup.add-agent .tree-list-box .agent-label .btn,
      .add-data-editor-popup.add-agent .tree-list-box .agent-db-label .btn,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label .btn,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label .btn,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-label .btn,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label .btn {
        padding: 0; }
        .add-data-editor-popup.add-agent .tree-list-box .agent-label .btn i.icon,
        .add-data-editor-popup.add-agent .tree-list-box .agent-db-label .btn i.icon,
        .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label .btn i.icon,
        .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label .btn i.icon,
        .ai-agent-log-popup.add-agent .tree-list-box .agent-label .btn i.icon,
        .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label .btn i.icon {
          display: block; }
      .add-data-editor-popup.add-agent .tree-list-box .agent-label.on,
      .add-data-editor-popup.add-agent .tree-list-box .agent-db-label.on,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label.on,
      .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label.on,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-label.on,
      .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label.on {
        background-color: #15a5b7;
        color: #fff; }
        .add-data-editor-popup.add-agent .tree-list-box .agent-label.on .btn,
        .add-data-editor-popup.add-agent .tree-list-box .agent-db-label.on .btn,
        .add-ai-agent-block-popup.add-agent .tree-list-box .agent-label.on .btn,
        .add-ai-agent-block-popup.add-agent .tree-list-box .agent-db-label.on .btn,
        .ai-agent-log-popup.add-agent .tree-list-box .agent-label.on .btn,
        .ai-agent-log-popup.add-agent .tree-list-box .agent-db-label.on .btn {
          color: #fff; }
    .add-data-editor-popup.add-agent .tree-list-box .loading-wrap,
    .add-ai-agent-block-popup.add-agent .tree-list-box .loading-wrap,
    .ai-agent-log-popup.add-agent .tree-list-box .loading-wrap {
      position: relative;
      width: 100%;
      height: 30px; }
    .add-data-editor-popup.add-agent .tree-list-box .loader-spinner,
    .add-ai-agent-block-popup.add-agent .tree-list-box .loader-spinner,
    .ai-agent-log-popup.add-agent .tree-list-box .loader-spinner {
      border: 3px solid rgba(255, 255, 255, 0.2);
      border-top-color: #ccc;
      border-bottom-color: #ccc; }
    .add-data-editor-popup.add-agent .tree-list-box .item-body .no-data,
    .add-ai-agent-block-popup.add-agent .tree-list-box .item-body .no-data,
    .ai-agent-log-popup.add-agent .tree-list-box .item-body .no-data {
      padding: 10px 0;
      text-align: center; }
    .add-data-editor-popup.add-agent .tree-list-box .item-body .list-item,
    .add-ai-agent-block-popup.add-agent .tree-list-box .item-body .list-item,
    .ai-agent-log-popup.add-agent .tree-list-box .item-body .list-item {
      position: relative;
      padding-left: 30px;
      padding-bottom: 0; }
      .add-data-editor-popup.add-agent .tree-list-box .item-body .list-item:before,
      .add-ai-agent-block-popup.add-agent .tree-list-box .item-body .list-item:before,
      .ai-agent-log-popup.add-agent .tree-list-box .item-body .list-item:before {
        content: "";
        display: block;
        height: 50px;
        width: 1px;
        background-color: #999;
        position: absolute;
        top: 0;
        left: 16px; }
      .add-data-editor-popup.add-agent .tree-list-box .item-body .list-item:after,
      .add-ai-agent-block-popup.add-agent .tree-list-box .item-body .list-item:after,
      .ai-agent-log-popup.add-agent .tree-list-box .item-body .list-item:after {
        content: "";
        display: block;
        height: 1px;
        width: 14px;
        background-color: #999;
        position: absolute;
        top: 30px;
        left: 16px; }
      .add-data-editor-popup.add-agent .tree-list-box .item-body .list-item:last-child:before,
      .add-ai-agent-block-popup.add-agent .tree-list-box .item-body .list-item:last-child:before,
      .ai-agent-log-popup.add-agent .tree-list-box .item-body .list-item:last-child:before {
        height: 30px; }
  .add-data-editor-popup.add-agent .agent-content-wrap,
  .add-ai-agent-block-popup.add-agent .agent-content-wrap,
  .ai-agent-log-popup.add-agent .agent-content-wrap {
    position: relative;
    padding: 15px 20px;
    height: 100%;
    overflow-y: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
  .add-data-editor-popup.add-agent .db-connect-type-tab,
  .add-ai-agent-block-popup.add-agent .db-connect-type-tab,
  .ai-agent-log-popup.add-agent .db-connect-type-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: -1px;
    padding: 0 10px;
    height: 38px; }
    .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect,
    .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect,
    .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect {
      position: relative;
      border: 1px solid #ccc;
      border-bottom-color: transparent;
      border-radius: 8px 8px 0 0;
      width: 100px;
      margin: 0 5px;
      padding-left: 40px; }
      .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect:hover, .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect:focus, .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect:active, .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect:focus-visible,
      .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect:hover,
      .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect:focus,
      .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect:active,
      .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect:focus-visible,
      .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect:hover,
      .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect:focus,
      .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect:active,
      .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect:focus-visible {
        color: #15a5b7; }
      .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect.on,
      .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect.on,
      .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect.on {
        color: #15a5b7;
        border-color: #15a5b7;
        border-bottom-color: transparent; }
      .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect .icon,
      .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect .icon,
      .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect .icon {
        position: absolute;
        display: block;
        width: 20px;
        height: 20px;
        top: 8px;
        left: 10px;
        background-repeat: no-repeat;
        background-size: cover;
        text-indent: -999em; }
      .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect .icon-api,
      .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect .icon-api,
      .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect .icon-api {
        background-image: url("/static/svg/datamenu_api_subscribe.svg"); }
      .add-data-editor-popup.add-agent .db-connect-type-tab .btn-connect .icon-iot,
      .add-ai-agent-block-popup.add-agent .db-connect-type-tab .btn-connect .icon-iot,
      .ai-agent-log-popup.add-agent .db-connect-type-tab .btn-connect .icon-iot {
        background-image: url("/static/svg/datamenu_iot_subscribe.svg"); }
  .add-data-editor-popup.add-agent .connector-search-box,
  .add-ai-agent-block-popup.add-agent .connector-search-box,
  .ai-agent-log-popup.add-agent .connector-search-box {
    border-top: 1px solid #15a5b7;
    padding: 15px;
    height: 69px; }
  .add-data-editor-popup.add-agent .connector-list-wrap,
  .add-ai-agent-block-popup.add-agent .connector-list-wrap,
  .ai-agent-log-popup.add-agent .connector-list-wrap {
    flex: 1;
    overflow-y: auto;
    padding: 0  15px 0; }
    .add-data-editor-popup.add-agent .connector-list-wrap .loading-wrap,
    .add-ai-agent-block-popup.add-agent .connector-list-wrap .loading-wrap,
    .ai-agent-log-popup.add-agent .connector-list-wrap .loading-wrap {
      position: relative;
      width: 100%;
      height: 100px; }
    .add-data-editor-popup.add-agent .connector-list-wrap .loader-spinner,
    .add-ai-agent-block-popup.add-agent .connector-list-wrap .loader-spinner,
    .ai-agent-log-popup.add-agent .connector-list-wrap .loader-spinner {
      border: 3px solid rgba(255, 255, 255, 0.2);
      border-top-color: #ccc;
      border-bottom-color: #ccc;
      width: 30px;
      height: 30px; }
  .add-data-editor-popup.add-agent .db-connector-item,
  .add-ai-agent-block-popup.add-agent .db-connector-item,
  .ai-agent-log-popup.add-agent .db-connector-item {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 20px 0;
    transition: all .2s; }
    .add-data-editor-popup.add-agent .db-connector-item:first-child,
    .add-ai-agent-block-popup.add-agent .db-connector-item:first-child,
    .ai-agent-log-popup.add-agent .db-connector-item:first-child {
      margin-top: 0; }
    .add-data-editor-popup.add-agent .db-connector-item:last-child,
    .add-ai-agent-block-popup.add-agent .db-connector-item:last-child,
    .ai-agent-log-popup.add-agent .db-connector-item:last-child {
      margin-bottom: 0; }
    .add-data-editor-popup.add-agent .db-connector-item:hover, .add-data-editor-popup.add-agent .db-connector-item:focus, .add-data-editor-popup.add-agent .db-connector-item:active, .add-data-editor-popup.add-agent .db-connector-item:focus-visible, .add-data-editor-popup.add-agent .db-connector-item.on,
    .add-ai-agent-block-popup.add-agent .db-connector-item:hover,
    .add-ai-agent-block-popup.add-agent .db-connector-item:focus,
    .add-ai-agent-block-popup.add-agent .db-connector-item:active,
    .add-ai-agent-block-popup.add-agent .db-connector-item:focus-visible,
    .add-ai-agent-block-popup.add-agent .db-connector-item.on,
    .ai-agent-log-popup.add-agent .db-connector-item:hover,
    .ai-agent-log-popup.add-agent .db-connector-item:focus,
    .ai-agent-log-popup.add-agent .db-connector-item:active,
    .ai-agent-log-popup.add-agent .db-connector-item:focus-visible,
    .ai-agent-log-popup.add-agent .db-connector-item.on {
      border-color: #15a5b7;
      box-shadow: inset 0 0 0 2px #15a5b7; }
    .add-data-editor-popup.add-agent .db-connector-item .sql-view-box,
    .add-ai-agent-block-popup.add-agent .db-connector-item .sql-view-box,
    .ai-agent-log-popup.add-agent .db-connector-item .sql-view-box {
      position: relative;
      border: 1px solid #15a5b7;
      background-color: #000;
      border-radius: 10px;
      overflow: hidden;
      height: 150px; }
      .add-data-editor-popup.add-agent .db-connector-item .sql-view-box textarea,
      .add-ai-agent-block-popup.add-agent .db-connector-item .sql-view-box textarea,
      .ai-agent-log-popup.add-agent .db-connector-item .sql-view-box textarea {
        display: block;
        width: 100%;
        height: 100%;
        padding: 10px 30px 10px 15px;
        color: #fff;
        overflow-y: auto;
        resize: none;
        background-color: transparent;
        border: 0; }
    .add-data-editor-popup.add-agent .db-connector-item .item-top,
    .add-ai-agent-block-popup.add-agent .db-connector-item .item-top,
    .ai-agent-log-popup.add-agent .db-connector-item .item-top {
      margin-bottom: 10px; }
    .add-data-editor-popup.add-agent .db-connector-item .api-connect-row,
    .add-data-editor-popup.add-agent .db-connector-item .iot-connect-row,
    .add-ai-agent-block-popup.add-agent .db-connector-item .api-connect-row,
    .add-ai-agent-block-popup.add-agent .db-connector-item .iot-connect-row,
    .ai-agent-log-popup.add-agent .db-connector-item .api-connect-row,
    .ai-agent-log-popup.add-agent .db-connector-item .iot-connect-row {
      position: relative;
      padding-left: 35px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .add-data-editor-popup.add-agent .db-connector-item .api-connect-row .icon,
      .add-data-editor-popup.add-agent .db-connector-item .iot-connect-row .icon,
      .add-ai-agent-block-popup.add-agent .db-connector-item .api-connect-row .icon,
      .add-ai-agent-block-popup.add-agent .db-connector-item .iot-connect-row .icon,
      .ai-agent-log-popup.add-agent .db-connector-item .api-connect-row .icon,
      .ai-agent-log-popup.add-agent .db-connector-item .iot-connect-row .icon {
        position: absolute;
        display: block;
        width: 20px;
        height: 20px;
        top: 10px;
        left: 8px;
        background-repeat: no-repeat;
        background-size: cover;
        text-indent: -999em; }
    .add-data-editor-popup.add-agent .db-connector-item .api-connect-row .icon,
    .add-ai-agent-block-popup.add-agent .db-connector-item .api-connect-row .icon,
    .ai-agent-log-popup.add-agent .db-connector-item .api-connect-row .icon {
      background-image: url("/static/svg/datamenu_api_subscribe.svg"); }
    .add-data-editor-popup.add-agent .db-connector-item .api-connect-row .key-box,
    .add-ai-agent-block-popup.add-agent .db-connector-item .api-connect-row .key-box,
    .ai-agent-log-popup.add-agent .db-connector-item .api-connect-row .key-box {
      flex: 1; }
    .add-data-editor-popup.add-agent .db-connector-item .iot-connect-row .icon,
    .add-ai-agent-block-popup.add-agent .db-connector-item .iot-connect-row .icon,
    .ai-agent-log-popup.add-agent .db-connector-item .iot-connect-row .icon {
      background-image: url("/static/svg/datamenu_iot_subscribe.svg"); }
    .add-data-editor-popup.add-agent .db-connector-item .iot-connect-row .broker-select,
    .add-ai-agent-block-popup.add-agent .db-connector-item .iot-connect-row .broker-select,
    .ai-agent-log-popup.add-agent .db-connector-item .iot-connect-row .broker-select {
      flex: 2;
      margin: 0 5px; }
    .add-data-editor-popup.add-agent .db-connector-item .iot-connect-row .topic-select,
    .add-data-editor-popup.add-agent .db-connector-item .iot-connect-row .interval-box,
    .add-ai-agent-block-popup.add-agent .db-connector-item .iot-connect-row .topic-select,
    .add-ai-agent-block-popup.add-agent .db-connector-item .iot-connect-row .interval-box,
    .ai-agent-log-popup.add-agent .db-connector-item .iot-connect-row .topic-select,
    .ai-agent-log-popup.add-agent .db-connector-item .iot-connect-row .interval-box {
      flex: 1;
      margin: 0 5px; }
  .add-data-editor-popup.add-agent .no-data,
  .add-ai-agent-block-popup.add-agent .no-data,
  .ai-agent-log-popup.add-agent .no-data {
    padding: 60px 0;
    text-align: center; }
  .add-data-editor-popup.history-popup .popup-content,
  .add-ai-agent-block-popup.history-popup .popup-content,
  .ai-agent-log-popup.history-popup .popup-content {
    overflow: hidden; }
    .add-data-editor-popup.history-popup .popup-content > .row > .col-9,
    .add-data-editor-popup.history-popup .popup-content > .row > .col-3,
    .add-ai-agent-block-popup.history-popup .popup-content > .row > .col-9,
    .add-ai-agent-block-popup.history-popup .popup-content > .row > .col-3,
    .ai-agent-log-popup.history-popup .popup-content > .row > .col-9,
    .ai-agent-log-popup.history-popup .popup-content > .row > .col-3 {
      padding: 0;
      height: 100%; }
  .add-data-editor-popup.history-popup .data-content-area,
  .add-ai-agent-block-popup.history-popup .data-content-area,
  .ai-agent-log-popup.history-popup .data-content-area {
    padding: 15px;
    height: 100%; }
  .add-data-editor-popup.history-popup .data-history-list-area,
  .add-ai-agent-block-popup.history-popup .data-history-list-area,
  .ai-agent-log-popup.history-popup .data-history-list-area {
    padding: 15px 15px 15px 0;
    height: 100%;
    overflow-y: auto; }
  .add-data-editor-popup.history-popup .sql-area,
  .add-ai-agent-block-popup.history-popup .sql-area,
  .ai-agent-log-popup.history-popup .sql-area {
    width: 100%;
    height: 100%;
    border: 1px solid #15a5b7;
    border-radius: 10px;
    overflow: hidden; }
  .add-data-editor-popup.history-popup .history-item,
  .add-ai-agent-block-popup.history-popup .history-item,
  .ai-agent-log-popup.history-popup .history-item {
    border: 1px solid #888;
    border-radius: 8px;
    background-color: #f5f5f5;
    padding: 15px 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 15px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s; }
    .add-data-editor-popup.history-popup .history-item:hover, .add-data-editor-popup.history-popup .history-item:focus, .add-data-editor-popup.history-popup .history-item:active, .add-data-editor-popup.history-popup .history-item:focus-visible, .add-data-editor-popup.history-popup .history-item.active,
    .add-ai-agent-block-popup.history-popup .history-item:hover,
    .add-ai-agent-block-popup.history-popup .history-item:focus,
    .add-ai-agent-block-popup.history-popup .history-item:active,
    .add-ai-agent-block-popup.history-popup .history-item:focus-visible,
    .add-ai-agent-block-popup.history-popup .history-item.active,
    .ai-agent-log-popup.history-popup .history-item:hover,
    .ai-agent-log-popup.history-popup .history-item:focus,
    .ai-agent-log-popup.history-popup .history-item:active,
    .ai-agent-log-popup.history-popup .history-item:focus-visible,
    .ai-agent-log-popup.history-popup .history-item.active {
      border-color: #15a5b7;
      box-shadow: 0 0 0 2px #15a5b7 inset; }
    .add-data-editor-popup.history-popup .history-item .time,
    .add-ai-agent-block-popup.history-popup .history-item .time,
    .ai-agent-log-popup.history-popup .history-item .time {
      font-weight: bold;
      line-height: 38px; }
    .add-data-editor-popup.history-popup .history-item .btn-remove:hover, .add-data-editor-popup.history-popup .history-item .btn-remove:focus, .add-data-editor-popup.history-popup .history-item .btn-remove:active, .add-data-editor-popup.history-popup .history-item .btn-remove:focus-visible,
    .add-ai-agent-block-popup.history-popup .history-item .btn-remove:hover,
    .add-ai-agent-block-popup.history-popup .history-item .btn-remove:focus,
    .add-ai-agent-block-popup.history-popup .history-item .btn-remove:active,
    .add-ai-agent-block-popup.history-popup .history-item .btn-remove:focus-visible,
    .ai-agent-log-popup.history-popup .history-item .btn-remove:hover,
    .ai-agent-log-popup.history-popup .history-item .btn-remove:focus,
    .ai-agent-log-popup.history-popup .history-item .btn-remove:active,
    .ai-agent-log-popup.history-popup .history-item .btn-remove:focus-visible {
      color: #15a5b7; }
  .add-data-editor-popup.history-popup .no-item,
  .add-ai-agent-block-popup.history-popup .no-item,
  .ai-agent-log-popup.history-popup .no-item {
    padding: 15px 20px;
    text-align: center; }

.variable-list-box .variable-item {
  position: relative;
  padding: 8px 25px 8px 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f2f2f2;
  transition: border-color .1s, box-shadow .1s;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  .variable-list-box .variable-item:last-child {
    margin-bottom: 0; }
  .variable-list-box .variable-item:hover, .variable-list-box .variable-item:focus-visible, .variable-list-box .variable-item.active {
    border-color: #15a5b7;
    box-shadow: 0 0 0 2px #15a5b7 inset; }
    .variable-list-box .variable-item:hover .btn-delete, .variable-list-box .variable-item:focus-visible .btn-delete, .variable-list-box .variable-item.active .btn-delete {
      opacity: 1; }
  .variable-list-box .variable-item .form-group,
  .variable-list-box .variable-item .form-group + .form-group,
  .variable-list-box .variable-item .form-group + .form-check,
  .variable-list-box .variable-item .form-group + .btn {
    margin: 0; }
  .variable-list-box .variable-item .key-box {
    width: 30%;
    margin-right: 8px; }
  .variable-list-box .variable-item .static-box {
    margin-bottom: 0;
    margin-right: 8px; }
    .variable-list-box .variable-item .static-box .form-check-input {
      margin-top: .3rem; }
    .variable-list-box .variable-item .static-box .form-check-label {
      line-height: 30px;
      word-wrap: normal;
      white-space: nowrap; }
  .variable-list-box .variable-item .form-control,
  .variable-list-box .variable-item .form-control:disabled,
  .variable-list-box .variable-item .form-control.disabled,
  .variable-list-box .variable-item .form-control:read-only {
    background-color: #fff;
    color: #333;
    opacity: 1;
    cursor: pointer; }
  .variable-list-box .variable-item .form-check-input:disabled {
    opacity: 1; }
    .variable-list-box .variable-item .form-check-input:disabled ~ .form-check-label {
      opacity: 1; }
  .variable-list-box .variable-item .btn-delete {
    opacity: 0;
    position: absolute;
    right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background-color: #000;
    padding: 0;
    margin: 0;
    top: 50%;
    transform: translateY(-50%); }
    .variable-list-box .variable-item .btn-delete:before {
      display: block;
      content: "";
      width: 8px;
      height: 2px;
      background-color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.add-ai-agent-block-popup {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px; }
  .add-ai-agent-block-popup.type-TRIGGER .data-header {
    background-color: #AF4ACE; }
  .add-ai-agent-block-popup.type-LOGIC .data-header {
    background-color: #15A5B7; }
  .add-ai-agent-block-popup.type-LOGIC .block-tabs-box .nav-link.active {
    border-bottom-color: #15A5B7; }
  .add-ai-agent-block-popup.type-LOGIC .input-box-wrap.active .json-tree-box,
  .add-ai-agent-block-popup.type-LOGIC .input-box-wrap.active .text-cm-box {
    border-color: #15A5B7; }
  .add-ai-agent-block-popup.type-LOGIC .input-box-wrap .btn-json-all {
    border-color: #15A5B7;
    color: #15A5B7; }
  .add-ai-agent-block-popup.type-PRODUCER .data-header {
    background-color: #FF9100; }
  .add-ai-agent-block-popup.type-PRODUCER .block-tabs-box .nav-link.active {
    border-bottom-color: #FF9100; }
  .add-ai-agent-block-popup.type-CONSUMER .data-header {
    background-color: #4A6ACE; }
  .add-ai-agent-block-popup.type-CONSUMER .block-tabs-box .nav-link.active {
    border-bottom-color: #4A6ACE; }
  .add-ai-agent-block-popup.type-CONSUMER .input-box-wrap.active .json-tree-box,
  .add-ai-agent-block-popup.type-CONSUMER .input-box-wrap.active .text-cm-box {
    border-color: #4A6ACE; }
  .add-ai-agent-block-popup.type-CONSUMER .input-box-wrap .btn-json-all {
    border-color: #4A6ACE;
    color: #4A6ACE; }
  .add-ai-agent-block-popup.type-DELIVER .data-header {
    background-color: #007EC3; }
  .add-ai-agent-block-popup.type-DELIVER .block-tabs-box .nav-link.active {
    border-bottom-color: #007EC3; }
  .add-ai-agent-block-popup .block-tabs-box {
    height: 40px;
    margin-bottom: 10px; }
    .add-ai-agent-block-popup .block-tabs-box .nav-tabs {
      border-bottom: 0; }
    .add-ai-agent-block-popup .block-tabs-box .nav-item {
      border-bottom: 1px solid #dee2e6; }
    .add-ai-agent-block-popup .block-tabs-box .nav-link {
      font-size: 15px;
      padding-bottom: 5px;
      border: 0;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px; }
      .add-ai-agent-block-popup .block-tabs-box .nav-link span {
        display: block;
        border-bottom: 2px solid transparent;
        padding: 0 3px; }
      .add-ai-agent-block-popup .block-tabs-box .nav-link:hover, .add-ai-agent-block-popup .block-tabs-box .nav-link:focus, .add-ai-agent-block-popup .block-tabs-box .nav-link:active {
        outline: none;
        box-shadow: none;
        opacity: 1; }
        .add-ai-agent-block-popup .block-tabs-box .nav-link:hover span, .add-ai-agent-block-popup .block-tabs-box .nav-link:focus span, .add-ai-agent-block-popup .block-tabs-box .nav-link:active span {
          border-bottom-color: transparent; }
      .add-ai-agent-block-popup .block-tabs-box .nav-link.active {
        opacity: 1;
        border-bottom-color: #15a5b7; }
  .add-ai-agent-block-popup .block-content-header {
    height: 40px;
    margin-bottom: 10px; }
    .add-ai-agent-block-popup .block-content-header .form-group.form-inline label {
      font-size: 14px; }
    .add-ai-agent-block-popup .block-content-header .form-group.form-inline .form-control {
      width: 300px; }
  .add-ai-agent-block-popup .ai-agent-info-box {
    position: relative;
    padding: 10px 15px 15px; }
    .add-ai-agent-block-popup .ai-agent-info-box > .row {
      width: 100%;
      margin: 0; }
    .add-ai-agent-block-popup .ai-agent-info-box .form-group {
      margin-right: 15px; }
    .add-ai-agent-block-popup .ai-agent-info-box .form-group + .form-group {
      margin-top: 0; }
    .add-ai-agent-block-popup .ai-agent-info-box .form-group:last-child {
      margin-right: 0; }
    .add-ai-agent-block-popup .ai-agent-info-box .block-name-wrap {
      width: 20%;
      min-width: 300px; }
    .add-ai-agent-block-popup .ai-agent-info-box .block-description-wrap {
      flex: 1; }
    .add-ai-agent-block-popup .ai-agent-info-box .trigger-select-wrap {
      width: 180px;
      flex: 0 0 180px; }
      .add-ai-agent-block-popup .ai-agent-info-box .trigger-select-wrap select.form-control {
        width: 100%; }
    .add-ai-agent-block-popup .ai-agent-info-box .btn-run {
      width: 150px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .add-ai-agent-block-popup .ai-agent-info-box .btn-run .icon {
        position: relative;
        margin-right: 5px; }
      .add-ai-agent-block-popup .ai-agent-info-box .btn-run .run-icon:before {
        display: block;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 0 6px 10px;
        border-color: transparent transparent transparent #fff; }
      .add-ai-agent-block-popup .ai-agent-info-box .btn-run .stop-icon:before {
        display: block;
        content: "";
        width: 12px;
        height: 12px;
        background-color: #fff; }
      .add-ai-agent-block-popup .ai-agent-info-box .btn-run .spinner {
        display: block;
        width: 10px;
        height: 10px;
        border: 2px solid #fff;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite; }
    .add-ai-agent-block-popup .ai-agent-info-box .error-message {
      position: absolute;
      right: 15px;
      bottom: -8px;
      font-size: 12px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .add-ai-agent-block-popup .ai-agent-info-box .error-message .icon {
        width: 15px;
        height: 15px;
        background-color: #ed0001;
        border-radius: 3px;
        color: #fff;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        margin-right: 5px; }
  .add-ai-agent-block-popup .data-body {
    padding: 0 15px; }
    .add-ai-agent-block-popup .data-body .block-content-header + .row,
    .add-ai-agent-block-popup .data-body .block-tabs-box + .row {
      height: calc(100% - 50px); }
    .add-ai-agent-block-popup .data-body .section-box {
      overflow: hidden; }
    .add-ai-agent-block-popup .data-body .inner-section {
      position: relative;
      padding: 20px 0 0;
      height: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
    .add-ai-agent-block-popup .data-body .section-title {
      position: absolute;
      top: 0;
      left: 0;
      font-size: 16px;
      margin: 0 0 5px;
      text-align: left;
      padding: 0 10px; }
    .add-ai-agent-block-popup .data-body .setting-box,
    .add-ai-agent-block-popup .data-body .list-box,
    .add-ai-agent-block-popup .data-body .input-box,
    .add-ai-agent-block-popup .data-body .preview-box,
    .add-ai-agent-block-popup .data-body .item-box,
    .add-ai-agent-block-popup .data-body .output-box {
      border: 1px solid #ccc;
      padding: 5px 10px;
      border-radius: 8px;
      flex: 1;
      margin-bottom: 10px;
      overflow-y: auto; }
      .add-ai-agent-block-popup .data-body .setting-box.flex-column,
      .add-ai-agent-block-popup .data-body .list-box.flex-column,
      .add-ai-agent-block-popup .data-body .input-box.flex-column,
      .add-ai-agent-block-popup .data-body .preview-box.flex-column,
      .add-ai-agent-block-popup .data-body .item-box.flex-column,
      .add-ai-agent-block-popup .data-body .output-box.flex-column {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
      .add-ai-agent-block-popup .data-body .setting-box > .row,
      .add-ai-agent-block-popup .data-body .list-box > .row,
      .add-ai-agent-block-popup .data-body .input-box > .row,
      .add-ai-agent-block-popup .data-body .preview-box > .row,
      .add-ai-agent-block-popup .data-body .item-box > .row,
      .add-ai-agent-block-popup .data-body .output-box > .row {
        margin: 0;
        height: 100%; }
      .add-ai-agent-block-popup .data-body .setting-box .setting-box,
      .add-ai-agent-block-popup .data-body .list-box .setting-box,
      .add-ai-agent-block-popup .data-body .input-box .setting-box,
      .add-ai-agent-block-popup .data-body .preview-box .setting-box,
      .add-ai-agent-block-popup .data-body .item-box .setting-box,
      .add-ai-agent-block-popup .data-body .output-box .setting-box {
        margin: 5px;
        border: 0;
        background-color: transparent;
        border-radius: 0; }
    .add-ai-agent-block-popup .data-body .form-check {
      padding-left: 1.75rem;
      font-size: 14px; }
      .add-ai-agent-block-popup .data-body .form-check .form-check-input {
        margin: -10px 0 0;
        top: 50%;
        left: 3px; }
      .add-ai-agent-block-popup .data-body .form-check .form-check-input:checked {
        background-color: #15a5b7;
        border-color: #15a5b7; }
      .add-ai-agent-block-popup .data-body .form-check .form-check-input:focus {
        border-color: #b1e6ea;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(177, 230, 234, 0.25); }
    .add-ai-agent-block-popup .data-body .setting-box {
      background-color: #f1f1f1; }
      .add-ai-agent-block-popup .data-body .setting-box.column-setting {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
      .add-ai-agent-block-popup .data-body .setting-box .sub-title {
        font-size: 15px;
        font-weight: normal;
        padding: 5px 0; }
      .add-ai-agent-block-popup .data-body .setting-box .form-group {
        position: relative; }
        .add-ai-agent-block-popup .data-body .setting-box .form-group label,
        .add-ai-agent-block-popup .data-body .setting-box .form-group .label {
          display: block;
          font-size: 12px;
          margin-bottom: 2px; }
        .add-ai-agent-block-popup .data-body .setting-box .form-group.with-var-btn {
          position: relative; }
          .add-ai-agent-block-popup .data-body .setting-box .form-group.with-var-btn .form-control {
            padding-right: 30px; }
          .add-ai-agent-block-popup .data-body .setting-box .form-group.with-var-btn .btn-variable-check {
            top: 20px; }
          .add-ai-agent-block-popup .data-body .setting-box .form-group.with-var-btn.no-label .btn-variable-check {
            top: 0; }
        .add-ai-agent-block-popup .data-body .setting-box .form-group .form-control:disabled, .add-ai-agent-block-popup .data-body .setting-box .form-group .form-control[readonly] {
          background-color: #fafafa; }
        .add-ai-agent-block-popup .data-body .setting-box .form-group .select2-container {
          height: 31px; }
      .add-ai-agent-block-popup .data-body .setting-box .form-group + .form-group {
        margin-top: 8px; }
      .add-ai-agent-block-popup .data-body .setting-box .form-layout-flex {
        flex: 1; }
      .add-ai-agent-block-popup .data-body .setting-box .input-wrap {
        position: relative; }
        .add-ai-agent-block-popup .data-body .setting-box .input-wrap .form-control {
          padding-right: 35px; }
        .add-ai-agent-block-popup .data-body .setting-box .input-wrap .form-control:disabled, .add-ai-agent-block-popup .data-body .setting-box .input-wrap .form-control[readonly] {
          background-color: #fafafa; }
        .add-ai-agent-block-popup .data-body .setting-box .input-wrap .btn-copy {
          position: absolute;
          top: 0;
          right: 0;
          background-color: transparent;
          border: 0; }
        .add-ai-agent-block-popup .data-body .setting-box .input-wrap .form-control-sm + .btn-copy {
          top: -3px; }
      .add-ai-agent-block-popup .data-body .setting-box .check-v {
        position: absolute;
        padding: 0;
        top: 0;
        right: 0; }
        .add-ai-agent-block-popup .data-body .setting-box .check-v .form-check-input {
          position: absolute;
          top: 0;
          left: 0;
          width: 0;
          height: 0;
          visibility: hidden;
          opacity: 0; }
        .add-ai-agent-block-popup .data-body .setting-box .check-v .form-check-input + .form-check-label {
          width: 30px;
          height: 30px;
          border: 1px solid #BFBFBF;
          border-radius: 5px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          font-size: 16px;
          background-color: #BFBFBF;
          cursor: pointer;
          margin-bottom: 0;
          color: #fff;
          font-weight: bold; }
        .add-ai-agent-block-popup .data-body .setting-box .check-v .form-check-input:checked + .form-check-label {
          background-color: #15a5b7;
          border-color: #15a5b7;
          color: #fff; }
      .add-ai-agent-block-popup .data-body .setting-box .btn-variable-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 30px;
        border: 1px solid #BFBFBF;
        border-radius: 5px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        font-size: 16px;
        background-color: #BFBFBF;
        cursor: pointer;
        margin-bottom: 0;
        font-weight: bold;
        color: #fff; }
        .add-ai-agent-block-popup .data-body .setting-box .btn-variable-check.on {
          background-color: #15a5b7;
          border-color: #15a5b7; }
      .add-ai-agent-block-popup .data-body .setting-box .date-picker-wrap {
        position: relative; }
        .add-ai-agent-block-popup .data-body .setting-box .date-picker-wrap .form-control {
          padding-right: 30px; }
        .add-ai-agent-block-popup .data-body .setting-box .date-picker-wrap .input-group-addon {
          position: absolute;
          right: 12px;
          top: 0;
          font-size: 21px; }
        .add-ai-agent-block-popup .data-body .setting-box .date-picker-wrap .form-control::-webkit-calendar-picker-indicator {
          display: none;
          background: none; }
      .add-ai-agent-block-popup .data-body .setting-box .repeat-check-group {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .add-ai-agent-block-popup .data-body .setting-box .repeat-check-group .form-check {
          position: relative;
          padding: 0; }
          .add-ai-agent-block-popup .data-body .setting-box .repeat-check-group .form-check .form-check-input {
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 0;
            visibility: hidden;
            opacity: 0; }
          .add-ai-agent-block-popup .data-body .setting-box .repeat-check-group .form-check .form-check-input + .form-check-label {
            width: 30px;
            height: 30px;
            border: 1px solid #ccc;
            border-radius: 5px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -ms-flex-align: center;
            flex-align: center;
            -webkit-align-items: center;
            -moz-box-align-items: center;
            -ms-align-items: center;
            -webkit-align-items: center;
            align-items: center;
            -ms-flex-pack: center;
            flex-pack: center;
            -webkit-justify-content: center;
            -moz-box-justify-content: center;
            -ms-justify-content: center;
            -webkit-justify-content: center;
            justify-content: center;
            font-size: 16px;
            background-color: #fff;
            cursor: pointer;
            margin-bottom: 0; }
          .add-ai-agent-block-popup .data-body .setting-box .repeat-check-group .form-check .form-check-input:checked + .form-check-label {
            background-color: #15a5b7;
            color: #fff; }
      .add-ai-agent-block-popup .data-body .setting-box .column-box > .row {
        margin: 0; }
      .add-ai-agent-block-popup .data-body .setting-box .column-box .box-area {
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 8px; }
      .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item {
        width: 100%;
        color: #2F373A;
        margin-top: 5px;
        margin-bottom: 5px;
        padding-left: 5px;
        padding-right: 5px; }
        .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .label {
          margin-bottom: 0; }
        .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .form-control {
          margin-top: 0;
          margin-bottom: 0;
          font-size: 14px; }
        .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn {
          width: 100%;
          max-width: none;
          text-overflow: ellipsis;
          overflow: hidden;
          font-size: 14px; }
        .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .dropdown-menu {
          font-size: 14px; }
        .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data {
          text-align: left;
          background: #E3F6FF;
          border: 1px solid #0073AE;
          border-radius: 4px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          padding: 3px 5px; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .unit {
            width: 60px;
            height: 30px; }
            .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .unit .form-control {
              width: 60px;
              font-size: 13px; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .label {
            flex: 1;
            height: 26px;
            line-height: 26px;
            font-size: 14px; }
            .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .label .form-control {
              height: 26px;
              padding: 0 5px;
              min-height: 100%;
              max-width: 130px; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data.with-chart-type {
            overflow: visible; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .chart-type {
            width: 55px;
            height: 26px;
            margin-right: 5px; }
            .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .chart-type .select-dropdown {
              width: 100%;
              height: 100%;
              margin: 0; }
            .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .chart-type .btn {
              width: 100%;
              height: 100%;
              min-width: 100%;
              padding: 0 3px;
              background-color: #fff;
              border: 1px solid #ced4da;
              color: #495057;
              font-size: 14px; }
            .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .chart-type .dropdown-menu {
              min-width: 80px; }
              .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .chart-type .dropdown-menu .dropdown-item {
                padding: 3px 10px; }
              .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .chart-type .dropdown-menu .icon {
                font-size: 14px; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-data .btn-data-close {
            border: none;
            padding: 3px;
            background-color: transparent;
            margin-left: 3px; }
        .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-label {
          text-align: left;
          background: #F8FFE3;
          border: 1px solid #76AE00;
          border-radius: 4px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          padding: 3px 5px; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-label .label {
            flex: 1;
            height: 26px;
            line-height: 26px;
            font-size: 14px; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item .btn-label .btn-data-close {
            border: none;
            padding: 3px;
            background-color: transparent;
            margin-left: 3px; }
        .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item > .dropdown-menu {
          max-height: 650px;
          overflow-y: auto; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item > .dropdown-menu.with-checkbox .dropdown-item {
            padding-left: 15px; }
            .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item > .dropdown-menu.with-checkbox .dropdown-item .form-check {
              margin-bottom: 0; }
            .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item > .dropdown-menu.with-checkbox .dropdown-item.check-all {
              position: relative;
              margin-bottom: 3px; }
              .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item > .dropdown-menu.with-checkbox .dropdown-item.check-all:after {
                position: absolute;
                display: block;
                content: "";
                bottom: 0;
                left: 12px;
                right: 12px;
                height: 1px;
                background-color: #ddd; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item > .dropdown-menu.with-checkbox .form-check-input:disabled {
            opacity: 1; }
        .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item.row-options-item {
          position: absolute;
          top: 0;
          right: 0;
          padding: 6px; }
          .add-ai-agent-block-popup .data-body .setting-box .column-box .data-item.row-options-item .form-check {
            margin-bottom: 0; }
      .add-ai-agent-block-popup .data-body .setting-box .api-data-box {
        margin-top: 10px; }
        .add-ai-agent-block-popup .data-body .setting-box .api-data-box .category-nav .nav-item {
          margin-right: 10px; }
        .add-ai-agent-block-popup .data-body .setting-box .api-data-box .category-nav .nav-item .btn {
          font-size: 14px;
          padding-left: 5px;
          padding-right: 5px; }
        .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box > .row {
          margin: 0; }
        .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .variable-row {
          position: relative;
          margin-bottom: 5px; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .variable-row:last-child .btn-remove {
            display: none; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .variable-row:not(:last-child) .btn-add {
            display: none; }
        .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .row-item {
          padding: 0; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .row-item:first-child {
            padding-right: 5px; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .row-item:last-child {
            padding-left: 5px; }
        .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .form-check {
          position: absolute;
          padding: 0;
          top: 0;
          right: 32px; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .form-check .form-check-input {
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 0;
            visibility: hidden;
            opacity: 0; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .form-check .form-check-input + .form-check-label {
            width: 31px;
            height: 31px;
            border: 1px solid #BFBFBF;
            border-radius: 5px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -ms-flex-align: center;
            flex-align: center;
            -webkit-align-items: center;
            -moz-box-align-items: center;
            -ms-align-items: center;
            -webkit-align-items: center;
            align-items: center;
            -ms-flex-pack: center;
            flex-pack: center;
            -webkit-justify-content: center;
            -moz-box-justify-content: center;
            -ms-justify-content: center;
            -webkit-justify-content: center;
            justify-content: center;
            font-size: 16px;
            background-color: #BFBFBF;
            cursor: pointer;
            margin-bottom: 0;
            color: #fff;
            font-weight: bold; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .form-check .form-check-input:checked + .form-check-label {
            background-color: #15a5b7;
            border-color: #15a5b7;
            color: #fff; }
        .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .btn-round {
          position: absolute;
          width: 16px;
          height: 16px;
          border-radius: 16px;
          padding: 0;
          background-color: #000;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          overflow: hidden; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .btn-round.btn-remove:before {
            display: block;
            content: "";
            width: 12px;
            height: 2px;
            border-radius: 2px;
            background-color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .btn-round.btn-add:before {
            display: block;
            content: "";
            width: 12px;
            height: 2px;
            border-radius: 2px;
            background-color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .btn-round.btn-add:after {
            display: block;
            content: "";
            width: 2px;
            height: 12px;
            border-radius: 2px;
            background-color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
        .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .textarea-box {
          position: relative; }
          .add-ai-agent-block-popup .data-body .setting-box .api-data-box .variable-box .textarea-box textarea {
            resize: none;
            height: 250px; }
      .add-ai-agent-block-popup .data-body .setting-box .check-list-box {
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 8px;
        padding: 5px;
        height: 95%; }
        .add-ai-agent-block-popup .data-body .setting-box .check-list-box .list-item {
          padding: 5px 0;
          border-bottom: 1px solid #ccc; }
          .add-ai-agent-block-popup .data-body .setting-box .check-list-box .list-item label {
            padding-left: 30px;
            display: block;
            width: 100%;
            cursor: pointer; }
    .add-ai-agent-block-popup .data-body .item-box {
      padding: 0;
      border-radius: 0;
      border: 0;
      background-color: transparent; }
    .add-ai-agent-block-popup .data-body .btn-item-add {
      width: 100%;
      border: 1px solid #ccc;
      background-color: #f1f1f1;
      padding-top: 10px;
      padding-bottom: 10px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center; }
      .add-ai-agent-block-popup .data-body .btn-item-add .add {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        color: #fff;
        width: 15px;
        height: 15px;
        border-radius: 15px;
        overflow: hidden;
        background-color: #000;
        padding: 0; }
      .add-ai-agent-block-popup .data-body .btn-item-add:hover, .add-ai-agent-block-popup .data-body .btn-item-add:focus-visible, .add-ai-agent-block-popup .data-body .btn-item-add:active {
        background-color: #e4e4e4; }
        .add-ai-agent-block-popup .data-body .btn-item-add:hover .add, .add-ai-agent-block-popup .data-body .btn-item-add:focus-visible .add, .add-ai-agent-block-popup .data-body .btn-item-add:active .add {
          background-color: #15a5b7; }
      .add-ai-agent-block-popup .data-body .btn-item-add.disabled {
        cursor: default; }
        .add-ai-agent-block-popup .data-body .btn-item-add.disabled:hover, .add-ai-agent-block-popup .data-body .btn-item-add.disabled:focus-visible, .add-ai-agent-block-popup .data-body .btn-item-add.disabled:active {
          background-color: #f1f1f1; }
          .add-ai-agent-block-popup .data-body .btn-item-add.disabled:hover .add, .add-ai-agent-block-popup .data-body .btn-item-add.disabled:focus-visible .add, .add-ai-agent-block-popup .data-body .btn-item-add.disabled:active .add {
            background-color: #000; }
    .add-ai-agent-block-popup .data-body .output-box {
      padding: 0 !important;
      overflow: hidden; }
      .add-ai-agent-block-popup .data-body .output-box .output-container {
        height: 100%;
        border-radius: 0;
        border: 0; }
  .add-ai-agent-block-popup .output-container {
    width: 100%;
    height: calc(100% - 10px);
    min-height: 400px;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ccc; }
  .add-ai-agent-block-popup .site-list-body .table thead th {
    border-color: #d9d9d9;
    border-bottom-width: 1px;
    border-top: 0; }
  .add-ai-agent-block-popup .site-list-body .table th,
  .add-ai-agent-block-popup .site-list-body .table td {
    font-size: 14px;
    padding: 10px;
    vertical-align: middle; }
  .add-ai-agent-block-popup .date-trigger-setting {
    width: 350px; }
  .add-ai-agent-block-popup .date-trigger-output {
    flex: 1; }
  .add-ai-agent-block-popup .date-interval-setting {
    position: relative;
    border-bottom: 1px solid #000;
    padding: 5px 0 20px; }
    .add-ai-agent-block-popup .date-interval-setting .btn-setting-delete {
      position: absolute;
      top: 24px;
      right: 0;
      font-size: 20px;
      padding: 0 8px; }
    .add-ai-agent-block-popup .date-interval-setting .name-field {
      width: 88%; }
  .add-ai-agent-block-popup .btn-setting-add {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #000;
    padding: 0;
    margin: 12px auto; }
    .add-ai-agent-block-popup .btn-setting-add:before, .add-ai-agent-block-popup .btn-setting-add:after {
      position: absolute;
      display: block;
      width: 14px;
      height: 2px;
      background-color: #fff;
      content: "";
      top: 8px;
      left: 2px; }
    .add-ai-agent-block-popup .btn-setting-add:after {
      transform: rotate(90deg); }
  .add-ai-agent-block-popup .get-data {
    width: 450px; }
    .add-ai-agent-block-popup .get-data.small-width {
      width: 350px; }
  .add-ai-agent-block-popup .get-data-output {
    flex: 1; }
  .add-ai-agent-block-popup .get-data-input {
    flex: 1; }
  .add-ai-agent-block-popup .get-data-input + .get-data {
    width: 400px; }
    .add-ai-agent-block-popup .get-data-input + .get-data.flex-2 {
      flex: 2; }
  .add-ai-agent-block-popup .text-area-box {
    position: relative;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 8px;
    height: 95%;
    overflow: hidden; }
    .add-ai-agent-block-popup .text-area-box textarea {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
      resize: none;
      padding: 10px; }
  .add-ai-agent-block-popup .llm-form-group {
    position: relative; }
    .add-ai-agent-block-popup .llm-form-group .llm-prompt-area {
      resize: none;
      height: calc(100% - 20px);
      padding-right: 30px; }
    .add-ai-agent-block-popup .llm-form-group .btn-submit {
      position: absolute;
      bottom: 10px;
      right: 10px;
      width: 20px;
      height: 20px;
      padding: 0;
      background-image: url("/static/img/icon_ai_chatbot.png");
      background-repeat: no-repeat;
      background-size: contain;
      border: 0;
      background-color: transparent; }
      .add-ai-agent-block-popup .llm-form-group .btn-submit:focus-visible {
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .add-ai-agent-block-popup .input-text-box {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px 10px;
    overflow: hidden;
    margin: 8px 0; }
  .add-ai-agent-block-popup .sorting-box {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 3px 10px;
    background-color: #fff;
    min-height: 100px; }
    .add-ai-agent-block-popup .sorting-box .sort-list {
      width: 100%;
      height: 100%; }
    .add-ai-agent-block-popup .sorting-box .sort-item {
      position: relative;
      margin: 8px 0;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      padding-left: 20px; }
      .add-ai-agent-block-popup .sorting-box .sort-item:hover .sort-handle {
        opacity: 1; }
    .add-ai-agent-block-popup .sorting-box .sort-handle {
      position: absolute;
      width: 20px;
      height: 32px;
      top: 50%;
      left: 0;
      cursor: move;
      color: #bbbbbb;
      font-size: 18px;
      transform: translateY(-50%);
      z-index: 10;
      font-weight: bold;
      vertical-align: middle;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      opacity: 0; }
    .add-ai-agent-block-popup .sorting-box .item-title {
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 5px;
      background-color: #fff;
      font-size: 14px;
      flex: 1; }
  .add-ai-agent-block-popup .variable-list-box .variable-item {
    padding: 8px;
    margin-top: 10px;
    margin-bottom: 10px; }
    .add-ai-agent-block-popup .variable-list-box .variable-item:hover, .add-ai-agent-block-popup .variable-list-box .variable-item:focus-visible, .add-ai-agent-block-popup .variable-list-box .variable-item.active {
      background-color: #f2f2f2; }
  .add-ai-agent-block-popup .input-box-wrap {
    position: relative;
    width: 100%;
    margin: 8px 0 15px;
    overflow: hidden; }
    .add-ai-agent-block-popup .input-box-wrap .input-title {
      font-size: 14px;
      padding: 0 10px;
      margin-bottom: 3px; }
    .add-ai-agent-block-popup .input-box-wrap .json-tree-box,
    .add-ai-agent-block-popup .input-box-wrap .text-cm-box {
      position: relative;
      min-height: 50px;
      max-height: 300px;
      border: 1px solid #ccc;
      border-radius: 8px; }
    .add-ai-agent-block-popup .input-box-wrap.active .json-tree-box,
    .add-ai-agent-block-popup .input-box-wrap.active .text-cm-box {
      border-color: #15a5b7; }
    .add-ai-agent-block-popup .input-box-wrap .json-tree-box {
      overflow: auto; }
    .add-ai-agent-block-popup .input-box-wrap .text-cm-box {
      overflow: auto; }
      .add-ai-agent-block-popup .input-box-wrap .text-cm-box .CodeMirror {
        font-size: 15px; }
    .add-ai-agent-block-popup .input-box-wrap .btn-json-all {
      position: absolute;
      top: 5px;
      right: 5px;
      padding: 2px 15px;
      color: #15a5b7;
      border-color: #15a5b7;
      font-size: 14px; }
  .add-ai-agent-block-popup .parser-variable-box {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 15px;
    background-color: #f2f2f2;
    margin-bottom: 10px; }
    .add-ai-agent-block-popup .parser-variable-box .row-title {
      font-size: 16px;
      margin-bottom: 5px; }
    .add-ai-agent-block-popup .parser-variable-box .btn-remove {
      position: absolute;
      top: 0;
      right: 0; }
      .add-ai-agent-block-popup .parser-variable-box .btn-remove:hover, .add-ai-agent-block-popup .parser-variable-box .btn-remove:active, .add-ai-agent-block-popup .parser-variable-box .btn-remove:focus-visible {
        color: #15a5b7; }
    .add-ai-agent-block-popup .parser-variable-box .row-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .add-ai-agent-block-popup .parser-variable-box .row-box .form-group {
        flex: 1; }
      .add-ai-agent-block-popup .parser-variable-box .row-box .form-group + .form-group {
        margin-top: 0;
        margin-left: 10px; }
    .add-ai-agent-block-popup .parser-variable-box .row-box + .row-box {
      margin-top: 10px; }
    .add-ai-agent-block-popup .parser-variable-box textarea.form-control {
      height: 100px; }
  .add-ai-agent-block-popup .add-field-box {
    margin-bottom: 10px; }
    .add-ai-agent-block-popup .add-field-box .label {
      display: block;
      font-size: 12px;
      margin-bottom: 2px; }
    .add-ai-agent-block-popup .add-field-box.add-setting .form-group {
      position: relative;
      padding-right: 30px; }
      .add-ai-agent-block-popup .add-field-box.add-setting .form-group.with-var-btn .btn-variable-check {
        right: 30px; }
      .add-ai-agent-block-popup .add-field-box.add-setting .form-group .btn-add-remove {
        position: absolute;
        top: 1px;
        right: 0;
        padding: 5px; }
        .add-ai-agent-block-popup .add-field-box.add-setting .form-group .btn-add-remove .icon {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          width: 16px;
          height: 16px;
          border-radius: 16px;
          background-color: #000;
          text-align: center; }
          .add-ai-agent-block-popup .add-field-box.add-setting .form-group .btn-add-remove .icon:before {
            content: "";
            display: block;
            width: 10px;
            height: 2px;
            background-color: #fff; }

.ai-agent-log-popup {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px; }
  .ai-agent-log-popup .popup-content {
    height: calc(100% - 45px - 50px);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .ai-agent-log-popup .popup-content + .data-footer {
    border: 1px solid #BFBFBF;
    height: 50px;
    padding: 10px 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .ai-agent-log-popup .popup-content + .data-footer .btn {
      flex: 1;
      margin: 0 5px;
      padding-top: 0;
      padding-bottom: 0; }
  .ai-agent-log-popup .ai-agent-info-box {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd; }
  .ai-agent-log-popup .log-content {
    position: relative;
    flex: 1; }
    .ai-agent-log-popup .log-content > .row {
      margin: 0; }
    .ai-agent-log-popup .log-content .ai-agent-flow-box {
      flex: 1; }
    .ai-agent-log-popup .log-content .ai-agent-log-box {
      flex: 1;
      background-color: #f2f2f2;
      border-top: 1px solid #bfbfbf;
      max-height: 50%; }
    .ai-agent-log-popup .log-content .flow-editor-wrap {
      width: 100%;
      height: 100%;
      overflow: hidden; }
    .ai-agent-log-popup .log-content .agent-block-wrap {
      width: 100%;
      height: 100%;
      padding: 10px 20px;
      overflow-y: auto; }
    .ai-agent-log-popup .log-content .agent-block-item {
      margin-bottom: 10px; }
      .ai-agent-log-popup .log-content .agent-block-item:last-child {
        margin-bottom: 0; }
      .ai-agent-log-popup .log-content .agent-block-item .agent-block-header {
        position: relative;
        font-size: 14px;
        border-radius: 10px;
        overflow: hidden; }
        .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title {
          display: block;
          width: 100%;
          padding: 10px 15px 10px 40px;
          color: #000;
          font-weight: bold;
          background-color: #d2d2d2;
          border: 0;
          text-align: left; }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title:before {
            display: block;
            content: "";
            position: absolute;
            top: 10px;
            left: 14px;
            width: 12px;
            height: 12px;
            border: solid #15a5b7;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            transition: transform 0.2s ease; }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title.collapsed:before {
            top: 12px;
            left: 12px;
            transform: rotate(-45deg); }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title.WAIT {
            background-color: rgba(255, 215, 0, 0.2); }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title.RUNNING {
            background-color: rgba(30, 144, 255, 0.2); }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title.ERROR {
            background-color: rgba(236, 0, 0, 0.2); }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title.SKIP {
            background-color: rgba(169, 169, 169, 0.2); }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title.DONE {
            background-color: rgba(56, 156, 44, 0.2); }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .header-title.STOP {
            background-color: rgba(149, 0, 236, 0.2); }
        .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .block-type {
          display: inline-block;
          width: 10px;
          height: 10px; }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .block-type.TRIGGER {
            background-color: #AF4ACE; }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .block-type.LOGIC {
            background-color: #15A5B7; }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .block-type.PRODUCER {
            background-color: #FF9100; }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .block-type.CONSUMER {
            background-color: #4A6ACE; }
          .ai-agent-log-popup .log-content .agent-block-item .agent-block-header .block-type.DELIVER {
            background-color: #007EC3; }
      .ai-agent-log-popup .log-content .agent-block-item .agent-block-content {
        padding: 10px 25px; }
      .ai-agent-log-popup .log-content .agent-block-item .block-tabs {
        border-bottom: 1px solid #ccc; }
        .ai-agent-log-popup .log-content .agent-block-item .block-tabs .tabs-nav {
          margin-bottom: -1px; }
        .ai-agent-log-popup .log-content .agent-block-item .block-tabs .tab-item .btn {
          font-size: 14px;
          border: 0;
          border-bottom: 3px solid transparent;
          border-radius: 0; }
          .ai-agent-log-popup .log-content .agent-block-item .block-tabs .tab-item .btn.active {
            border-bottom-color: #15a5b7; }
          .ai-agent-log-popup .log-content .agent-block-item .block-tabs .tab-item .btn:focus, .ai-agent-log-popup .log-content .agent-block-item .block-tabs .tab-item .btn:active {
            outline: none !important;
            box-shadow: none; }
      .ai-agent-log-popup .log-content .agent-block-item .tab-content {
        padding: 10px; }
      .ai-agent-log-popup .log-content .agent-block-item .log-list {
        font-size: 13px; }
        .ai-agent-log-popup .log-content .agent-block-item .log-list .log-item {
          margin: 2px 0; }
          .ai-agent-log-popup .log-content .agent-block-item .log-list .log-item.WARN {
            color: #FF9100; }
          .ai-agent-log-popup .log-content .agent-block-item .log-list .log-item.ERROR {
            color: #FF0000; }
      .ai-agent-log-popup .log-content .agent-block-item .inputs-list .input-item {
        margin-bottom: 5px; }
        .ai-agent-log-popup .log-content .agent-block-item .inputs-list .input-item:last-child {
          margin-bottom: 0; }
      .ai-agent-log-popup .log-content .agent-block-item .var-table {
        font-size: 13px; }
        .ai-agent-log-popup .log-content .agent-block-item .var-table .table {
          font-size: inherit;
          min-width: 400px;
          width: auto;
          margin-bottom: 0;
          border: 1px solid #dee2e6;
          background-color: #fff; }
          .ai-agent-log-popup .log-content .agent-block-item .var-table .table th, .ai-agent-log-popup .log-content .agent-block-item .var-table .table td {
            padding: 5px 20px; }
      .ai-agent-log-popup .log-content .agent-block-item .error-message {
        font-size: 14px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .ai-agent-log-popup .log-content .agent-block-item .error-message .icon {
          width: 15px;
          height: 15px;
          background-color: #ed0001;
          border-radius: 3px;
          color: #fff;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          margin-right: 5px; }

.json-tree {
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 10px 25px; }

.json-tree ul {
  list-style: none;
  padding: 5px 10px; }

.json-tree li {
  position: relative;
  padding: 3px 0 3px 25px;
  cursor: pointer; }
  .json-tree li.no-children {
    padding-left: 0; }

.json-tree li strong {
  font-weight: normal;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  background-color: #eee;
  color: #B40000; }
  .json-tree li strong.key-index {
    background-color: transparent;
    color: inherit; }
  .json-tree li strong.active {
    color: #0050AE; }

.json-tree .toggle-btn {
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  user-select: none;
  cursor: pointer;
  text-indent: -999em;
  margin-right: 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center; }

.json-tree .toggle-btn::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 3px solid #999;
  border-bottom: 3px solid #999; }

.json-tree .collapsed > ul {
  display: none; }

.json-tree .collapsed > .toggle-btn::before {
  content: "+";
  transform: rotate(225deg);
  margin-top: 4px; }

.json-tree li:not(.collapsed) > .toggle-btn::before {
  content: "—";
  transform: rotate(45deg);
  margin-top: -4px; }

.dataHubBody {
  position: absolute;
  width: 100%;
  height: 100vh; }
  .dataHubBody .data-hub-item-wrap {
    position: relative;
    width: 100%;
    height: 100%; }
  .dataHubBody .data-hub-header {
    position: relative;
    height: 45px;
    background-color: #15a5b7;
    color: #fff;
    padding: 5px 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .dataHubBody .data-hub-header .title {
      font-size: 18px; }
    .dataHubBody .data-hub-header .btn-close {
      position: absolute;
      background-color: transparent;
      padding: 0 5px;
      top: 3px;
      right: 10px;
      margin: 0;
      border: 0;
      color: #fff;
      font-size: 24px; }
  .dataHubBody .data-hub-body {
    width: 100%;
    height: calc(100% - 45px);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .dataHubBody .data-hub-body .nav-wrap {
      position: relative;
      width: 100px;
      height: 100%;
      border-right: 1px solid #999;
      padding: 10px 5px;
      z-index: 2;
      background-color: #fff; }
      .dataHubBody .data-hub-body .nav-wrap .nav-item {
        width: 100%;
        margin-bottom: 10px; }
        .dataHubBody .data-hub-body .nav-wrap .nav-item a {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-box-flex-direction: column;
          -moz-box-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          width: 100%;
          color: #333;
          padding: 8px 3px;
          border-radius: 5px;
          transition: all .2s; }
          .dataHubBody .data-hub-body .nav-wrap .nav-item a:hover, .dataHubBody .data-hub-body .nav-wrap .nav-item a:focus, .dataHubBody .data-hub-body .nav-wrap .nav-item a:active, .dataHubBody .data-hub-body .nav-wrap .nav-item a:focus-visible, .dataHubBody .data-hub-body .nav-wrap .nav-item a.active {
            background-color: #D7EFF2; }
        .dataHubBody .data-hub-body .nav-wrap .nav-item .icon {
          font-size: 26px;
          margin-bottom: 5px; }
        .dataHubBody .data-hub-body .nav-wrap .nav-item .item-title {
          font-size: 10px;
          white-space: nowrap; }
      .dataHubBody .data-hub-body .nav-wrap .approve-btn-box {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 5px; }
        .dataHubBody .data-hub-body .nav-wrap .approve-btn-box .btn-approve {
          width: 100%;
          margin-bottom: 5px; }
        .dataHubBody .data-hub-body .nav-wrap .approve-btn-box .approve-text {
          text-align: center;
          font-size: 12px;
          color: #9f9f9f; }
          .dataHubBody .data-hub-body .nav-wrap .approve-btn-box .approve-text.red {
            color: #ed0001; }
    .dataHubBody .data-hub-body .data-hub-content {
      position: relative;
      flex: 1;
      height: 100%;
      z-index: 1; }
      .dataHubBody .data-hub-body .data-hub-content > .row {
        height: 100%; }
        .dataHubBody .data-hub-body .data-hub-content > .row .h100 {
          height: 100%; }
        .dataHubBody .data-hub-body .data-hub-content > .row .ovf-y-auto {
          overflow-y: auto; }
      .dataHubBody .data-hub-body .data-hub-content .row {
        margin-left: 0;
        margin-right: 0; }
      .dataHubBody .data-hub-body .data-hub-content .fit-box {
        position: absolute;
        width: 100%;
        height: 100%; }
      .dataHubBody .data-hub-body .data-hub-content .ovf-y-auto {
        overflow-y: auto; }
    .dataHubBody .data-hub-body.popup-opened .nav-wrap,
    .dataHubBody .data-hub-body.popup-opened .data-hub-content {
      z-index: auto; }
    .dataHubBody .data-hub-body.popup-opened .add-data-editor-popup {
      position: fixed; }
  .dataHubBody .data-hub-tabs {
    margin-bottom: 30px; }
    .dataHubBody .data-hub-tabs .nav {
      border-bottom: 1px solid #999; }
      .dataHubBody .data-hub-tabs .nav a {
        display: block;
        padding: 8px 20px;
        color: #999;
        border-bottom: 3px solid transparent;
        margin-bottom: -1px;
        margin-right: 20px;
        font-size: 14px; }
        .dataHubBody .data-hub-tabs .nav a:hover, .dataHubBody .data-hub-tabs .nav a:focus, .dataHubBody .data-hub-tabs .nav a:active, .dataHubBody .data-hub-tabs .nav a:focus-visible {
          color: #15a5b7; }
      .dataHubBody .data-hub-tabs .nav .active a {
        color: #15a5b7;
        border-bottom-color: #15a5b7; }
  .dataHubBody .data-hub-list-wrap .table thead th {
    border-color: #d9d9d9;
    border-bottom-width: 1px; }
  .dataHubBody .data-hub-list-wrap .table th,
  .dataHubBody .data-hub-list-wrap .table td {
    font-size: 14px;
    padding: 0.75rem 15px;
    vertical-align: middle; }
  .dataHubBody .data-hub-list-wrap .name-td {
    width: 25%;
    min-width: 150px; }
  .dataHubBody .data-hub-list-wrap .key-td {
    width: 45%;
    min-width: 200px; }
    .dataHubBody .data-hub-list-wrap .key-td .key-box {
      position: relative;
      display: block;
      padding-right: 40px; }
    .dataHubBody .data-hub-list-wrap .key-td textarea {
      width: 100%;
      height: 38px; }
      .dataHubBody .data-hub-list-wrap .key-td textarea:focus {
        outline: 0; }
    .dataHubBody .data-hub-list-wrap .key-td .btn-copy {
      position: absolute;
      top: 5px;
      right: 5px;
      color: #777; }
  .dataHubBody .data-hub-list-wrap .table .btn {
    padding: 0 5px; }
  .dataHubBody .data-hub-list-wrap .btn-td {
    text-align: center; }
  .dataHubBody .map-list-wrap {
    position: relative;
    padding: 0 15px;
    height: 100%; }
    .dataHubBody .map-list-wrap .map-list-footer {
      height: 60px;
      padding: 10px 0; }
    @media (min-width: 992px) {
      .dataHubBody .map-list-wrap .map-list-body {
        padding-bottom: 60px;
        margin-bottom: 0; }
      .dataHubBody .map-list-wrap .map-list-footer {
        position: fixed;
        left: 100px;
        right: 0;
        bottom: 0;
        z-index: 1000;
        margin-right: 15px;
        margin-left: 0;
        background-color: #fff; } }
    .dataHubBody .map-list-wrap .data-hub-group {
      padding: 10px; }
      .dataHubBody .map-list-wrap .data-hub-group .thumbnail {
        box-shadow: none; }
      .dataHubBody .map-list-wrap .data-hub-group .form-group {
        margin-bottom: 0;
        flex: 1; }
      .dataHubBody .map-list-wrap .data-hub-group .btn-area {
        width: 100px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: end;
        flex-pack: end;
        -webkit-justify-content: flex-end;
        -moz-box-justify-content: flex-end;
        -ms-justify-content: flex-end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        padding-top: 5px; }
        .dataHubBody .map-list-wrap .data-hub-group .btn-area .btn {
          padding: 0 5px;
          color: #666; }
          .dataHubBody .map-list-wrap .data-hub-group .btn-area .btn:hover, .dataHubBody .map-list-wrap .data-hub-group .btn-area .btn:focus-visible {
            color: #15a5b7; }
          .dataHubBody .map-list-wrap .data-hub-group .btn-area .btn:disabled:hover, .dataHubBody .map-list-wrap .data-hub-group .btn-area .btn:disabled:focus-visible {
            color: #666; }
        .dataHubBody .map-list-wrap .data-hub-group .btn-area label {
          margin-bottom: 0; }
        .dataHubBody .map-list-wrap .data-hub-group .btn-area span {
          font-size: 1.2em; }
      .dataHubBody .map-list-wrap .data-hub-group .add-btn-wrap {
        position: relative;
        height: 120px; }
        .dataHubBody .map-list-wrap .data-hub-group .add-btn-wrap .caption {
          height: 120px; }
      .dataHubBody .map-list-wrap .data-hub-group .map-add-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        z-index: 1; }
      .dataHubBody .map-list-wrap .data-hub-group .thumbnail-add-data {
        width: 100%;
        height: 100%;
        border: 0;
        background-color: transparent;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .dataHubBody .map-list-wrap .data-hub-group .thumbnail-add-data .icon-plus {
          position: relative;
          display: block;
          width: 26px;
          height: 26px;
          margin: 0 auto 10px; }
          .dataHubBody .map-list-wrap .data-hub-group .thumbnail-add-data .icon-plus:before, .dataHubBody .map-list-wrap .data-hub-group .thumbnail-add-data .icon-plus:after {
            position: absolute;
            display: block;
            width: 26px;
            height: 4px;
            background-color: #000;
            content: "";
            top: 11px; }
          .dataHubBody .map-list-wrap .data-hub-group .thumbnail-add-data .icon-plus:after {
            transform: rotate(90deg); }
      .dataHubBody .map-list-wrap .data-hub-group .caption {
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
        .dataHubBody .map-list-wrap .data-hub-group .caption textarea {
          resize: none; }
      .dataHubBody .map-list-wrap .data-hub-group .btn-area {
        width: 100%;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .dataHubBody .map-list-wrap .data-hub-group .btn-area .btn-title {
          font-size: 14px; }
      @media (min-width: 1200px) {
        .dataHubBody .map-list-wrap .data-hub-group {
          flex: 0 0 20%;
          max-width: 20%; } }
  .dataHubBody .data-hub-data .editor-btn-group-wrap {
    left: -35px; }
    .dataHubBody .data-hub-data .editor-btn-group-wrap.on {
      left: 120px; }
  .dataHubBody .price-right-box {
    border-left: 1px solid #bfbfbf; }
    .dataHubBody .price-right-box form {
      position: relative;
      width: 100%;
      height: 100%; }
    .dataHubBody .price-right-box .btn-box {
      position: absolute;
      bottom: 30px;
      left: 0;
      right: 0;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .dataHubBody .price-right-box .btn-box .btn {
        flex: 1;
        margin: 0 15px; }
  .dataHubBody .price-content {
    padding: 20px 25px; }
    .dataHubBody .price-content > .title {
      font-size: 20px;
      margin-bottom: 30px; }
    .dataHubBody .price-content .object-box > .object-title {
      font-size: 15px;
      margin-bottom: 5px;
      padding: 0 10px; }
    .dataHubBody .price-content .object-box .object-list {
      border-top: 1px solid #d9d9d9;
      padding: 10px 5px; }
      .dataHubBody .price-content .object-box .object-list:last-child {
        border-bottom: 1px solid #d9d9d9; }
    .dataHubBody .price-content .object-item {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .dataHubBody .price-content .object-item .item-info {
        flex: 3;
        padding: 10px; }
        .dataHubBody .price-content .object-item .item-info > .title {
          font-size: 14px;
          font-weight: bold;
          margin-bottom: 5px; }
        .dataHubBody .price-content .object-item .item-info .desc {
          font-size: 14px; }
      .dataHubBody .price-content .object-item .item-price {
        flex: 2;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .dataHubBody .price-content .object-item .item-price .btn-add-price {
          width: 50%;
          max-width: 120px; }
        .dataHubBody .price-content .object-item .item-price .price-desc .price {
          font-size: 14px;
          font-weight: bold; }
        .dataHubBody .price-content .object-item .item-price .price-desc .price-info {
          font-size: 12px; }
        .dataHubBody .price-content .object-item .item-price .price-desc.pointer {
          cursor: pointer; }
          .dataHubBody .price-content .object-item .item-price .price-desc.pointer:hover, .dataHubBody .price-content .object-item .item-price .price-desc.pointer:focus, .dataHubBody .price-content .object-item .item-price .price-desc.pointer:active, .dataHubBody .price-content .object-item .item-price .price-desc.pointer:focus-visible {
            text-decoration: underline; }
        .dataHubBody .price-content .object-item .item-price .btn-group .btn:hover, .dataHubBody .price-content .object-item .item-price .btn-group .btn:focus, .dataHubBody .price-content .object-item .item-price .btn-group .btn:active, .dataHubBody .price-content .object-item .item-price .btn-group .btn:focus-visible {
          color: #15a5b7; }
    .dataHubBody .price-content .object-data-box {
      border: 1px solid #bfbfbf;
      border-radius: 5px;
      padding: 5px; }
      .dataHubBody .price-content .object-data-box .data-item {
        display: inline-block;
        border: 1px solid #15a5b7;
        padding: 5px;
        font-size: 13px;
        border-radius: 5px; }
    .dataHubBody .price-content .btn-box {
      margin-top: 30px; }
    .dataHubBody .price-content .btn-green {
      border: 1px solid #bfbfbf;
      color: #15a5b7; }
      .dataHubBody .price-content .btn-green:hover, .dataHubBody .price-content .btn-green:focus, .dataHubBody .price-content .btn-green:active, .dataHubBody .price-content .btn-green:focus-visible {
        border-color: #15a5b7;
        background-color: #15a5b7;
        color: #fff; }
    .dataHubBody .price-content .price-item-row {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      padding: 10px 5px; }
      .dataHubBody .price-content .price-item-row > .label,
      .dataHubBody .price-content .price-item-row > .price-form-group {
        flex: 1;
        padding: 10px; }
      .dataHubBody .price-content .price-item-row .label {
        font-size: 14px;
        font-weight: bold; }
        .dataHubBody .price-content .price-item-row .label label {
          margin-bottom: 0; }
        .dataHubBody .price-content .price-item-row .label .desc {
          font-size: 12px;
          font-weight: normal; }
      .dataHubBody .price-content .price-item-row .price-form-group {
        position: relative;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .dataHubBody .price-content .price-item-row .price-form-group .form-label {
          position: absolute;
          font-size: 14px;
          bottom: 50px;
          left: 12px; }
        .dataHubBody .price-content .price-item-row .price-form-group .bar {
          display: inline-block;
          margin: 0 10px; }
        .dataHubBody .price-content .price-item-row .price-form-group .form-group {
          width: 45%;
          max-width: 200px; }
          .dataHubBody .price-content .price-item-row .price-form-group .form-group .unit {
            display: inline-block; }
          .dataHubBody .price-content .price-item-row .price-form-group .form-group .unit + .form-control {
            display: inline-block;
            width: calc(100% - 20px); }
        .dataHubBody .price-content .price-item-row .price-form-group .form-control {
          width: 100%; }
  .dataHubBody .data-hub-analytics {
    padding: 20px 25px;
    width: 100%;
    height: 100%;
    overflow-y: auto; }
    .dataHubBody .data-hub-analytics .content-container {
      position: relative;
      padding: 10px 0;
      width: 100%;
      margin-bottom: 40px; }
      .dataHubBody .data-hub-analytics .content-container > .title {
        font-size: 20px;
        margin-bottom: 10px; }
      .dataHubBody .data-hub-analytics .content-container .endpoint-data-row {
        margin-bottom: 10px; }
        .dataHubBody .data-hub-analytics .content-container .endpoint-data-row .box-area {
          position: relative;
          border: 1px solid #bfbfbf;
          padding: 0 5px;
          border-radius: 8px; }
        .dataHubBody .data-hub-analytics .content-container .endpoint-data-row .data-item {
          margin-top: 4px;
          margin-bottom: 4px;
          padding-left: 5px;
          padding-right: 5px; }
        .dataHubBody .data-hub-analytics .content-container .endpoint-data-row .btn-data {
          border: 1px solid #15a5b7;
          border-radius: 4px;
          padding: 0 5px;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center;
          -ms-flex-pack: justify;
          flex-pack: justify;
          -webkit-justify-content: space-between;
          -moz-box-justify-content: space-between;
          -ms-justify-content: space-between;
          -webkit-justify-content: space-between;
          justify-content: space-between; }
        .dataHubBody .data-hub-analytics .content-container .endpoint-data-row .btn-data-close {
          border: none;
          padding: 3px 5px;
          background-color: transparent;
          margin-left: 3px; }
        .dataHubBody .data-hub-analytics .content-container .endpoint-data-row .dropdown-toggle {
          width: 100%;
          padding: 3px; }
      .dataHubBody .data-hub-analytics .content-container .search-time-btn-group {
        border-color: #bfbfbf;
        margin-bottom: 10px;
        height: 42px; }
        .dataHubBody .data-hub-analytics .content-container .search-time-btn-group.date-picker {
          border: 0;
          height: auto; }
          .dataHubBody .data-hub-analytics .content-container .search-time-btn-group.date-picker .search-start,
          .dataHubBody .data-hub-analytics .content-container .search-time-btn-group.date-picker .search-end {
            margin: 0 5px; }
          .dataHubBody .data-hub-analytics .content-container .search-time-btn-group.date-picker label {
            font-size: 12px;
            margin-bottom: 3px;
            color: #999; }
          .dataHubBody .data-hub-analytics .content-container .search-time-btn-group.date-picker .form-control:disabled, .dataHubBody .data-hub-analytics .content-container .search-time-btn-group.date-picker .form-control[readonly] {
            background-color: transparent; }
      @media (min-width: 768px) {
        .dataHubBody .data-hub-analytics .content-container > .title {
          margin-bottom: 15px; }
        .dataHubBody .data-hub-analytics .content-container .search-time-btn-group {
          position: absolute;
          top: 0;
          right: 0;
          margin-bottom: 0; }
          .dataHubBody .data-hub-analytics .content-container .search-time-btn-group.date-picker {
            top: -20px; }
        .dataHubBody .data-hub-analytics .content-container.traffic-content .search-time-btn-group {
          position: relative;
          top: auto;
          right: auto;
          margin-bottom: 10px; } }
      @media (min-width: 1200px) {
        .dataHubBody .data-hub-analytics .content-container.traffic-content .endpoint-data-row {
          width: calc(100% - 455px); }
        .dataHubBody .data-hub-analytics .content-container.traffic-content .search-time-btn-group {
          position: absolute;
          top: 10px;
          right: 0;
          margin-bottom: 0; } }
      .dataHubBody .data-hub-analytics .content-container .chart-wrap {
        position: relative;
        border: 1px solid #bdbdbd;
        width: 100%;
        height: 340px;
        padding-top: 75px; }
      .dataHubBody .data-hub-analytics .content-container .chart-total-data {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        font-size: 36px;
        padding: 10px 15px;
        height: 75px; }
        .dataHubBody .data-hub-analytics .content-container .chart-total-data .unit {
          font-size: 0.5em; }
      .dataHubBody .data-hub-analytics .content-container .chart-traffic-data {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 15px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .dataHubBody .data-hub-analytics .content-container .chart-traffic-data .data-item {
          font-size: 36px;
          margin-right: 30px;
          margin-bottom: 0; }
          .dataHubBody .data-hub-analytics .content-container .chart-traffic-data .data-item:last-child {
            margin-right: 0; }
          .dataHubBody .data-hub-analytics .content-container .chart-traffic-data .data-item .title {
            font-size: 0.36em;
            font-weight: normal; }
          .dataHubBody .data-hub-analytics .content-container .chart-traffic-data .data-item .value {
            font-size: 1em;
            line-height: 1; }
          .dataHubBody .data-hub-analytics .content-container .chart-traffic-data .data-item .unit {
            font-size: 0.9em;
            color: #bfbfbf; }
      .dataHubBody .data-hub-analytics .content-container .chart-box {
        position: relative;
        width: 100%;
        height: 100%; }
        .dataHubBody .data-hub-analytics .content-container .chart-box .inner-box {
          width: 100%;
          height: 100%; }
  .dataHubBody .data-hub-setting {
    padding: 20px 25px;
    width: 100%;
    height: 100%;
    overflow-y: auto; }
    .dataHubBody .data-hub-setting .about-api-content {
      max-width: 1000px; }
      .dataHubBody .data-hub-setting .about-api-content .form-group {
        width: 100%;
        text-align: left;
        margin: 0; }
        .dataHubBody .data-hub-setting .about-api-content .form-group label,
        .dataHubBody .data-hub-setting .about-api-content .form-group .label {
          display: inline-block;
          margin-bottom: 3px;
          font-size: 13px; }
        .dataHubBody .data-hub-setting .about-api-content .form-group .optional {
          display: inline-block;
          vertical-align: middle;
          color: #999;
          font-style: italic;
          font-size: 11px; }
      .dataHubBody .data-hub-setting .about-api-content textarea.form-control {
        min-height: 200px; }
      .dataHubBody .data-hub-setting .about-api-content .form-group + .form-group {
        margin-top: 10px; }
      .dataHubBody .data-hub-setting .about-api-content .logo-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        margin: 10px 0; }
        .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-img-box {
          position: relative;
          border: 1px solid #ced4da;
          width: 180px;
          height: 90px;
          border-radius: 5px;
          margin-right: 10px;
          overflow: hidden;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -ms-flex-pack: center;
          flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-justify-content: center;
          -ms-justify-content: center;
          -webkit-justify-content: center;
          justify-content: center;
          -ms-flex-align: center;
          flex-align: center;
          -webkit-align-items: center;
          -moz-box-align-items: center;
          -ms-align-items: center;
          -webkit-align-items: center;
          align-items: center; }
          .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-img-box .icon {
            font-size: 24px; }
          .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-img-box img {
            max-width: 100%; }
          .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-img-box .remove-logo {
            position: absolute;
            top: 3px;
            right: 3px;
            background-color: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 14px;
            border: 0;
            z-index: 10;
            width: 20px;
            height: 20px;
            border-radius: 20px;
            padding: 0;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -ms-flex-pack: center;
            flex-pack: center;
            -webkit-justify-content: center;
            -moz-box-justify-content: center;
            -ms-justify-content: center;
            -webkit-justify-content: center;
            justify-content: center;
            -ms-flex-align: center;
            flex-align: center;
            -webkit-align-items: center;
            -moz-box-align-items: center;
            -ms-align-items: center;
            -webkit-align-items: center;
            align-items: center; }
            .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-img-box .remove-logo:hover, .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-img-box .remove-logo:focus, .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-img-box .remove-logo:active, .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-img-box .remove-logo:focus-visible {
              background-color: rgba(0, 0, 0, 0.5); }
        .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-btn-box {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-box-flex-direction: column;
          -moz-box-flex-direction: column;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column; }
          .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-btn-box .btn-change-logo {
            width: auto;
            border: 1px solid #ced4da; }
          .dataHubBody .data-hub-setting .about-api-content .logo-box .logo-btn-box .logo-desc {
            font-size: 12px; }
      .dataHubBody .data-hub-setting .about-api-content .btns {
        margin-top: 30px; }
      .dataHubBody .data-hub-setting .about-api-content .btn-delete-api {
        border: 1px solid #bfbfbf;
        color: #ed0001; }
        .dataHubBody .data-hub-setting .about-api-content .btn-delete-api:hover, .dataHubBody .data-hub-setting .about-api-content .btn-delete-api:focus-visible, .dataHubBody .data-hub-setting .about-api-content .btn-delete-api:active {
          background-color: #ed0001;
          color: #fff; }
    .dataHubBody .data-hub-setting .auth-list-header {
      position: relative;
      margin-bottom: 15px; }
      .dataHubBody .data-hub-setting .auth-list-header > .title {
        font-size: 24px; }
      .dataHubBody .data-hub-setting .auth-list-header .desc {
        font-size: 14px; }
      .dataHubBody .data-hub-setting .auth-list-header .btn-add-auth {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10px; }

.home-wrap {
  overflow-y: hidden; }

.home-header {
  position: fixed;
  width: 100%;
  z-index: 3;
  background-color: #fff;
  height: 50px; }
  .home-header .brand-logo {
    position: relative;
    display: inline-block;
    width: 78px;
    height: 27px;
    left: 2%;
    top: 10px;
    z-index: 3; }
    .home-header .brand-logo img {
      max-width: 100%; }
  .home-header .navbar-toggler {
    position: absolute;
    top: 50%;
    right: 2%;
    margin-top: -18px;
    display: block;
    border: 1px solid #28ace2;
    z-index: 3;
    padding: 10px 8px; }
    .home-header .navbar-toggler .bar {
      display: block;
      width: 24px;
      height: 2px;
      background-color: #28ace2; }
    .home-header .navbar-toggler .bar.mid {
      margin-top: 4px;
      margin-bottom: 4px; }
  .home-header .app-nav {
    position: absolute;
    width: 100%;
    top: 50px;
    background-color: #fff;
    padding: 0; }
    .home-header .app-nav .navbar-collapse {
      padding: 0 3%; }
    .home-header .app-nav .nav-menu {
      margin-bottom: 0; }
    .home-header .app-nav .nav-menu > lsvg {
      margin-bottom: 5px; }
    .home-header .app-nav a {
      color: #333; }
  @media (min-width: 768px) {
    .home-header {
      padding: 20px 35px 20px 23%;
      height: 88px; }
      .home-header .brand-logo {
        position: absolute;
        top: 20px;
        left: 2%;
        width: auto;
        height: auto; }
      .home-header .app-nav {
        position: relative;
        width: 100%;
        display: block;
        top: 0; }
        .home-header .app-nav .nav-menu > lsvg {
          margin-bottom: 0; }
      .home-header .navbar-toggler {
        display: none; }
      .home-header .navbar-collapse {
        display: block; }
      .home-header .nav-menu {
        position: absolute;
        top: 0;
        width: 50%; }
        .home-header .nav-menu lsvg,
        .home-header .nav-menu li {
          float: left;
          width: 33.33333333%;
          line-height: 48px; }
          .home-header .nav-menu lsvg a,
          .home-header .nav-menu li a {
            display: block;
            font-size: 14px;
            color: #333;
            padding: 0 20%;
            vertical-align: middle;
            white-space: nowrap;
            text-align: center; }
        .home-header .nav-menu.nav-left {
          left: 0; }
        .home-header .nav-menu.nav-right {
          right: 0; } }
  @media (min-width: 992px) {
    .home-header {
      padding-left: 220px; }
      .home-header .brand-logo {
        left: 35px; }
      .home-header .nav-menu li a,
      .home-header .nav-menu lsvg a {
        font-size: 16px; } }
  @media (min-width: 1200px) {
    .home-header .nav-menu {
      width: auto; }
      .home-header .nav-menu li,
      .home-header .nav-menu lsvg {
        width: auto; }
        .home-header .nav-menu li a,
        .home-header .nav-menu lsvg a {
          padding-left: 40px;
          padding-right: 40px; } }

.home-footer .footer-box {
  position: relative;
  width: 100%;
  padding: 15px 0 10px; }
  .home-footer .footer-box img {
    max-width: 100%;
    vertical-align: top; }

.home-footer .copyright {
  display: block;
  text-align: right; }

.home-footer .change-lang-box {
  text-align: right; }

@media (min-width: 768px) {
  .home-footer .footer-box {
    position: relative;
    width: 100%;
    background-image: url("/static/img/bg_footer_n.png");
    background-size: 100%;
    background-position: center 60%;
    background-repeat: no-repeat;
    height: 180px; }
  .home-footer .copyright {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 80%;
    font-size: 15px; }
  .home-footer .change-lang-box {
    position: absolute;
    top: 78%;
    right: 0;
    z-index: 3; } }

@media (min-width: 992px) {
  .home-footer .footer-box {
    background-position: center 70%;
    height: 265px; }
  .home-footer .copyright {
    top: 82%; }
  .home-footer .change-lang-box {
    top: 83%; } }

.home-body {
  position: relative;
  padding-top: 50px;
  z-index: 2; }
  @media (min-width: 768px) {
    .home-body {
      padding-top: 88px; } }

.sclab-visual-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 250px; }
  .sclab-visual-wrap > .container-fluid {
    height: 100%; }
  .sclab-visual-wrap.main {
    background-image: url("/static/img/img_main_visual.jpg");
    height: calc(100vh - 40px); }
  .sclab-visual-wrap.platform {
    background-image: url("/static/img/img_visual_platform.jpg"); }
  .sclab-visual-wrap.contact {
    background-image: url("/static/img/img_visual_contact.jpg"); }
    .sclab-visual-wrap.contact .sub-visual-box {
      padding-top: 70px; }
    .sclab-visual-wrap.contact .section-sub {
      height: 40px; }
  @media (min-width: 768px) {
    .sclab-visual-wrap {
      height: 646px; }
      .sclab-visual-wrap.main {
        height: calc(100vh - 88px); }
      .sclab-visual-wrap.contact .sub-visual-box {
        padding-top: 180px; }
      .sclab-visual-wrap.contact .section-sub {
        height: 130px; } }

.main-visual-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }
  .main-visual-box .section-title {
    font-size: 18px;
    color: #404040;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 25px; }
  @media (min-width: 768px) {
    .main-visual-box .section-title {
      font-size: 44px;
      letter-spacing: -1px;
      margin-bottom: 70px; } }

.btn.btn-try-sclab {
  position: relative;
  width: 132px;
  height: 38px;
  border: 0;
  background-color: transparent;
  padding: 0; }
  .btn.btn-try-sclab:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    content: '';
    border: 3px solid transparent;
    background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #28ace2, #9ccb3b) border-box;
    padding: 10px;
    border-radius: 8px;
    opacity: .75; }
  .btn.btn-try-sclab span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-weight: 300;
    line-height: 1.3; }
  @media (min-width: 768px) {
    .btn.btn-try-sclab {
      width: 264px;
      height: 66px;
      margin-bottom: 75px; }
      .btn.btn-try-sclab:before {
        border-radius: 13px; }
      .btn.btn-try-sclab span {
        padding: 15px;
        font-size: 31px; } }

.section-box .section-title {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin: 30px 0 35px; }

.section-box .section-sub-title {
  text-align: center; }

@media (min-width: 768px) {
  .section-box .section-title {
    font-size: 44px;
    margin: 60px 0 55px; }
  .section-box .section-sub-title {
    font-size: 24px;
    font-weight: 300; } }

@media (min-width: 768px) {
  .section-box .section-sub-title svg {
    display: block; } }

.sclab-smart-city {
  margin: 10px 0; }
  .sclab-smart-city img {
    max-width: 100%; }
  @media (min-width: 768px) {
    .sclab-smart-city {
      margin: 50px 0; } }

.sclab-gradation-bar {
  background: #28ace2;
  background: -moz-linear-gradient(left, #28ace2 0%, #9ccb3b 100%);
  background: -webkit-linear-gradient(left, #28ace2 0%, #9ccb3b 100%);
  background: linear-gradient(to right, #28ace2 0%, #9ccb3b 100%); }
  .sclab-gradation-bar .section-title {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin: 10px 0;
    line-height: 1.4;
    padding: 10px 0; }
    .sclab-gradation-bar .section-title .link {
      color: #fff;
      border-bottom: 1px solid #fff; }
  @media (min-width: 768px) {
    .sclab-gradation-bar .section-title {
      font-size: 26px;
      margin: 20px 0;
      padding: 20px 0; } }
  @media (min-width: 992px) {
    .sclab-gradation-bar .section-title svg {
      display: block; } }

.sclab-special_feature-body {
  padding: 20px 0; }
  .sclab-special_feature-body .feature-item {
    min-height: 61px;
    padding-left: 100px;
    padding-right: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 65px;
    background-repeat: no-repeat;
    background-size: 55px 61px;
    background-position: 20px center; }
    .sclab-special_feature-body .feature-item:first-child {
      margin-top: 30px; }
    .sclab-special_feature-body .feature-item.f-01 {
      background-image: url("/static/img/icon_feature01.png"); }
    .sclab-special_feature-body .feature-item.f-02 {
      background-image: url("/static/img/icon_feature02.png"); }
    .sclab-special_feature-body .feature-item.f-03 {
      background-image: url("/static/img/icon_feature03.png"); }
    .sclab-special_feature-body .feature-item.f-04 {
      background-image: url("/static/img/icon_feature04.png"); }
    .sclab-special_feature-body .feature-item.f-05 {
      background-image: url("/static/img/icon_feature05.png"); }
    .sclab-special_feature-body .feature-item.f-06 {
      background-image: url("/static/img/icon_feature06.png"); }
  @media (min-width: 768px) {
    .sclab-special_feature-body {
      padding: 40px 0; }
      .sclab-special_feature-body .feature-item {
        min-height: 122px;
        padding-left: 200px;
        margin-bottom: 130px;
        background-size: auto auto;
        background-position: 40px center;
        font-size: 24px; }
        .sclab-special_feature-body .feature-item:first-child {
          margin-top: 60px; } }
  @media (min-width: 1200px) {
    .sclab-special_feature-body .feature-item {
      padding-right: 140px; } }

.sclab-special_feature-bottom .section-title {
  position: relative;
  width: 100%;
  height: 50px;
  text-align: center;
  color: #fff;
  background-color: #28ace2;
  font-weight: 300;
  font-size: 18px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0; }
  .sclab-special_feature-bottom .section-title:after {
    position: absolute;
    display: block;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #28ace2 transparent transparent transparent;
    z-index: 10; }

.sclab-special_feature-bottom .img-box {
  width: 100%; }
  .sclab-special_feature-bottom .img-box img {
    max-width: 100%;
    vertical-align: top; }

@media (min-width: 768px) {
  .sclab-special_feature-bottom .section-title {
    height: 100px;
    font-size: 36px; }
    .sclab-special_feature-bottom .section-title:after {
      margin-left: -30px;
      border-width: 30px 29px 0 29px; }
  .sclab-special_feature-bottom .img-box {
    height: 837px;
    background-image: url("/static/img/img_sclab_dashboard.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; } }

.sub-visual-box {
  width: 100%;
  height: 100%;
  padding-top: 55px;
  text-align: center; }
  .sub-visual-box .section-title {
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 10px; }
  .sub-visual-box .section-sub {
    font-size: 14px;
    color: #fff;
    height: 80px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px; }
    .sub-visual-box .section-sub svg {
      display: block; }
  @media (min-width: 768px) {
    .sub-visual-box {
      padding-top: 170px; }
      .sub-visual-box .section-title {
        font-size: 60px;
        letter-spacing: -1px;
        margin-bottom: 25px; }
      .sub-visual-box .section-sub {
        font-size: 40px;
        color: #fff;
        height: 160px;
        margin-bottom: 20px; } }

.platform-info {
  padding-top: 10px;
  border-bottom: 1px solid #a6a6a6; }
  .platform-info.last {
    border-bottom: none; }
  .platform-info .info-item {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 30px; }
    .platform-info .info-item .title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 5px; }
    .platform-info .info-item .desc {
      font-size: 13px;
      line-height: 1.8; }
  @media (min-width: 768px) {
    .platform-info {
      padding-top: 20px; }
      .platform-info .info-item {
        float: left;
        width: 50%;
        margin-bottom: 90px; }
        .platform-info .info-item .title {
          font-size: 24px;
          margin-bottom: 10px; }
        .platform-info .info-item .desc {
          font-size: 18px;
          min-height: 96px; } }
  @media (min-width: 992px) {
    .platform-info .info-item .desc svg {
      display: block; } }

.contact-info {
  padding: 55px 0; }
  .contact-info .info-item {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 40px; }
    .contact-info .info-item .title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 5px; }
    .contact-info .info-item .desc {
      font-size: 13px;
      line-height: 1.8;
      margin-bottom: 15px; }
  .contact-info .btn-try-sclab {
    height: 26px; }
    .contact-info .btn-try-sclab:before {
      background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #28ace2, #9ccb3b) border-box;
      border-width: 2px; }
    .contact-info .btn-try-sclab span {
      color: #333;
      font-size: 11px; }
  @media (min-width: 768px) {
    .contact-info {
      padding: 100px 0; }
      .contact-info .info-item {
        float: left;
        width: 33.333333333%;
        margin-bottom: 0; }
        .contact-info .info-item .title {
          font-size: 24px;
          margin-bottom: 5px;
          min-height: 52px; }
        .contact-info .info-item .desc {
          font-size: 18px;
          margin-bottom: 50px;
          min-height: 96px; }
      .contact-info .btn-try-sclab {
        width: 204px;
        height: 30px;
        margin-bottom: 0; }
        .contact-info .btn-try-sclab:before {
          border-radius: 7px; }
        .contact-info .btn-try-sclab span {
          font-size: 14px;
          padding: 5px;
          font-weight: 400; } }
  @media (min-width: 992px) {
    .contact-info .info-item .desc svg {
      display: block; } }

.home-dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  color: #333; }

.home-dropdown .thumb-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  overflow: hidden;
  background-color: #c4c4c4;
  margin-right: 5px; }
  .home-dropdown .thumb-icon .fa-user {
    color: #fff;
    font-size: 1.6em;
    padding: 2px 0;
    margin-bottom: 3px; }
  .home-dropdown .thumb-icon .profile-thumb {
    width: 100%;
    height: 100%;
    border-radius: 32px; }
  @media (min-width: 768px) {
    .home-dropdown .thumb-icon {
      width: 40px;
      height: 40px;
      border-radius: 40px;
      margin-right: 10px; }
      .home-dropdown .thumb-icon .fa-user {
        font-size: 2em; }
      .home-dropdown .thumb-icon .profile-thumb {
        border-radius: 40px; } }

.home-dropdown .dropdown-menu {
  color: #333;
  font-size: 13px;
  border-radius: 0;
  min-width: 160px; }
  .home-dropdown .dropdown-menu .profile-box {
    padding: 5px 15px; }
    .home-dropdown .dropdown-menu .profile-box .item {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .home-dropdown .dropdown-menu .profile-box .link {
      color: #15a5b7; }
    .home-dropdown .dropdown-menu .profile-box .btn-setting {
      height: 26px;
      border-radius: 26px;
      padding: 0 5px;
      font-size: 12px;
      margin-top: 5px; }
      .home-dropdown .dropdown-menu .profile-box .btn-setting .icon {
        margin-right: 5px; }
  .home-dropdown .dropdown-menu .change-lang-item,
  .home-dropdown .dropdown-menu .dropdown-item {
    padding-left: 15px;
    padding-right: 15px; }
  .home-dropdown .dropdown-menu .change-lang-item {
    padding-top: 0.25rem; }
  .home-dropdown .dropdown-menu .dropdown-item.active,
  .home-dropdown .dropdown-menu .dropdown-item:active {
    background-color: #f8f9fa;
    color: inherit; }
  @media (min-width: 768px) {
    .home-dropdown .dropdown-menu {
      font-size: 14px; }
      .home-dropdown .dropdown-menu .profile-box .btn-setting {
        font-size: 13px; } }

.home-dropdown .change-lang-box .select-wrap {
  width: 100%;
  position: relative;
  font-size: inherit;
  padding-right: 0; }

.home-dropdown .change-lang-box .select-wrap:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  top: 50%;
  right: 10px;
  font-size: inherit;
  margin: 0;
  transform: translateY(-50%); }

.home-dropdown .change-lang-box .form-control {
  border: 1px solid #ced4da;
  height: 34px !important;
  min-height: 34px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 5px;
  background-image: none;
  font-size: inherit; }

.content-list-header {
  position: fixed;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 5px 3%;
  height: 50px;
  background-color: #fff;
  z-index: 3;
  transition: all 0.2s; }
  .content-list-header.drop-shadow {
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.05); }
  @media (min-width: 992px) {
    .content-list-header {
      height: 60px; } }
  @media (min-width: 1200px) {
    .content-list-header {
      height: 80px; } }
  .content-list-header .brand-logo {
    width: 10%;
    min-width: 100px;
    max-width: 190px; }
    .content-list-header .brand-logo img {
      max-width: 100%; }
  .content-list-header .content-tab {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
    .content-list-header .content-tab .tab-item {
      margin: 0 3px;
      color: #333;
      font-weight: bold;
      font-size: 14px;
      border-bottom: 2px solid transparent;
      transition: all .2s; }
      .content-list-header .content-tab .tab-item.active {
        color: #15a5b7;
        border-bottom-color: #15a5b7; }
      .content-list-header .content-tab .tab-item:hover, .content-list-header .content-tab .tab-item:focus, .content-list-header .content-tab .tab-item:active, .content-list-header .content-tab .tab-item:focus-visible {
        color: #15a5b7;
        border-bottom-color: #15a5b7; }
    @media (min-width: 768px) {
      .content-list-header .content-tab .tab-item {
        font-size: 16px;
        margin: 0 5px; } }
    @media (min-width: 992px) {
      .content-list-header .content-tab .tab-item {
        font-size: 18px;
        margin: 0 15px; } }
    @media (min-width: 1200px) {
      .content-list-header .content-tab .tab-item {
        font-size: 20px;
        margin: 0 30px; } }
  .content-list-header .header-login {
    font-size: 0.9rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .content-list-header .header-login > .btn-create-content {
      display: none;
      font-size: 14px; }
      @media (min-width: 768px) {
        .content-list-header .header-login > .btn-create-content {
          display: block;
          margin-right: 30px; } }
    .content-list-header .header-login .dropdown {
      margin-right: 20px; }
    .content-list-header .header-login .btn-login {
      font-size: 12px;
      padding: 0.2em .7em;
      color: #333; }
      .content-list-header .header-login .btn-login:hover, .content-list-header .header-login .btn-login:focus, .content-list-header .header-login .btn-login:active, .content-list-header .header-login .btn-login:focus-visible {
        color: #15a5b7; }
      @media (min-width: 768px) {
        .content-list-header .header-login .btn-login {
          font-size: 14px; } }
      @media (min-width: 992px) {
        .content-list-header .header-login .btn-login {
          margin: 0 10px; } }

.content-wrap {
  position: relative;
  padding-top: 50px;
  z-index: 2; }
  @media (min-width: 992px) {
    .content-wrap {
      padding-top: 60px; } }
  @media (min-width: 1200px) {
    .content-wrap {
      padding-top: 80px; } }
  .content-wrap .home-search-box {
    margin: 0 5% 15px;
    border-radius: 10px;
    padding: 20px 0;
    background: #4472c4;
    background: -moz-linear-gradient(-45deg, #4472c4 40%, #019999 100%);
    background: -webkit-linear-gradient(-45deg, #4472c4 40%, #019999 100%);
    background: linear-gradient(135deg, #4472c4 40%, #019999 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4472c4', endColorstr='#019999',GradientType=1 ); }
    .content-wrap .home-search-box .home-search-title {
      font-size: 16px;
      color: #fff;
      text-align: center;
      padding: 0 5%;
      margin-bottom: 10px;
      font-weight: bold; }
    .content-wrap .home-search-box .list-search-box {
      padding: 0 5%;
      width: 100%; }
    .content-wrap .home-search-box .search-box {
      width: 100%; }
    .content-wrap .home-search-box .form-control {
      border-top-left-radius: 0.3rem;
      border-bottom-left-radius: 0.3rem; }
    .content-wrap .home-search-box .input-group-addon {
      border-top-right-radius: 0.3rem;
      border-bottom-right-radius: 0.3rem; }
    @media (min-width: 768px) {
      .content-wrap .home-search-box {
        margin-bottom: 20px;
        padding: 25px 0; }
        .content-wrap .home-search-box .home-search-title {
          font-size: 20px;
          padding: 0 10%;
          margin-bottom: 15px; } }
    @media (min-width: 992px) {
      .content-wrap .home-search-box {
        padding: 35px 0; }
        .content-wrap .home-search-box .home-search-title {
          font-size: 25px;
          padding: 0 5%;
          margin-bottom: 20px; }
        .content-wrap .home-search-box .form-control {
          font-size: 16px; }
        .content-wrap .home-search-box .input-group-addon {
          font-size: 20px; } }
    @media (min-width: 1200px) {
      .content-wrap .home-search-box {
        padding: 40px 0;
        margin-bottom: 30px; }
        .content-wrap .home-search-box .home-search-title {
          font-size: 30px; }
        .content-wrap .home-search-box .form-control {
          font-size: 18px; } }
    .content-wrap .home-search-box.data-hub {
      background: #2A5697;
      background: -moz-linear-gradient(-45deg, #2A5697 40%, #5E2375 100%);
      background: -webkit-linear-gradient(-45deg, #2A5697 40%, #5E2375 100%);
      background: linear-gradient(135deg, #2A5697 40%, #5E2375 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2A5697', endColorstr='#5E2375',GradientType=1 ); }
  .content-wrap .create-site-btn-box {
    margin-bottom: 15px;
    text-align: center; }
    .content-wrap .create-site-btn-box .btn-create-content {
      font-size: 13px; }
    @media (min-width: 768px) {
      .content-wrap .create-site-btn-box {
        display: none; } }
  .content-wrap .content-list-main-view {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%; }
    @media (min-width: 768px) {
      .content-wrap .content-list-main-view {
        padding-bottom: 65%; } }
    @media (min-width: 1200px) {
      .content-wrap .content-list-main-view {
        height: 80vh;
        padding-bottom: 0; } }
    .content-wrap .content-list-main-view .main-view {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("/static/img/bg_main_view.gif");
      background-size: contain;
      background-position: 0 0;
      background-repeat: repeat-x;
      overflow: hidden; }
      @media (min-width: 1200px) {
        .content-wrap .content-list-main-view .main-view .main-view-container {
          position: relative;
          width: 100%;
          height: 100%;
          margin: 0 auto;
          max-width: 1580px; } }
    .content-wrap .content-list-main-view .recommended-info {
      position: absolute;
      top: 50%;
      left: 10%;
      width: 40%;
      transform: translateY(-50%);
      z-index: 2; }
      .content-wrap .content-list-main-view .recommended-info .title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 20px; }
      .content-wrap .content-list-main-view .recommended-info .site-name {
        font-size: 14px;
        font-weight: bold;
        margin: 10px 0;
        line-height: 1.4; }
      @media (min-width: 768px) {
        .content-wrap .content-list-main-view .recommended-info {
          width: 20%;
          left: 5%; }
          .content-wrap .content-list-main-view .recommended-info .title {
            font-size: 18px;
            margin-bottom: 30px; }
          .content-wrap .content-list-main-view .recommended-info .site-name {
            font-size: 16px; } }
      @media (min-width: 992px) {
        .content-wrap .content-list-main-view .recommended-info {
          left: 4%;
          width: 22%;
          text-align: center; }
          .content-wrap .content-list-main-view .recommended-info .title {
            font-size: 20px;
            margin-bottom: 40px; }
          .content-wrap .content-list-main-view .recommended-info .site-name {
            font-size: 20px;
            margin: 18px 0; } }
      @media (min-width: 1200px) {
        .content-wrap .content-list-main-view .recommended-info {
          width: 25%;
          max-width: 300px;
          left: 10px; }
          .content-wrap .content-list-main-view .recommended-info .title {
            font-size: 28px; }
          .content-wrap .content-list-main-view .recommended-info .site-name {
            font-size: 26px; } }
    .content-wrap .content-list-main-view .web-box {
      position: absolute;
      top: 0;
      left: 0;
      visibility: hidden;
      width: 1px;
      height: 1px; }
      @media (min-width: 768px) {
        .content-wrap .content-list-main-view .web-box {
          top: 50%;
          left: 15%;
          transform: translateY(-40%);
          width: 90%;
          height: auto;
          visibility: visible;
          background-image: url("/static/img/bg_login.png");
          background-size: 100%;
          background-position: top;
          background-repeat: no-repeat;
          padding-bottom: 45%; }
          .content-wrap .content-list-main-view .web-box .img-box {
            position: absolute;
            top: 0;
            left: 0;
            padding: 3% 15% 9%;
            width: 100%;
            height: 100%; }
          .content-wrap .content-list-main-view .web-box img {
            width: 100%;
            height: 100%; }
          .content-wrap .content-list-main-view .web-box iframe {
            border: 0;
            width: 100%;
            height: 100%; }
          .content-wrap .content-list-main-view .web-box .clear-box {
            position: absolute;
            top: 3%;
            left: 15%;
            right: 15%;
            bottom: 9%;
            z-index: 10; } }
      @media (min-width: 992px) {
        .content-wrap .content-list-main-view .web-box {
          left: 17%; } }
      @media (min-width: 1200px) {
        .content-wrap .content-list-main-view .web-box {
          width: 1197px;
          height: 617px;
          padding-bottom: 0;
          transform: translateY(-48%);
          left: 200px; } }
    .content-wrap .content-list-main-view .mobile-box {
      position: absolute;
      top: 50%;
      right: 10%;
      width: 30%;
      height: 0;
      transform: translateY(-50%);
      padding-bottom: 60%;
      background-image: url("/static/img/img_mobile_frame.png");
      background-size: auto 100%;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 2; }
      .content-wrap .content-list-main-view .mobile-box .img-box {
        position: absolute;
        top: 0;
        padding: 13% 6% 5% 6%;
        width: 100%;
        height: 100%; }
      .content-wrap .content-list-main-view .mobile-box img {
        width: 100%;
        height: 100%;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px; }
      .content-wrap .content-list-main-view .mobile-box iframe {
        border: 0;
        width: 100%;
        height: 100%;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px; }
      .content-wrap .content-list-main-view .mobile-box .clear-box {
        position: absolute;
        top: 6%;
        left: 6%;
        right: 6%;
        bottom: 2%;
        z-index: 10; }
      @media (min-width: 768px) {
        .content-wrap .content-list-main-view .mobile-box {
          right: 5%;
          width: 18%;
          padding-bottom: 36%;
          transform: translateY(-38%); }
          .content-wrap .content-list-main-view .mobile-box img {
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px; }
          .content-wrap .content-list-main-view .mobile-box iframe {
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px; } }
      @media (min-width: 992px) {
        .content-wrap .content-list-main-view .mobile-box {
          right: 4%; } }
      @media (min-width: 1200px) {
        .content-wrap .content-list-main-view .mobile-box {
          width: 241px;
          height: 486px;
          padding-bottom: 0;
          right: 50px; }
          .content-wrap .content-list-main-view .mobile-box .img-box {
            margin: 0;
            padding: 31px 14px 13px;
            width: 100%;
            height: 100%; }
            .content-wrap .content-list-main-view .mobile-box .img-box img {
              position: relative;
              top: initial;
              left: initial;
              right: initial;
              bottom: initial;
              width: 100%;
              height: 100%; } }
    .content-wrap .content-list-main-view .btn-outline-primary {
      width: auto;
      padding: 3px 10px;
      font-size: 13px;
      color: #333;
      border-color: #15a5b7;
      background-color: #fff; }
      .content-wrap .content-list-main-view .btn-outline-primary:hover, .content-wrap .content-list-main-view .btn-outline-primary:focus, .content-wrap .content-list-main-view .btn-outline-primary:active, .content-wrap .content-list-main-view .btn-outline-primary:focus-visible {
        background-color: #15a5b7;
        color: #fff; }
      @media (min-width: 768px) {
        .content-wrap .content-list-main-view .btn-outline-primary {
          padding: 6px 20px;
          font-size: 14px; } }
      @media (min-width: 992px) {
        .content-wrap .content-list-main-view .btn-outline-primary {
          padding: 6px 30px;
          font-size: 16px; } }
  .content-wrap .content-list-site-wrap .list-title {
    font-size: 14px;
    font-weight: bold;
    padding: 5px; }
  @media (min-width: 768px) {
    .content-wrap .content-list-site-wrap {
      padding: 20px 0 0; }
      .content-wrap .content-list-site-wrap .list-title {
        font-size: 16px;
        padding: 5px 10px; } }
  @media (min-width: 992px) {
    .content-wrap .content-list-site-wrap .list-title {
      font-size: 18px;
      padding: 5px 20px; } }
  @media (min-width: 1200px) {
    .content-wrap .content-list-site-wrap .list-title {
      font-size: 20px; } }
  .content-wrap .site-category-wrap {
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .content-wrap .site-category-wrap {
        margin-bottom: 40px; } }
    @media (min-width: 992px) {
      .content-wrap .site-category-wrap {
        margin-bottom: 50px; } }
  .content-wrap .site-category-box {
    padding: 0;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .content-wrap .site-category-box {
        margin-bottom: 22px; } }
    @media (min-width: 992px) {
      .content-wrap .site-category-box {
        margin-bottom: 35px; } }
    .content-wrap .site-category-box:last-child {
      margin-bottom: 0; }
    .content-wrap .site-category-box .category-title {
      font-size: 14px;
      font-weight: bold; }
      .content-wrap .site-category-box .category-title > a {
        position: relative;
        display: inline-block;
        padding: 5px 6.5%;
        color: #333; }
      .content-wrap .site-category-box .category-title small {
        position: relative;
        right: 0;
        opacity: 0;
        transition: right 0.3s, opacity 0.1s; }
      .content-wrap .site-category-box .category-title:hover small, .content-wrap .site-category-box .category-title:focus small, .content-wrap .site-category-box .category-title:focus-visible small {
        opacity: 1;
        right: -10px; }
      @media (min-width: 768px) {
        .content-wrap .site-category-box .category-title {
          font-size: 16px; } }
      @media (min-width: 992px) {
        .content-wrap .site-category-box .category-title {
          font-size: 18px; } }
      @media (min-width: 1200px) {
        .content-wrap .site-category-box .category-title {
          font-size: 20px; } }
  .content-wrap .contents-item-wrap {
    position: relative;
    padding: 0 4%; }
    @media (min-width: 768px) {
      .content-wrap .contents-item-wrap {
        padding: 0 5%; } }
    .content-wrap .contents-item-wrap .item-frame {
      overflow: hidden; }
    .content-wrap .contents-item-wrap .swiper-wrapper {
      width: 100%; }
    .content-wrap .contents-item-wrap .swiper-button-next,
    .content-wrap .contents-item-wrap .swiper-button-prev {
      border: 0;
      background-color: transparent;
      width: calc(5% + 5px);
      opacity: 0;
      transition: all 0.1s;
      background-image: none; }
      .content-wrap .contents-item-wrap .swiper-button-next.swiper-button-disabled,
      .content-wrap .contents-item-wrap .swiper-button-prev.swiper-button-disabled {
        opacity: 0 !important; }
      .content-wrap .contents-item-wrap .swiper-button-next:before, .content-wrap .contents-item-wrap .swiper-button-next:after,
      .content-wrap .contents-item-wrap .swiper-button-prev:before,
      .content-wrap .contents-item-wrap .swiper-button-prev:after {
        position: absolute;
        display: block;
        content: "";
        width: 20px;
        height: 5px;
        background-color: #ababab;
        border-radius: 5px; }
      .content-wrap .contents-item-wrap .swiper-button-next:hover, .content-wrap .contents-item-wrap .swiper-button-next:focus, .content-wrap .contents-item-wrap .swiper-button-next:focus-visible,
      .content-wrap .contents-item-wrap .swiper-button-prev:hover,
      .content-wrap .contents-item-wrap .swiper-button-prev:focus,
      .content-wrap .contents-item-wrap .swiper-button-prev:focus-visible {
        background-color: rgba(0, 0, 0, 0.05);
        outline: none; }
      @media (min-width: 768px) {
        .content-wrap .contents-item-wrap .swiper-button-next,
        .content-wrap .contents-item-wrap .swiper-button-prev {
          width: calc(5% + 10px);
          height: 60px;
          margin-top: -30px; }
          .content-wrap .contents-item-wrap .swiper-button-next:before, .content-wrap .contents-item-wrap .swiper-button-next:after,
          .content-wrap .contents-item-wrap .swiper-button-prev:before,
          .content-wrap .contents-item-wrap .swiper-button-prev:after {
            width: 24px;
            height: 6px; } }
      @media (min-width: 992px) {
        .content-wrap .contents-item-wrap .swiper-button-next,
        .content-wrap .contents-item-wrap .swiper-button-prev {
          width: calc(5% + 20px);
          height: 80px;
          margin-top: -40px; }
          .content-wrap .contents-item-wrap .swiper-button-next:before, .content-wrap .contents-item-wrap .swiper-button-next:after,
          .content-wrap .contents-item-wrap .swiper-button-prev:before,
          .content-wrap .contents-item-wrap .swiper-button-prev:after {
            width: 30px;
            height: 8px; } }
    .content-wrap .contents-item-wrap .swiper-button-prev {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
      left: 0; }
      .content-wrap .contents-item-wrap .swiper-button-prev:before, .content-wrap .contents-item-wrap .swiper-button-prev:after {
        left: 50%;
        margin-left: -11px; }
      .content-wrap .contents-item-wrap .swiper-button-prev:before {
        transform: rotate(-45deg);
        top: 14px; }
      .content-wrap .contents-item-wrap .swiper-button-prev:after {
        transform: rotate(45deg);
        top: 26px; }
      @media (min-width: 768px) {
        .content-wrap .contents-item-wrap .swiper-button-prev:before, .content-wrap .contents-item-wrap .swiper-button-prev:after {
          margin-left: -13px; }
        .content-wrap .contents-item-wrap .swiper-button-prev:before {
          top: 20px; }
        .content-wrap .contents-item-wrap .swiper-button-prev:after {
          top: 33px; } }
      @media (min-width: 992px) {
        .content-wrap .contents-item-wrap .swiper-button-prev:before, .content-wrap .contents-item-wrap .swiper-button-prev:after {
          margin-left: -16px; }
        .content-wrap .contents-item-wrap .swiper-button-prev:before {
          top: 27px; }
        .content-wrap .contents-item-wrap .swiper-button-prev:after {
          top: 43px; } }
    .content-wrap .contents-item-wrap .swiper-button-next {
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
      right: 0; }
      .content-wrap .contents-item-wrap .swiper-button-next:before, .content-wrap .contents-item-wrap .swiper-button-next:after {
        right: 50%;
        margin-right: -11px; }
      .content-wrap .contents-item-wrap .swiper-button-next:before {
        transform: rotate(45deg);
        top: 14px; }
      .content-wrap .contents-item-wrap .swiper-button-next:after {
        transform: rotate(-45deg);
        top: 26px; }
      @media (min-width: 768px) {
        .content-wrap .contents-item-wrap .swiper-button-next:before, .content-wrap .contents-item-wrap .swiper-button-next:after {
          margin-right: -13px; }
        .content-wrap .contents-item-wrap .swiper-button-next:before {
          top: 20px; }
        .content-wrap .contents-item-wrap .swiper-button-next:after {
          top: 33px; } }
      @media (min-width: 992px) {
        .content-wrap .contents-item-wrap .swiper-button-next:before, .content-wrap .contents-item-wrap .swiper-button-next:after {
          margin-right: -16px; }
        .content-wrap .contents-item-wrap .swiper-button-next:before {
          top: 27px; }
        .content-wrap .contents-item-wrap .swiper-button-next:after {
          top: 43px; } }
    .content-wrap .contents-item-wrap:hover .swiper-button-next,
    .content-wrap .contents-item-wrap:hover .swiper-button-prev, .content-wrap .contents-item-wrap:focus .swiper-button-next,
    .content-wrap .contents-item-wrap:focus .swiper-button-prev, .content-wrap .contents-item-wrap:focus-visible .swiper-button-next,
    .content-wrap .contents-item-wrap:focus-visible .swiper-button-prev {
      opacity: 1; }
  .content-wrap .no-content {
    padding: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 200px; }
    .content-wrap .no-content .no-content-text {
      text-align: center;
      margin-bottom: 10px; }
    .content-wrap .no-content .btn-create-content {
      font-size: 13px; }
    @media (min-width: 768px) {
      .content-wrap .no-content .btn-create-content {
        font-size: 14px; } }
  .content-wrap .site-item {
    padding: 10px; }
    .content-wrap .site-item:hover .site-inner-box, .content-wrap .site-item:focus .site-inner-box, .content-wrap .site-item:active .site-inner-box, .content-wrap .site-item:focus-visible .site-inner-box, .content-wrap .site-item.active .site-inner-box {
      border-color: #15a5b7;
      box-shadow: 0 0 0 1px #15a5b7; }
    @media (min-width: 768px) {
      .content-wrap .site-item {
        padding: 8px 10px; } }
    @media (min-width: 992px) {
      .content-wrap .site-item {
        padding: 10px 20px; } }
    .content-wrap .site-item .site-inner-box {
      position: relative;
      border: 1px solid #ccc;
      border-radius: 8px;
      transition: all 0.1s; }
    .content-wrap .site-item .manage-box {
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      z-index: 10;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .content-wrap .site-item .manage-box .icon {
        width: 30px;
        height: 30px;
        border-radius: 30px;
        background-image: url("/static/img/logo_symbol2.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover; }
      .content-wrap .site-item .manage-box .btn {
        width: 30px;
        height: 30px;
        border-radius: 30px;
        background-color: rgba(0, 0, 0, 0.2);
        font-size: 18px;
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        color: #fff; }
    .content-wrap .site-item .thumb-box {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 57%;
      border-radius: 7px;
      overflow: hidden;
      background-image: url("/static/img/theme_default.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover; }
      .content-wrap .site-item .thumb-box img {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .content-wrap .site-item .thumb-box.mobile {
        padding-bottom: 190%; }
    .content-wrap .site-item .caption {
      padding: 8px; }
      .content-wrap .site-item .caption .site-name {
        font-size: 14px;
        font-weight: bold; }
      .content-wrap .site-item .caption .caption-footer {
        font-size: 12px; }
      .content-wrap .site-item .caption .count-box {
        padding: 5px 0;
        text-align: right; }
      .content-wrap .site-item .caption .btn-like {
        padding: 0;
        font-size: inherit; }
        .content-wrap .site-item .caption .btn-like:focus {
          box-shadow: none; }
        .content-wrap .site-item .caption .btn-like:focus-visible {
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
        .content-wrap .site-item .caption .btn-like .like {
          color: #15a5b7; }
        .content-wrap .site-item .caption .btn-like .like-num {
          font-weight: bold; }
      .content-wrap .site-item .caption .btn-box {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
        .content-wrap .site-item .caption .btn-box .btn {
          margin-bottom: 5px; }
          .content-wrap .site-item .caption .btn-box .btn:last-child {
            margin-bottom: 0; }
      @media (min-width: 768px) {
        .content-wrap .site-item .caption .site-name {
          font-size: 16px; }
        .content-wrap .site-item .caption .caption-footer {
          font-size: 14px; } }
      @media (min-width: 992px) {
        .content-wrap .site-item .caption {
          padding: 10px; }
          .content-wrap .site-item .caption .site-name {
            font-size: 18px; }
          .content-wrap .site-item .caption .caption-footer {
            padding: 8px 0 0; }
          .content-wrap .site-item .caption .btn-box {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-flex-direction: row;
            -moz-box-flex-direction: row;
            -ms-flex-direction: row;
            -webkit-flex-direction: row;
            flex-direction: row;
            margin: 0 -5px; }
            .content-wrap .site-item .caption .btn-box .btn {
              margin: 0 5px;
              padding-left: 0;
              padding-right: 0; } }
    .content-wrap .site-item .btn-outline-primary {
      width: 100%;
      font-size: 0.8rem;
      padding: 3px;
      color: #333;
      border-color: #15a5b7; }
      .content-wrap .site-item .btn-outline-primary:hover, .content-wrap .site-item .btn-outline-primary:focus, .content-wrap .site-item .btn-outline-primary:active, .content-wrap .site-item .btn-outline-primary:focus-visible {
        background-color: #15a5b7;
        color: #fff; }
      @media (min-width: 992px) {
        .content-wrap .site-item .btn-outline-primary {
          padding: 2px 12px; } }
  .content-wrap .site-list-all {
    padding: 0 4%; }
    @media (min-width: 768px) {
      .content-wrap .site-list-all {
        padding: 0 5%; } }
    .content-wrap .site-list-all > ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-wrap: wrap;
      -moz-box-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
    .content-wrap .site-list-all .site-row-item {
      width: 50%; }
    .content-wrap .site-list-all .paging-box {
      margin: 15px 0; }
    .content-wrap .site-list-all .btn-more-content {
      font-size: 13px; }
    .content-wrap .site-list-all .top-btn-box {
      margin-bottom: 10px; }
      .content-wrap .site-list-all .top-btn-box .btn {
        font-size: 13px; }
    @media (min-width: 768px) {
      .content-wrap .site-list-all .site-row-item {
        width: 33.333333%; }
      .content-wrap .site-list-all .btn-more-content {
        font-size: 14px; }
      .content-wrap .site-list-all .top-btn-box {
        margin-bottom: 10px; }
        .content-wrap .site-list-all .top-btn-box .btn {
          font-size: 14px; } }
    @media (min-width: 992px) {
      .content-wrap .site-list-all .site-row-item {
        width: 25%; }
      .content-wrap .site-list-all .paging-box {
        margin: 20px 0; } }
    @media (min-width: 1400px) {
      .content-wrap .site-list-all .site-row-item {
        width: 20%; }
      .content-wrap .site-list-all .paging-box {
        margin: 30px 0 15px; } }
    .content-wrap .site-list-all.my-content-list {
      margin-bottom: 30px; }
      @media (min-width: 768px) {
        .content-wrap .site-list-all.my-content-list {
          margin-bottom: 40px; } }
      @media (min-width: 992px) {
        .content-wrap .site-list-all.my-content-list {
          margin-bottom: 50px; } }

.siteBody .btn-full-screen {
  position: fixed;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 20px;
  color: #fff;
  padding: 5px;
  margin: 0;
  border-radius: 5px;
  line-height: 1;
  z-index: 9999; }
  .siteBody .btn-full-screen i.icon:before {
    vertical-align: initial;
    margin-bottom: 0; }

.mobile-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f2f3f4;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }
  .mobile-wrap .mobile-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-color: #15a5b7;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .mobile-wrap .mobile-header .logo {
      width: 80px; }
    .mobile-wrap .mobile-header .btn-back {
      position: absolute;
      top: 0;
      left: 8px;
      text-indent: -999em; }
      .mobile-wrap .mobile-header .btn-back:before {
        display: block;
        content: '';
        width: 18px;
        height: 18px;
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
        position: absolute;
        left: 8px;
        top: 10px;
        transform: rotate(-45deg); }
  .mobile-wrap .mobile-content-box {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    z-index: 2; }
  .mobile-wrap.with-header .mobile-content-box {
    top: 40px; }
  .mobile-wrap.with-bottom .mobile-content-box {
    bottom: 50px; }
  .mobile-wrap .mobile-content-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto; }
  .mobile-wrap .mobile-bottom-nav {
    position: absolute;
    height: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    z-index: 3; }
    .mobile-wrap .mobile-bottom-nav ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      height: 100%; }
    .mobile-wrap .mobile-bottom-nav li {
      flex: 1;
      height: 100%; }
      .mobile-wrap .mobile-bottom-nav li a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: 100%;
        font-size: 9px;
        color: #404040; }
        .mobile-wrap .mobile-bottom-nav li a:hover {
          text-decoration: none; }
        .mobile-wrap .mobile-bottom-nav li a.active {
          color: #15a5b7; }
        .mobile-wrap .mobile-bottom-nav li a.disabled {
          opacity: 0.6;
          cursor: default; }
      .mobile-wrap .mobile-bottom-nav li .icon {
        font-size: 24px;
        margin-bottom: 2px; }
      .mobile-wrap .mobile-bottom-nav li svg {
        font-size: 24px;
        margin-bottom: 2px; }
  .mobile-wrap iframe {
    width: 100%;
    height: 100%; }
  .mobile-wrap .mobile-login-wrap iframe.sso {
    height: 150px; }
  .mobile-wrap .btn-view-type {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    padding: 0;
    margin: 0;
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 22px; }
    .mobile-wrap .btn-view-type .icon {
      display: block; }
    .mobile-wrap .btn-view-type .icon:before {
      margin: 0;
      vertical-align: initial; }

.mobile-category-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2001; }
  .mobile-category-wrap .category-menu {
    position: absolute;
    right: -80%;
    width: 80%;
    height: 100%;
    max-width: 380px;
    background-color: #fff;
    transition: right .1s; }
    .mobile-category-wrap .category-menu.on {
      right: 0; }
  .mobile-category-wrap .category-header {
    position: relative;
    padding: 10px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #15a5b7;
    color: #fff;
    font-size: 0.9rem; }
    .mobile-category-wrap .category-header.login {
      padding-left: 50px;
      padding-right: 70px; }
    .mobile-category-wrap .category-header .thumb-icon {
      position: absolute;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      width: 32px;
      height: 32px;
      border-radius: 32px;
      overflow: hidden;
      background-color: #c4c4c4;
      top: 50%;
      margin-top: -16px;
      left: 10px; }
      .mobile-category-wrap .category-header .thumb-icon .fa-user {
        color: #fff;
        font-size: 1.6em;
        padding: 2px 0;
        margin-bottom: 3px; }
    .mobile-category-wrap .category-header .profile-thumb {
      width: 100%;
      height: 100%;
      border-radius: 16px; }
    .mobile-category-wrap .category-header .btn-line {
      position: absolute;
      top: 50%;
      right: 10px;
      border: 1px solid #fff;
      border-radius: 8px;
      font-size: 12px;
      padding: 0.2em .7em;
      color: #fff;
      transform: translateY(-50%); }
      .mobile-category-wrap .category-header .btn-line.btn-login {
        right: 80px; }
  .mobile-category-wrap .category-nav-box {
    height: calc(100% - 60px);
    overflow-y: auto;
    background-color: #efefef; }
  .mobile-category-wrap .category-item .item-d1,
  .mobile-category-wrap .category-item .item-d2 {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 50px !important;
    padding: 0 20px;
    border: 0;
    margin: 0;
    background-color: transparent;
    border-bottom: 1px solid #aaa;
    color: inherit; }
    .mobile-category-wrap .category-item .item-d1.active,
    .mobile-category-wrap .category-item .item-d2.active {
      color: #15a5b7; }
    .mobile-category-wrap .category-item .item-d1.active:before,
    .mobile-category-wrap .category-item .item-d2.active:before {
      position: absolute;
      display: block;
      content: "";
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background-color: #15a5b7; }
  .mobile-category-wrap .category-item .item-d2 {
    background-color: #fff;
    padding-left: 30px; }
  .mobile-category-wrap .category-item button.item-d1 {
    padding-right: 40px; }
    .mobile-category-wrap .category-item button.item-d1:after {
      position: absolute;
      display: block;
      content: "";
      top: 50%;
      right: 20px;
      margin-top: -4px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 5px 8px 5px;
      border-color: transparent transparent #000000 transparent;
      transform-origin: center; }
    .mobile-category-wrap .category-item button.item-d1.collapsed:after {
      transform: rotate(180deg); }
  .mobile-category-wrap .category-item .icon {
    width: 24px;
    height: 24px;
    overflow: hidden;
    margin-right: 10px; }
    .mobile-category-wrap .category-item .icon img {
      max-width: 100%;
      max-height: 100%;
      vertical-align: top; }
  .mobile-category-wrap .category-item .toe {
    display: inline-block; }

.report-list-box .report-list-item {
  position: relative;
  padding: 15px 20px;
  font-size: 12px; }
  .report-list-box .report-list-item.report-close .item-wrap {
    opacity: 0.5; }
  .report-list-box .report-list-item:after {
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    display: block;
    content: '';
    height: 1px;
    background-color: #bfbfbf; }
  .report-list-box .report-list-item .item-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: bold; }
  .report-list-box .report-list-item .item-body {
    line-height: 1.4; }

.mobile-form-wrap {
  padding: 10px 12px;
  max-width: 540px;
  margin: 0 auto; }
  .mobile-form-wrap .form-group label,
  .mobile-form-wrap .form-group .form-label {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 3px; }
  .mobile-form-wrap .form-control {
    border-radius: 3px; }
  .mobile-form-wrap .file-upload-label {
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    background-color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
    .mobile-form-wrap .file-upload-label .icon {
      font-size: 40px;
      color: #15a5b7; }
  .mobile-form-wrap .btn-box {
    margin-top: 10px; }
  .mobile-form-wrap .required {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    color: #15a5b7; }

.mobile-form-map-wrap {
  position: relative;
  width: 100%;
  height: 100%; }
  .mobile-form-map-wrap .btn-my-location {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    margin: 0;
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 22px;
    z-index: 1000; }

.map-post-item-box {
  position: absolute;
  bottom: 5px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1000; }
  .map-post-item-box .post-item-wrap {
    margin: 0; }
    .map-post-item-box .post-item-wrap .item-img-frame {
      padding-bottom: 50%; }
  .map-post-item-box .btn {
    position: absolute;
    top: 10px;
    right: 5px;
    font-size: 20px;
    padding: 0;
    margin: 0;
    width: 30px; }

.mobile-form-list-box .empty-post-item {
  height: 200px;
  text-align: center;
  font-size: 12px;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }
  .mobile-form-list-box .empty-post-item span, .mobile-form-list-box .empty-post-item a {
    display: block; }
  .mobile-form-list-box .empty-post-item a {
    color: #15a5b7; }

.post-list-item:first-child .post-item-wrap {
  margin-top: 0; }

.post-list-item:last-child .post-item-wrap {
  margin-bottom: 0; }

.post-item-wrap,
.site-post-view,
.admin-post-response-box {
  font-size: 14px;
  background-color: #fff;
  margin: 1em 0; }
  .post-item-wrap > a,
  .site-post-view > a,
  .admin-post-response-box > a {
    display: block;
    color: #333; }
  @media (min-width: 992px) {
    .post-item-wrap,
    .site-post-view,
    .admin-post-response-box {
      font-size: 16px; } }
  .post-item-wrap .item-header,
  .site-post-view .item-header,
  .admin-post-response-box .item-header {
    position: relative;
    padding: 1.2em 2em 1.2em 4.5em;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .post-item-wrap .item-header .thumb,
    .site-post-view .item-header .thumb,
    .admin-post-response-box .item-header .thumb {
      position: absolute;
      width: 32px;
      height: 32px;
      border-radius: 32px;
      top: 50%;
      margin-top: -16px;
      left: 1em;
      overflow: hidden;
      background-color: #efefef;
      background-image: url("/static/img/logo_symbol2.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover; }
      .post-item-wrap .item-header .thumb img,
      .site-post-view .item-header .thumb img,
      .admin-post-response-box .item-header .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .post-item-wrap .item-header .header-title,
    .site-post-view .item-header .header-title,
    .admin-post-response-box .item-header .header-title {
      font-size: 1.2em;
      font-weight: bold; }
    .post-item-wrap .item-header .user-name,
    .site-post-view .item-header .user-name,
    .admin-post-response-box .item-header .user-name {
      font-size: 1em; }
  .post-item-wrap .item-img-frame,
  .site-post-view .item-img-frame,
  .admin-post-response-box .item-img-frame {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden; }
    .post-item-wrap .item-img-frame .swiper-wrapper,
    .site-post-view .item-img-frame .swiper-wrapper,
    .admin-post-response-box .item-img-frame .swiper-wrapper {
      position: absolute;
      text-align: center; }
    .post-item-wrap .item-img-frame img,
    .site-post-view .item-img-frame img,
    .admin-post-response-box .item-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .post-item-wrap .item-img-frame .swiper-pagination-bullet,
    .site-post-view .item-img-frame .swiper-pagination-bullet,
    .admin-post-response-box .item-img-frame .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background-color: #c4c4c4;
      opacity: 0.8; }
    .post-item-wrap .item-img-frame .swiper-pagination-bullet-active,
    .site-post-view .item-img-frame .swiper-pagination-bullet-active,
    .admin-post-response-box .item-img-frame .swiper-pagination-bullet-active {
      background-color: #009ffd; }
  .post-item-wrap .item-content,
  .site-post-view .item-content,
  .admin-post-response-box .item-content {
    padding: 1em 1em 0.6em; }
  .post-item-wrap .item-footer,
  .site-post-view .item-footer,
  .admin-post-response-box .item-footer {
    font-size: 12px;
    padding: 0.6em 1em 1em;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between; }

.btn-post-view-back {
  position: absolute;
  top: 10px;
  left: 10px;
  text-indent: -999em;
  width: 38px;
  height: 38px;
  border-radius: 38px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20; }
  .btn-post-view-back:before {
    display: block;
    content: '';
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    left: 13px;
    top: 11px;
    transform: rotate(-45deg); }

.site-post-view {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden; }
  .site-post-view .post-view-swiper {
    width: 100%;
    height: 100%; }
    .site-post-view .post-view-swiper img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .site-post-view .post-view-swiper .swiper-pagination {
      bottom: auto;
      top: 10px; }
    .site-post-view .post-view-swiper .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background-color: #c4c4c4;
      opacity: 0.8; }
    .site-post-view .post-view-swiper .swiper-pagination-bullet-active {
      background-color: #009ffd; }
  .site-post-view .post-view-bg {
    width: 100%;
    height: 100%;
    background-image: url("/static/img/theme_default.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .site-post-view .post-view-info {
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 2px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.75);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #fff; }
    .site-post-view .post-view-info .item-header {
      padding-top: 0.8em;
      padding-bottom: 0.8em; }
    .site-post-view .post-view-info .item-body {
      min-height: 50px;
      height: auto;
      max-height: 240px;
      overflow-y: auto; }
    .site-post-view .post-view-info .item-content {
      padding-top: 0.8em;
      line-height: 1.3; }
    .site-post-view .post-view-info .contents {
      margin-bottom: 1em; }
    .site-post-view .post-view-info .item-row {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      margin-bottom: 0.4em; }
      .site-post-view .post-view-info .item-row .title {
        margin-right: 3px; }
      .site-post-view .post-view-info .item-row .desc {
        margin: 0;
        white-space: pre-line; }
      .site-post-view .post-view-info .item-row .desc a {
        color: #333; }
    .site-post-view .post-view-info .related-post {
      margin-bottom: 0.4em; }
      .site-post-view .post-view-info .related-post .title {
        margin-bottom: 0.3em;
        font-weight: bold; }
      .site-post-view .post-view-info .related-post ul {
        margin: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-wrap: wrap;
        -moz-box-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap; }
      .site-post-view .post-view-info .related-post .related-item {
        width: 50%;
        padding: 3px; }
        .site-post-view .post-view-info .related-post .related-item a {
          display: block;
          color: #333;
          border: 1px solid #ccc;
          border-radius: 8px;
          background-color: #fff;
          overflow: hidden; }
        .site-post-view .post-view-info .related-post .related-item .thumb {
          position: relative;
          width: 100%;
          height: 0;
          padding-bottom: 54%;
          background-image: url("/static/img/theme_default.png");
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
          border-bottom-left-radius: 8px;
          border-bottom-right-radius: 8px;
          overflow: hidden; }
          .site-post-view .post-view-info .related-post .related-item .thumb img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .site-post-view .post-view-info .related-post .related-item .item-title {
          padding: 5px; }
  .site-post-view .btn-status {
    padding: 3px 5px;
    margin: 0;
    background-color: transparent;
    border: 0; }
  .site-post-view .btn-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    padding: 0;
    margin: 0;
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 22px; }
    .site-post-view .btn-edit .icon {
      display: block; }
    .site-post-view .btn-edit .icon:before {
      margin: 0;
      vertical-align: initial; }

.admin-post-response-box {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff; }

.mobile-content-box .admin-post-response-box {
  top: auto;
  bottom: 63%;
  z-index: 20;
  left: 8px;
  right: 8px; }

.mobile-login-wrap {
  position: relative; }
  .mobile-login-wrap .login-title {
    padding: 30px 0 10px;
    text-align: center;
    font-size: 24px; }
    .mobile-login-wrap .login-title .site-name {
      color: #15a5b7; }
  .mobile-login-wrap .login-sub-title {
    font-size: 13px;
    text-align: center;
    margin-bottom: 20px; }
  .mobile-login-wrap .btn-signup {
    position: absolute;
    bottom: 30px;
    left: 12px;
    right: 12px;
    width: auto; }
  .mobile-login-wrap .form-check {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 13px; }
    .mobile-login-wrap .form-check a {
      color: #15a5b7; }
    .mobile-login-wrap .form-check .form-check-input:checked {
      background-color: #15a5b7;
      border-color: #15a5b7; }
    .mobile-login-wrap .form-check .form-check-input:focus {
      border-color: #b1e6ea;
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(177, 230, 234, 0.25); }

.inner_html,
.inner_html > body {
  height: 100%;
  background-color: #f2f3f4; }

.sso-wrap {
  width: 100%;
  height: 500px;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #f2f3f4; }
  .sso-wrap .btn {
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 10px; }
    .sso-wrap .btn .sso-icon {
      margin-right: 10px; }
    .sso-wrap .btn:last-child {
      margin-bottom: 0; }
    .sso-wrap .btn.btn-kakao {
      background-color: #ffcd00; }
      .sso-wrap .btn.btn-kakao:hover, .sso-wrap .btn.btn-kakao:focus, .sso-wrap .btn.btn-kakao:active {
        background-color: #f0c100; }
    .sso-wrap .btn.btn-google {
      background-color: #db5a3c;
      color: #fff; }
      .sso-wrap .btn.btn-google:hover, .sso-wrap .btn.btn-google:focus, .sso-wrap .btn.btn-google:active {
        background-color: #d94f2f; }

.lp-common-boxs form .form-group {
  width: 100%;
  text-align: left;
  margin: 0; }
  .lp-common-boxs form .form-group label,
  .lp-common-boxs form .form-group .label {
    display: inline-block;
    margin-bottom: 3px;
    font-size: 13px; }
  .lp-common-boxs form .form-group textarea.form-control {
    height: 80px; }
  .lp-common-boxs form .form-group .optional {
    display: inline-block;
    vertical-align: middle;
    color: #999;
    font-style: italic;
    font-size: 11px;
    font-weight: normal; }

.lp-common-boxs form .form-group + .form-group {
  margin-top: 10px; }

.lp-common-boxs form .selection {
  display: inline-block;
  width: 100%;
  height: 100%; }

.lp-common-boxs form .select2-container--default {
  height: auto;
  min-height: 38px; }
  .lp-common-boxs form .select2-container--default .select2-selection--multiple {
    border-color: #ced4da;
    height: 100%; }
    .lp-common-boxs form .select2-container--default .select2-selection--multiple .select2-selection__choice {
      background-color: #fff;
      border-color: #15a5b7;
      padding: 3px 5px; }
    .lp-common-boxs form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
      border-right-color: transparent;
      position: relative; }
      .lp-common-boxs form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .lp-common-boxs form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
        background-color: transparent;
        color: #15a5b7; }
    .lp-common-boxs form .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
      font-size: 12px; }
  .lp-common-boxs form .select2-container--default .select2-search--inline .select2-search__field {
    vertical-align: middle;
    height: 29px;
    line-height: 29px; }

.popup-change-theme-list {
  width: 80%;
  margin: 0 auto; }
  @media (min-width: 1024px) {
    .popup-change-theme-list {
      width: 1024px; } }
  .popup-change-theme-list .notice {
    font-size: 13px;
    color: #ff0000;
    margin-left: 10px; }
  .popup-change-theme-list .row {
    margin-left: 0;
    margin-right: 0; }
  .popup-change-theme-list [class*="col-"] {
    padding-left: 0;
    padding-right: 0; }
  .popup-change-theme-list .content-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 580px;
    padding: 0; }
    .popup-change-theme-list .content-box .nav-wrap {
      width: 100%;
      height: 300px;
      background-color: #f4f4f2; }
    .popup-change-theme-list .content-box .theme-wrap {
      flex: 1;
      width: 100%;
      height: 100%;
      padding: 10px;
      overflow-y: auto; }
    .popup-change-theme-list .content-box .theme-inner-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-wrap: wrap;
      -moz-box-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
    .popup-change-theme-list .content-box .theme-title {
      font-size: 16px;
      font-weight: bold;
      padding: 5px; }
    @media (min-width: 768px) {
      .popup-change-theme-list .content-box {
        -webkit-box-flex-direction: row;
        -moz-box-flex-direction: row;
        -ms-flex-direction: row;
        -webkit-flex-direction: row;
        flex-direction: row; }
        .popup-change-theme-list .content-box .nav-wrap {
          width: 320px;
          height: 100%;
          background-color: #f4f4f2; } }
    @media (min-width: 992px) {
      .popup-change-theme-list .content-box .theme-wrap {
        padding: 10px 2em; } }
    @media (min-width: 1200px) {
      .popup-change-theme-list .content-box .theme-title {
        padding: 10px 20px 0; } }
  .popup-change-theme-list .theme-item {
    padding: 5px;
    width: 50%; }
    .popup-change-theme-list .theme-item label {
      margin-bottom: 0; }
    .popup-change-theme-list .theme-item .theme-description {
      margin-bottom: 2rem; }
    .popup-change-theme-list .theme-item .btn-area {
      font-size: 13px;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .popup-change-theme-list .theme-item .btn-last {
      padding-right: 0; }
    .popup-change-theme-list .theme-item .btn-outline-primary {
      width: 100%;
      font-size: 0.8rem;
      padding: 3px;
      color: #333;
      border-color: #15a5b7; }
      .popup-change-theme-list .theme-item .btn-outline-primary:hover, .popup-change-theme-list .theme-item .btn-outline-primary:focus, .popup-change-theme-list .theme-item .btn-outline-primary:active {
        background-color: #15a5b7;
        color: #fff; }
    .popup-change-theme-list .theme-item.current-theme .thumbnail {
      border-color: #15a5b7; }
    .popup-change-theme-list .theme-item.active .thumbnail {
      border-color: #ff7200;
      box-shadow: 0 0 0 3px #ff7200; }
    @media (min-width: 1200px) {
      .popup-change-theme-list .theme-item {
        padding: 20px; } }

.user-permission-popup {
  max-width: 1200px !important;
  max-height: 800px !important; }
  .user-permission-popup .box-row {
    padding: 20px 5px; }
    .user-permission-popup .box-row .title {
      padding: 0 15px;
      margin-bottom: 15px;
      margin-top: -5px;
      font-size: 18px;
      font-weight: bold; }
  .user-permission-popup .bottom-line {
    border-bottom: 1px solid #bfbfbf; }
  .user-permission-popup .right-line {
    border-bottom: 1px solid #bfbfbf; }
    @media (min-width: 768px) {
      .user-permission-popup .right-line {
        border-bottom: none;
        border-right: 1px solid #bfbfbf; } }
  .user-permission-popup .btn {
    font-size: 14px;
    padding: 3px 15px;
    border-radius: 3px; }
  .user-permission-popup .permission-list {
    margin-bottom: 0; }
    .user-permission-popup .permission-list li {
      margin-bottom: 5px; }
      .user-permission-popup .permission-list li:last-child {
        margin-bottom: 0; }
  .user-permission-popup .page-permission-box {
    border-top: 1px solid #bfbfbf;
    min-height: 100px;
    padding: 0; }
    @media (min-width: 992px) {
      .user-permission-popup .page-permission-box {
        border-top: none;
        border-left: 1px solid #bfbfbf; } }
  .user-permission-popup .category-type-tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 10px 15px; }
    .user-permission-popup .category-type-tabs button:focus {
      outline: none; }
    .user-permission-popup .category-type-tabs .tab-item {
      position: relative;
      font-size: 18px;
      padding: 0 10px; }
      .user-permission-popup .category-type-tabs .tab-item.active .tab-btn {
        color: #15a5b7; }
      .user-permission-popup .category-type-tabs .tab-item.active .tab-btn span {
        border-color: #15a5b7; }
      .user-permission-popup .category-type-tabs .tab-item:after {
        position: absolute;
        display: block;
        top: 3px;
        right: -1px;
        content: "";
        width: 2px;
        height: 18px;
        background-color: #333; }
      .user-permission-popup .category-type-tabs .tab-item:last-child:after {
        display: none; }
      @media (min-width: 1200px) {
        .user-permission-popup .category-type-tabs .tab-item {
          padding: 0 15px; } }
    .user-permission-popup .category-type-tabs .tab-btn {
      border: 0;
      background-color: transparent;
      font-weight: bold; }
      .user-permission-popup .category-type-tabs .tab-btn span {
        border-bottom: 2px solid transparent; }
      .user-permission-popup .category-type-tabs .tab-btn:hover, .user-permission-popup .category-type-tabs .tab-btn:focus, .user-permission-popup .category-type-tabs .tab-btn:active {
        color: #15a5b7; }
  .user-permission-popup .category-box .category-inner {
    padding: 10px 15px; }
  @media (min-width: 992px) {
    .user-permission-popup .category-box {
      position: relative;
      height: calc(100% - 49px); }
      .user-permission-popup .category-box .category-inner {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow-y: auto; } }
  .user-permission-popup .category-box .list-item {
    margin-bottom: 20px; }
    .user-permission-popup .category-box .list-item .form-check {
      padding-left: 30px;
      margin-bottom: 0; }
    .user-permission-popup .category-box .list-item .form-check-input {
      top: 8px;
      left: 0;
      margin-left: 0;
      margin-top: 0; }
    .user-permission-popup .category-box .list-item .form-check-label {
      display: block;
      width: 100%;
      padding: 5px 20px;
      border: 1px solid #bfbfbf; }
    @media (min-width: 992px) {
      .user-permission-popup .category-box .list-item .form-check-label {
        padding: 5px 10px;
        max-width: 240px; } }
  .user-permission-popup .category-box .children-category-item {
    position: relative;
    padding-top: 10px; }
    .user-permission-popup .category-box .children-category-item:before {
      content: "";
      display: block;
      height: 46px;
      width: 1px;
      background-color: #777;
      position: absolute;
      top: 0;
      left: 48px; }
    .user-permission-popup .category-box .children-category-item:after {
      content: "";
      display: block;
      height: 1px;
      width: 13px;
      background-color: #777;
      position: absolute;
      top: 28px;
      left: 48px; }
    .user-permission-popup .category-box .children-category-item:last-child:before {
      height: 29px; }
    .user-permission-popup .category-box .children-category-item .form-check {
      padding-left: 60px; }

.profile-setting-popup .inner-box {
  padding: 20px !important; }

.profile-setting-popup .thumb-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  flex-align: center;
  -webkit-align-items: center;
  -moz-box-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  width: 128px;
  height: 128px;
  border-radius: 128px;
  overflow: hidden;
  background-color: #c4c4c4;
  margin: 0 auto; }
  .profile-setting-popup .thumb-icon .fa-user {
    color: #fff;
    font-size: 60px; }
  .profile-setting-popup .thumb-icon .profile-thumb {
    width: auto;
    height: 100%;
    border-radius: 16px; }

.profile-setting-popup .thumb-box {
  position: relative;
  width: 100%; }
  .profile-setting-popup .thumb-box .btn-change-thumb {
    position: absolute;
    top: -3px;
    right: 5px;
    border: 0;
    background-color: transparent;
    padding: 0;
    font-size: 26px;
    color: #15a5b7;
    cursor: pointer; }

.profile-setting-popup .form-group {
  width: 100%;
  text-align: left;
  margin: 10px 0; }
  .profile-setting-popup .form-group label,
  .profile-setting-popup .form-group .label {
    display: inline-block;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: bold; }
  .profile-setting-popup .form-group textarea.form-control {
    height: 80px; }
  .profile-setting-popup .form-group .desc {
    font-size: 14px;
    word-break: break-word; }
  .profile-setting-popup .form-group .desc a {
    color: #15a5b7;
    cursor: pointer;
    text-decoration: underline; }
  .profile-setting-popup .form-group .optional {
    display: inline-block;
    vertical-align: middle;
    color: #999;
    font-style: italic;
    font-size: 10px; }

.profile-setting-popup .password-form .form-control {
  margin-bottom: 10px; }

.profile-setting-popup .withdrawal-box {
  margin-bottom: 20px; }
  .profile-setting-popup .withdrawal-box button {
    margin-bottom: 5px; }
  .profile-setting-popup .withdrawal-box .desc {
    font-size: 12px;
    word-break: break-word; }

.profile-setting-popup .site-thumb-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%; }
  .profile-setting-popup .site-thumb-box img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .profile-setting-popup .site-thumb-box .btn-remove {
    position: absolute;
    padding: 0;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 26px;
    font-size: 20px;
    top: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.5); }
  .profile-setting-popup .site-thumb-box .thumb {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid #ddd;
    background-image: url("/static/img/theme_default.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .profile-setting-popup .site-thumb-box .pc-thumb-box {
    flex: 1; }
    .profile-setting-popup .site-thumb-box .pc-thumb-box .thumb {
      padding-bottom: 57%; }
  .profile-setting-popup .site-thumb-box .mobile-thumb-box {
    width: 97px;
    margin-left: 20px; }
    .profile-setting-popup .site-thumb-box .mobile-thumb-box .thumb {
      padding-bottom: 190%; }

.profile-setting-popup .thumb-btn-box {
  width: 100%;
  margin-top: 5px; }
  .profile-setting-popup .thumb-btn-box .btn-change-thumb {
    font-size: 14px;
    padding: 3px 10px; }
  .profile-setting-popup .thumb-btn-box .btn-change-thumb .icon {
    font-size: 20px;
    margin-right: 5px; }

.profile-setting-popup.content-info {
  max-width: 480px !important; }

.popup-page-category .category-list-wrap {
  border-bottom: 1px solid #ccc; }
  .popup-page-category .category-list-wrap > ul {
    padding: 10px;
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 0; }
  .popup-page-category .category-list-wrap .list-item,
  .popup-page-category .category-list-wrap .sub-list-item {
    font-size: 14px;
    margin-bottom: 15px; }
    .popup-page-category .category-list-wrap .list-item:last-child,
    .popup-page-category .category-list-wrap .sub-list-item:last-child {
      margin-bottom: 0; }
    .popup-page-category .category-list-wrap .list-item .sort,
    .popup-page-category .category-list-wrap .sub-list-item .sort {
      position: absolute;
      display: none;
      top: 6px;
      left: 3px;
      cursor: move;
      color: #bbbbbb;
      font-size: 11px; }
    .popup-page-category .category-list-wrap .list-item .btn,
    .popup-page-category .category-list-wrap .sub-list-item .btn {
      position: absolute;
      padding: 0;
      border: 0;
      background-color: transparent; }
      .popup-page-category .category-list-wrap .list-item .btn.disabled,
      .popup-page-category .category-list-wrap .sub-list-item .btn.disabled {
        cursor: default;
        opacity: .5; }
    .popup-page-category .category-list-wrap .list-item .inner-item,
    .popup-page-category .category-list-wrap .sub-list-item .inner-item {
      position: relative;
      padding-left: 25px;
      padding-right: 30px; }
    .popup-page-category .category-list-wrap .list-item .btn-toggle-tree,
    .popup-page-category .category-list-wrap .sub-list-item .btn-toggle-tree {
      top: 2px;
      left: 0;
      width: 24px;
      height: 24px; }
      .popup-page-category .category-list-wrap .list-item .btn-toggle-tree.disabled,
      .popup-page-category .category-list-wrap .sub-list-item .btn-toggle-tree.disabled {
        cursor: default;
        opacity: 0; }
      .popup-page-category .category-list-wrap .list-item .btn-toggle-tree:before,
      .popup-page-category .category-list-wrap .sub-list-item .btn-toggle-tree:before {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 0 6px 8px;
        border-color: transparent transparent transparent #000;
        top: 50%;
        left: 50%;
        margin: -6px 0 0 -4px;
        transform-origin: center;
        transition: all .2s; }
      .popup-page-category .category-list-wrap .list-item .btn-toggle-tree.on:before,
      .popup-page-category .category-list-wrap .sub-list-item .btn-toggle-tree.on:before {
        transform: rotate(90deg); }
    .popup-page-category .category-list-wrap .list-item .btn-add-sub-category,
    .popup-page-category .category-list-wrap .sub-list-item .btn-add-sub-category {
      top: 2px;
      right: 0;
      width: 24px;
      height: 24px; }
      .popup-page-category .category-list-wrap .list-item .btn-add-sub-category:before, .popup-page-category .category-list-wrap .list-item .btn-add-sub-category:after,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-sub-category:before,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-sub-category:after {
        content: "";
        display: block;
        background-color: #000;
        position: absolute; }
      .popup-page-category .category-list-wrap .list-item .btn-add-sub-category:before,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-sub-category:before {
        width: 16px;
        height: 2px;
        top: 11px;
        left: 4px; }
      .popup-page-category .category-list-wrap .list-item .btn-add-sub-category:after,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-sub-category:after {
        width: 2px;
        height: 16px;
        top: 4px;
        left: 11px; }
    .popup-page-category .category-list-wrap .list-item .title-box,
    .popup-page-category .category-list-wrap .sub-list-item .title-box {
      position: relative;
      border: 1px solid #bfbfbf;
      padding: 3px 80px 3px 52px;
      border-radius: 3px; }
      .popup-page-category .category-list-wrap .list-item .title-box:hover .sort,
      .popup-page-category .category-list-wrap .sub-list-item .title-box:hover .sort {
        display: block; }
      .popup-page-category .category-list-wrap .list-item .title-box.current-page,
      .popup-page-category .category-list-wrap .sub-list-item .title-box.current-page {
        border-color: #00c4cf;
        background-color: #00c4cf; }
        .popup-page-category .category-list-wrap .list-item .title-box.current-page .page-title input[type=text],
        .popup-page-category .category-list-wrap .sub-list-item .title-box.current-page .page-title input[type=text] {
          color: #fff;
          background-color: transparent; }
        .popup-page-category .category-list-wrap .list-item .title-box.current-page .btn-add-img2 .file-upload-label,
        .popup-page-category .category-list-wrap .sub-list-item .title-box.current-page .btn-add-img2 .file-upload-label {
          color: #e2feff; }
    .popup-page-category .category-list-wrap .list-item .btn-add-img,
    .popup-page-category .category-list-wrap .list-item .btn-add-img2,
    .popup-page-category .category-list-wrap .sub-list-item .btn-add-img,
    .popup-page-category .category-list-wrap .sub-list-item .btn-add-img2 {
      top: 50%;
      transform: translateY(-50%); }
      .popup-page-category .category-list-wrap .list-item .btn-add-img .file-upload-label,
      .popup-page-category .category-list-wrap .list-item .btn-add-img2 .file-upload-label,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img .file-upload-label,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img2 .file-upload-label {
        font-size: 1rem;
        height: auto;
        margin: 0;
        cursor: pointer; }
      .popup-page-category .category-list-wrap .list-item .btn-add-img .btn-icon-delete,
      .popup-page-category .category-list-wrap .list-item .btn-add-img2 .btn-icon-delete,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img .btn-icon-delete,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img2 .btn-icon-delete {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        color: #ed0001;
        font-size: 12px;
        display: none; }
      .popup-page-category .category-list-wrap .list-item .btn-add-img:hover .btn-icon-delete, .popup-page-category .category-list-wrap .list-item .btn-add-img:focus .btn-icon-delete,
      .popup-page-category .category-list-wrap .list-item .btn-add-img2:hover .btn-icon-delete,
      .popup-page-category .category-list-wrap .list-item .btn-add-img2:focus .btn-icon-delete,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img:hover .btn-icon-delete,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img:focus .btn-icon-delete,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img2:hover .btn-icon-delete,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img2:focus .btn-icon-delete {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
    .popup-page-category .category-list-wrap .list-item .btn-add-img,
    .popup-page-category .category-list-wrap .sub-list-item .btn-add-img {
      left: 13px; }
      .popup-page-category .category-list-wrap .list-item .btn-add-img .file-upload-label,
      .popup-page-category .category-list-wrap .sub-list-item .btn-add-img .file-upload-label {
        color: #666; }
    .popup-page-category .category-list-wrap .list-item .btn-add-img2,
    .popup-page-category .category-list-wrap .sub-list-item .btn-add-img2 {
      left: 32px; }
    .popup-page-category .category-list-wrap .list-item .home-icon,
    .popup-page-category .category-list-wrap .list-item .btn-remove-category,
    .popup-page-category .category-list-wrap .sub-list-item .home-icon,
    .popup-page-category .category-list-wrap .sub-list-item .btn-remove-category {
      top: 1px;
      right: 3px; }
    .popup-page-category .category-list-wrap .list-item .btn-copy-category,
    .popup-page-category .category-list-wrap .sub-list-item .btn-copy-category {
      top: 4px;
      right: 23px;
      font-size: 14px;
      color: #666; }
    .popup-page-category .category-list-wrap .list-item .btn-edit-category,
    .popup-page-category .category-list-wrap .sub-list-item .btn-edit-category {
      top: 4px;
      right: 43px;
      font-size: 14px; }
    .popup-page-category .category-list-wrap .list-item .btn-eye,
    .popup-page-category .category-list-wrap .sub-list-item .btn-eye {
      top: 5px;
      right: 63px;
      font-size: 12px; }
    .popup-page-category .category-list-wrap .list-item .page-title label,
    .popup-page-category .category-list-wrap .sub-list-item .page-title label {
      display: inline-block;
      width: 100%;
      margin: 0; }
    .popup-page-category .category-list-wrap .list-item .page-title input[type=text],
    .popup-page-category .category-list-wrap .sub-list-item .page-title input[type=text] {
      width: 100%;
      border: 0;
      background-color: #ffffff;
      padding: 0; }
      .popup-page-category .category-list-wrap .list-item .page-title input[type=text]:read-only,
      .popup-page-category .category-list-wrap .sub-list-item .page-title input[type=text]:read-only {
        background-color: transparent; }
      .popup-page-category .category-list-wrap .list-item .page-title input[type=text]:focus,
      .popup-page-category .category-list-wrap .sub-list-item .page-title input[type=text]:focus {
        outline: 0; }
  .popup-page-category .category-list-wrap .sub-category-box {
    padding-left: 30px;
    padding-right: 15px; }
  .popup-page-category .category-list-wrap .sub-list-item {
    position: relative;
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 0; }
    .popup-page-category .category-list-wrap .sub-list-item:before {
      content: "";
      display: block;
      height: 39px;
      width: 1px;
      background-color: #ccc;
      position: absolute;
      top: 0;
      left: 10px; }
    .popup-page-category .category-list-wrap .sub-list-item:after {
      content: "";
      display: block;
      height: 1px;
      width: 10px;
      background-color: #ccc;
      position: absolute;
      top: 24px;
      left: 10px; }
    .popup-page-category .category-list-wrap .sub-list-item:last-child:before {
      height: 24px; }
    .popup-page-category .category-list-wrap .sub-list-item .title-box {
      padding-left: 13px;
      padding-right: 80px; }
    .popup-page-category .category-list-wrap .sub-list-item.sortable-ghost:before, .popup-page-category .category-list-wrap .sub-list-item.sortable-ghost:after {
      display: none; }
  .popup-page-category .category-list-wrap .btn-box {
    border-top: none;
    padding: 10px; }

.login-setting-popup {
  max-width: 280px !important; }
  .login-setting-popup .inner-box {
    padding-left: 30px !important;
    padding-right: 30px !important; }
  .login-setting-popup .form-group {
    width: 100%;
    text-align: left; }
  .login-setting-popup .switch-label {
    margin-bottom: 0; }
  .login-setting-popup .switch-box {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }

.gis-coordinate-popup {
  max-width: 1200px !important; }
  .gis-coordinate-popup .lcb-content .inner-box {
    display: block;
    text-align: initial;
    padding-left: 20px;
    padding-right: 20px; }
  .gis-coordinate-popup .form-control {
    border-radius: 0; }
  .gis-coordinate-popup .section-row {
    margin-bottom: 20px; }
    .gis-coordinate-popup .section-row .label {
      display: inline-block;
      font-size: 15px;
      margin-bottom: .3rem;
      line-height: 1.4; }
  .gis-coordinate-popup .search-box {
    position: relative; }
    .gis-coordinate-popup .search-box .btn-search {
      position: absolute;
      top: 4px;
      right: 15px;
      font-size: 20px;
      padding: 0;
      color: #ccc; }
    .gis-coordinate-popup .search-box .btn-reset {
      position: absolute;
      top: -2px;
      right: 50px;
      font-size: 28px;
      padding: 0; }
    .gis-coordinate-popup .search-box .form-control {
      padding-right: 80px; }
  .gis-coordinate-popup .title-box {
    height: 38px;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #ced4da; }
  .gis-coordinate-popup .list-box,
  .gis-coordinate-popup .code-box {
    width: 100%;
    height: 300px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    overflow-y: auto; }
  .gis-coordinate-popup .list-box {
    position: relative; }
    .gis-coordinate-popup .list-box .list-item a {
      color: #333;
      font-size: 14px; }
    .gis-coordinate-popup .list-box .item-title {
      position: relative;
      padding-left: 20px;
      font-size: 14px;
      color: #333; }
      .gis-coordinate-popup .list-box .item-title .count {
        font-size: 12px; }
      .gis-coordinate-popup .list-box .item-title:before {
        display: block;
        position: absolute;
        top: 2px;
        left: 5px;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 0 5px 6px;
        border-color: transparent transparent transparent #ccc;
        transition: 0.2s; }
      .gis-coordinate-popup .list-box .item-title.on {
        color: #15a5b7; }
        .gis-coordinate-popup .list-box .item-title.on:before {
          transform: rotate(90deg); }
      .gis-coordinate-popup .list-box .item-title.custom-title:before {
        display: none; }
    .gis-coordinate-popup .list-box .list-item.custom-item .item-title:before {
      display: none; }
    .gis-coordinate-popup .list-box .coordinate-sys-item.active a {
      color: #15a5b7; }
    .gis-coordinate-popup .list-box .coordinate-box {
      padding: 0 10px 0 30px; }
  .gis-coordinate-popup .code-box {
    background-color: #e9ecef;
    resize: none;
    color: #666; }
  .gis-coordinate-popup .form-control[name=change-encoding] {
    background-position: 98% center; }

.mobile-setting-popup {
  max-width: 280px !important; }
  .mobile-setting-popup .inner-box {
    display: block !important; }
  .mobile-setting-popup .form-group {
    margin-bottom: 10px; }
  .mobile-setting-popup .switch-box {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }

.white-labeling-popup {
  max-width: 624px !important; }
  .white-labeling-popup .lcb-block .inner-box {
    display: block;
    text-align: left; }
  .white-labeling-popup .title {
    font-size: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px; }
  .white-labeling-popup .logo-box,
  .white-labeling-popup .favicon-box {
    margin-bottom: 20px; }
  .white-labeling-popup .box-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px; }
  .white-labeling-popup .row-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 10px; }
  .white-labeling-popup .img-display-box {
    position: relative;
    border: 1px solid #ced4da;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden; }
    .white-labeling-popup .img-display-box.img-logo {
      width: 200px;
      height: 80px; }
      .white-labeling-popup .img-display-box.img-logo img {
        max-width: 100%; }
    .white-labeling-popup .img-display-box.site-img {
      width: 200px;
      height: 105px; }
      .white-labeling-popup .img-display-box.site-img img {
        max-width: 100%; }
    .white-labeling-popup .img-display-box.img-favicon {
      width: 60px;
      height: 60px; }
    .white-labeling-popup .img-display-box.bg-img {
      background: url("/static/img/editor/bg_transparent.png") 0 0 repeat; }
    .white-labeling-popup .img-display-box.bg-green {
      background-color: #15a5b7; }
    .white-labeling-popup .img-display-box .btn-file {
      font-size: 24px;
      margin-bottom: 0; }
    .white-labeling-popup .img-display-box .btn-remove {
      position: absolute;
      padding: 0;
      color: #fff;
      width: 24px;
      height: 24px;
      border-radius: 24px;
      font-size: 20px;
      top: 3px;
      right: 3px;
      background-color: rgba(0, 0, 0, 0.5); }
  .white-labeling-popup .tip-text {
    font-size: 13px; }
  .white-labeling-popup .tip-text a {
    color: #15a5b7; }
  .white-labeling-popup .title-box {
    margin-bottom: 20px; }
    .white-labeling-popup .title-box .form-control {
      border-radius: 0; }

.remove-content-popup {
  max-width: 500px !important; }
  .remove-content-popup .lcb-block .inner-box {
    display: block;
    padding: 30px;
    word-break: break-word; }
  .remove-content-popup .text-red {
    color: #ed0001; }

.site-report-view-modal .report-wrap {
  padding: 10px 20px; }

.site-report-view-modal .report-row {
  font-size: 14px;
  margin-bottom: 5px;
  color: #404040; }

.site-report-view-modal .img-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap; }
  .site-report-view-modal .img-wrap li {
    max-width: 50%;
    padding: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .site-report-view-modal .img-wrap img {
    max-width: 100%; }

.site-report-view-modal .reply-box {
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  background-color: #f2f2f2;
  border: 1px solid #bfbfbf;
  color: #000; }

.mobile-location-map-modal {
  max-width: 700px !important; }
  .mobile-location-map-modal .lcb-content {
    position: relative;
    height: 60vh;
    z-index: 2; }
  .mobile-location-map-modal .location-preview {
    height: 100%;
    overflow: hidden; }
  .mobile-location-map-modal .pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    z-index: 1000;
    color: #333;
    line-height: 1;
    margin-top: -21px; }
  .mobile-location-map-modal .btn-my-location {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    margin: 0;
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 22px;
    z-index: 1000; }
  .mobile-location-map-modal .btns {
    position: relative;
    z-index: 3; }

.site-add-user-modal .form-group {
  margin: 0; }
  .site-add-user-modal .form-group label,
  .site-add-user-modal .form-group .label {
    display: inline-block;
    font-size: 12px;
    color: #555;
    margin-bottom: 0;
    font-weight: normal; }

.site-add-user-modal .form-group + .form-group {
  margin-top: 10px; }

.alarm-history-popup {
  width: 670px;
  -webkit-box-flex-direction: row;
  -moz-box-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  font-size: 14px; }
  .alarm-history-popup.open-chart {
    width: 1024px; }
    .alarm-history-popup.open-chart .list-box,
    .alarm-history-popup.open-chart .chart-box {
      width: 50%; }
    @media (min-width: 1200px) {
      .alarm-history-popup.open-chart {
        width: 1200px; } }
    @media (min-width: 1400px) {
      .alarm-history-popup.open-chart {
        width: 1340px; } }
  .alarm-history-popup .content-header {
    width: 100%;
    padding: 10px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center; }
  .alarm-history-popup .btn-check-all {
    font-size: 14px; }
  .alarm-history-popup .btn-live {
    border: 1px solid #ced4da;
    font-size: 14px;
    margin-left: 10px;
    background-color: #fff; }
    .alarm-history-popup .btn-live:hover, .alarm-history-popup .btn-live.active {
      border-color: #ed0001;
      color: #ed0001; }
  .alarm-history-popup .list-box {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%; }
  .alarm-history-popup .chart-box {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-left: 2px solid #ccc; }
  .alarm-history-popup .content-list {
    height: 540px; }
    .alarm-history-popup .content-list .list-header .list-th {
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      text-align: left; }
    .alarm-history-popup .content-list .list-body .list-row:hover,
    .alarm-history-popup .content-list .list-body .list-row.active {
      background-color: #efefef; }
    .alarm-history-popup .content-list .list-body .list-td {
      position: relative;
      border-bottom: 1px solid #ccc; }
      .alarm-history-popup .content-list .list-body .list-td:first-child {
        padding-left: 18px; }
        .alarm-history-popup .content-list .list-body .list-td:first-child:before {
          position: absolute;
          top: 50%;
          margin-top: -3px;
          left: 5px;
          display: block;
          width: 6px;
          height: 6px;
          content: "";
          background-color: #ed0001;
          border-radius: 6px; }
    .alarm-history-popup .content-list .list-body .list-row.confirmed .list-td {
      color: #808080; }
      .alarm-history-popup .content-list .list-body .list-row.confirmed .list-td:first-child:before {
        display: none; }
    .alarm-history-popup .content-list .state {
      display: inline-block;
      width: 18px;
      height: 18px;
      border-radius: 18px;
      background-color: #eee;
      vertical-align: middle; }
    .alarm-history-popup .content-list .btn {
      padding: 0;
      font-size: 18px; }
  .alarm-history-popup .chart-content {
    padding: 15px;
    font-size: 14px; }
    .alarm-history-popup .chart-content .chart-name {
      border: 1px solid #ccc;
      background-color: #efefef;
      padding: 10px;
      margin-bottom: 20px; }
    .alarm-history-popup .chart-content .chart-div {
      position: relative;
      width: 100%;
      height: 340px;
      border: 1px solid #ccc;
      margin-bottom: 20px; }
    .alarm-history-popup .chart-content .threshold-info .table-responsive {
      max-height: 170px; }
    .alarm-history-popup .chart-content .threshold-info .table,
    .alarm-history-popup .chart-content .threshold-info .table th,
    .alarm-history-popup .chart-content .threshold-info .table td {
      padding: 0.6rem; }
    .alarm-history-popup .chart-content .threshold-info .table thead tr th {
      position: sticky;
      top: 0;
      background-color: #fff; }
    .alarm-history-popup .chart-content .threshold-info .table th {
      font-size: 12px;
      font-weight: normal; }
    .alarm-history-popup .chart-content .threshold-info .table td {
      vertical-align: middle; }
    .alarm-history-popup .chart-content .threshold-info .color-box {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 1px solid #ccc;
      border-radius: 3px; }
    .alarm-history-popup .chart-content .threshold-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 0.4em; }

.site-log-modal {
  max-width: 670px !important; }
  .site-log-modal .content-header,
  .site-log-modal .paging-box {
    padding: 15px 20px; }
  .site-log-modal .content-list {
    padding: 0 20px;
    font-size: 14px; }
  .site-log-modal .content-header {
    position: relative; }
    .site-log-modal .content-header .btn-download {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 20px; }
  .site-log-modal .search-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: start;
    flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%; }
    .site-log-modal .search-box .select-box {
      margin-right: 10px; }
      .site-log-modal .search-box .select-box .form-control {
        height: calc(2rem + 2px); }
    .site-log-modal .search-box .period-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .site-log-modal .search-box .btn-search {
      font-size: 20px;
      padding: 2px 10px;
      margin-left: 10px; }
    .site-log-modal .search-box .bar {
      margin: 0 10px; }
    .site-log-modal .search-box .input-box {
      position: relative;
      width: 140px; }
      .site-log-modal .search-box .input-box .icon {
        position: absolute;
        top: 2px;
        right: 8px;
        font-size: 22px; }
    .site-log-modal .search-box .form-control {
      text-align: left;
      padding-right: 40px;
      border-radius: 3px;
      font-size: 14px; }
  .site-log-modal .content-list .list-header .list-th {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: left; }
  .site-log-modal .content-list .list-body .list-td {
    border-bottom: 1px solid #ccc; }

.admin-license-popup {
  max-width: 1200px !important; }
  .admin-license-popup .lcb-block .inner-box {
    display: block;
    text-align: initial; }
  .admin-license-popup .license-info-box .form-group {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; }
    .admin-license-popup .license-info-box .form-group label,
    .admin-license-popup .license-info-box .form-group .label {
      display: inline-block;
      margin-bottom: 3px; }
    .admin-license-popup .license-info-box .form-group .form-control {
      border-radius: 0;
      font-size: 13px; }
    .admin-license-popup .license-info-box .form-group .period-box {
      border: 1px solid #ccc; }
      .admin-license-popup .license-info-box .form-group .period-box .addon {
        display: block;
        height: 32px;
        line-height: 32px;
        float: left;
        width: 8%;
        vertical-align: middle; }
      .admin-license-popup .license-info-box .form-group .period-box .form-control {
        float: left;
        display: block;
        border: 0;
        width: 46%;
        min-height: calc(1.5em + 0.75rem); }
    .admin-license-popup .license-info-box .form-group .required {
      color: #ff100f; }
    .admin-license-popup .license-info-box .form-group .expired-date {
      color: #ff100f;
      background-color: #f9f9f9; }
    @media (min-width: 768px) {
      .admin-license-popup .license-info-box .form-group .form-control {
        font-size: 16px; }
      .admin-license-popup .license-info-box .form-group .period-box .addon {
        width: 6%;
        height: 36px;
        line-height: 36px; }
      .admin-license-popup .license-info-box .form-group .period-box .form-control {
        width: 47%; } }
    @media (min-width: 1200px) {
      .admin-license-popup .license-info-box .form-group label,
      .admin-license-popup .license-info-box .form-group .label {
        display: inline-block;
        width: 39%;
        margin-bottom: 0;
        vertical-align: middle; }
      .admin-license-popup .license-info-box .form-group .form-control,
      .admin-license-popup .license-info-box .form-group .period-box {
        display: inline-block;
        width: 60%;
        vertical-align: middle; } }
  .admin-license-popup .license-content-box {
    padding: 10px 15px; }
    .admin-license-popup .license-content-box .btn-round {
      position: relative;
      padding: 0;
      width: 24px;
      height: 24px;
      border-radius: 24px;
      border: none;
      margin: 0 5px; }
    .admin-license-popup .license-content-box .btn-add:before, .admin-license-popup .license-content-box .btn-add:after {
      position: absolute;
      top: 50%;
      left: 50%;
      display: block;
      content: "";
      background-color: #fff;
      transform: translate(-50%, -50%); }
    .admin-license-popup .license-content-box .btn-add:before {
      width: 14px;
      height: 3px; }
    .admin-license-popup .license-content-box .btn-add:after {
      width: 3px;
      height: 14px; }
    .admin-license-popup .license-content-box .btn-remove:before {
      position: absolute;
      top: 50%;
      left: 50%;
      display: block;
      width: 14px;
      height: 3px;
      content: "";
      background-color: #fff;
      transform: translate(-50%, -50%); }
    .admin-license-popup .license-content-box .form-check {
      margin-bottom: 20px; }
      .admin-license-popup .license-content-box .form-check .form-check-input {
        margin-top: .1rem; }
    @media (min-width: 768px) {
      .admin-license-popup .license-content-box {
        max-height: 330px;
        overflow-y: auto; } }
    @media (min-width: 1200px) {
      .admin-license-popup .license-content-box {
        max-height: 440px; } }
  .admin-license-popup .license-key-box {
    margin-top: 10px; }
    .admin-license-popup .license-key-box label {
      font-size: 14px;
      font-weight: bold; }
    @media (min-width: 768px) {
      .admin-license-popup .license-key-box label {
        font-size: 16px; } }
    .admin-license-popup .license-key-box .license-key-frame {
      position: relative; }
      .admin-license-popup .license-key-box .license-key-frame .icon {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 20px; }
      .admin-license-popup .license-key-box .license-key-frame textarea {
        width: 100%;
        min-height: 200px;
        padding: 10px 60px 10px 40px;
        border-radius: 5px;
        color: #15a5b7; }
      .admin-license-popup .license-key-box .license-key-frame .btn-copy {
        position: absolute;
        top: 5px;
        right: 20px; }
  .admin-license-popup .mac-address-box {
    min-height: 60px;
    margin-bottom: 20px; }
    .admin-license-popup .mac-address-box ul {
      position: relative;
      margin: 0; }
    .admin-license-popup .mac-address-box .mac-address-item {
      position: relative;
      padding-left: 130px;
      padding-right: 100px;
      margin-bottom: 10px; }
      .admin-license-popup .mac-address-box .mac-address-item label {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        font-size: 14px;
        font-weight: bold; }
      .admin-license-popup .mac-address-box .mac-address-item .btn-box {
        position: absolute;
        top: 50%;
        right: 30px;
        transform: translateY(-50%); }
      @media (min-width: 768px) {
        .admin-license-popup .mac-address-box .mac-address-item label {
          font-size: 16px; } }
  .admin-license-popup .site-count-box {
    margin-bottom: 20px; }
    .admin-license-popup .site-count-box .title {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: .5rem; }
    .admin-license-popup .site-count-box .count-box {
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
      padding: 10px;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    @media (min-width: 768px) {
      .admin-license-popup .site-count-box .title {
        font-size: 16px; } }

.custom-date-modal {
  max-width: 546px !important; }
  .custom-date-modal .lcb-content .inner-box {
    display: block;
    text-align: left;
    padding: 0; }
  .custom-date-modal .range-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .custom-date-modal .range-box .cal-box {
      width: 50%;
      border-bottom: 1px solid #ccc;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      padding: 10px; }
      .custom-date-modal .range-box .cal-box:last-child {
        border-left: 1px solid #ccc; }
  .custom-date-modal .period-box {
    padding: 10px 15px; }
    .custom-date-modal .period-box .date-row {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      margin-bottom: 0; }
      .custom-date-modal .period-box .date-row dt {
        width: 40%;
        font-weight: normal;
        margin-right: 10px; }
      .custom-date-modal .period-box .date-row .input-box {
        flex: 1;
        margin-bottom: 0; }
      .custom-date-modal .period-box .date-row .form-control {
        display: inline-block;
        width: 45%;
        margin-right: 5px; }
      .custom-date-modal .period-box .date-row + .date-row {
        margin-top: 10px; }

/* popup combine function */
.popup-combine-function {
  width: 940px;
  overflow: hidden; }
  .popup-combine-function .content-box {
    position: relative;
    padding: 0;
    background-color: #f2f2f2;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .popup-combine-function .combine-box {
    padding: 10px 15px;
    background-color: #fff;
    width: 480px; }
  .popup-combine-function .combine-header {
    margin-bottom: 15px; }
    .popup-combine-function .combine-header .form-inline label {
      width: 125px;
      line-height: 1.2;
      -ms-flex-pack: start;
      flex-pack: start;
      -webkit-justify-content: flex-start;
      -moz-box-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -webkit-justify-content: flex-start;
      justify-content: flex-start; }
    .popup-combine-function .combine-header .form-control,
    .popup-combine-function .combine-header .select2-container {
      border-radius: 0;
      flex: 1;
      font-size: 14px; }
    .popup-combine-function .combine-header .select2-container--default .select2-selection--single {
      border-radius: 0; }
    .popup-combine-function .combine-header select.form-control {
      width: 200px;
      padding-right: 25px;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .popup-combine-function .combine-header .btn-action {
      padding: 0 5px;
      font-size: 20px; }
      .popup-combine-function .combine-header .btn-action img {
        display: none;
        width: 20px; }
      .popup-combine-function .combine-header .btn-action i.icon {
        display: block; }
      .popup-combine-function .combine-header .btn-action.active img {
        display: block; }
      .popup-combine-function .combine-header .btn-action.active i.icon {
        display: none; }
  .popup-combine-function .combine-body .combine-type-title {
    margin-bottom: 5px; }
  .popup-combine-function .combine-body .combine-list-box.scrolling {
    position: relative; }
    .popup-combine-function .combine-body .combine-list-box.scrolling:before {
      display: block;
      content: "";
      position: absolute;
      width: 100%;
      height: 8px;
      top: 0;
      left: 0;
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
      z-index: 2000; }
  .popup-combine-function .combine-body .combine-list-box .list-frame {
    max-height: 500px;
    overflow-y: auto; }
  .popup-combine-function .combine-body .btn-add {
    border: 1px solid #ccc;
    width: 100%; }
    .popup-combine-function .combine-body .btn-add .plus {
      display: inline-block;
      font-size: 28px;
      line-height: 28px;
      font-weight: bold;
      color: #555;
      text-align: center; }
    .popup-combine-function .combine-body .btn-add:hover, .popup-combine-function .combine-body .btn-add:active, .popup-combine-function .combine-body .btn-add:focus-visible {
      background-color: #15a5b7; }
      .popup-combine-function .combine-body .btn-add:hover .plus, .popup-combine-function .combine-body .btn-add:active .plus, .popup-combine-function .combine-body .btn-add:focus-visible .plus {
        color: #fff; }
  .popup-combine-function .combine-list-item {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 30px 15px 15px; }
    .popup-combine-function .combine-list-item + .combine-list-item {
      margin-top: 20px; }
    .popup-combine-function .combine-list-item.active {
      border-color: #15a5b7;
      box-shadow: inset 0 0 0 1px #15a5b7; }
    .popup-combine-function .combine-list-item .btn-remove {
      position: absolute;
      display: block;
      top: 0;
      right: 0;
      padding: 5px;
      font-size: 24px;
      line-height: 1; }
      .popup-combine-function .combine-list-item .btn-remove:hover, .popup-combine-function .combine-list-item .btn-remove:active, .popup-combine-function .combine-list-item .btn-remove:focus-visible {
        color: #15a5b7; }
    .popup-combine-function .combine-list-item .row {
      margin-right: -10px;
      margin-left: -10px; }
      .popup-combine-function .combine-list-item .row + .row {
        margin-top: 10px; }
    .popup-combine-function .combine-list-item .row > [class^="col-"] {
      padding-left: 10px;
      padding-right: 10px; }
    .popup-combine-function .combine-list-item .row > .col-12 {
      margin-bottom: 5px; }
    .popup-combine-function .combine-list-item .label {
      margin-bottom: 5px;
      display: inline-block; }
    .popup-combine-function .combine-list-item .form-group label {
      margin-bottom: 5px; }
    .popup-combine-function .combine-list-item .form-control,
    .popup-combine-function .combine-list-item select.form-control:not([size]):not([multiple]) {
      height: 30px;
      line-height: 30px;
      font-size: 14px; }
    .popup-combine-function .combine-list-item select.form-control {
      padding: 0 0.75em; }
    .popup-combine-function .combine-list-item textarea.form-control {
      height: 80px;
      line-height: 1.5; }
    .popup-combine-function .combine-list-item .form-check.menu-check {
      margin-top: 5px;
      margin-bottom: 5px; }
    .popup-combine-function .combine-list-item .form-check-label {
      font-size: 14px; }
    .popup-combine-function .combine-list-item .sortable-box {
      margin-bottom: 10px; }
      .popup-combine-function .combine-list-item .sortable-box .sort {
        position: absolute;
        top: 50%;
        left: 2px;
        cursor: move;
        color: #bbbbbb;
        font-size: 18px;
        transform: translateY(-50%);
        padding: 3px;
        z-index: 10;
        font-weight: bold;
        width: 0;
        height: 0;
        opacity: 0; }
      .popup-combine-function .combine-list-item .sortable-box .data-row:hover .sort, .popup-combine-function .combine-list-item .sortable-box .data-row:focus .sort, .popup-combine-function .combine-list-item .sortable-box .data-row:active .sort, .popup-combine-function .combine-list-item .sortable-box .data-row:focus-visible .sort {
        width: auto;
        height: auto;
        opacity: 1;
        overflow: hidden; }
      .popup-combine-function .combine-list-item .sortable-box .icon {
        display: block;
        margin-top: -4px; }
    .popup-combine-function .combine-list-item .data-row {
      padding-left: 10px;
      padding-right: 35px;
      position: relative; }
    .popup-combine-function .combine-list-item .add-data textarea.form-control {
      height: 30px;
      resize: none; }
    .popup-combine-function .combine-list-item .btn-data-remove {
      position: absolute;
      padding: 2px 5px;
      font-size: 20px;
      right: 5px;
      top: 50%;
      transform: translateY(-50%); }
    .popup-combine-function .combine-list-item .body-area .btn-data-remove {
      transform: none;
      bottom: 10px;
      top: auto; }
    .popup-combine-function .combine-list-item .preview-box {
      position: relative;
      border-top: 1px solid #333;
      margin-top: 20px;
      padding-top: 30px; }
      .popup-combine-function .combine-list-item .preview-box .btn-style-setting {
        position: absolute;
        top: 0;
        right: 0;
        padding: 5px; }
    .popup-combine-function .combine-list-item .layout-dropdown-box {
      height: auto;
      background-color: #fff; }
      .popup-combine-function .combine-list-item .layout-dropdown-box:after {
        display: block;
        content: "";
        clear: both; }
      .popup-combine-function .combine-list-item .layout-dropdown-box .dropdown-menu {
        position: relative;
        display: block; }
    .popup-combine-function .combine-list-item .layout-tab-box {
      height: 43px;
      overflow-x: auto;
      overflow-y: hidden;
      background-color: #fff; }
      .popup-combine-function .combine-list-item .layout-tab-box .nav-item {
        flex: none;
        min-width: 80px; }
      .popup-combine-function .combine-list-item .layout-tab-box.icon-TOP, .popup-combine-function .combine-list-item .layout-tab-box.icon-BOTTOM {
        height: 56px; }
    .popup-combine-function .combine-list-item .layout-date-box {
      font-size: 16px;
      height: 38px; }
      .popup-combine-function .combine-list-item .layout-date-box .date-picker-wrap .date-input,
      .popup-combine-function .combine-list-item .layout-date-box .date-time-wrap .date-input {
        height: 100%;
        line-height: 100%;
        font-size: 1em;
        border-radius: inherit;
        color: inherit;
        font-weight: inherit;
        font-style: inherit;
        background-color: transparent; }
    .popup-combine-function .combine-list-item .layout-text-box {
      height: 36px; }
      .popup-combine-function .combine-list-item .layout-text-box .form-control {
        height: 100%;
        line-height: 100%;
        font-size: 1em; }
    .popup-combine-function .combine-list-item .inline-row .form-group {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .popup-combine-function .combine-list-item .inline-row .form-group .label,
    .popup-combine-function .combine-list-item .inline-row .form-group label {
      display: block;
      font-size: 14px;
      margin-bottom: 0;
      margin-right: 5px;
      width: 120px;
      line-height: 1.2; }
    .popup-combine-function .combine-list-item .inline-row .form-control {
      flex: 1; }
    .popup-combine-function .combine-list-item .inline-row .form-check-box {
      flex: 1;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center;
      flex-wrap: wrap; }
      .popup-combine-function .combine-list-item .inline-row .form-check-box label {
        display: inline-block;
        width: auto; }
    .popup-combine-function .combine-list-item .inline-row .switch-box {
      flex: 1; }
      .popup-combine-function .combine-list-item .inline-row .switch-box .switch.switch-sm input.switch-toggle + label {
        width: 50px;
        margin-right: 0; }
    .popup-combine-function .combine-list-item .component-type-row {
      flex-wrap: wrap;
      width: 100%;
      margin-right: 0;
      margin-left: 0; }
      .popup-combine-function .combine-list-item .component-type-row .type-col {
        width: 25%;
        margin-bottom: 5px; }
  .popup-combine-function .style-box {
    position: relative;
    flex: 1; }
    .popup-combine-function .style-box .style-inner-box {
      position: absolute;
      padding: 40px 15px 10px;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow-y: auto; }
    .popup-combine-function .style-box .btn-style-close {
      position: absolute;
      top: 0px;
      right: 10px;
      font-size: 24px;
      padding: 0; }
    .popup-combine-function .style-box .form-group + .form-group {
      margin-top: 10px; }
    .popup-combine-function .style-box .form-inline label,
    .popup-combine-function .style-box .form-inline .label {
      width: 40%;
      line-height: 1.4;
      font-size: 14px; }
    .popup-combine-function .style-box .form-inline .form-group,
    .popup-combine-function .style-box .form-inline .input-group,
    .popup-combine-function .style-box .form-inline .form-control,
    .popup-combine-function .style-box .form-inline .icon-list-box {
      flex: 1; }
    .popup-combine-function .style-box .form-inline .input-group .form-control {
      width: 100%; }
    .popup-combine-function .style-box .form-inline .form-group {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
    .popup-combine-function .style-box .form-col {
      flex: 1;
      margin-right: 5px; }
      .popup-combine-function .style-box .form-col label {
        width: auto;
        font-size: 12px;
        color: #999;
        text-align: center;
        line-height: 1.4; }
      .popup-combine-function .style-box .form-col .form-control {
        width: 100%; }
      .popup-combine-function .style-box .form-col:last-child {
        margin-right: 0; }
    .popup-combine-function .style-box .row + .row {
      margin-top: 10px; }
    .popup-combine-function .style-box .form-switch {
      padding: 0;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .popup-combine-function .style-box .form-switch .label {
        width: auto; }
      .popup-combine-function .style-box .form-switch .switch-label {
        font-size: 14px; }
    .popup-combine-function .style-box label,
    .popup-combine-function .style-box .label {
      margin-bottom: 0;
      display: block;
      line-height: 35px; }
    .popup-combine-function .style-box .form-control,
    .popup-combine-function .style-box select.form-control:not([size]):not([multiple]) {
      height: 30px;
      line-height: 30px;
      font-size: 14px; }
    .popup-combine-function .style-box select.form-control {
      padding: 0 0.75em; }
    .popup-combine-function .style-box .input-group-append {
      width: 28px;
      padding: 0;
      border: 0;
      background-color: transparent; }
      .popup-combine-function .style-box .input-group-append .input-group-addon {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        border: 1px solid #bbb;
        overflow: hidden;
        z-index: 1; }
      .popup-combine-function .style-box .input-group-append .input-group-addon i {
        width: 100%;
        height: 100%;
        vertical-align: inherit; }
    .popup-combine-function .style-box .icon-list-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap;
      max-height: 300px;
      overflow-y: auto; }
      .popup-combine-function .style-box .icon-list-box .icon-item {
        width: 50%;
        padding: 3px 5px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .popup-combine-function .style-box .icon-list-box .index {
        display: inline-block;
        margin-right: 5px;
        font-size: 13px; }
      .popup-combine-function .style-box .icon-list-box .btn-box {
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 5px;
        padding: 2px 5px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: justify;
        flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-justify-content: space-between;
        -ms-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
      .popup-combine-function .style-box .icon-list-box .btn-add-img,
      .popup-combine-function .style-box .icon-list-box .btn-add-img2 {
        position: relative;
        padding: 2px; }
        .popup-combine-function .style-box .icon-list-box .btn-add-img .file-upload-label,
        .popup-combine-function .style-box .icon-list-box .btn-add-img2 .file-upload-label {
          width: auto;
          font-size: 1.2rem;
          height: auto;
          margin: 0;
          cursor: pointer;
          line-height: 1; }
        .popup-combine-function .style-box .icon-list-box .btn-add-img .btn-icon-delete,
        .popup-combine-function .style-box .icon-list-box .btn-add-img2 .btn-icon-delete {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: #fff;
          color: #ed0001;
          font-size: 12px;
          display: none; }
        .popup-combine-function .style-box .icon-list-box .btn-add-img:hover .btn-icon-delete, .popup-combine-function .style-box .icon-list-box .btn-add-img:focus .btn-icon-delete,
        .popup-combine-function .style-box .icon-list-box .btn-add-img2:hover .btn-icon-delete,
        .popup-combine-function .style-box .icon-list-box .btn-add-img2:focus .btn-icon-delete {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex; }
      .popup-combine-function .style-box .icon-list-box .btn-add-img2 .file-upload-label {
        color: #15a5b7; }

/* popup combine component action */
.popup-component-action {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border: 1px solid #979797;
  border-radius: 10px;
  overflow: hidden;
  width: 420px; }
  .popup-component-action .title {
    background-color: #e7e7e7;
    color: #333;
    border-radius: 10px; }
  .popup-component-action .btn-close {
    color: #333; }
  .popup-component-action .content-box {
    padding: 0; }
  .popup-component-action .action-component-tree-box {
    padding: 10px 20px;
    max-height: 400px;
    overflow-y: auto; }
  .popup-component-action .action-component-item {
    margin-bottom: 20px; }
    .popup-component-action .action-component-item:last-child {
      margin-bottom: 0; }
    .popup-component-action .action-component-item .item-header,
    .popup-component-action .action-component-item .item-body {
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 5px 10px;
      margin-bottom: 10px; }
    .popup-component-action .action-component-item .item-header {
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .popup-component-action .action-component-item .item-header .type {
        font-size: 12px;
        color: #999;
        margin-right: 10px; }
      .popup-component-action .action-component-item .item-header.date-item {
        margin-top: 0; }
      .popup-component-action .action-component-item .item-header .btn-action {
        margin-right: 15px; }
    .popup-component-action .action-component-item .item-body:last-child {
      margin-bottom: 0; }
    .popup-component-action .action-component-item .item-body .value-item {
      padding: 5px 15px;
      background-color: #f2f2f2;
      border-radius: 5px;
      margin-bottom: 5px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: justify;
      flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-box-justify-content: space-between;
      -ms-justify-content: space-between;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .popup-component-action .action-component-item .item-body .value-item:last-child {
        margin-bottom: 0; }
    .popup-component-action .action-component-item .btn-action {
      padding: 0;
      font-size: 12px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .popup-component-action .action-component-item .btn-action img {
        display: none;
        width: 20px; }
      .popup-component-action .action-component-item .btn-action i.icon {
        font-size: 19px;
        display: block; }
      .popup-component-action .action-component-item .btn-action.active img {
        display: block; }
      .popup-component-action .action-component-item .btn-action.active i.icon {
        display: none; }
  .popup-component-action .step-2 {
    margin-left: 40px; }
  .popup-component-action .step-3 {
    margin-left: 80px; }

.backup-popup {
  max-width: 760px !important; }
  .backup-popup .lcb-block .inner-box {
    display: block;
    text-align: left;
    padding-left: 25px;
    padding-right: 25px; }
  .backup-popup .title {
    font-size: 24px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px; }
  .backup-popup .backup-box {
    margin-bottom: 50px; }
    .backup-popup .backup-box .content-box {
      padding: 10px; }
    .backup-popup .backup-box .row-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .backup-popup .backup-box .progress-box {
      position: relative;
      width: 292px;
      height: 80px;
      border: 1px solid #bfbfbf;
      border-radius: 4px;
      overflow: hidden; }
      .backup-popup .backup-box .progress-box .progress-bar {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #15a5b7; }
      .backup-popup .backup-box .progress-box .progress-title {
        position: absolute;
        margin: 5px;
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center;
        background-color: #fff;
        font-size: 20px;
        border: none;
        padding: 0; }
    .backup-popup .backup-box .info {
      flex: 1;
      font-size: 14px;
      line-height: 1.6;
      padding: 0 15px; }
    .backup-popup .backup-box .btn {
      margin-top: 16px;
      width: 292px; }
      .backup-popup .backup-box .btn.disabled, .backup-popup .backup-box .btn:disabled {
        background-color: #747c7f;
        cursor: default; }

.gpt-sclab-popup .popup-content {
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.gpt-sclab-popup .gpt-sclab-nav {
  width: 220px;
  height: 100%;
  overflow-y: auto; }

.gpt-sclab-popup .gpt-sclab-content {
  flex: 1;
  height: 100%;
  overflow-y: auto; }

.gpt-sclab-popup .gpt-sclab-nav {
  background-color: #f2f2f2; }
  .gpt-sclab-popup .gpt-sclab-nav ul {
    padding: 15px;
    margin: 0; }
  .gpt-sclab-popup .gpt-sclab-nav .nav-item {
    border-bottom: 1px solid #ccc; }
    .gpt-sclab-popup .gpt-sclab-nav .nav-item a {
      display: block;
      padding: 10px;
      font-size: 15px;
      color: #333; }
      .gpt-sclab-popup .gpt-sclab-nav .nav-item a:hover, .gpt-sclab-popup .gpt-sclab-nav .nav-item a:focus, .gpt-sclab-popup .gpt-sclab-nav .nav-item a:focus-visible {
        color: #15a5b7; }
      .gpt-sclab-popup .gpt-sclab-nav .nav-item a.active {
        color: #15a5b7; }

.gpt-sclab-popup .inner-box {
  padding: 15px; }

.gpt-sclab-popup .default-setting .form-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  text-align: left; }
  .gpt-sclab-popup .default-setting .form-group label, .gpt-sclab-popup .default-setting .form-group .label {
    width: 250px;
    font-size: 14px;
    margin-top: 10px; }
  .gpt-sclab-popup .default-setting .form-group .form-control,
  .gpt-sclab-popup .default-setting .form-group .content-row {
    flex: 1; }
  .gpt-sclab-popup .default-setting .form-group textarea.form-control {
    height: 115px; }
  .gpt-sclab-popup .default-setting .form-group + .form-group {
    margin-top: 20px; }
  .gpt-sclab-popup .default-setting .form-group .content-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .gpt-sclab-popup .default-setting .form-group .content-row.column {
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .gpt-sclab-popup .default-setting .form-group .content-row.column label, .gpt-sclab-popup .default-setting .form-group .content-row.column .label {
      width: auto; }
    .gpt-sclab-popup .default-setting .form-group .content-row.column textarea.form-control {
      width: 100%;
      height: 115px;
      flex: auto; }
  .gpt-sclab-popup .default-setting .form-group .col-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    .gpt-sclab-popup .default-setting .form-group .col-row label, .gpt-sclab-popup .default-setting .form-group .col-row .label {
      width: auto; }
    .gpt-sclab-popup .default-setting .form-group .col-row .mobile-label {
      width: 30%;
      text-align: center; }

.gpt-sclab-popup .default-setting .btn-tooltip {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  color: #999;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  line-height: 16px;
  font-size: 15px;
  margin-left: 5px;
  margin-bottom: 2px; }
  .gpt-sclab-popup .default-setting .btn-tooltip:hover, .gpt-sclab-popup .default-setting .btn-tooltip:focus-within {
    border-color: #15a5b7;
    color: #15a5b7; }
  .gpt-sclab-popup .default-setting .btn-tooltip.active {
    border-color: #15a5b7;
    color: #15a5b7; }

.gpt-sclab-popup .default-setting .tips {
  font-size: 12px;
  color: #15a5b7;
  padding: 5px 10px 0; }

.gpt-sclab-popup .style-box {
  width: 100%;
  height: 100%; }

.gpt-sclab-popup .gpt-preview-box {
  text-align: left;
  flex: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

.gpt-sclab-popup .style-setting {
  width: 20%;
  min-width: 200px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  padding-right: 15px; }
  .gpt-sclab-popup .style-setting label,
  .gpt-sclab-popup .style-setting .label {
    display: inline-block;
    font-size: 13px;
    color: #999;
    margin-bottom: 3px; }
  .gpt-sclab-popup .style-setting .form-group + .form-group,
  .gpt-sclab-popup .style-setting .form-group + .form-check,
  .gpt-sclab-popup .style-setting .form-check + .form-group {
    margin-top: 10px; }
  .gpt-sclab-popup .style-setting .form-group + .btn {
    margin-top: 10px; }
  .gpt-sclab-popup .style-setting .form-check {
    padding-left: 1.75rem; }
    .gpt-sclab-popup .style-setting .form-check label {
      margin-bottom: 0;
      font-size: 14px;
      color: #333; }
    .gpt-sclab-popup .style-setting .form-check .form-check-input:checked {
      background-color: #15a5b7;
      border-color: #15a5b7; }
    .gpt-sclab-popup .style-setting .form-check .form-check-input:focus {
      border-color: #b1e6ea;
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(177, 230, 234, 0.25); }
  .gpt-sclab-popup .style-setting .form-control,
  .gpt-sclab-popup .style-setting select.form-control,
  .gpt-sclab-popup .style-setting select.form-control:not([size]):not([multiple]) {
    height: 34px;
    min-height: 34px;
    font-size: 14px; }
  .gpt-sclab-popup .style-setting select.form-control {
    padding: 0 0.75em; }
  .gpt-sclab-popup .style-setting textarea.form-control {
    height: 56px;
    min-height: 56px;
    font-size: 14px; }
  .gpt-sclab-popup .style-setting .select-symbol .color-box {
    display: inline-block;
    width: 90%;
    height: 16px;
    background-color: #efefef;
    vertical-align: middle; }
  .gpt-sclab-popup .style-setting .select-symbol .dropdown-menu {
    max-height: 200px;
    overflow-y: auto; }
  .gpt-sclab-popup .style-setting .btn-select-dropdown {
    padding: 0 0.75em;
    text-align: left;
    height: 34px;
    min-height: 34px;
    font-size: 14px; }
  .gpt-sclab-popup .style-setting .btn-select-dropdown + .dropdown-menu {
    width: 100%;
    font-size: 14px; }
  .gpt-sclab-popup .style-setting .input-group-append {
    width: 30px;
    padding: 0;
    border: 0;
    background-color: transparent; }
    .gpt-sclab-popup .style-setting .input-group-append .input-group-addon {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      border-top-right-radius: 0.25rem;
      border-bottom-right-radius: 0.25rem;
      border: 1px solid #bbb;
      overflow: hidden;
      z-index: 1; }
    .gpt-sclab-popup .style-setting .input-group-append .input-group-addon i {
      width: 100%;
      height: 100%;
      vertical-align: inherit; }
  .gpt-sclab-popup .style-setting .group-title {
    display: block;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #bdbdbd;
    margin-top: 20px;
    padding: 10px 0; }

.gpt-sclab-popup .preview-content {
  position: relative;
  flex: 1;
  height: 100%; }
  .gpt-sclab-popup .preview-content .fit-box {
    position: absolute;
    width: 100%;
    height: 100%; }
  .gpt-sclab-popup .preview-content .chat-bot-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%; }
    .gpt-sclab-popup .preview-content .chat-bot-wrap .chat-bot-box {
      flex: 1;
      border-radius: 10px;
      overflow: hidden; }
    .gpt-sclab-popup .preview-content .chat-bot-wrap .chat-bot-button-box {
      margin-top: 10px;
      height: 50px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: end;
      flex-pack: end;
      -webkit-justify-content: flex-end;
      -moz-box-justify-content: flex-end;
      -ms-justify-content: flex-end;
      -webkit-justify-content: flex-end;
      justify-content: flex-end;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
    .gpt-sclab-popup .preview-content .chat-bot-wrap .button-layout {
      width: 100px;
      height: 50px; }

.gpt-sclab-popup .layout-box .style-setting .inner-box {
  padding-right: 0; }

.gpt-sclab-popup .layout-box .layout-item-preview {
  background-color: #f4f4f2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex-direction: column;
  -moz-box-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }
  .gpt-sclab-popup .layout-box .layout-item-preview .tab-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 15px 15px 5px; }
    .gpt-sclab-popup .layout-box .layout-item-preview .tab-list li {
      margin: 0 10px; }
    .gpt-sclab-popup .layout-box .layout-item-preview .tab-list .tab-item {
      font-size: 18px;
      color: #999;
      border-bottom: 3px solid transparent;
      padding: 3px 5px;
      transition: all .2s; }
      .gpt-sclab-popup .layout-box .layout-item-preview .tab-list .tab-item:hover, .gpt-sclab-popup .layout-box .layout-item-preview .tab-list .tab-item:active, .gpt-sclab-popup .layout-box .layout-item-preview .tab-list .tab-item:focus-visible, .gpt-sclab-popup .layout-box .layout-item-preview .tab-list .tab-item.active {
        color: #15a5b7;
        border-bottom-color: #15a5b7; }
  .gpt-sclab-popup .layout-box .layout-item-preview .preview-frame {
    position: relative;
    flex: 1; }
  .gpt-sclab-popup .layout-box .layout-item-preview .preview-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-flex-direction: column;
    -moz-box-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
  .gpt-sclab-popup .layout-box .layout-item-preview .layout-item-box {
    position: relative;
    flex: 1; }
    .gpt-sclab-popup .layout-box .layout-item-preview .layout-item-box.mobile {
      width: 46%;
      margin: 0 auto; }
  .gpt-sclab-popup .layout-box .layout-item-preview .layout-item {
    position: absolute;
    display: block;
    border-radius: 10px;
    cursor: pointer;
    outline: 1px dashed #bfbfbf;
    transition: box-shadow .1s, outline .1s; }
    .gpt-sclab-popup .layout-box .layout-item-preview .layout-item .layout-wrap {
      border-radius: 10px;
      width: 100%;
      height: 100%; }
    .gpt-sclab-popup .layout-box .layout-item-preview .layout-item:hover, .gpt-sclab-popup .layout-box .layout-item-preview .layout-item:active, .gpt-sclab-popup .layout-box .layout-item-preview .layout-item:focus-visible, .gpt-sclab-popup .layout-box .layout-item-preview .layout-item.on {
      box-shadow: 0 0 0 3px rgba(0, 232, 232, 0.9); }
  .gpt-sclab-popup .layout-box .layout-item-preview .chatbot-display-close-btn {
    top: -10px;
    right: 10px; }

.add-ai-data-popup {
  max-width: 800px !important; }
  .add-ai-data-popup .file-header-wrap .header-title {
    display: inline-block;
    font-size: 18px;
    color: #15a5b7;
    padding: 5px 15px;
    border-bottom: 3px solid #15a5b7;
    margin-bottom: 15px; }
  .add-ai-data-popup .file-header {
    margin-bottom: 15px; }
    .add-ai-data-popup .file-header .form-group {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      width: 100%;
      text-align: left; }
      .add-ai-data-popup .file-header .form-group label {
        width: 150px;
        font-size: 16px;
        margin-top: 5px; }
      .add-ai-data-popup .file-header .form-group .form-control {
        flex: 1; }
  .add-ai-data-popup .file-body {
    height: 500px; }
    .add-ai-data-popup .file-body .content-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      height: 100%; }
    .add-ai-data-popup .file-body .content-title {
      font-size: 16px;
      font-weight: normal;
      margin-bottom: 10px; }
      .add-ai-data-popup .file-body .content-title .small {
        color: #ed0001; }
      .add-ai-data-popup .file-body .content-title .form-check {
        padding-left: 60px; }
      .add-ai-data-popup .file-body .content-title .form-check-input {
        margin-top: 0;
        margin-left: -2.3em;
        border-color: #15a5b7; }
    .add-ai-data-popup .file-body .file-box {
      flex: 1;
      border: 1px solid #bfbfbf;
      padding: 10px;
      overflow-y: auto; }
      .add-ai-data-popup .file-body .file-box.data-list-box {
        padding-top: 0;
        padding-bottom: 0; }
    .add-ai-data-popup .file-body .file-item {
      display: block;
      float: left;
      width: 25%;
      padding: 10px;
      height: 187px;
      border: 0; }
      .add-ai-data-popup .file-body .file-item .item-inner {
        width: 100%;
        height: 100%;
        border: 1px solid #15a5b7;
        background-color: transparent;
        border-radius: 5px;
        padding: 10px; }
      .add-ai-data-popup .file-body .file-item .btn-add-file {
        position: relative;
        border: 1px dotted #bfbfbf;
        margin-bottom: 0;
        cursor: pointer; }
        .add-ai-data-popup .file-body .file-item .btn-add-file .plus {
          display: block;
          text-align: center;
          font-size: 12px;
          margin-top: 40px; }
          .add-ai-data-popup .file-body .file-item .btn-add-file .plus:before, .add-ai-data-popup .file-body .file-item .btn-add-file .plus:after {
            position: absolute;
            display: block;
            content: "";
            width: 30px;
            height: 4px;
            background-color: #000000;
            top: 50%;
            left: 50%;
            margin-left: -15px;
            margin-top: -20px; }
          .add-ai-data-popup .file-body .file-item .btn-add-file .plus:after {
            transform: rotate(90deg);
            transform-origin: center; }
    .add-ai-data-popup .file-body .data-item .item-inner {
      position: relative;
      padding: 10px;
      border-bottom: 1px solid #e6e6e6; }
      .add-ai-data-popup .file-body .data-item .item-inner .form-check {
        padding-left: 2.5rem;
        margin-bottom: 0; }
      .add-ai-data-popup .file-body .data-item .item-inner .form-check-input {
        margin-top: 2px;
        margin-left: -2.3em;
        border-color: #15a5b7; }
      .add-ai-data-popup .file-body .data-item .item-inner .type {
        color: #999; }

.popup-layer-gis-item {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10000 !important;
  background-color: #ffffff;
  width: 90%;
  max-width: 386px;
  height: auto;
  max-height: 100%;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  opacity: 0;
  transition: opacity 0.1s;
  overflow-y: auto; }
  .popup-layer-gis-item.mobile-popup {
    position: fixed;
    transform: translate(-50%, -50%); }
  .popup-layer-gis-item.on {
    opacity: 1; }
  .popup-layer-gis-item .content-box .title {
    position: relative;
    background-color: #1598A3;
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
    padding: 10px 25px 10px 10px; }
  .popup-layer-gis-item .content-box .btn-close {
    position: absolute;
    top: 3px;
    right: 5px;
    border: 0;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    width: 30px;
    height: 30px; }
    .popup-layer-gis-item .content-box .btn-close:before, .popup-layer-gis-item .content-box .btn-close:after {
      position: absolute;
      top: 5px;
      left: 14px;
      content: ' ';
      height: 18px;
      width: 2px;
      border-radius: 3px;
      background-color: #ffffff; }
    .popup-layer-gis-item .content-box .btn-close:before {
      transform: rotate(45deg); }
    .popup-layer-gis-item .content-box .btn-close:after {
      transform: rotate(-45deg); }
    .popup-layer-gis-item .content-box .btn-close.with-times {
      color: #fff;
      font-size: 20px; }
      .popup-layer-gis-item .content-box .btn-close.with-times:before, .popup-layer-gis-item .content-box .btn-close.with-times:after {
        display: none; }
  .popup-layer-gis-item .content-box .popup-body {
    padding: 10px 15px; }
  .popup-layer-gis-item .content-box .row-group {
    margin-bottom: 0.8em; }
    .popup-layer-gis-item .content-box .row-group .label {
      display: inline-block;
      font-size: 14px;
      margin-bottom: 3px; }
  .popup-layer-gis-item .content-box .gis-title {
    border: 1px solid #dee2e6;
    background-color: #f2f2f2;
    padding: 5px 10px;
    font-size: 13px; }
    @media (min-width: 768px) {
      .popup-layer-gis-item .content-box .gis-title {
        font-size: 15px; } }
  .popup-layer-gis-item .content-box .gis-info-table {
    padding: 0;
    border: 0;
    background-color: transparent; }
    .popup-layer-gis-item .content-box .gis-info-table .table-box {
      max-height: 350px;
      overflow-y: auto; }
    .popup-layer-gis-item .content-box .gis-info-table .table {
      margin-bottom: 0;
      background-color: #fff; }
    .popup-layer-gis-item .content-box .gis-info-table th, .popup-layer-gis-item .content-box .gis-info-table td {
      padding: 0.2rem 0.5rem;
      font-size: 12px;
      width: 50%; }
    .popup-layer-gis-item .content-box .gis-info-table th {
      min-width: 90px; }
    .popup-layer-gis-item .content-box .gis-info-table td {
      text-align: right; }
    .popup-layer-gis-item .content-box .gis-info-table td.align-left {
      text-align: left; }
    @media (min-width: 768px) {
      .popup-layer-gis-item .content-box .gis-info-table th, .popup-layer-gis-item .content-box .gis-info-table td {
        font-size: 14px; }
      .popup-layer-gis-item .content-box .gis-info-table th {
        min-width: 100px; } }
  .popup-layer-gis-item .content-box .table-box + .label {
    margin-top: 15px; }
  .popup-layer-gis-item .content-box .gis-chart-wrap {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow-y: auto; }
  .popup-layer-gis-item .content-box .gis-info-table.with-chart .gis-chart-wrap {
    margin-top: 10px; }
  .popup-layer-gis-item .content-box .gis-chart-box {
    position: relative;
    border: 1px solid #dee2e6;
    width: 100%;
    height: 240px; }
    .popup-layer-gis-item .content-box .gis-chart-box .btn-remove {
      position: absolute;
      width: 20px;
      height: 20px;
      border-radius: 20px;
      font-size: 20px;
      top: 5px;
      right: 5px;
      padding: 0;
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      cursor: pointer;
      z-index: 5; }
    .popup-layer-gis-item .content-box .gis-chart-box .btn-edit {
      position: absolute;
      width: 30px;
      height: 32px;
      border-radius: 3px;
      border: 1px solid #15a5b7;
      font-size: 20px;
      bottom: 5px;
      right: 5px;
      padding: 0;
      background-color: #fff;
      cursor: pointer;
      z-index: 5;
      color: #666; }
      .popup-layer-gis-item .content-box .gis-chart-box .btn-edit:hover {
        color: #15a5b7; }
  .popup-layer-gis-item .content-box .gis-chart-box + .gis-chart-box {
    margin-top: 10px; }
  .popup-layer-gis-item .content-box .btn-add-action {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid #bfbfbf;
    margin-top: 10px;
    background-color: #fff;
    font-size: 13px;
    padding: 0 10px;
    height: 28px;
    border-radius: 28px; }
    .popup-layer-gis-item .content-box .btn-add-action:hover, .popup-layer-gis-item .content-box .btn-add-action:focus-visible {
      color: #15a5b7;
      border-color: #15a5b7; }
    .popup-layer-gis-item .content-box .btn-add-action .icon {
      display: inline-block;
      position: relative;
      padding: 0;
      border: none;
      margin: 0 5px;
      width: 16px;
      height: 16px;
      border-radius: 16px;
      background-color: #15a5b7; }
      .popup-layer-gis-item .content-box .btn-add-action .icon:before, .popup-layer-gis-item .content-box .btn-add-action .icon:after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        content: "";
        background-color: #fff;
        transform: translate(-50%, -50%); }
      .popup-layer-gis-item .content-box .btn-add-action .icon:before {
        width: 8px;
        height: 2px; }
      .popup-layer-gis-item .content-box .btn-add-action .icon:after {
        width: 2px;
        height: 8px; }

.popup-gis-add-chart {
  max-width: 400px; }
  .popup-gis-add-chart .popup-body {
    padding: 10px 15px 15px !important; }
  .popup-gis-add-chart .variable-params-box {
    margin-top: 10px; }
    .popup-gis-add-chart .variable-params-box .row {
      margin-right: -5px;
      margin-left: -5px; }
    .popup-gis-add-chart .variable-params-box .data-row {
      padding-right: 35px;
      position: relative;
      margin-bottom: 10px; }
    .popup-gis-add-chart .variable-params-box .row > [class^="col-"] {
      padding-left: 5px;
      padding-right: 5px; }
    .popup-gis-add-chart .variable-params-box .btn-item-remove {
      position: absolute;
      padding: 2px 5px;
      font-size: 18px;
      right: 5px;
      top: 50%;
      transform: translateY(-50%); }
  .popup-gis-add-chart .btn-add-action {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid #bfbfbf;
    font-size: 12px;
    border-radius: 32px;
    height: 32px;
    margin-top: 5px; }
    .popup-gis-add-chart .btn-add-action:hover, .popup-gis-add-chart .btn-add-action:focus-visible {
      color: #15a5b7;
      border-color: #15a5b7; }

.popup-popup-setting .popup-body {
  padding: 10px 15px 15px !important; }

.popup-popup-setting .information-box {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #dfdfdf; }
  .popup-popup-setting .information-box .form-check + .form-check {
    margin-top: 5px; }

.popup-all-apply {
  max-width: 250px; }
  .popup-all-apply .popup-body.form {
    padding: 10px 15px 15px; }
  .popup-all-apply .form-check + .form-check {
    margin-top: 10px; }

.new-data-item-popup {
  max-width: 540px !important; }
  .new-data-item-popup .logo-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin: 10px 0; }
    .new-data-item-popup .logo-box .logo-img-box {
      position: relative;
      border: 1px solid #ced4da;
      width: 180px;
      height: 90px;
      border-radius: 5px;
      margin-right: 10px;
      overflow: hidden;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .new-data-item-popup .logo-box .logo-img-box .icon {
        font-size: 24px; }
      .new-data-item-popup .logo-box .logo-img-box img {
        max-width: 100%; }
      .new-data-item-popup .logo-box .logo-img-box .remove-logo {
        position: absolute;
        top: 3px;
        right: 3px;
        background-color: rgba(0, 0, 0, 0.3);
        color: #fff;
        font-size: 14px;
        border: 0;
        z-index: 10;
        width: 20px;
        height: 20px;
        border-radius: 20px;
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: center;
        flex-pack: center;
        -webkit-justify-content: center;
        -moz-box-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-align: center;
        flex-align: center;
        -webkit-align-items: center;
        -moz-box-align-items: center;
        -ms-align-items: center;
        -webkit-align-items: center;
        align-items: center; }
        .new-data-item-popup .logo-box .logo-img-box .remove-logo:hover, .new-data-item-popup .logo-box .logo-img-box .remove-logo:focus, .new-data-item-popup .logo-box .logo-img-box .remove-logo:active, .new-data-item-popup .logo-box .logo-img-box .remove-logo:focus-visible {
          background-color: rgba(0, 0, 0, 0.5); }
    .new-data-item-popup .logo-box .logo-btn-box {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      .new-data-item-popup .logo-box .logo-btn-box .btn-change-logo {
        width: auto;
        border: 1px solid #ced4da; }
      .new-data-item-popup .logo-box .logo-btn-box .logo-desc {
        font-size: 12px; }
  .new-data-item-popup textarea.form-control {
    min-height: 200px; }
  .new-data-item-popup .btns {
    padding: 10px 5px; }
    .new-data-item-popup .btns .btn {
      margin: 0 5px;
      padding-top: 2px;
      padding-bottom: 2px;
      border-radius: 0.25rem !important; }

.price-object-modal {
  max-width: 560px !important; }

.add-agent-db-modal {
  max-width: 560px !important; }
  .add-agent-db-modal .lcb-content.lcb-block {
    max-height: 580px;
    overflow-y: auto; }
  .add-agent-db-modal .db-list-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    height: 205px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    overflow-y: auto;
    padding: 10px; }
    .add-agent-db-modal .db-list-box .list-item {
      width: 80px;
      height: 80px;
      min-width: 80px;
      overflow: hidden;
      border: 1px solid transparent;
      border-radius: 5px;
      font-size: 14px;
      text-align: center;
      margin: 5px 8px;
      cursor: pointer; }
      .add-agent-db-modal .db-list-box .list-item img {
        max-width: 100%;
        vertical-align: top; }
      .add-agent-db-modal .db-list-box .list-item:hover, .add-agent-db-modal .db-list-box .list-item:focus, .add-agent-db-modal .db-list-box .list-item:active, .add-agent-db-modal .db-list-box .list-item:focus-visible, .add-agent-db-modal .db-list-box .list-item.on {
        border-color: #15a5b7; }
  .add-agent-db-modal .text-btn-box {
    padding: 10px 0;
    text-align: center; }

.common-layout-template-modal {
  max-width: 250px; }
  .common-layout-template-modal .thumb-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    flex-align: center;
    -webkit-align-items: center;
    -moz-box-align-items: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 15px; }
    .common-layout-template-modal .thumb-wrap .file-upload-label {
      font-size: 26px;
      padding: 0;
      cursor: pointer; }
      .common-layout-template-modal .thumb-wrap .file-upload-label:focus, .common-layout-template-modal .thumb-wrap .file-upload-label:active, .common-layout-template-modal .thumb-wrap .file-upload-label:focus-visible, .common-layout-template-modal .thumb-wrap .file-upload-label:hover {
        color: #15a5b7; }
    .common-layout-template-modal .thumb-wrap .img-box {
      width: 100%;
      height: 200px;
      border: 1px solid #ccc;
      border-radius: 5px;
      overflow: hidden;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-pack: center;
      flex-pack: center;
      -webkit-justify-content: center;
      -moz-box-justify-content: center;
      -ms-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-align: center;
      flex-align: center;
      -webkit-align-items: center;
      -moz-box-align-items: center;
      -ms-align-items: center;
      -webkit-align-items: center;
      align-items: center; }
      .common-layout-template-modal .thumb-wrap .img-box img {
        max-width: 100%;
        max-height: 100%;
        border: none; }
    .common-layout-template-modal .thumb-wrap .btn-remove {
      position: absolute;
      padding: 0;
      color: #fff;
      width: 26px;
      height: 26px;
      border-radius: 26px;
      font-size: 20px;
      top: 8px;
      right: 8px;
      background-color: rgba(0, 0, 0, 0.5); }

.popup-public-template-list {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto; }
  .popup-public-template-list .row {
    margin-left: 0;
    margin-right: 0; }
  .popup-public-template-list .content-box {
    width: 100%;
    height: 600px;
    padding: 0;
    background-color: #F2F2F2; }
    .popup-public-template-list .content-box .search-box {
      position: relative;
      width: 100%;
      padding: 20px 15px; }
      .popup-public-template-list .content-box .search-box .icon {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%); }
      @media (min-width: 992px) {
        .popup-public-template-list .content-box .search-box {
          padding: 20px 35px; }
          .popup-public-template-list .content-box .search-box .icon {
            right: 3em; } }
    .popup-public-template-list .content-box .theme-wrap {
      width: 100%;
      height: calc(100% - 78px);
      padding: 0 10px 10px;
      overflow-y: auto;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-direction: column;
      -moz-box-flex-direction: column;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      @media (min-width: 992px) {
        .popup-public-template-list .content-box .theme-wrap {
          padding: 0 30px 10px; } }
      .popup-public-template-list .content-box .theme-wrap .paging-box {
        height: 33px; }
    .popup-public-template-list .content-box .theme-inner-box {
      flex: 1;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-flex-wrap: wrap;
      -moz-box-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
  .popup-public-template-list .thumbnail-list-item {
    width: 50%;
    overflow: hidden;
    padding: 0; }
    .popup-public-template-list .thumbnail-list-item .template-item {
      position: relative;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin: 5px;
      background-color: #fff;
      padding: 10px; }
    @media (min-width: 768px) {
      .popup-public-template-list .thumbnail-list-item {
        width: 33.3333%; } }
    @media (min-width: 1200px) {
      .popup-public-template-list .thumbnail-list-item {
        width: 25%; } }
    @media (min-width: 1400px) {
      .popup-public-template-list .thumbnail-list-item {
        width: 20%; } }
    .popup-public-template-list .thumbnail-list-item .thumb {
      position: relative;
      border: 1px solid #ccc;
      border-radius: 5px;
      overflow: hidden;
      height: 0;
      padding-bottom: 55.4%; }
      .popup-public-template-list .thumbnail-list-item .thumb .bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
    .popup-public-template-list .thumbnail-list-item .title-wrap .title {
      background-color: transparent;
      color: #666;
      font-size: 14px;
      padding: 5px; }
    .popup-public-template-list .thumbnail-list-item .btn-box {
      width: 100%; }
      .popup-public-template-list .thumbnail-list-item .btn-box .btn-group {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-flex-direction: column;
        -moz-box-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
      .popup-public-template-list .thumbnail-list-item .btn-box .btn {
        width: 100%;
        font-size: 14px;
        border-radius: 3px;
        margin: 5px 0; }
      @media (min-width: 768px) {
        .popup-public-template-list .thumbnail-list-item .btn-box .btn-group {
          -webkit-box-flex-direction: row;
          -moz-box-flex-direction: row;
          -ms-flex-direction: row;
          -webkit-flex-direction: row;
          flex-direction: row; }
        .popup-public-template-list .thumbnail-list-item .btn-box .btn {
          width: auto;
          flex: 1;
          margin: 0 5px; } }
    .popup-public-template-list .thumbnail-list-item .btn-remove {
      position: absolute;
      top: 5px;
      right: 5px;
      padding: 0;
      color: #fff;
      width: 26px;
      height: 26px;
      border-radius: 26px;
      font-size: 20px;
      background-color: rgba(0, 0, 0, 0.5); }

.ai-agent-perm-data-modal {
  max-width: 500px !important; }
  .ai-agent-perm-data-modal .data-wrap {
    padding: 0;
    height: 500px;
    overflow-y: auto; }
    .ai-agent-perm-data-modal .data-wrap .name {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 40px; }
  .ai-agent-perm-data-modal .data-list-box {
    position: relative; }
    .ai-agent-perm-data-modal .data-list-box .form-check-input {
      border-color: #15a5b7; }
    .ai-agent-perm-data-modal .data-list-box .data-inner {
      padding: 10px 15px;
      width: 100%;
      height: 100%;
      overflow-y: auto; }
    .ai-agent-perm-data-modal .data-list-box .list-item {
      margin-bottom: 20px; }
      .ai-agent-perm-data-modal .data-list-box .list-item .form-check {
        position: relative;
        padding-left: 30px;
        margin-bottom: 0; }
      .ai-agent-perm-data-modal .data-list-box .list-item .form-check-input {
        top: 8px;
        left: 0;
        margin-left: 0;
        margin-top: 0;
        border-color: #15a5b7; }
      .ai-agent-perm-data-modal .data-list-box .list-item .form-check-label {
        display: block;
        width: 100%;
        padding: 6px 15px 6px 15px;
        border: 1px solid #bfbfbf;
        font-size: 14px; }
      .ai-agent-perm-data-modal .data-list-box .list-item .type {
        font-size: 13px;
        color: #999; }
    .ai-agent-perm-data-modal .data-list-box .children-category-item {
      position: relative;
      padding-top: 10px; }
      .ai-agent-perm-data-modal .data-list-box .children-category-item:before {
        content: "";
        display: block;
        height: 46px;
        width: 1px;
        background-color: #777;
        position: absolute;
        top: 0;
        left: 40px; }
      .ai-agent-perm-data-modal .data-list-box .children-category-item:after {
        content: "";
        display: block;
        height: 1px;
        width: 10px;
        background-color: #777;
        position: absolute;
        top: 28px;
        left: 40px; }
      .ai-agent-perm-data-modal .data-list-box .children-category-item:last-child:before {
        height: 29px; }
      .ai-agent-perm-data-modal .data-list-box .children-category-item .form-check {
        padding-left: 50px; }
    .ai-agent-perm-data-modal .data-list-box .all-box {
      position: absolute;
      top: -25px;
      left: 11px; }
      .ai-agent-perm-data-modal .data-list-box .all-box .form-check-label {
        font-size: 14px;
        text-align: center;
        margin-left: 10px; }

.popup-variable-list,
.ai-agent-variable {
  width: 400px !important;
  max-width: 400px !important; }
  .popup-variable-list .variable-list-box,
  .ai-agent-variable .variable-list-box {
    max-height: 500px;
    overflow-y: auto; }

.ai-agent-variable .variable-list-box {
  max-height: 400px; }
  .ai-agent-variable .variable-list-box .variable-item {
    position: relative;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f2f2f2;
    transition: border-color .1s, box-shadow .1s;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    cursor: pointer; }
    .ai-agent-variable .variable-list-box .variable-item:last-child {
      margin-bottom: 0; }
    .ai-agent-variable .variable-list-box .variable-item:hover, .ai-agent-variable .variable-list-box .variable-item:focus-visible, .ai-agent-variable .variable-list-box .variable-item.active {
      border-color: #15a5b7;
      box-shadow: 0 0 0 2px #15a5b7 inset; }
      .ai-agent-variable .variable-list-box .variable-item:hover .btn-delete, .ai-agent-variable .variable-list-box .variable-item:focus-visible .btn-delete, .ai-agent-variable .variable-list-box .variable-item.active .btn-delete {
        opacity: 1; }
    .ai-agent-variable .variable-list-box .variable-item .form-group {
      margin: 0; }
    .ai-agent-variable .variable-list-box .variable-item .key-box {
      width: 30%;
      margin-right: 8px; }
    .ai-agent-variable .variable-list-box .variable-item .static-box {
      margin-bottom: 0;
      margin-right: 8px; }
      .ai-agent-variable .variable-list-box .variable-item .static-box .form-check-input {
        margin-top: .3rem; }
      .ai-agent-variable .variable-list-box .variable-item .static-box .form-check-label {
        line-height: 30px;
        font-size: 14px;
        word-wrap: normal;
        white-space: nowrap; }

.popover.instructions-tooltip {
  z-index: 999999;
  max-width: 400px; }
  .popover.instructions-tooltip .popover-body {
    padding: 15px; }
  .popover.instructions-tooltip .tips-title {
    font-size: 16px;
    margin-bottom: 10px; }
  .popover.instructions-tooltip .tips {
    font-size: 12px;
    color: #15a5b7;
    margin-top: 10px; }

.clr-picker {
  display: none;
  flex-wrap: wrap;
  position: absolute;
  width: 200px;
  z-index: 1000;
  border-radius: 10px;
  background-color: #fff;
  justify-content: flex-end;
  direction: ltr;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05), 0 5px 20px rgba(0, 0, 0, 0.1);
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none; }

.clr-picker.clr-open,
.clr-picker[data-inline="true"] {
  display: flex; }

.clr-picker[data-inline="true"] {
  position: relative; }

.clr-gradient {
  position: relative;
  width: 100%;
  height: 100px;
  margin-bottom: 15px;
  border-radius: 3px 3px 0 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), #000), linear-gradient(90deg, #fff, currentColor);
  cursor: pointer; }

.clr-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: currentColor;
  cursor: pointer; }

.clr-picker input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 16px; }

.clr-picker input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  -webkit-appearance: none; }

.clr-picker input[type="range"]::-moz-range-track {
  width: 100%;
  height: 16px;
  border: 0; }

.clr-picker input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0; }

.clr-hue {
  background-image: linear-gradient(to right, #f00 0%, #ff0 16.66%, #0f0 33.33%, #0ff 50%, #00f 66.66%, #f0f 83.33%, #f00 100%); }

.clr-hue,
.clr-alpha {
  position: relative;
  width: calc(100% - 40px);
  height: 8px;
  margin: 5px 20px;
  border-radius: 4px; }

.clr-alpha span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), currentColor); }

.clr-hue input,
.clr-alpha input {
  position: absolute;
  width: calc(100% + 32px);
  height: 16px;
  left: -16px;
  top: -4px;
  margin: 0;
  background-color: transparent;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none; }

.clr-hue div,
.clr-alpha div {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  margin-left: -8px;
  transform: translateY(-50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 1px #888;
  pointer-events: none; }

.clr-alpha div:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: currentColor; }

.clr-format {
  display: none;
  order: 1;
  width: calc(100% - 40px);
  margin: 0 20px 20px; }

.clr-segmented {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-sizing: border-box;
  color: #999;
  font-size: 12px; }

.clr-segmented input,
.clr-segmented legend {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none; }

.clr-segmented label {
  flex-grow: 1;
  margin: 0;
  padding: 4px 0;
  font-size: inherit;
  font-weight: normal;
  line-height: initial;
  text-align: center;
  cursor: pointer; }

.clr-segmented label:first-of-type {
  border-radius: 10px 0 0 10px; }

.clr-segmented label:last-of-type {
  border-radius: 0 10px 10px 0; }

.clr-segmented input:checked + label {
  color: #fff;
  background-color: #666; }

.clr-swatches {
  order: 2;
  width: calc(100% - 32px);
  margin: 0 16px; }

.clr-swatches div {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 12px;
  justify-content: center; }

.clr-swatches button {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 4px 6px 4px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: inherit;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer; }

.clr-swatches button:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-color: currentColor;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); }

input.clr-color {
  order: 1;
  width: calc(100% - 80px);
  height: 32px;
  margin: 15px 20px 20px auto;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 16px;
  color: #444;
  background-color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  text-align: center;
  box-shadow: none; }

input.clr-color:focus {
  outline: none;
  border: 1px solid #1e90ff; }

.clr-close,
.clr-clear {
  display: none;
  order: 2;
  height: 24px;
  margin: 0 20px 20px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background-color: #666;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer; }

.clr-close {
  display: block;
  margin: 0 20px 20px auto; }

.clr-preview {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 15px 0 20px 20px;
  border-radius: 50%;
  overflow: hidden; }

.clr-preview:before,
.clr-preview:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border: 1px solid #fff;
  border-radius: 50%; }

.clr-preview:after {
  border: 0;
  background-color: currentColor;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); }

.clr-preview button {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline-offset: -2px;
  background-color: transparent;
  text-indent: -9999px;
  cursor: pointer;
  overflow: hidden; }

.clr-marker,
.clr-hue div,
.clr-alpha div,
.clr-color {
  box-sizing: border-box; }

.clr-field {
  display: inline-block;
  position: relative;
  color: transparent; }

.clr-field input {
  margin: 0;
  direction: ltr; }

.clr-field.clr-rtl input {
  text-align: right; }

.clr-field button {
  position: absolute;
  width: 30px;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none; }

.clr-field.clr-rtl button {
  right: auto;
  left: 0; }

.clr-field button:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-color: currentColor;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5); }

.clr-alpha,
.clr-alpha div,
.clr-swatches button,
.clr-preview:before,
.clr-field button {
  background-image: repeating-linear-gradient(45deg, #aaa 25%, transparent 25%, transparent 75%, #aaa 75%, #aaa), repeating-linear-gradient(45deg, #aaa 25%, #fff 25%, #fff 75%, #aaa 75%, #aaa);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px; }

.clr-marker:focus {
  outline: none; }

.clr-keyboard-nav .clr-marker:focus,
.clr-keyboard-nav .clr-hue input:focus + div,
.clr-keyboard-nav .clr-alpha input:focus + div,
.clr-keyboard-nav .clr-segmented input:focus + label {
  outline: none;
  box-shadow: 0 0 0 2px #1e90ff, 0 0 2px 2px #fff; }

.clr-picker[data-alpha="false"] .clr-alpha {
  display: none; }

.clr-picker[data-minimal="true"] {
  padding-top: 16px; }

.clr-picker[data-minimal="true"] .clr-gradient,
.clr-picker[data-minimal="true"] .clr-hue,
.clr-picker[data-minimal="true"] .clr-alpha,
.clr-picker[data-minimal="true"] .clr-color,
.clr-picker[data-minimal="true"] .clr-preview {
  display: none; }

/** Dark theme **/
.clr-dark {
  background-color: #444; }

.clr-dark .clr-segmented {
  border-color: #777; }

.clr-dark .clr-swatches button:after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); }

.clr-dark input.clr-color {
  color: #fff;
  border-color: #777;
  background-color: #555; }

.clr-dark input.clr-color:focus {
  border-color: #1e90ff; }

.clr-dark .clr-preview:after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); }

.clr-dark .clr-alpha,
.clr-dark .clr-alpha div,
.clr-dark .clr-swatches button,
.clr-dark .clr-preview:before {
  background-image: repeating-linear-gradient(45deg, #666 25%, transparent 25%, transparent 75%, #888 75%, #888), repeating-linear-gradient(45deg, #888 25%, #444 25%, #444 75%, #888 75%, #888); }

/** Polaroid theme **/
.clr-picker.clr-polaroid {
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1), 0 5px 30px rgba(0, 0, 0, 0.2); }

.clr-picker.clr-polaroid:before {
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  height: 10px;
  left: 20px;
  top: -10px;
  border: solid transparent;
  border-width: 0 8px 10px 8px;
  border-bottom-color: currentColor;
  box-sizing: border-box;
  color: #fff;
  filter: drop-shadow(0 -4px 3px rgba(0, 0, 0, 0.1));
  pointer-events: none; }

.clr-picker.clr-polaroid.clr-dark:before {
  color: #444; }

.clr-picker.clr-polaroid.clr-left:before {
  left: auto;
  right: 20px; }

.clr-picker.clr-polaroid.clr-top:before {
  top: auto;
  bottom: -10px;
  transform: rotateZ(180deg); }

.clr-polaroid .clr-gradient {
  width: calc(100% - 20px);
  height: 120px;
  margin: 10px;
  border-radius: 3px; }

.clr-polaroid .clr-hue,
.clr-polaroid .clr-alpha {
  width: calc(100% - 30px);
  height: 10px;
  margin: 6px 15px;
  border-radius: 5px; }

.clr-polaroid .clr-hue div,
.clr-polaroid .clr-alpha div {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }

.clr-polaroid .clr-format {
  width: calc(100% - 20px);
  margin: 0 10px 15px; }

.clr-polaroid .clr-swatches {
  width: calc(100% - 12px);
  margin: 0 6px; }

.clr-polaroid .clr-swatches div {
  padding-bottom: 10px; }

.clr-polaroid .clr-swatches button {
  width: 22px;
  height: 22px; }

.clr-polaroid input.clr-color {
  width: calc(100% - 60px);
  margin: 10px 10px 15px auto; }

.clr-polaroid .clr-clear {
  margin: 0 10px 15px 10px; }

.clr-polaroid .clr-close {
  margin: 0 10px 15px auto; }

.clr-polaroid .clr-preview {
  margin: 10px 0 15px 10px; }

/** Large theme **/
.clr-picker.clr-large {
  width: 275px; }

.clr-large .clr-gradient {
  height: 150px; }

.clr-large .clr-swatches button {
  width: 22px;
  height: 22px; }

/** Pill (horizontal) theme **/
.clr-picker.clr-pill {
  width: 380px;
  padding-left: 180px;
  box-sizing: border-box; }

.clr-pill .clr-gradient {
  position: absolute;
  width: 180px;
  height: 100%;
  left: 0;
  top: 0;
  margin-bottom: 0;
  border-radius: 3px 0 0 3px; }

.clr-pill .clr-hue {
  margin-top: 20px; }

.clr-field {
  width: 100%; }
  .clr-field input[type=text] {
    cursor: pointer; }
  .clr-field button:after {
    box-shadow: none;
    border: 1px solid #ced4da; }
  .clr-field.full-color {
    overflow: hidden; }
    .clr-field.full-color button {
      width: 100%;
      height: 100%; }

.clr-picker {
  z-index: 9999999 !important;
  width: 240px; }
  .clr-picker .clr-gradient {
    height: 140px; }

.sgdpr-box {
  position: absolute !important;
  bottom: auto !important;
  z-index: 99999999 !important; }
  @media (min-width: 962px) {
    .sgdpr-box {
      position: fixed !important;
      bottom: 0 !important; } }
