@charset "UTF-8";

div#icon_popover {
  box-sizing: border-box;
  overflow: hidden;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid #333;
  border-radius: 3px;
  padding: 16px 20px;
  width: 380px;
  color: #555;
  box-shadow: 4px 6px 3px #333;
  z-index: 1000;
  animation: popFadeIn 0.8s ease;
}

@keyframes popFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

div#icon_popover::backdrop {
  background-color: #333;
  opacity: 0.8;
}


div#icon_popover h5 {
  box-sizing: border-box;
  text-align: center;
  font-size: 15px;

}

div#icon_popover>dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top:12px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

div#icon_popover>dl>dt {
  box-sizing: border-box;
  width: 15%;
  padding:8px 2px;
  border-top: 1px solid #ccc;
}

div#icon_popover>dl>dt img{
  display: block;
  margin: auto;
}

div#icon_popover>dl>dd {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 85%;
  padding:0 6px 0 12px;
  font-size: 13px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  
}

div#icon_popover>p {
  box-sizing: border-box;
  padding: 0.6em;
  font-size: 12px;
  line-height: 1.4em;
}

div#icon_popover>button {
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  margin: auto;
  width: 28px;
  height: 28px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  background: rgba(24, 24, 24, 0.85);
  cursor: pointer;
}

div#icon_popover>button:hover {
  opacity: .6;
}