@charset "UTF-8";

.include_badge {
  position: relative;
}

.menu_header.fbox .include_badge {
  width: 42px;
  float: left;
  margin-left: 4px;
}

.menu_header.fbox .include_badge .btn_head {
  float: none;
  margin-left: 0;
}

.unused_badge {
  display: block;
  position: absolute;
  z-index: 1;
  min-width: 8px;
  height: 18px;
  line-height: 18px;
  border-radius: 18px;
  text-align: center;
  background-color: #ff4141;
  color: #fff;
  right: -2px;
  top: -2px;
  font-size: 12px;
  padding: 0 5px;
}

.include_badge.pop-view .unused_badge {
  opacity: 0;
}

.local_area .unused_badge {
  top: 0;
}

.include_badge .unused_pop {
  font-size: 13px;
  font-weight: bold;
  width: 86px;
  height: fit-content;
  line-height: 17px;
  box-sizing: border-box;
  background-color: #ff4141;
  color: #fff;
  text-shadow: 0 1px 0 #f00;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: left;
  position: absolute;
  z-index: 1;
  right: 46px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0);
  transition: all 0.3s ease;
  transform-origin: 86px 18px;
}

.include_badge.pop-view .unused_pop {
  animation-delay: 0;
  animation-name: popzoom;
  animation-duration: 6s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes popzoom {
  0% {
    transform: scale(0);
  }

  5% {
    transform: scale(1);
  }

  95% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.unused_pop::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -6px;
  z-index: 1;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #ff4141;
  content: '';
}