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

body {
  height: auto !important;
}

.main {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  max-width: calc(40rem - 40px);
}

.table {
  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;
  display: grid;
  grid-template-columns: auto 0.5fr 1fr 0.25fr;
  border-radius: 0.5em;
  border: 1px solid #f0f0f0;
  background-color: #FFF;
  overflow: auto;
  padding-bottom: 10px;
}
.table img {
  max-width: 20px;
  vertical-align: middle;
}

.table-header {
  display: contents;
}
.table-header > * {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  color: rgb(43, 43, 43);
  font-weight: bold;
  text-align: left;
  padding: 10px 10px;
}
.table-header > *:not(:last-child) {
  border-right: 1px solid #EEE;
}

.table-body {
  display: contents;
}

.table-row {
  display: contents;
}
.table-row > * {
  text-align: left;
  padding: 6px 10px;
}
.table-row:nth-child(even) > * {
  background-color: #f0f0f0;
}
.table-row input {
  border: 2px solid transparent;
  background-color: transparent;
  border-radius: 3px;
  outline: none;
  padding: 2px;
}
.table-row input:hover, .table-row input:focus {
  border: 2px solid #6e6e6e;
  background-color: #ececec;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}

.table-action {
  text-align: center;
  cursor: pointer;
  color: #b1b1b1;
  user-select: none;
}

.table-row:hover .table-action:hover {
  color: rgb(255, 0, 0);
}

.table-row:hover .table-action:active {
  color: black;
}

.dnbr-cookies-header {
  margin: 0.67em 0;
  margin-top: 38px;
  margin-bottom: 1rem;
  line-height: 1.2em;
}

h1.dnbr-cookies-header {
  margin-top: 1rem;
}

.dnbr-cookies-p {
  line-height: 1.2em;
}

.dnbr-cookies-fields {
  margin-top: 1.5rem;
}

@media (max-width: 765px) {
  .btn-recent {
    margin-top: 1rem;
  }
}
.dnbr-cookies-fields-dark {
  background-color: #EEEEEE;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.dnbr-cookies-fields-dark > div {
  padding: 20px;
  border-bottom: 2px solid white;
  display: flex;
  flex-direction: column;
}
.dnbr-cookies-fields-dark > div p {
  margin: 0;
  padding-right: 0.4rem;
}
.dnbr-cookies-fields-dark > div.dnbr-cookies-fields-dark-right-align {
  align-items: flex-end;
}
.dnbr-cookies-fields-dark > div.dnbr-cookies-fields-dark-switch-table {
  display: flex;
  flex-direction: row;
}
.dnbr-cookies-fields-dark > div.dnbr-cookies-fields-dark-switch-table > *:first-child {
  flex: 1;
}
@media (max-width: 600px) {
  .dnbr-cookies-fields-dark > div.dnbr-cookies-fields-dark-switch-table > *:first-child {
    cursor: pointer;
  }
}
.dnbr-cookies-fields-dark > div.dnbr-cookies-fields-dark-switch-table > div:last-child {
  width: 4rem;
  min-width: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.dnbr-cookies-fields-dark > div.dnbr-cookies-fields-dark-switch-table > *:not(:last-child) {
  margin-bottom: 0;
}
.dnbr-cookies-fields-dark > div.dnbr-cookies-fields-dark-switch-table > .dnbr-cookies-fields-dark-switch-table-auto {
  width: auto !important;
}
.dnbr-cookies-fields-dark > div > *:not(:last-child) {
  margin-bottom: 1rem;
}

.dnbr-cookies-fields-dark .account-chip {
  margin-right: -0.5rem;
  pointer-events: none;
}

body:not(.dnbr-user-signed-in) [data-cookie-mask=loggedIn], body:not(.dnbr-user-signed-in) [data-cookie-mask=autoRestrictSheet] {
  pointer-events: none;
}
body:not(.dnbr-user-signed-in) [data-cookie-mask=loggedIn] p, body:not(.dnbr-user-signed-in) [data-cookie-mask=autoRestrictSheet] p {
  color: grey;
}
body:not(.dnbr-user-signed-in) [data-cookie-mask=loggedIn] .mdc-switch, body:not(.dnbr-user-signed-in) [data-cookie-mask=autoRestrictSheet] .mdc-switch {
  opacity: 0.5;
  filter: grayscale(1);
}
body:not(.dnbr-user-signed-in) [data-cookie-mask=loggedIn] .mdc-switch.mdc-switch--selected .mdc-switch__handle, body:not(.dnbr-user-signed-in) [data-cookie-mask=autoRestrictSheet] .mdc-switch.mdc-switch--selected .mdc-switch__handle {
  transform: translateY(-50%) translateX(-89%) !important;
}
body:not(.dnbr-user-signed-in) [data-cookie-mask=loggedIn] .mdc-switch.mdc-switch--selected .mdc-switch__handle::after, body:not(.dnbr-user-signed-in) [data-cookie-mask=autoRestrictSheet] .mdc-switch.mdc-switch--selected .mdc-switch__handle::after {
  background: var(--mdc-switch-unselected-handle-color, #616161);
}
body:not(.dnbr-user-signed-in) [data-cookie-mask=loggedIn] *, body:not(.dnbr-user-signed-in) [data-cookie-mask=autoRestrictSheet] * {
  pointer-events: none;
}
body:not(.dnbr-user-signed-in) [data-cookie-mask=loggedIn] > p::after, body:not(.dnbr-user-signed-in) [data-cookie-mask=autoRestrictSheet] > p::after {
  margin-top: 1rem;
  content: "(requires a linked Google email)";
  color: red;
  display: flex;
}

[data-dnbr-cookie-add-me-as-editor=false] [data-cookie-mask=autoRestrictSheet] {
  pointer-events: none;
}
[data-dnbr-cookie-add-me-as-editor=false] [data-cookie-mask=autoRestrictSheet] p {
  color: grey;
}
[data-dnbr-cookie-add-me-as-editor=false] [data-cookie-mask=autoRestrictSheet] .mdc-switch {
  opacity: 0.5;
}
[data-dnbr-cookie-add-me-as-editor=false] [data-cookie-mask=autoRestrictSheet] * {
  pointer-events: none;
}
[data-dnbr-cookie-add-me-as-editor=false] [data-cookie-mask=autoRestrictSheet] > p::after {
  margin-top: 1rem;
  content: "(requires #autoclaim)";
  color: red;
  display: flex;
}

input[type=email] {
  padding: 2px 10px;
  height: 43px;
  margin: auto;
  border-radius: 0.5rem;
  border: 1px solid black;
}

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