.contents1 #metatag_t tbody tr td ul {
  padding: 0;
  margin: 0;
}
.contents1 #metatag_t tbody tr td ul li {
  list-style-type: none;
  border-bottom: dotted 1px #666;
  background: none;
}
#url_error {
  margin-top: 4px;
  color: red;
}
#innerMsg {
  margin-top: 25px;
  margin-bottom: 10px;
}
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #FFF;
  animation: colorrotate 5s linear infinite;
  opacity: 0.9;
}
@keyframes colorrotate {
  from {
    filter: hue-rotate(0deg)
  }
  to {
    filter: hue-rotate(360deg)
  }
}
.loader {
  position: relative;
  width: 60px;
  height: 60px;
  margin-top: 30px;
}
.loader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(calc(36deg * var(--i)))
}
.loader span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #9C9;
  box-shadow: 0 0 2px #9C9,
    0 0 4px #9C9,
    0 0 6px #9C9,
    0 0 8px #9C9;
  animation: animatezoom 1s linear infinite calc(.1s * var(--i));
}
@keyframes animatezoom {
  0% {
    transform: scale(1)
  }
  80%,
  90% {
    transform: scale(0)
  }
}
