.trans25 {
  opacity: 0.25;
}

.trans50 {
  opacity: 0.5;
}

.btn {
  border-radius: 0.25rem;
  border: 0;
  background-color: rgba(0, 0, 0, 0.1);
  color: black;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  outline: none;
  display: inline-flex;
}
.btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.btn > i:last-child {
  margin-left: 1rem;
}
.btn > i:only-child {
  margin: auto;
}
.btn.primary {
  background-color: #7CE4BB;
}
.btn.primary:hover {
  background-color: #52dba5;
}
.btn.muted {
  background-color: rgb(255, 255, 255);
}
.btn.muted:hover {
  background-color: #e1e1e1;
}
.btn.dark {
  background-color: rgb(197, 197, 197);
}
.btn.dark:hover {
  background-color: rgb(161, 161, 161);
}
.btn.disabled {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.btn.btn-icon {
  align-items: center;
}
.btn.btn-big {
  padding: 1rem 2rem;
}
.btn.btn-big i {
  font-size: 2rem;
}
.btn.btn-square {
  padding: 0.5rem;
  border-radius: 0.5rem;
  align-items: center;
  width: var(--linkbar-sq-size);
}
.btn.btn-icon {
  align-items: center;
}
.btn.btn-outlined {
  background-color: transparent;
  border: 1px solid black;
  color: black;
}
.btn.btn-outlined:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: black;
}
.btn.btn-extra-round {
  border-radius: 10px;
}
.btn.btn-recent {
  line-height: 1em;
  text-transform: none;
}
.btn.btn-center {
  justify-content: center;
}

.btn-list {
  display: flex;
  flex-direction: column;
}
.btn-list > .btn {
  margin-bottom: 0.5rem;
}

.dnbr-field {
  position: relative;
}
.dnbr-field input {
  width: 100%;
  background: white;
  padding: 0.25rem 0;
  border: 0;
  border-bottom: 2px dashed black;
  margin-bottom: 0.25rem;
  outline: none;
}
.dnbr-field input:focus::placeholder, .dnbr-field input.light-placeholder::placeholder {
  color: #a9a9a9;
}
.dnbr-field input.u {
  font-weight: bold;
}
.dnbr-field input:not(:placeholder-shown) {
  background-color: white;
}
.dnbr-field input::placeholder {
  color: black;
}
.dnbr-field input.u::placeholder {
  font-weight: bold;
}
.dnbr-field:not(.no-icon)::after {
  font-family: "Material Icons";
  content: "edit";
  position: absolute;
  right: 0.1rem;
  pointer-events: none;
  background-color: white;
}
.dnbr-field.filled::after {
  content: "check";
}
.dnbr-field.saved::after {
  content: "check";
}
.dnbr-field.error::after {
  content: "error";
  color: red;
}
.dnbr-field.error > input {
  color: red;
}
.dnbr-field.pending::after {
  content: "cloud_upload";
  animation: dnbr-input-pulsing 3s linear infinite;
  opacity: 0.5;
}
.dnbr-field.pending-paused::after {
  content: "cloud_upload";
  opacity: 0.5;
}

@keyframes dnbr-input-pulsing {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.5;
  }
}
.cta-bar .cta-text input.dnbr-field {
  opacity: 1;
  font-weight: 400;
}

.dnbr-edit-group-loading {
  position: relative;
  opacity: 0.8;
  pointer-events: none;
}
.dnbr-edit-group-loading > *:not(.dnbr-loader) {
  filter: blur(2px);
}
.dnbr-edit-group-loading .dnbr-loader {
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
}

.new-event {
  background: #7CE4BB;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 50px;
  border-top-right-radius: 5px;
  height: 60px;
  width: 200px;
  display: flex;
  overflow: hidden;
  text-decoration: none;
  --f-size: 20px;
  font-size: var(--f-size);
}
.new-event.multiline-btn {
  --f-size: 16px;
}
.new-event:hover {
  background: #52dba5;
}
.new-event > div:last-child {
  flex: 1;
  text-align: left;
  margin-left: 20px;
  line-height: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new-event > div:last-child > span:last-child {
  color: black;
  font-weight: 400;
  font-size: var(--f-size);
}
.new-event > div:last-child > span:first-child {
  color: black;
  font-weight: 500;
  font-size: var(--f-size);
}
.new-event > span:first-child {
  border: 1px solid #BDF1DD;
  box-sizing: content-box;
  margin-left: -1px;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new-event.new-event-alt {
  background-color: white;
  flex-direction: row-reverse;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 5px;
  border-top-right-radius: 50px;
  min-width: 250px;
  height: 4rem;
}
.new-event.new-event-alt > div:last-child > span {
  font-size: 16px;
}
.new-event.new-event-alt > span:first-child {
  border: 3px solid #7CE4BB;
  margin: -3px;
  width: 4rem;
  height: 4rem;
}
.new-event.new-event-alt:hover {
  background-color: #f2f2f2;
}

.dnbr-context-button > button {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: rgb(59, 59, 59);
  border: 0;
  cursor: pointer;
}
.dnbr-context-button > button:hover {
  background-color: #cecece;
}

.dnbr-context-button {
  display: inline-flex;
}

.dnbr-context-wrapper .dnbr-context-button {
  float: right;
  top: 0.5rem;
}

.dnbr-btn-link {
  all: unset;
  cursor: pointer;
  text-align: center;
  color: dodgerblue;
}

.account-chip {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 1rem;
  font-weight: 400;
}
.account-chip:not(.account-chip--no-hover):hover i, .account-chip:not(.account-chip--no-hover):hover .account-chip-text, .account-chip:not(.account-chip--no-hover):hover span:not(.account-chip-block) {
  opacity: 0.75 !important;
}
.account-chip:active .account-chip-block {
  opacity: 1 !important;
}
.account-chip:active i, .account-chip:active .account-chip-text, .account-chip:active span {
  opacity: 1 !important;
}
.account-chip i {
  font-size: 2.5rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-chip img {
  max-width: 2.5rem;
  max-height: 2.5rem;
  border-radius: 100%;
}
.account-chip u {
  font-weight: bold;
}
.account-chip a {
  color: black;
  font-weight: bold;
}
.account-chip-block {
  width: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.dnbr-user-signed-in a.account-chip .account-chip-block::after {
  content: "";
  min-width: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  box-sizing: border-box;
}
body.dnbr-user-signed-in a.account-chip:not(.account-chip--no-hover):hover .account-chip-block::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  content: "settings";
  min-width: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  position: absolute;
  box-sizing: border-box;
  color: #404040;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  border: 3px solid rgba(255, 255, 255, 0.64);
}
body.dnbr-user-signed-in a.account-chip:active .account-chip-block::before {
  color: black;
}

/*# sourceMappingURL=btn.css.map */
