.kupo-notification-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  position: relative;
  width: 160px;
  height: 70px;
  margin: 0 auto;
}
.kupo-notification-center * {
  font-family: var(--smgCupoFontFamily, "Montserrat", Arial, sans-serif);
}
.kupo-notification-center > button.kupo-notification-center-button {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  gap: 5px;
  outline: none;
  flex: 0 0 auto;
  position: relative;
}
.kupo-notification-center > button.kupo-notification-center-button .kupo-new-notifications-count {
  position: absolute;
  background: red;
  color: #fff;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}
.kupo-notification-center > button.kupo-notification-center-button span {
  font-size: 15px;
  line-height: 20px;
  color: var(--smgCupoSecondaryColor, #0068af);
}
.kupo-notification-center > button.kupo-notification-center-button svg {
  fill: var(--smgCupoSecondaryColor, #0068af);
  width: 35px;
  height: 35px;
}
.kupo-notification-center .kupo-notification-center-dropdown {
  display: block;
  background: #fff;
  position: absolute;
  right: -90px;
  top: 70px;
  z-index: 100;
  width: 340px;
  padding: 0;
  box-shadow: 0 0 3px #cbcbcb;
  border-radius: 6px;
  overflow: hidden;
}
.kupo-notification-center .kupo-notification-center-dropdown > a {
  display: block;
  padding: 10px 10px 0;
  background: #fff;
  text-decoration: none;
}
.kupo-notification-center .kupo-notification-center-dropdown > a:hover {
  background: #ddd;
}
.kupo-notification-center .kupo-notification-center-dropdown > a:not(:first-child) {
  border-top: 1px solid #cbcbcb;
}
.kupo-notification-center .kupo-notification-center-dropdown > a .kupo-notification-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--smgCupoSecondaryColor, #0068af);
}
.kupo-notification-center .kupo-notification-center-dropdown > a .kupo-notification-description {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
  color: #4a4a4a;
}
.kupo-notification-center .kupo-notification-center-dropdown > a footer {
  text-align: right;
  font-size: 10px;
  line-height: 18px;
  color: #4a4a4a;
}
