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

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

[data-page=page-new] .splash-new-wrapper {
  padding-bottom: 3rem;
}
[data-page=page-new] .splash-new-wrapper .splash-new-block:not(:hover):not(:nth-child(2)) {
  background-color: #a6ecd1;
}
[data-page=page-new] .splash-new-wrapper .splash-new-block:not(:hover):not(:nth-child(2)) > * {
  opacity: 0.5;
}
[data-page=page-new] .splash-new-wrapper .splash-new-block:nth-child(2) {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.15);
}

[data-page=page-new] .splash-new-wrapper,
[data-page=page-index] .splash-hero-wrapper {
  position: relative;
}
[data-page=page-new] .splash-new-wrapper::before,
[data-page=page-index] .splash-hero-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 410px;
  background-color: #7CE4BB;
}
@media (max-width: 1150px) {
  [data-page=page-new] .splash-new-wrapper::before,
  [data-page=page-index] .splash-hero-wrapper::before {
    height: 805px;
  }
}

.splash-new {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.splash-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #999999;
  color: white;
  margin: 2rem auto;
  margin-bottom: 3rem;
  cursor: pointer;
  user-select: none;
}
.splash-down > i {
  font-size: 2.5rem;
}

.splash-new .splash-new-block {
  background-color: #D1F6E7;
  border-radius: 10px;
  border: 1px solid black;
  width: min(355px, 100vw - 40px);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 11px;
}
.splash-new .splash-new-block h2 {
  color: #697B74;
  font-size: 2.25rem;
  line-height: 1em;
  margin: 1.5rem;
}
@media (max-width: 1126px) {
  .splash-new .splash-new-block h2 {
    font-size: 2rem;
    line-height: 32px;
  }
}
.splash-new .splash-new-block:nth-child(1) {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  margin-top: 251px;
}
.splash-new .splash-new-block:nth-child(1) h2 {
  text-align: right;
}
.splash-new .splash-new-block:nth-child(1) .splash-new-img-bar {
  justify-content: flex-end;
}
.splash-new .splash-new-block:nth-child(2) {
  align-items: flex-end;
  justify-content: stretch;
  margin-top: 0px;
}
.splash-new .splash-new-block:nth-child(3) {
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 130px;
}
.splash-new .splash-new-block:nth-child(3) h2 {
  text-align: left;
}
.splash-new .splash-new-block .splash-new-img-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.splash-new .splash-new-block .splash-new-img-bar a {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  border-top: 0;
}
.splash-new .splash-new-block .splash-new-img-bar a:not(:only-child:last-child) {
  border-left: 0;
}
.splash-new .splash-new-block .splash-new-img-bar a:last-child {
  border-right: 0;
}
.splash-new .splash-new-block .splash-new-img-bar a:only-child {
  border: 0;
  border-bottom: 1px solid white;
}
.splash-new .splash-new-block .splash-new-img-bar a img {
  max-height: 30px;
}
.splash-new .splash-new-block .linkbar {
  cursor: pointer;
}

.splash-invite-bar {
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  text-align: left;
  transition: height 0.3s;
  background-color: white;
}
.splash-invite-bar.active {
  height: 4rem !important;
}
.splash-invite-bar.error::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Icons";
  height: 4rem;
  width: 4rem;
  top: 0;
  font-size: 2.5rem;
  content: "error";
  position: absolute;
  right: 0.1rem;
  pointer-events: none;
  color: red;
}
.splash-invite-bar.error::before {
  position: absolute;
  top: 2rem;
  left: 1rem;
  font-size: 0.8rem;
  color: red;
  pointer-events: none;
  content: "This isn't a valid GSheets link!";
}
.splash-invite-bar.error > input {
  height: 3rem;
  padding-bottom: 1rem;
  font-size: 0.8rem;
  width: calc(100% - 6rem);
}
.splash-invite-bar > input {
  all: unset;
  width: calc(100% - 2rem);
  text-overflow: ellipsis;
  overflow: hidden;
  height: 4rem;
  border: 0;
  background-color: white;
  font-size: 1rem;
  text-align: left;
  padding: 0 1rem;
}

