.cmp_en_notification_base {
  position: relative;
  background-color: var(--pg-color-main);
  border-radius: 0.5em;
  padding: 1.8125em;
}
.cmp_en_notification_base__title {
  font-family: var(--pg-font-family-title-roboto-condenzed);
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.8em;
  color: white;
}
.cmp_en_notification_base__saving {
  opacity: 0;
  position: absolute;
  right: 1em;
  top: 1em;
  color: var(--pg-color-sticker-category);
  font-size: 0.875em;
  transition: opacity 250ms ease;
}
.cmp_en_notification_base--saving .cmp_en_notification_base__saving {
  opacity: 1;
}

.cmp_en_notification_base_choice {
  padding: 1em 1.25em;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.375em;
  background-color: var(--pg-color-main-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cmp_en_notification_base_choice__label {
  color: white;
  font-weight: 700;
}
.cmp_en_notification_base_choice__switch {
  font-size: 0.75em;
}

.cmp_en_notification_base_choices {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.epc_switch {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  width: 4.875em;
  height: 1.9375em;
  margin: -0.2em 0;
  box-sizing: content-box;
  padding: 0;
  border: none;
  border-radius: 0.5em;
  background-color: transparent;
  transition: background-color 250ms ease, box-shadow 250ms ease;
  font-size: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  user-select: none;
  outline: none;
  border: 1px solid hsl(0, 0%, 100%);
  margin: 0;
  cursor: pointer;
  background-color: hsl(218, 13%, 88%);
  -webkit-transition: background-color 250ms ease-out;
  -moz-transition: background-color 250ms ease-out;
  -o-transition: background-color 250ms ease-out;
  transition: background-color 250ms ease-out;
}
.epc_switch::before {
  content: "";
  display: flex;
  align-content: center;
  justify-content: center;
  position: absolute;
  width: 1.375em;
  height: 1.375em;
  left: 0;
  top: 0;
  background: hsl(0, 0%, 100%);
  border-radius: 0.25em;
  transform: translate(20%, 20%);
  transition: transform 250ms ease;
  color: hsla(0, 0%, 0%, 0.3);
  line-height: 1;
}
.epc_switch::after {
  content: "";
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  font-size: 1.4em;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.epc_switch:checked {
  background-color: var(--pg-color-secondary);
}
.epc_switch:checked::after {
  content: "";
}
.epc_switch:checked::before {
  transform: translate(calc(3em + 4px), 0.3125em);
}
.epc_switch:checked + .epc_semaphore--no {
  display: none;
}
.epc_switch:checked + .epc_semaphore--no + .epc_semaphore--yes {
  display: flex;
}
.epc_switch__right {
  right: 1em;
  left: auto;
}
