.warning-panel {
  background-color: rgba(255, 229, 100, 0.3);
  border-color: #e7c000;
  color: #6b5900;
  padding: 0.5rem 1.5rem;
  border-left-width: 0.5rem;
  border-left-style: solid;
}

.warning-panel-title {
  font-weight: 600;
}

.warning-panel-content {
  resize: both;
}
/* danger-panel */
.danger-panel {
  background-color: #ffe6e6;
  border-color: #c00;
  color: #4d0000;
  padding: 0.5rem 1.5rem;
  border-left-width: 0.5rem;
  border-left-style: solid;
}

.danger-panel-title {
  font-weight: 600;
}

div.danger-panel-title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  background-image: url("../../images/danger.png");
  background-size: 100% 100%;
  margin: 0px 10px 0 0;
  position: relative;
  top: 3px;
}

.danger-panel-content {
  resize: both;
}

/* .collapse-panel */
.collapse-panel {
  border-color: #ebeef5;
  border-top: 1px solid #ebeef5;
  color: #303133;
}

.collapse-panel-item-header {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  color: #303133;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: border-bottom-color 0.3s;
  outline: none;
  height: fit-content;
  padding: 18px 0px;
}

/* .collapse-panel-item-header .is-active {
  border-bottom-color: transparent;
} */
.collapse-panel-item-header-inner {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  width: 95%;
}

.collapse-panel-item-header-icon {
  width: 2em;
  margin-right: 5px;
  height: 2em;
  object-fit: contain;
}

.collapse-panel-item-header-text {
  display: inline-block;
}

.collapse-panel-item-header-arrow {
  margin: 0 8px 0 auto;
  transition: transform 0.3s;
  font-weight: 300;
  color: inherit;
  height: 1em;
  min-width: 1em;
  line-height: 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  fill: currentColor;
  font-size: inherit;
}

/* .collapse-panel-item-header-arrow .is-active {
  transform: rotate(90deg);
} */

.collapse-panel-item-content__wrap {
  will-change: height;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 1px solid #ebeef5;
}

.collapse-panel-item-content {
  /* display: none; */
}

.collapse-panel-item-content .is-active {
  /* display: block !important; */
}

/* image-point */
.image-point-img-view {
  cursor: pointer;
  position: relative;
}

.image-point-marker {
  position: absolute;
  /* background: red; */
  opacity: 0.7;
  background-color: #ff6000;
  box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
  border-radius: 100%;
  border: 2px solid white;
  box-sizing: border-box;
  border-style: inset;
}

.image-point-uploader-view  {
  border: 1px solid #ebeef5;
  background-color: #fff;
  color: #303133;
  transition: 0.3s;
  box-shadow: 0 2px 20px 1px rgb(161 161 161 / 75%);
}

@keyframes button-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.9;
  }

  50% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.image-point-marker:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  content: "";
  display: block;
  opacity: 0;
  transition: border-color 1s linear;
  animation: button-pulse 2s linear infinite;
  height: 13.2px;
  width: 13.2px;
  border-radius: 100%;
  border: 1px solid #ff6000;
}

.image-point-popper {
  background: #ffffff;
  min-width: 150px;
  border-radius: 4px;
  border: 1px solid #e4e7ed;
  padding: 12px;
  color: #606266;
  line-height: 1.4;
  text-align: justify;
  font-size: 14px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  word-break: break-all;
  position: absolute;
  padding: 5px 11px;
  font-size: 12px;
  line-height: 20px;
  min-width: 10px;
  word-wrap: break-word;
  visibility: visible;
  background: #ffffff;
  z-index: 2;
}

.image-point-popper-arrow {
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 1;
}

.image-point-popper-arrow:before {
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: -1;
  content: " ";
  transform: rotate(45deg);
  background: #ffffff;
  box-sizing: border-box;
  border: 1px solid #e4e7ed;
  right: 0;
  border-left-width: 0px;
  border-top-width: 0px;
}

.image-point-popper-links p {
  margin: 0px;
  padding: 0px;
}

/*scroll-container */
.scroll-container-panel {
  overflow: auto;
}