.splash-new-greyed {
  filter: saturate(0) brightness(0.6) contrast(5) contrast(0.3);
  opacity: 0.6;
}

a:not(.disabled):hover .splash-new-greyed {
  filter: none;
  opacity: 1;
}

.splash-new-block:nth-child(2) {
  border-width: 2px;
  cursor: pointer;
}
.splash-new-block:nth-child(2) textarea:not(.entry-box-edit-cursor) {
  cursor: pointer;
}
.splash-new-block:nth-child(2) .material-icons {
  opacity: 0.5;
}
.splash-new-block:nth-child(2):focus-within .material-icons {
  opacity: 1;
}
.splash-new-block:nth-child(2):focus-within .entry-box::placeholder {
  color: black;
  opacity: 0;
}
.splash-new-block:nth-child(2):focus-within .entry-box-wrap::after {
  display: none;
}

.splash-new-block:nth-child(1):focus-within h2 {
  color: black;
}

.entry-box {
  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;
  width: 100%;
  padding: 0;
  height: 44px;
  line-height: 1.14em;
  font-weight: bold;
  font-size: 2.25rem;
  background-color: transparent;
  border: none;
  outline: none;
  resize: none;
  display: table-cell;
  text-align: right;
}
.entry-box::placeholder {
  color: #697B74;
  opacity: 1;
}

.entry-box-wrap.typing {
  position: relative;
}
.entry-box-wrap.typing::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 40px;
  background-color: #697B74;
  opacity: 1;
  animation: typing-animation 1s infinite linear;
}
.entry-box-wrap.typing.typing-newline::after {
  top: 2.75rem;
}

.invite-to-sheet-input {
  padding: 1rem;
  background-color: white;
  border-radius: 4px;
}

@keyframes typing-animation {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.entry-box-wrap {
  display: table;
  border-bottom: 2px dashed black;
  margin: 1rem;
}

@media (max-width: 1150px) {
  .splash-down {
    margin-bottom: 8rem;
  }
  .splash-new {
    flex-direction: column;
    display: grid;
    grid-template-rows: [top] 1fr [mid] 1fr [end] 1fr;
  }
  .splash-new .splash-new-block {
    margin-top: unset !important;
    margin-bottom: 0.5rem;
  }
  .splash-new .splash-new-block:nth-child(2) {
    grid-row-start: top;
  }
  .splash-new .splash-new-block:nth-child(3) {
    grid-row-start: mid;
  }
  .splash-platform .splash-socials {
    max-width: min(100vw - 4rem, 396px) !important;
  }
}
/*
@media (max-width: 700px) {
    .grid {
      grid-template-areas:
        'name'
        'avatar'
        'bio';
    }
  }
*/
.gradient {
  grid-area: gradient;
  display: block;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #BBB, #EEE, white 80% 100%);
  border-top-left-radius: 0.5em;
}

.tagline {
  grid-area: tagline;
  font-size: 2rem;
  line-height: 1em;
  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;
}
@media (min-width: 600px) {
  .tagline {
    font-size: 4rem;
  }
}
.tagline span {
  text-decoration: underline;
}

.add-new {
  grid-area: add-new;
  display: grid;
  grid-template-columns: 1fr 4rem;
  grid-template-areas: " text icon ";
  text-decoration: none;
  height: 4rem;
}
.add-new .new-text {
  grid-area: text;
  display: inline-grid;
  align-content: center;
  text-align: right;
  margin-right: 1em;
  line-height: 1em;
  color: #555;
}
.add-new .new-text .u {
  font-weight: 700;
}
.add-new .new-text .l {
  font-weight: 400;
  text-decoration: underline;
}
.add-new .new-event-icon {
  grid-area: icon;
  background-color: #555;
  border-radius: 4rem;
  font-size: 2rem;
  display: inline-grid;
  align-content: center;
  text-align: center;
  color: white;
}
.add-new:hover {
  cursor: pointer;
}
.add-new:hover .new-text {
  color: #6f6f6f;
}
.add-new:hover .new-event-icon {
  background-color: #6f6f6f;
}
.add-new:active {
  cursor: progress;
  color: #525252;
}
.add-new:active .new-text {
  color: #525252;
}
.add-new:active .new-event-icon {
  background-color: #525252;
}

.hero {
  grid-area: hero;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.2em solid black;
  grid-template-areas: " mockup mockup mockup";
}
@media (min-width: 600px) {
  .hero {
    grid-template-areas: " . mockup .";
  }
}
.hero .mockup {
  grid-area: mockup;
  text-align: center;
}
.hero .mockup img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.about-jump {
  grid-area: about-jump;
  margin-top: 2em;
}

body {
  height: unset !important;
  width: unset;
}

div.main {
  display: block;
  max-width: 100vw;
  height: unset;
  margin: -1rem;
}

.splash-hero {
  margin-top: -160px;
}

.splash-hero-wrapper > .splash-section {
  min-height: calc(100vh - 72px);
}

.splash-hero-wrapper {
  position: relative;
}
.splash-hero-wrapper .splash-section {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
}

.splash-section {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin: auto;
  max-width: 1360px;
  width: 100%;
  padding: 10rem 0;
  align-items: center;
}
.splash-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: 4rem;
  line-height: 84px;
  font-weight: 400;
  margin: 0px;
  margin-bottom: 3rem;
}
.splash-section 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;
  font-size: 3rem;
  line-height: 84px;
  font-weight: 400;
  margin: 0px;
  margin-bottom: 1rem;
}
.splash-section p:not(.link-note) {
  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;
  line-height: 22px;
  font-size: 18px;
  max-width: 500px;
  margin: 0px;
  margin-bottom: 1rem;
}
.splash-section img.splash-big-image {
  max-width: calc(100vw - 2rem) !important;
}

