.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);
}

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