.circle-detail-sidebar > .circle-notify-card {
  overflow: hidden;
  padding: 0;
  border-color: #dce3de;
  background: #fff;
}

.circle-notify-card > header {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 17px 17px 14px;
  border-bottom: 1px solid #e7ebe8;
  background: linear-gradient(135deg, #fbfcfa 0%, #f4f8ef 100%);
}

.circle-notify-card > header > i {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: #16241b;
  color: #a9d633;
  font-size: 21px;
  font-style: normal;
  font-weight: 800;
}

.circle-notify-card > header h3 {
  margin: 3px 0 2px;
  font-size: 13px;
}

.circle-notify-card > header p {
  margin: 0;
  color: #7f8982;
  font-size: 9px;
}

.circle-notify-card form {
  display: grid;
  gap: 0;
  padding: 6px 14px 14px;
}

.circle-notify-card .notify-option {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 57px;
  padding: 10px 3px;
  border-bottom: 1px solid #edf0ee;
  cursor: pointer;
}

.notify-option > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.notify-option b {
  color: #26322b;
  font-size: 11px;
}

.notify-option small {
  color: #8a938d;
  font-size: 8px;
  line-height: 1.5;
}

.notify-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.notify-option > i {
  display: block;
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 20px;
  border: 1px solid #d5dcd7;
  border-radius: 999px;
  background: #e8ece9;
  transition: background .18s ease, border-color .18s ease;
}

.notify-option > i::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgb(20 35 25 / 18%);
  transition: transform .18s ease;
}

.notify-option input:checked + i {
  border-color: #8bb526;
  background: #96c52a;
}

.notify-option input:checked + i::after {
  transform: translateX(14px);
}

.notify-option input:focus-visible + i {
  outline: 2px solid #8eb928;
  outline-offset: 2px;
}

.circle-notify-card .notify-save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: #16241b;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.circle-notify-card .notify-save:hover {
  background: #26392d;
  transform: translateY(-1px);
}

.circle-notify-card .notify-save span {
  color: #acd83a;
  font-size: 14px;
}
