.trans25 {
  opacity: 0.25;
}

.trans50 {
  opacity: 0.5;
}

/*
Dunbar Global styles
(C) Dunbar LLC

*/
* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
}

body {
  font-size: 16px;
}

h1 {
  font-family: "Roboto Flex";
  font-weight: 500;
  font-size: 42px;
  font-variation-settings: "wdth" 65, "opsz" 36, "slnt" 0, "GRAD" 0, "XTRA" 468, "XOPQ" 80, "YOPQ" 65, "YTLC" 500, "YTUC" 660, "YTAS" 700, "YTDE" -170, "YTFI" 660;
}

h2 {
  font-family: "Roboto Flex";
  font-size: 28px;
  font-weight: 250;
  font-variation-settings: "wdth" 150, "opsz" 18, "slnt" 0, "GRAD" 0, "XTRA" 468, "XOPQ" 96, "YOPQ" 80, "YTLC" 520, "YTUC" 710, "YTAS" 750, "YTDE" -200, "YTFI" 710;
}

h1.heavy-title, h2.heavy-title, h3.heavy-title, h4.heavy-title {
  font-family: Roboto Flex;
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: left;
  font-variation-settings: "wdth" 65, "GRAD" 0, "slnt" 0, "XTRA" 468, "XOPQ" 80, "YOPQ" 65, "YTLC" 500, "YTUC" 660, "YTAS" 700, "YTDE" -170, "YTFI" 660;
}

p {
  font-family: "Roboto Flex", sans-serif;
  font-weight: 350;
  font-size: 18px;
  line-height: 1.33em;
  font-variation-settings: "wdth" 88, "opsz" 14, "slnt" 0, "GRAD" 0, "XTRA" 480, "XOPQ" 102, "YOPQ" 88, "YTLC" 485, "YTUC" 680, "YTAS" 720, "YTDE" -235, "YTFI" 680;
}

strong {
  font-weight: 750;
}

:root {
  --dnbr-green: #7CE4BB;
  --dnbr-grey: #EEE;
}

body {
  background-color: white;
  padding: 1rem;
  padding-top: 0;
  --top-bar-color: #EEE;
  line-height: 1.5em;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 400;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 350;
  font-size: 18px;
  line-height: 1.33em;
  font-variation-settings: "wdth" 88, "opsz" 14, "slnt" 0, "GRAD" 0, "XTRA" 480, "XOPQ" 102, "YOPQ" 88, "YTLC" 485, "YTUC" 680, "YTAS" 720, "YTDE" -235, "YTFI" 680;
  font-size: 1rem;
  --mdc-typography-font-family: "Roboto Flex", sans-serif;
}
body.dev-mode {
  --top-bar-color: #F00;
}
body.is-beta-user:not(body.dev-mode) {
  --top-bar-color: #7CE4BB;
}