.splash-section-main {
  width: 1100px;
  font-size: 1.5rem;
  line-height: 2rem;
}
.splash-section-main a {
  color: black;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 1150px) {
  .splash-section-main {
    width: unset;
    margin: 0 1rem;
  }
}
.splash-body.splash-right {
  text-align: right;
}
.splash-body.splash-right p {
  max-width: unset;
}

.splash-body.splash-center {
  text-align: center;
}
.splash-body.splash-center p {
  margin: auto;
  margin-bottom: 7rem;
}
.splash-body.splash-center .new-event {
  margin: auto;
  margin-top: 2rem;
}

.splash-invite {
  background-color: white;
}
.splash-invite img {
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.05));
}

.splash-platform {
  background-color: #F6F6F6;
}

.splash-spreadsheet {
  background-color: #F6F6F6;
}

.splash-column {
  flex-direction: column;
}

.splash-socials {
  filter: drop-shadow(0px 3px 38px rgba(0, 0, 0, 0.16));
}

.splash-tryit {
  background-color: #F6F6F6;
  display: block;
  text-decoration: none;
  color: black;
}

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

@media (max-width: 1433px) {
  .splash-section {
    padding: 2rem 2rem;
  }
}
@media (max-width: 1126px) {
  .splash-section h1 {
    font-size: 3rem;
    line-height: 54px;
  }
  .splash-section h2 {
    font-size: 2rem;
    line-height: 32px;
  }
}
@media (min-width: 956px) {
  .dnbr-only-mobile {
    display: none !important;
  }
}
@media (max-width: 955px) {
  .splash-socials {
    margin-top: 2rem;
  }
  h1, h2 {
    text-align: center;
  }
  .dnbr-only-desktop {
    display: none !important;
  }
  .splash-hero {
    margin-top: 0px;
  }
  .splash-body.splash-right {
    text-align: center;
  }
  .splash-body.splash-right p {
    max-width: unset;
  }
  .splash-socials {
    margin-right: 0px;
  }
  .splash-section {
    min-height: 100vh;
    padding: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .splash-section.reverse {
    flex-direction: column-reverse;
  }
  .splash-section h1 {
    font-size: 2rem;
    line-height: 42px;
  }
  .splash-image > img {
    margin-top: 2rem;
    max-width: 100%;
  }
  .splash-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.dnbr-footer-wrap {
  margin: 0px !important;
}

.dnbr-footer-smooth {
  margin: 0px !important;
}

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