.dnbr-top-bar {
  height: 0.5rem;
  margin: 0 -1rem;
  background-color: var(--top-bar-color);
  position: sticky;
  top: 0;
  z-index: 10;
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-slide {
  from {
    transform: translateY(100vw);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes modal-slide-top {
  from {
    transform: translateY(-200px);
  }
  to {
    transform: translateY(0);
  }
}
.modal-wrapper {
  transition: 0.3s;
  opacity: 1;
  animation: modal-fade 0.3s forwards;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .modal-wrapper {
    justify-content: flex-end;
  }
}
.modal-wrapper.modal-top-toast {
  background-color: transparent;
  height: 200px;
}
.modal-wrapper.modal-top-toast .modal-content {
  animation: modal-slide-top 0.3s forwards;
}
.modal-wrapper.modal-top-toast.hidden {
  animation: modal-slide-top 0.3s reverse;
}
@media (max-width: 900px) {
  .modal-wrapper.modal-top-toast .modal-content {
    max-width: 80vw;
    margin: 0 auto;
  }
}
.modal-wrapper.modal-alert {
  margin-top: 1rem;
  justify-content: center !important;
  position: static;
  top: unset;
  left: unset;
  width: unset;
  height: unset;
  background-color: transparent;
  animation: modal-fade 0.3s forwards !important;
}
.modal-wrapper.modal-alert .modal-content {
  animation: none !important;
  max-width: 355px;
  font-size: 16px;
  padding: 20px;
  background-color: #EEEEEE;
  border: 0;
  border-radius: 0.5em;
}
.modal-wrapper.modal-alert .modal-content ul {
  padding-left: 2rem;
}
.modal-wrapper.modal-alert .modal-content::before {
  display: none;
}
.modal-wrapper.modal-alert .modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.modal-wrapper.modal-alert .modal-header > i:first-child {
  font-size: 2rem;
  color: black;
}
.modal-wrapper.modal-alert .modal-header > i:last-child {
  font-size: 2rem;
  color: black;
  opacity: 0.5;
  cursor: pointer;
}
.modal-wrapper .modal-content {
  background-color: #E0E0E0;
  padding: 20px;
  padding-bottom: 20px;
  padding-top: 30px;
  max-width: 1200px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  position: relative;
  border-top: 2px solid white;
  animation: modal-slide 0.3s forwards;
  font-size: 1.25rem;
}
.modal-wrapper .modal-content .modal-copy-icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  margin: 1.25rem 0;
  cursor: pointer;
}
.modal-wrapper .modal-content .modal-copy-icon > i {
  color: black;
  font-size: 3rem;
}
.modal-wrapper .modal-content .modal-copy-icon.copied > i {
  position: relative;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-wrapper .modal-content .modal-copy-icon.copied > i::after {
  position: absolute;
  color: black;
  content: "check";
}
.modal-wrapper .modal-content p {
  margin-top: 0px;
}
.modal-wrapper .modal-content::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0px;
  right: 0px;
  height: 10px;
  background-color: #666666;
}
.modal-wrapper .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.modal-wrapper .modal-content .modal-header h2 {
  font-size: 1.5em;
  font-weight: 400;
  margin: 0;
}
.modal-wrapper .modal-content .modal-body {
  margin-bottom: 1rem;
  line-height: 1.2em;
}
.modal-wrapper .modal-content .modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4rem;
}
.modal-wrapper .modal-content .modal-footer button {
  margin-left: 1rem;
  background-color: #EFEFEF;
  font-size: 1.25rem;
}
.modal-wrapper .temporal-tip-bar {
  height: 0.5rem;
  background-color: #7CE4BB;
  animation: var(--duration) temporal-tip-animation forwards linear;
  width: 100%;
  transform-origin: left;
}
@keyframes temporal-tip-animation {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (max-width: 500px) {
  .modal-wrapper .modal-footer {
    margin: 0 !important;
    margin-top: 2rem !important;
  }
}

.main {
  display: grid;
  grid-template-columns: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

body:not(.dnbr-user-signed-in) .show-only-when-signed-in {
  display: none;
}

body.dnbr-user-signed-in .show-only-when-signed-out {
  display: none;
}

html:not([data-page=page-cookies]) .show-only-page-cookies {
  display: none;
}

html[data-page=page-cookies] .show-not-page-cookies {
  display: none;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@media (min-width: 901px) {
  .dnbr-mobile-only {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .dnbr-desktop-only {
    display: none !important;
  }
}
.mini-loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  animation: rotation 1s infinite linear;
  color: grey;
}

.mini-loading-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.mini-loading-logo.active {
  display: flex;
}
.mini-loading-logo.done #DunbarLogoMock {
  transition: 0.5s;
  animation: none;
}
.mini-loading-logo #DunbarLogoMock {
  transition: 0.5s;
  paint-order: stroke;
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  animation: mini-dash 2s ease-in-out infinite;
  stroke-width: 1.4rem;
}
.mini-loading-logo > p {
  font-size: 1.5rem;
  font-weight: bold;
}
@keyframes mini-dash {
  0% {
    stroke-dashoffset: 0;
    stroke-dasharray: 200;
  }
  50% {
    stroke-dashoffset: 2000;
    stroke-dasharray: 403;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 200;
  }
}

.set-mdc-colors {
  --mdc-theme-primary: #7CE4BB;
  --mdc-theme-secondary: #7CE4BB;
  --mdc-switch-selected-track-color: #52dba5;
  --mdc-switch-selected-focus-track-color: #3dd79a;
  --mdc-switch-selected-pressed-track-color: #52dba5;
  --mdc-switch-selected-icon-color: #7CE4BB;
  --mdc-switch-selected-focus-handle-color: #7CE4BB;
  --mdc-switch-selected-hover-handle-color: #7CE4BB;
  --mdc-switch-selected-pressed-handle-color: #7CE4BB;
  --mdc-switch-selected-hover-track-color: #3dd79a;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
}
.set-mdc-colors.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label {
  color: #2bcf8e;
}

@media (max-width: 600px) {
  .dnbr-mdc-mobile-fullwidth {
    width: 100%;
  }
}
.mdc-list-item__text {
  padding: 8px 0;
}

.align-children-center {
  display: flex;
  justify-content: center;
}

.align-children-right {
  display: flex;
  justify-content: flex-end;
}

.align-children-left {
  display: flex;
  justify-content: flex-start;
}

.valign-children-center {
  display: flex;
  align-items: center;
}

.valign-children-right {
  display: flex;
  align-items: flex-end;
}

.valign-children-left {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .align-children-center-sm {
    display: flex;
    justify-content: center;
  }
  .align-children-right-sm {
    display: flex;
    justify-content: flex-end;
  }
  .align-children-left-sm {
    display: flex;
    justify-content: flex-start;
  }
  .align-children-full-sm {
    display: flex;
    justify-content: stretch;
  }
  .valign-children-center-sm {
    display: flex;
    align-items: center;
  }
  .valign-children-right-sm {
    display: flex;
    align-items: flex-end;
  }
  .valign-children-left-sm {
    display: flex;
    align-items: flex-start;
  }
  .valign-children-full-sm {
    display: flex;
    align-items: stretch;
  }
}
.dnbr-context-btn {
  all: unset;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: grey;
  position: fixed;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
}
.dnbr-context-btn:hover {
  background-color: rgba(0, 0, 0, 0.082);
}

.lede-box {
  display: grid;
  min-height: 12.5rem;
  grid-template-rows: 4rem 1fr;
  grid-template-columns: 4rem 1fr;
  grid-template-areas: "d-square ." "title title";
  background-color: #7CE4BB;
  border-radius: 0.5em 0.5em 0 0;
}

.d-square {
  width: 4rem;
  height: 4rem;
  display: inline-grid;
  align-content: center;
  text-align: center;
  border-bottom: 1px solid white;
  border-top-left-radius: 0.5em;
}
.d-square .dnbr-icon {
  height: 1.5rem;
  margin: 0 auto;
}
.d-square:hover {
  background-color: #91e8c6;
}
.d-square:active {
  background-color: #bbf1dc;
}

.table-wrap {
  grid-area: title;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.event_name {
  padding: 1.5rem;
  margin: 0;
  font-family: "Roboto Flex";
  font-size: 28px;
  font-weight: 250;
  font-variation-settings: "wdth" 150, "opsz" 18, "slnt" 0, "GRAD" 0, "XTRA" 468, "XOPQ" 96, "YOPQ" 80, "YTLC" 520, "YTUC" 710, "YTAS" 750, "YTDE" -200, "YTFI" 710;
  font-weight: 700;
  text-align: right;
  font-size: 36px;
  line-height: 1.15em;
  display: flex;
  margin-top: auto;
  justify-content: flex-end;
}

:root {
  --linkbar-sq-size: 4rem;
}

@media (max-width: 500px) {
  :root {
    --linkbar-sq-size: 5rem;
  }
}
.linkbar {
  display: grid;
  background-color: #EEE;
  border-top: 1px solid white;
  text-decoration: none;
  grid-template-rows: var(--linkbar-sq-size);
  grid-template-columns: var(--linkbar-sq-size) 1fr;
  grid-template-areas: "icon link";
  overflow: hidden;
}
.linkbar:not(.icon-linkbar):not(.linkbar-no-hover):hover .link-icon {
  background-color: #d5d5d5;
}

.linkbar-light img, .linkbar-light .link-text, .linkbar-light .link-note {
  opacity: 0.6;
}

.linkbar:last-child {
  border-radius: 0 0 0.5em 0.5em;
}

.link-icon {
  grid-area: icon;
  display: inline-grid;
  align-content: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid white;
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.link-icon:hover {
  background-color: #d5d5d5;
}
.link-icon:active {
  background-color: #bbbbbb;
}

.link-icon > img {
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
}

.link-text {
  grid-area: link;
  border-bottom-right-radius: 0.5em;
  display: inline-grid;
  align-content: center;
  padding-left: 1.25em;
  text-overflow: ellipsis;
  color: black;
  text-decoration: none;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 0.25rem;
}

.link-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 4px;
}
@media (max-width: 600px) {
  .link-column {
    line-height: 1.2em;
  }
}

.link-note {
  line-height: 1rem;
  font-size: 1rem;
  padding-left: 1.25em;
  margin: 0px;
  opacity: 0.5;
  color: black;
}

.icon-linkbar {
  display: flex;
  height: var(--linkbar-sq-size);
}
.icon-linkbar .link-icon {
  width: var(--linkbar-sq-size);
}

.error-block {
  --primary-color: #c62828;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: var(--primary-color);
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin-bottom: 1rem;
}
.error-block > * {
  margin: 0;
  padding: 0;
  color: white;
}
.error-block > .error-icon {
  margin-right: 1rem;
}
.error-block > p {
  flex: 1;
}

.dnbr-action-button {
  background-color: white;
  color: var(--primary-color);
  border-radius: 0.2rem;
  padding: 3px 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}

.dnbr-action-button:hover {
  background-color: #e4e4e4;
}

.dnbr-action-button-loading {
  background-color: #cecece;
  color: #7b7b7b;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.dnbr-action-button-loading::after {
  content: "refresh";
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  vertical-align: bottom;
  animation: dnbr-spin 1s linear infinite;
  display: inline-block;
  margin-left: 0.4rem;
}

@keyframes dnbr-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.headline-box {
  margin: 2em 1em;
  font-family: "Roboto", sans-serif;
  text-align: left;
}
.headline-box h1 {
  font-weight: 400;
  margin: 0;
  line-height: 1em;
}

.cta-bar {
  margin-top: 1.5rem;
  display: grid;
  min-height: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 4rem 1fr;
  grid-template-areas: "button text";
  text-decoration: none;
}
.cta-bar .cta-button {
  grid-area: button;
  height: 4rem;
  display: inline-grid;
  align-content: center;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #eeeeee;
  color: black;
  font-weight: 900;
  font-size: 30px;
}
.cta-bar .cta-button img {
  max-width: 26px;
  margin: auto;
}
.cta-bar .cta-text {
  grid-area: text;
  margin-left: 1rem;
  display: inline-grid;
  align-content: center;
  color: black;
}
.cta-bar .cta-text .u {
  font-weight: 700;
}
.cta-bar .cta-text .l {
  opacity: 0.5;
  text-overflow: ellipsis;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
}
.cta-bar .cta-text .cta-row-full-width {
  max-width: unset;
  opacity: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cta-bar .cta-text .cta-row-full-width .dnbr-field {
  flex: 1;
  margin-bottom: 0;
  min-width: 10px;
}
@media (max-width: 600px) {
  .cta-bar .cta-text {
    line-height: 1.2em;
  }
}
.cta-bar.cta-bar-long-overflow .cta-text > .l {
  max-width: unset;
}

.dnbr-edit-group-ext_link > .cta-button {
  background-color: #3CB9FF;
  color: white;
  font-size: 2.3rem;
  font-weight: 400;
}

/*
// BUTTON BAR "btnbar" BOX

.btnbar-box {
    display:grid;
    grid-template-columns: global.$sq 1fr;
    height: global.$sq;

    margin-top: global.$sq / 2;

    text-decoration: none;

    .btnbar-text-box {
        grid-column: 2;
        display: inline-grid;
        align-content: center;
        padding-left: 1em;

        color: lighten(black,15%);

        .u {
            font-weight: 700;

        }
        .l {
            opacity: 0.75;

            &.short {
                text-overflow: ellipsis;
                max-width: 200px;
                white-space: nowrap;
                overflow: hidden;
            }
        }

    }

    .btnbar-icon-box {
        grid-column: 1;
        height: global.$sq;
        display: inline-grid;
        align-content: center;

        background-color: lighten(colors.$dnbr-green,15%);
        border-radius: 100%;
    }

    // ADD TO CALENDAR SPECIFIC BUTTON BAR

    .a2c-icon-box {
        grid-column: 1;
        display: inline-grid;
        align-content: center;

        background-color: lighten(colors.$lt-blue,15%);
        border-radius: 100%;

    }

    .btnbar-icon-box, .a2c-icon-box {

        .btnbar-icon {
            font-size: global.$sq / 2 ;
            text-align:center;

            color:white;

        }
    }

    // BTNBAR BOX HOVER EFFECTS
    &:hover {
        .a2c-icon-box {
            background-color: colors.$lt-blue;
        }

        .btnbar-text-box {
            color: black;
            .u {
                text-decoration: underline;
            }
        }

    }

}

*/
.dnbr-qr-code-dialog {
  background-color: white;
  position: fixed;
  border-radius: 0.5rem;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.21, 0.86, 0.25, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 41;
}
.dnbr-qr-code-dialog.open {
  opacity: 1;
}
.dnbr-qr-code-dialog.closing {
  transition: all 0.5s cubic-bezier(0.21, 0.86, 0.25, 1), opacity 0.3s 0.2s;
  background-color: #EEE;
}
.dnbr-qr-code-dialog.closing > canvas {
  animation: 0.3s fade-in-reverse;
  transform: scale(0.2);
  transition: 0.3s;
}
.dnbr-qr-code-dialog > canvas {
  opacity: 0;
  animation: 0.5s 0.2s fade-in forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in-reverse {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body.dnbr-qr-code-dialog-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  animation: fade-in 0.5s normal;
}

body.dnbr-qr-code-dialog-closing::after {
  animation: fade-in-reverse 0.15s normal forwards;
}

html[data-page=page-guest] body.has-splash-image,
html[data-page=page-guest] body.can-upload-splash-image,
html[data-page=page-guest-field] body {
  padding-top: 0px;
}

:root {
  --calendar-linkbar-num-rows: 3;
}

.main {
  max-width: var(--dnbr-max-width);
  display: block;
  display: flex;
  flex-direction: column;
}

.cta-list {
  display: grid;
  grid-template-rows: repeat(auto-fit, auto);
  margin-top: 2.5rem;
}

.cta-text {
  font-size: 18px;
}

.dnbr-qr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  border-top-right-radius: 0.5rem;
  cursor: pointer;
}
.dnbr-qr > i {
  color: white;
  font-size: 2rem;
}
.dnbr-qr > img {
  width: 54px;
  height: 54px;
  image-rendering: pixelated;
}
.dnbr-qr:hover {
  background-color: #91e8c6;
}

.dnbr-qr {
  display: none !important;
}

.dnbr-qr-full-screen {
  display: flex;
  position: relative;
  background-color: rgb(255, 255, 255);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.3s;
}
.dnbr-qr-full-screen.dnbr-qr-full-screen-active {
  opacity: 1;
  pointer-events: all;
}
.dnbr-qr-full-screen .dnbr-qr-overlay {
  position: absolute;
  max-width: 64px;
}
.dnbr-qr-full-screen .dnbr-qr-full-screen-canvas {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dnbr-qr-full-screen h2 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: auto;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Roboto Flex";
  font-size: 28px;
  font-weight: 250;
  font-variation-settings: "wdth" 150, "opsz" 18, "slnt" 0, "GRAD" 0, "XTRA" 468, "XOPQ" 96, "YOPQ" 80, "YTLC" 520, "YTUC" 710, "YTAS" 750, "YTDE" -200, "YTFI" 710;
  width: 100%;
  max-width: 800px;
  padding: 0px 20px;
  line-height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dnbr-qr-full-screen .dnbr-qr-close {
  cursor: pointer;
  margin-left: auto;
  margin-top: 20px;
  margin-right: 20px;
  font-size: 2rem;
}
.dnbr-qr-full-screen a {
  text-decoration: none;
  color: #7c7c7c;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 350;
  font-size: 18px;
  line-height: 1.33em;
  font-variation-settings: "wdth" 88, "opsz" 14, "slnt" 0, "GRAD" 0, "XTRA" 480, "XOPQ" 102, "YOPQ" 88, "YTLC" 485, "YTUC" 680, "YTAS" 720, "YTDE" -235, "YTFI" 680;
  max-width: min(40rem, 88vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dnbr-qr-full-screen .dnbr-sharing-bar {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 20px;
  top: 20px;
  user-select: none;
}
.dnbr-qr-full-screen .dnbr-sharing-bar img,
.dnbr-qr-full-screen .dnbr-sharing-bar i {
  width: 2rem;
}
.dnbr-qr-full-screen .dnbr-sharing-bar img:hover,
.dnbr-qr-full-screen .dnbr-sharing-bar i:hover {
  opacity: 0.8;
}
.dnbr-qr-full-screen .dnbr-sharing-bar i {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: black;
  color: white;
}
@media (max-width: 900px) {
  .dnbr-qr-full-screen .dnbr-sharing-bar {
    width: 100%;
    flex-direction: row;
    position: static;
    justify-content: space-around;
    margin-top: 1rem;
  }
}

@media print {
  .dnbr-sharing-bar {
    display: none !important;
  }
  .main {
    display: none;
  }
  .dnbr-share-section {
    height: auto;
  }
  body {
    padding: 0px !important;
  }
}
html[data-page=page-guest] body, html[data-page=page-guest-field] body {
  height: auto !important;
}
html[data-page=page-guest] .main, html[data-page=page-guest-field] .main {
  min-height: 100vh;
}

.dnbr-share-section {
  position: fixed;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  border-radius: 0.5rem;
  scroll-snap-align: start;
  background-color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dnbr-share-section .dnbr-qr-full-screen {
  opacity: 0;
  transition: 0.4s;
}
.dnbr-share-section > * {
  flex: 1;
}
.dnbr-share-section.active {
  border-radius: 0rem;
  opacity: 1;
  pointer-events: all;
  transition: 0.4s 0.1s cubic-bezier(0.29, 1.05, 0.42, 0.99);
  top: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
  right: 0px !important;
}
.dnbr-share-section.active .dnbr-qr-full-screen {
  opacity: 1;
  transition: 0.4s 0.2s;
}
.dnbr-share-section.close {
  opacity: 0 !important;
  transition: all 0.3s cubic-bezier(0.29, 1.05, 0.42, 0.99), opacity 0.3s 0.3s;
}
.dnbr-share-section.close .dnbr-qr-full-screen {
  opacity: 0;
  transition: 0.2s;
}

.dnbr-sharing-bar {
  display: none !important;
}

.dnbr-event-issues {
  position: sticky;
  bottom: 0rem;
  display: flex;
  flex-direction: column-reverse;
  margin-top: auto;
  width: calc(100% - 2rem);
  max-width: 40em;
  width: 100%;
  height: 6rem;
  pointer-events: none;
}
.dnbr-event-issues > * {
  pointer-events: all;
}
.dnbr-event-issues:hover .dnbr-event-issue:not(:first-child) {
  transform: translateY(0) scale(1);
}

.dnbr-event-issue:not(:first-child) {
  transform-origin: top center;
  transform: translateY(calc((var(--index) - 1) * 5.1rem)) scale(calc(1 - var(--index) / 266));
  transition: transform 0.2s;
}

.dnbr-event-issue {
  position: relative;
  z-index: calc(10 - var(--index));
}
.dnbr-event-issue > *:first-child {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.dnbr-event-issues .dnbr-health-test-choices {
  height: 0px;
  transition: height 0.2s;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  justify-content: space-around;
  align-items: center;
  background-color: rgb(243, 243, 243);
  margin-top: -1.5rem;
  margin-bottom: 1rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding-top: 0.5rem;
}

.dnbr-event-issues:hover .dnbr-health-test-choices {
  height: 4rem;
}

.dnbr-health-test-choices a {
  background-color: white;
  color: var(--primary-color);
  border-radius: 0.2rem;
  padding: 3px 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}
.dnbr-health-test-choices a:hover {
  background-color: #e4e4e4;
}

.dnbr-helper img {
  margin-left: 1rem;
  margin-top: 18px;
}
.dnbr-helper.dnbr-helper-linkbar img {
  margin-left: calc(var(--linkbar-sq-size) / 2 - 15px);
}
.dnbr-helper p,
.dnbr-helper p.dnbr-helper-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0px;
}
.dnbr-helper i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  font-size: 3rem;
}
.dnbr-helper a {
  color: rgba(0, 0, 0, 0.75);
}

.dnbr-final-items p {
  max-width: 40em;
  font-size: 18px;
  font-weight: 400;
  margin: auto;
  margin-top: 2rem;
}
.dnbr-final-items a {
  color: rgba(0, 0, 0, 0.75);
}

.dnbr-fix-time-message {
  font-size: 1.5rem;
  margin: 2rem 0px;
  font-weight: 300;
}

.dnbr-button-list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  border-radius: 0.5rem;
  background-color: #eee;
  overflow: hidden;
}
.dnbr-button-list > * {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 20px;
  font-size: 1rem;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  color: black;
  height: 4rem;
}
.dnbr-button-list > *:hover {
  background-color: #d5d5d5;
}
.dnbr-button-list > *:not(:first-child) {
  border-top: 1px solid white;
}

#calendar-name {
  text-transform: capitalize;
}

.calendar-no-preference:not(.unset) .calendar-links .link-icon:not(.active) > img {
  filter: saturate(0) brightness(0.6) contrast(5) contrast(0.3);
  opacity: 0.6;
  transition: 0.2s;
}
.calendar-no-preference:not(.unset) .calendar-links .link-icon:not(.active):hover > img {
  filter: unset;
  opacity: 1;
}

.dnbr-tip-no-scroll {
  overflow: hidden;
  touch-action: none;
}
@media (min-width: 900px) {
  .dnbr-tip-no-scroll {
    overflow: auto;
  }
}

.dnbr-tip-active .calendar-no-preference .multi-calendar-message,
.dnbr-tip-active .lede-box {
  position: relative;
}
.dnbr-tip-active .calendar-no-preference .multi-calendar-message::after,
.dnbr-tip-active .lede-box::after {
  opacity: 0.8;
}

.lede-box::after {
  content: "";
  position: absolute;
  transition: 0.3s;
  pointer-events: none;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("/static/img/dunbar-striping-light.png");
  opacity: 0;
  z-index: 1;
}

.calendar-links .link-column {
  padding-right: 60px;
}

.multi-calendar-message {
  pointer-events: none;
}
.multi-calendar-message .link-icon {
  border-right: 0px;
  font-size: 32px;
}
.multi-calendar-message .link-column > * {
  padding-left: 0px;
}

.dnbr-event-link-list {
  overflow: hidden;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
.dnbr-event-link-list .linkbar:last-child {
  border-radius: unset !important;
}

.dnbr-be-the-first-hide {
  overflow: hidden;
  height: 0px;
}

.dnbr-copy-animation {
  animation: copy-animation 0.5s;
}

.dnbr-copied {
  font-size: 34px;
}

@keyframes copy-animation {
  0% {
    font-size: 0px;
    opacity: 0;
  }
  40% {
    font-size: 42px;
  }
  100% {
    font-size: 34px;
    opacity: 1;
  }
}
.calendar-no-preference {
  position: relative;
  transition: 0.4s cubic-bezier(0.29, 1.05, 0.42, 0.99);
  overflow: hidden;
  height: var(--linkbar-sq-size);
}
.calendar-no-preference.open {
  height: calc(var(--linkbar-sq-size) * var(--calendar-linkbar-num-rows));
}
.calendar-no-preference:not(.open):not(.active) .icon-linkbar {
  cursor: pointer;
}
.calendar-no-preference:not(.open):not(.active) .icon-linkbar:hover .link-icon {
  background-color: #d5d5d5;
}
.calendar-no-preference .icon-linkbar .link-column {
  transition: 0.4s cubic-bezier(0.29, 1.05, 0.42, 0.99);
}
@media (max-width: 359px) {
  .calendar-no-preference .icon-linkbar .link-column .link-text {
    overflow: hidden;
    align-content: flex-start;
  }
}
.calendar-no-preference.unset.open .icon-linkbar .link-column {
  opacity: 1;
  pointer-events: none;
}
.calendar-no-preference:not(.unset).open .icon-linkbar .link-column {
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.calendar-no-preference .link-icon {
  transition: 0.4s cubic-bezier(0.29, 1.05, 0.42, 0.99);
  opacity: 1;
  min-width: var(--linkbar-sq-size);
}
.calendar-no-preference:not(.open):not(.active) .icon-linkbar .link-icon:not(.active) {
  overflow: hidden;
  width: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  min-width: 0rem;
}

.calendar-has-preference {
  position: relative;
}
.calendar-has-preference > *:not(:first-of-type) {
  margin-top: calc(-1 * var(--linkbar-sq-size) - 1px);
}
.calendar-has-preference.open > *:not(:first-of-type) {
  margin-top: 0px;
}
.calendar-has-preference > * {
  position: relative;
}
.calendar-has-preference:not(.open) > * {
  border-radius: 0 0 0.5em 0.5em;
}
.calendar-has-preference.open > *, .calendar-has-preference.do-transition > * {
  transition: 0.2s;
}
.calendar-has-preference > .active {
  z-index: 2;
}

.linkbar-expand-icon {
  position: absolute;
  height: var(--linkbar-sq-size);
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  margin-top: 0px !important;
  user-select: none;
  pointer-events: none;
}
.linkbar-expand-icon > i {
  pointer-events: all;
  transition: 0.3s;
  cursor: pointer;
  font-size: 38px;
  margin-right: 1rem;
  border-radius: 50%;
  color: #999999;
}
.linkbar-expand-icon > i:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.calendar-no-preference.open .linkbar-expand-icon > i {
  transform: rotate(180deg);
}

.dnbr-event-scroller {
  opacity: 0;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 5rem;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 1;
  pointer-events: none;
  transition: 0.4s;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 58%);
  text-shadow: 0px 0px 3px white;
}
.dnbr-event-scroller i {
  color: #4c4c4c;
}
.dnbr-event-scroller.hidden {
  opacity: 0;
}

.banner-wrapper {
  margin: -1rem;
  margin-bottom: -4rem;
  margin-top: 4rem;
}

.banner-section {
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-section h1 {
  font-family: "Roboto Flex";
  font-weight: 500;
  font-size: 42px;
  font-variation-settings: "wdth" 65, "opsz" 36, "slnt" 0, "GRAD" 0, "XTRA" 468, "XOPQ" 80, "YOPQ" 65, "YTLC" 500, "YTUC" 660, "YTAS" 700, "YTDE" -170, "YTFI" 660;
  font-size: 2rem;
  line-height: 42px;
}
.banner-section h2 {
  font-size: 2rem;
  font-family: "Roboto Flex";
  font-size: 28px;
  font-weight: 250;
  font-variation-settings: "wdth" 150, "opsz" 18, "slnt" 0, "GRAD" 0, "XTRA" 468, "XOPQ" 96, "YOPQ" 80, "YTLC" 520, "YTUC" 710, "YTAS" 750, "YTDE" -200, "YTFI" 710;
  line-height: 38px;
  font-weight: 400;
  margin: 0px;
  margin-bottom: 1rem;
}
.banner-section .banner-body {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.banner-tryit {
  background-color: #f6f6f6;
  display: block;
  text-decoration: none;
  color: black;
}
.banner-tryit h2 {
  margin-bottom: 2rem;
}

.linkbar-share {
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.share-linkbar {
  cursor: pointer;
}
.share-linkbar, .share-linkbar .link-note {
  font-size: 18px;
}
.share-linkbar .link-icon {
  font-size: 2rem;
}

.calendar-mobile-extra-line {
  display: none;
  min-height: var(--linkbar-sq-size);
}

@media (max-width: 500px) {
  .dnbr-event-link-list.can-grow-on-mobile {
    --calendar-linkbar-num-rows: 4;
  }
  .dnbr-event-link-list.has-no-preference .calendar-main-line {
    display: none;
  }
  .dnbr-event-link-list.has-no-preference .calendar-mobile-extra-line {
    display: flex;
  }
}
body.dnbr-tip-active:not(.dnbr-tip-active-out-final) .guest-nav .show-tips i {
  opacity: 1 !important;
}

.dnbr-tip-active::before,
.dnbr-tip-active-out::before,
.dnbr-tip-active-out-pre::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0.5rem;
  background-color: #EEE;
  z-index: 12;
}
.dnbr-tip-active.dev-mode::before,
.dnbr-tip-active-out.dev-mode::before,
.dnbr-tip-active-out-pre.dev-mode::before {
  background-color: #f00;
}
.dnbr-tip-active > .main > .guest-nav,
.dnbr-tip-active-out > .main > .guest-nav,
.dnbr-tip-active-out-pre > .main > .guest-nav {
  z-index: 10;
  pointer-events: none;
  background-color: transparent;
}
.dnbr-tip-active > .main > .guest-nav .account-chip,
.dnbr-tip-active-out > .main > .guest-nav .account-chip,
.dnbr-tip-active-out-pre > .main > .guest-nav .account-chip {
  transition: 0.1s 0.1s;
  opacity: 0;
}
.dnbr-tip-active > .main > .guest-nav .show-tips i,
.dnbr-tip-active-out > .main > .guest-nav .show-tips i,
.dnbr-tip-active-out-pre > .main > .guest-nav .show-tips i {
  opacity: 1;
}
.dnbr-tip-active > .main > .guest-nav a.show-tips span,
.dnbr-tip-active-out > .main > .guest-nav a.show-tips span,
.dnbr-tip-active-out-pre > .main > .guest-nav a.show-tips span {
  transition: 0.1s 0.1s;
  opacity: 0;
}
.dnbr-tip-active.dnbr-tip-active-out > .main > .guest-nav,
.dnbr-tip-active-out.dnbr-tip-active-out > .main > .guest-nav,
.dnbr-tip-active-out-pre.dnbr-tip-active-out > .main > .guest-nav {
  pointer-events: all !important;
}
.dnbr-tip-active .tip-container > .tip-nav > a,
.dnbr-tip-active-out .tip-container > .tip-nav > a,
.dnbr-tip-active-out-pre .tip-container > .tip-nav > a {
  opacity: 0;
}

.dnbr-tip-active.dnbr-tip-animation-done > .main > .guest-nav .show-tips i {
  opacity: 0 !important;
}
.dnbr-tip-active.dnbr-tip-animation-done .tip-container > .tip-nav > a {
  opacity: 1 !important;
}

body.dnbr-tip-active-out > .main > .guest-nav .account-chip {
  transition: 0.3s 0.2s !important;
  opacity: 1 !important;
}
body.dnbr-tip-active-out > .main > .guest-nav .show-tips span {
  transition: 0.3s !important;
  opacity: 0.25;
}
body.dnbr-tip-active-out > .main > .guest-nav .show-tips i {
  transition: 0.3s !important;
  opacity: 0.25;
}

body.dnbr-tip-active-out-pre > .main > .guest-nav .show-tips i {
  opacity: 1 !important;
}

.dnbr-tip-active [data-for-tip="0"] {
  transition: 0.3s;
}
.dnbr-tip-active [data-for-tip="0"] > a:first-of-type {
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}
.dnbr-tip-active [data-for-tip="0"] > a:last-of-type {
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
.dnbr-tip-active [data-for-tip="2"] {
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  margin-left: -1rem;
}
@media (max-width: 500px) {
  .dnbr-tip-active [data-for-tip="2"] {
    padding-left: 1.5rem;
  }
}
.dnbr-tip-active [data-for-tip="3"] {
  padding: 0.5rem 0;
  background-color: white;
  display: block;
}
.dnbr-tip-active [data-for-tip="3"] .tips-login-row {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
}
@media (max-width: 500px) {
  .dnbr-tip-active [data-for-tip="3"] .tips-login-row {
    padding-right: 1.5rem;
  }
}
.dnbr-tip-active [data-for-tip="3"] .tips-login-row#signed-out {
  margin-top: 2px;
}
[data-for-tip="3"] {
  display: none;
}

@keyframes stripes-fade-out {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 0;
  }
}
@keyframes stripes-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
.dnbr-tip-focus {
  z-index: 8;
  position: relative;
}
.dnbr-tip-focus::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("/static/img/dunbar-striping-light.png");
  opacity: 0.8;
  z-index: 7;
  pointer-events: none;
}
.dnbr-tip-focus[data-for-tip="1"]::after {
  opacity: 0;
}
.dnbr-tip-focus:not([data-for-tip="1"])::after {
  animation: stripes-fade-out 0.5s forwards;
}
.dnbr-tip-focus.unfocusing::after {
  animation: stripes-fade-in 0.5s forwards;
}
.dnbr-tip-focus.dnbr-tip-white-bg {
  background-color: white;
  border-radius: 0.5rem;
}
.dnbr-tip-focus.dnbr-helper {
  position: fixed;
  top: 4rem;
  background-color: white;
  background-color: transparent;
  background-image: url("/static/img/dunbar-striping-light.png");
  padding: 2rem;
  left: 0;
  width: 100%;
  z-index: 10;
}
.dnbr-tip-focus.dnbr-helper img {
  margin-left: 0px;
  display: none;
}

.dnbr-tip-bar {
  z-index: 7;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: -1rem;
  color: white;
}

.dnbr-tip-active > .main::after {
  position: fixed;
  top: 0.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("/static/img/dunbar-striping-light.png");
  z-index: 6;
  opacity: 0;
  animation: stripes-fade-in 0.5s forwards;
}

.dnbr-tip-active.dnbr-tip-animation-done > .main::after {
  animation: none;
  opacity: 0.8;
}

.dnbr-tip-active > .main {
  position: relative;
}
.dnbr-tip-active > .main .guest-nav-inline {
  display: flex;
}
.dnbr-tip-active > .main [data-for-tip]:not(.dnbr-tip-focus) {
  position: relative;
}
.dnbr-tip-active > .main [data-for-tip]:not(.dnbr-tip-focus)::before {
  z-index: 8;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.dnbr-tip-active > .main [data-for-tip]:not(.dnbr-tip-focus):active::before {
  background-color: rgba(255, 255, 255, 0.425);
}

.account-chip-block {
  width: var(--linkbar-sq-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.dnbr-user-signed-in .guest-nav > 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;
}

.guest-nav {
  z-index: 8;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  background-image: url("/static/img/dunbar-striping-light.png");
  background-color: white;
  transition: margin-bottom 0.3s 0.05s;
  margin-top: -1rem;
  height: 4rem;
  padding: 0;
}
.guest-nav:not(.guest-nav-inline) .account-chip-block {
  width: 4rem;
}
.guest-nav.guest-nav-inline {
  margin-top: 0px;
  display: none;
}
.guest-nav > a {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 1rem;
  font-weight: bold;
}
.guest-nav > a:hover i,
.guest-nav > a:hover .account-chip-text,
.guest-nav > a:hover span:not(.account-chip-block) {
  opacity: 0.75;
}
.guest-nav > a:active .account-chip-block {
  opacity: 1 !important;
}
.guest-nav > a:active i,
.guest-nav > a:active .account-chip-text,
.guest-nav > a:active span {
  opacity: 1 !important;
}
.guest-nav > a i {
  font-size: 2.5rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guest-nav > a img {
  max-width: 2.5rem;
  max-height: 2.5rem;
  border-radius: 100%;
}
.guest-nav > a:nth-child(2) {
  font-weight: 400;
}
.guest-nav > a:nth-child(2) u {
  font-weight: bold;
}
.guest-nav > a:nth-child(2) a {
  color: black;
  font-weight: bold;
}
.guest-nav.collapsed {
  background-image: none;
}
.guest-nav.collapsed span:not(.account-chip-block) {
  opacity: 0.25;
}
.guest-nav.collapsed i {
  opacity: 0.25;
}

.tip-container {
  position: fixed;
  z-index: 9;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: transparent;
  background-color: transparent;
  background-image: url("/static/img/dunbar-striping-light.png");
  transform: translateY(-13rem);
  transition: 0.3s margin, 0.3s transform;
}
@media (min-width: 600px) {
  .tip-container {
    margin-left: 0;
    margin-right: 0;
  }
}
.tip-container > .tip-nav,
.tip-container .tip-body,
.tip-container .tip-footer {
  max-width: min(40em, 100% - 2rem);
  margin: auto;
}
.tip-container > .tip-nav,
.tip-container > .tip-footer {
  height: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 0rem;
}
.tip-container > .tip-nav .tap-for-next-tip,
.tip-container > .tip-footer .tap-for-next-tip {
  color: grey;
  margin-left: 1rem;
}
.tip-container .tip-body,
.tip-container .tip-footer {
  transition: 0.3s opacity;
  opacity: 0;
}
.tip-container .tip-nav button.hide-tips > span {
  display: none;
}
.tip-container .tip-nav {
  cursor: pointer;
}
.tip-container .tip-nav > a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tip-container .tip-nav > a > i {
  width: 4rem;
}
.tip-container .tip-nav > button {
  opacity: 0.25;
}
.tip-container .tip-nav > button:hover {
  opacity: 0.75;
}
.tip-container .tip-nav > button:active {
  opacity: 1;
}
.tip-container .tip-footer {
  cursor: pointer;
}
.tip-container[data-focused-tip-index="3"] .tip-footer > * {
  margin-left: auto;
  flex-direction: row-reverse;
}
.tip-container[data-focused-tip-index="3"] .tip-footer > * > span {
  display: none;
  margin-right: 1rem;
}
.tip-container[data-focused-tip-index="3"] .tip-footer > *::after {
  content: var(--last-tip-text);
  color: grey;
  margin-right: 1rem;
  display: block;
}
.tip-container > .tip-body {
  display: flex;
  flex-direction: row;
}
.tip-container > .tip-body .tip-breadcrumbs {
  min-width: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tip-container > .tip-body .tip-breadcrumbs > .tip-breadcrumb {
  margin: 2px 0;
  width: 0.6rem;
  height: 1rem;
  border: 2px solid black;
  cursor: pointer;
}
.tip-container > .tip-body .tip-breadcrumbs > .tip-breadcrumb.active {
  background-color: black;
}
.tip-container > .tip-body > div:last-child {
  padding: 1rem 1rem;
}
.tip-container > .tip-body img {
  display: none;
}
.tip-container > .tip-body p {
  margin: 0;
  font-size: 1rem;
}
.tip-container > .tip-body p:first-of-type {
  font-weight: bold;
}
.tip-container.active {
  margin-top: 0;
  padding-top: 0.5rem;
  transform: translateY(0);
}
.tip-container.active .tip-body,
.tip-container.active .tip-footer {
  transition: 0.3s 0.3s opacity;
  opacity: 1;
}
.tip-container i {
  font-size: 2.5rem;
  color: black;
  width: var(--linkbar-sq-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tip-container button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.dnbr-sliding-tip-toast {
  z-index: 8;
  background-color: transparent;
  background-image: url("/static/img/dunbar-striping-light.png");
  padding: 1rem;
  line-height: 1.6rem;
  margin-top: 1rem;
  font-size: 18px;
  font-weight: bold;
  animation: slide-in-top forwards 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .dnbr-sliding-tip-toast {
    margin-top: -7em;
  }
}

.dnbr-sliding-tip-toast-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 11;
  background-color: transparent;
  background-image: url("/static/img/dunbar-striping-light.png");
  padding: 1rem;
  line-height: 1.6rem;
  margin-top: 1rem;
  font-size: 18px;
  font-weight: bold;
  animation: slide-in-bottom-full forwards 0.5s ease-in-out;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom-full {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*
// LEDE-BOX
.lede-box {
    display:grid;
    grid-template-columns: global.$sq 1fr;
    grid-template-rows: global.$sq 1fr global.$sq;
    grid-template-areas:
        "a a"
        "b b"
        "c d";


    .upper {
        grid-area: a;
        background-color: colors.$teal;

        border-top-left-radius: global.$b-rad;
        border-top-right-radius: global.$b-rad;
        z-index: 5;

        .logo-box {
            width: global.$sq;
            height: global.$sq;
            display: inline-grid;
            align-content: center;
            text-align: center;

            border-bottom: global.$b-style;
            border-top-left-radius: global.$b-rad;

            .dnbr-icon {
                height: 1.5em;
                margin: 0 auto;
            }

            &:hover {
                background-color:lighten(colors.$teal,5%);
            }

            &:active {
                background-color:lighten(colors.$teal,15%);
            }
        }
    }

    .event_name {
        grid-area: b;
        background-color: colors.$teal;
        padding: 2.2em 2em;

        border-bottom: $b-style;

        font-family: 'Roboto Slab', serif;
        font-weight: 700;
        text-align: right;

        h1 {
            margin: 0;
            line-height: 1.0em;
        }


    }

    .share-box {
        grid-area: c;
        background-color: colors.$grey;
        border-right: $b-style;
        border-bottom-left-radius: global.$b-rad;

        display:inline-grid;
        align-content: center;
        text-align: center;

        cursor: pointer;

        .share-icon {
            transform:rotate(-90deg);
        }

        &:hover {
            background-color:darken(colors.$grey, 10%);
        }

        &:active {
            background-color:darken(colors.$grey, 20%);
        }

    }

    .share-bar {
        grid-area: d;
        background-color: colors.$grey;

        border-bottom-right-radius: $b-rad;

        display: inline-grid;
        align-content: center;
        padding-left: 1.25em;

        text-overflow: ellipsis;

        a {
            &.anim{ text-decoration: none; }
        }
    }
}

// HEADLINE BOX
.headline-box {
    padding:2em 1em;

    font-family: 'Roboto', sans-serif;
    text-align: left;

    h1 {
        font-weight: 400;
        margin: 0;
        line-height: 1.0em;
    }
}

// NEXT STEP BOX

.next-step-box {

}




// BUTTON BAR "btnbar" BOX

.btnbar-box {
    display:grid;
    grid-template-columns: global.$sq 1fr;
    height: global.$sq;

    margin-top: global.$sq / 2;

    text-decoration: none;

    .btnbar-text-box {
        grid-column: 2;
        display: inline-grid;
        align-content: center;
        padding-left: 1em;

        color: lighten(black,15%);

        .u {
            font-weight: 700;

        }
        .l {
            opacity: 0.75;

            &.short {
                text-overflow: ellipsis;
                max-width: 200px;
                white-space: nowrap;
                overflow: hidden;
            }
        }

    }

    .btnbar-icon-box {
        grid-column: 1;
        height: global.$sq;
        display: inline-grid;
        align-content: center;

        background-color: lighten(colors.$dnbr-green,15%);
        border-radius: 100%;
    }

    // ADD TO CALENDAR SPECIFIC BUTTON BAR

    .a2c-icon-box {
        grid-column: 1;
        display: inline-grid;
        align-content: center;

        background-color: lighten(colors.$lt-blue,15%);
        border-radius: 100%;

    }

    .btnbar-icon-box, .a2c-icon-box {

        .btnbar-icon {
            font-size: global.$sq / 2 ;
            text-align:center;

            color:white;

        }
    }

    // BTNBAR BOX HOVER EFFECTS
    &:hover {
        .a2c-icon-box {
            background-color: colors.$lt-blue;
        }

        .btnbar-text-box {
            color: black;
            .u {
                text-decoration: underline;
            }
        }

    }

}



// Generic row

.row-box {
    display:grid;
    grid-template-columns: 1fr;
    margin-top: global.$sq / 2;

    margin: (global.$sq / 2) 1em 0;


}




// QUORUM STYLING

.quorum {
    padding-left:0;

    li {
        list-style: none;
        margin: 0.5em 0;
        padding: 1em;

        font-size: 1em;
        font-weight: 700;
        line-height:1;

        border-radius: $b-rad;

        background-color: colors.$grey;

        &:only-child {
            background-color: colors.$dnbr-green;
        }

    }
}
*/
.next-tip > i.material-icons {
  color: #7CE4BB;
}

.tips-main-line {
  text-decoration: underline;
  text-decoration-color: #7CE4BB;
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
}

.dnbr-tip-focus .cta-bar {
  cursor: default;
}

.dnbr-tip-focus .account-chip {
  cursor: default;
}

.dnbr-tip-focus .linkbar,
.dnbr-tip-focus .linkbar a {
  cursor: default !important;
}

body[data-dev-focus-style="1"] .dnbr-event-link-list.dnbr-tip-focus .calendar-no-preference .icon-linkbar .link-icon:not(:hover) {
  outline: #7ce4bb 3px solid;
  --outline-offset: -6px;
  animation: outline-fly-in 0.15s forwards;
}
body[data-dev-focus-style="1"] .linkbar-share.dnbr-tip-focus .linkbar:not(:hover) .link-icon {
  outline: #7ce4bb 3px solid;
  --outline-offset: -8px;
  animation: outline-fly-in 0.15s forwards;
}
body[data-dev-focus-style="1"] .dnbr-tip-focus[data-for-tip="3"] .tips-login-row > div {
  outline: #7ce4bb 3px solid;
  --outline-offset: 5px;
  animation: outline-fly-in 0.15s forwards;
}
body[data-dev-focus-style="1"] .dnbr-tip-focus .cta-button {
  outline: #7ce4bb 3px solid;
  --outline-offset: -5px;
  animation: outline-fly-in 0.15s forwards;
}
@keyframes outline-fly-in {
  0% {
    outline-offset: 5px;
  }
  100% {
    outline-offset: var(--outline-offset);
  }
}

body[data-dev-focus-style="2"] .dnbr-event-link-list.dnbr-tip-focus .calendar-no-preference .icon-linkbar .link-icon:not(:hover),
body[data-dev-focus-style="2"] .linkbar-share.dnbr-tip-focus .linkbar:not(:hover) .link-icon,
body[data-dev-focus-style="2"] .dnbr-tip-focus[data-for-tip="3"] .tips-login-row > div,
body[data-dev-focus-style="2"] .dnbr-tip-focus .cta-button {
  box-shadow: inset 0px 0px 0px 6px #7ce4bb;
}

body[data-dev-focus-style="3"] .dnbr-event-link-list.dnbr-tip-focus .calendar-no-preference .icon-linkbar .link-icon:not(:hover),
body[data-dev-focus-style="3"] .linkbar-share.dnbr-tip-focus .linkbar:not(:hover) .link-icon,
body[data-dev-focus-style="3"] .dnbr-tip-focus[data-for-tip="3"] .tips-login-row > div,
body[data-dev-focus-style="3"] .dnbr-tip-focus .cta-button {
  box-shadow: inset 0px 0px 9px 4px #7ce4bb;
}

body[data-dev-focus-style="4"] .dnbr-event-link-list.dnbr-tip-focus .calendar-no-preference .icon-linkbar .link-icon:not(:hover) > img,
body[data-dev-focus-style="4"] .linkbar-share.dnbr-tip-focus .linkbar:not(:hover) .link-icon,
body[data-dev-focus-style="4"] .dnbr-tip-focus[data-for-tip="3"] .tips-login-row > div,
body[data-dev-focus-style="4"] .dnbr-tip-focus .cta-button > img {
  filter: drop-shadow(0px 0px 5px #7ce4bb) drop-shadow(0px 0px 14px #7ce4bb);
}

body[data-dev-focus-style="5"] .dnbr-event-link-list.dnbr-tip-focus .calendar-no-preference .icon-linkbar .link-icon,
body[data-dev-focus-style="5"] .linkbar-share.dnbr-tip-focus .linkbar:not(:hover) .link-icon,
body[data-dev-focus-style="5"] .dnbr-tip-focus[data-for-tip="3"] .tips-login-row > div,
body[data-dev-focus-style="5"] .dnbr-tip-focus .cta-button,
body:not([data-dev-focus-style]) .dnbr-event-link-list.dnbr-tip-focus .calendar-no-preference .icon-linkbar .link-icon,
body:not([data-dev-focus-style]) .linkbar-share.dnbr-tip-focus .linkbar:not(:hover) .link-icon,
body:not([data-dev-focus-style]) .dnbr-tip-focus[data-for-tip="3"] .tips-login-row > div,
body:not([data-dev-focus-style]) .dnbr-tip-focus .cta-button {
  background-color: #7ce4bb !important;
}
body[data-dev-focus-style="5"] .dnbr-tip-focus[data-for-tip="3"] .tips-login-row > div,
body:not([data-dev-focus-style]) .dnbr-tip-focus[data-for-tip="3"] .tips-login-row > div {
  outline: 4px solid #7CE4BB;
}

@keyframes box-shadow-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes box-shadow-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.shadow-box-transitioning {
  animation: box-shadow-fade-out forwards 1s !important;
}

[data-shadow-tip-index="2"] {
  border-radius: 50px !important;
}

.dnbr-timeline-details {
  padding: 0px calc(var(--linkbar-sq-size) / 2 / 2);
  font-family: "Roboto Flex", sans-serif;
  font-weight: 350;
  font-size: 18px;
  line-height: 1.33em;
  font-variation-settings: "wdth" 88, "opsz" 14, "slnt" 0, "GRAD" 0, "XTRA" 480, "XOPQ" 102, "YOPQ" 88, "YTLC" 485, "YTUC" 680, "YTAS" 720, "YTDE" -235, "YTFI" 680;
  font-size: 18px;
  margin-block-start: 1em;
  margin-block-end: 1em;
  overflow-wrap: break-word;
}
.dnbr-timeline-details > h2 {
  margin-top: 0px;
  opacity: 0.5;
  font-family: "Roboto Flex";
  font-weight: 500;
  font-size: 42px;
  font-variation-settings: "wdth" 65, "opsz" 36, "slnt" 0, "GRAD" 0, "XTRA" 468, "XOPQ" 80, "YOPQ" 65, "YTLC" 500, "YTUC" 660, "YTAS" 700, "YTDE" -170, "YTFI" 660;
}
.dnbr-timeline-details > #dnbr-details div, .dnbr-timeline-details > #dnbr-details ul, .dnbr-timeline-details > #dnbr-details ol, .dnbr-timeline-details p {
  font-size: 18px !important;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.dnbr-timeline-info {
  display: flex;
  flex-direction: row;
  padding-top: 10px;
  position: relative;
}
@media (max-width: 900px) {
  .dnbr-timeline-info[data-mode=edit]::before {
    display: none;
  }
}
.dnbr-timeline-info::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  bottom: 0px;
  left: calc(var(--linkbar-sq-size) / 2 - 2px);
  width: 4px;
  background-color: #7CE4BB;
}
.dnbr-timeline-info > *:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: var(--linkbar-sq-size);
  min-width: var(--linkbar-sq-size);
  height: var(--linkbar-sq-size);
}
.dnbr-timeline-info > *:first-child i {
  background-color: white;
  border: 6px solid white;
  color: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  font-size: 45px;
}
.dnbr-timeline-info > *:not(:first-child) {
  flex: 1;
  overflow: hidden;
  padding: 0px 1.25rem;
  padding-top: 0.25rem;
}
.dnbr-timeline-info > *:not(:first-child) h1, .dnbr-timeline-info > *:not(:first-child) h2, .dnbr-timeline-info > *:not(:first-child) h3, .dnbr-timeline-info > *:not(:first-child) p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dnbr-timeline-info > a:not(:first-child) {
  text-decoration: none;
  color: black;
}
.dnbr-timeline-info > a:not(:first-child) h3 {
  text-decoration: underline;
}
.dnbr-timeline-info h3 {
  font-size: 18px;
}

.dnbr-event-link-list + .dnbr-timeline-info {
  padding-top: 20px;
}

body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool::after {
  top: 2.5rem !important;
}

body.dnbr-can-edit .dnbr-timeline-info.dnbr-edit-tool,
body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
}
body.dnbr-can-edit .dnbr-timeline-info.dnbr-edit-tool[data-mode=view],
body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool[data-mode=view] {
  position: relative;
}
body.dnbr-can-edit .dnbr-timeline-info.dnbr-edit-tool[data-mode=view]::after,
body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool[data-mode=view]::after {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--linkbar-sq-size);
  height: var(--linkbar-sq-size);
  left: calc(var(--linkbar-sq-size) * -1);
  top: 0.5rem;
  font-size: 2.5rem;
  opacity: 0;
  content: "edit";
}
body.dnbr-can-edit .dnbr-timeline-info.dnbr-edit-tool:hover, body.dnbr-can-edit .dnbr-timeline-info.dnbr-edit-tool[data-mode=edit],
body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool:hover,
body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool[data-mode=edit] {
  position: relative;
}
body.dnbr-can-edit .dnbr-timeline-info.dnbr-edit-tool:hover::after, body.dnbr-can-edit .dnbr-timeline-info.dnbr-edit-tool[data-mode=edit]::after,
body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool:hover::after,
body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool[data-mode=edit]::after {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--linkbar-sq-size);
  height: var(--linkbar-sq-size);
  left: calc(var(--linkbar-sq-size) * -1);
  top: 0.5rem;
  font-size: 2.5rem;
  opacity: 0.25;
  cursor: pointer;
  content: "edit";
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  vertical-align: bottom;
}
body.dnbr-can-edit .dnbr-timeline-info.dnbr-edit-tool[data-mode=edit]::after,
body.dnbr-can-edit .dnbr-timeline-details.dnbr-edit-tool[data-mode=edit]::after {
  content: "done";
  opacity: 1;
}

.dnbr-timeline-marker {
  display: block;
  margin-left: calc(var(--linkbar-sq-size) / 2 - 2px);
  min-height: 35px;
  border-left: 4px solid #7CE4BB;
}
.dnbr-timeline-marker.smaller {
  min-height: 23px;
}

.dnbr-timeline-start {
  margin-top: 4rem;
  margin-bottom: -1px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.dnbr-timeline-start .d-square {
  border-radius: 0.5rem;
  background-color: #7CE4BB;
  width: var(--linkbar-sq-size);
  height: var(--linkbar-sq-size);
}

body:not(.timeline-start-invisible) .lede-box .d-square {
  transition: 0.3s opacity ease-in-out;
  opacity: 0;
  pointer-events: none;
}

body.timeline-start-invisible .lede-box .d-square {
  transition: 0.3s opacity ease-in-out;
  opacity: 1;
  pointer-events: all;
}

.dnbr-timeline-calendar.dnbr-tip-focus {
  margin: -1rem;
  border: 1rem solid white;
  background-color: white;
  border-radius: 0.5rem;
}

.dnbr-timeline-calendar .dnbr-calendar-list {
  display: flex;
  flex-direction: column;
}
.dnbr-timeline-calendar .dnbr-calendar-list > *:first-child > div:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.dnbr-timeline-calendar .dnbr-calendar-list > *:last-child > div:first-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.dnbr-timeline-calendar.active .dnbr-timeline-calendar-shrunk {
  display: none;
}
.dnbr-timeline-calendar.active .dnbr-timeline-calendar-toggle {
  opacity: 0.5;
}
.dnbr-timeline-calendar.active .dnbr-timeline-calendar-toggle:hover > div:first-child {
  background-color: transparent;
}
.dnbr-timeline-calendar.active .dnbr-timeline-calendar-toggle > div:first-child {
  background-color: transparent;
}
.dnbr-timeline-calendar.active .dnbr-timeline-calendar-toggle > div:first-child i {
  transform: scale(1, -1);
}
.dnbr-timeline-calendar:not(.active) .dnbr-timeline-calendar-expanded {
  display: none;
}
.dnbr-timeline-calendar:not(.active) .dnbr-calendar-list > *.active > div:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.dnbr-timeline-calendar:not(.active) .dnbr-timeline-calendar-toggle > div:first-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.dnbr-timeline-calendar:not(.active) .link-icon:not(.active):not(.dnbr-timeline-calendar-toggle),
.dnbr-timeline-calendar:not(.active) .dnbr-timeline-calendar-btn:not(.active):not(.dnbr-timeline-calendar-toggle) {
  height: 0px;
  pointer-events: none;
  overflow: hidden;
}
.dnbr-timeline-calendar:not(.active) .link-icon:not(.active):not(.dnbr-timeline-calendar-toggle) > div:last-child,
.dnbr-timeline-calendar:not(.active) .dnbr-timeline-calendar-btn:not(.active):not(.dnbr-timeline-calendar-toggle) > div:last-child {
  opacity: 0;
}
.dnbr-timeline-calendar .link-icon, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn {
  all: unset;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  height: var(--linkbar-sq-size);
  transition: 0.4s height cubic-bezier(0.29, 1.05, 0.42, 0.99);
}
.dnbr-timeline-calendar .link-icon:hover div:first-child, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn:hover div:first-child {
  background-color: #d5d5d5;
}
.dnbr-timeline-calendar .link-icon.active div:first-child, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn.active div:first-child {
  background-color: #7CE4BB;
}
.dnbr-timeline-calendar .link-icon.active div:last-child, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn.active div:last-child {
  color: black;
}
.dnbr-timeline-calendar .link-icon div:first-child, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:first-child {
  width: var(--linkbar-sq-size);
  height: var(--linkbar-sq-size);
  background-color: #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid white;
}
.dnbr-timeline-calendar .link-icon div:first-child i, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:first-child i {
  font-size: 2.5rem;
  color: #999999;
}
.dnbr-timeline-calendar .link-icon div:first-child i.dnbr-timeline-calendar-expand, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:first-child i.dnbr-timeline-calendar-expand {
  font-size: 3.5rem;
}
.dnbr-timeline-calendar .link-icon div:first-child img, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:first-child img {
  max-width: 2rem;
}
.dnbr-timeline-calendar .link-icon div:last-child, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 1.25rem;
  padding-top: 0.25rem;
  color: #999999;
}
.dnbr-timeline-calendar .link-icon div:last-child h1, .dnbr-timeline-calendar .link-icon div:last-child h2, .dnbr-timeline-calendar .link-icon div:last-child h3, .dnbr-timeline-calendar .link-icon div:last-child p, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:last-child h1, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:last-child h2, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:last-child h3, .dnbr-timeline-calendar .dnbr-timeline-calendar-btn div:last-child p {
  margin: 0;
}

#dnbr-details-editor {
  border-bottom: 4px dashed black;
}

#dnbr-details-editor > .codex-editor > .codex-editor__redactor {
  padding-bottom: 0 !important;
}

.dnbr-details-saving {
  position: relative;
}
.dnbr-details-saving::after {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  content: "cloud_upload";
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  vertical-align: bottom;
  animation: dnbr-input-pulsing 3s linear infinite;
  opacity: 0.5;
}

.dnbr-details-saved {
  position: relative;
}
.dnbr-details-saved::after {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  content: "check";
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  vertical-align: bottom;
}

@keyframes dnbr-save-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ce-paragraph {
  line-height: 1.333em !important;
  margin: 0 !important;
}

.ce-block {
  line-height: 1.333em !important;
  margin-block-start: 1em;
  margin-block-end: 1em;
  font-size: 18px !important;
}

.ce-header {
  padding: 0 !important;
}

.cdx-block {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.cdx-list__item {
  padding: 0 !important;
  line-height: 1.333em !important;
}

.dnbr-event-image-upload {
  background-color: #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-top: 1rem;
  border: dashed 10px #e7e7e7;
  min-height: 200px;
  max-width: calc(100vw - 2rem);
}
.dnbr-event-image-upload.highlight {
  border-color: #7CE4BB;
}
.dnbr-event-image-upload input {
  display: none;
}
.dnbr-event-image-upload i {
  opacity: 0.5;
  font-size: 3rem;
}
.dnbr-event-image-upload p {
  font-size: 16px;
  opacity: 0.5;
  margin: 0;
  margin-top: 0.5rem;
  max-width: 100%;
}
.dnbr-event-image-upload.has-file .when-no-file {
  display: none !important;
}
.dnbr-event-image-upload.loading .when-no-file {
  display: none !important;
}
.dnbr-event-image-upload:not(.has-file) .when-has-file {
  display: none;
}
.dnbr-event-image-upload:not(.loading) progress {
  display: none;
}
.dnbr-event-image-upload:not(.has-file) {
  cursor: pointer;
}
.dnbr-event-image-upload .when-no-file {
  cursor: pointer;
  text-align: center;
}
.dnbr-event-image-upload div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.dnbr-event-image-upload canvas {
  max-width: calc(100% - 2rem);
  max-height: 80vh;
}
.dnbr-event-image-upload .dnbr-event-image-btn-bar {
  width: calc(100% - 2rem);
  margin: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.dnbr-image-container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dfdfdf;
  height: calc(min(100vw - 2rem - var(--scrollbar-width, 0px), var(--dnbr-max-width)) * 1 / var(--aspect));
  position: relative;
}
@media (max-width: 500px) {
  .dnbr-image-container {
    margin-left: min((var(--dnbr-max-width) - 100vw) / 2, -1rem);
    margin-right: min((var(--dnbr-max-width) - 100vw) / 2, -1rem);
    height: calc(min(100vw - 2rem - var(--scrollbar-width, 0px), 500px) * 1 / var(--aspect));
  }
}
.dnbr-image-container.swapping {
  max-height: 100px;
}
.dnbr-image-container.swapping img, .dnbr-image-container.swapping canvas {
  opacity: 0.3;
  filter: blur(2px);
  max-height: 100%;
}
.dnbr-image-container img, .dnbr-image-container canvas {
  position: absolute;
  max-width: 100%;
}
.dnbr-image-container canvas {
  position: absolute;
  width: min(100%, var(--image-width));
  height: min(100%, var(--image-height));
}
.dnbr-image-container:hover .dnbr-image-edit-bar, .dnbr-image-container.swapping .dnbr-image-edit-bar {
  opacity: 1;
  pointer-events: all;
}
.dnbr-image-container.swapping .dnbr-image-edit-bar-btn:last-child {
  display: none;
}

.dnbr-image-edit-bar {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.678);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
@media (max-width: 900px) {
  .dnbr-image-edit-bar {
    left: 50%;
    top: 50%;
    bottom: unset;
    right: unset;
    transform: translate(-50%, -50%);
  }
}
.dnbr-image-edit-bar .dnbr-image-edit-bar-btn {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  cursor: pointer;
  border-radius: 0.5rem;
}
.dnbr-image-edit-bar .dnbr-image-edit-bar-btn > i {
  font-size: 2rem;
}
.dnbr-image-edit-bar .dnbr-image-edit-bar-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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