* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Chalk-y";
  src: url("/fonts/Chalky-y/ChalkyRegular.woff2") format("woff2"), url("/fonts/Chalky-y/ChalkyRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Bright Chalk";
  src: url("/fonts/Bright Chalk/BrightChalk.woff2") format("woff2"), url("/fonts/Bright Chalk/BrightChalk.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  background-color: #000;
}

.page-title {
  display: none;
}

.messages-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto;
  overflow-x: hidden;
  flex-grow: 1;
  padding: 2rem;
  display: flex;
  align-items: center;
  min-height: 100%;
}
.messages-wrapper .messages {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: auto;
  margin-bottom: auto;
  align-items: flex-start;
}

.message {
  color: rgba(255, 255, 255, 0.63);
  font-size: 2rem;
  line-height: 2.1rem;
  font-family: "Bright Chalk", sans-serif;
  border-radius: 1rem;
}
.message .message-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.message .message-from,
.message .message-to {
  font-size: 1.2rem;
  line-height: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(202, 202, 109, 0.7098039216);
}
.message .message-from .p-avatar,
.message .message-to .p-avatar {
  background: transparent;
  filter: url(#chalk);
}
.message .message-from .p-avatar .pi,
.message .message-to .p-avatar .pi {
  font-size: 1.6rem;
}
.message .message-content {
  margin-top: 0.5rem;
}
.message .message-timestamp {
  color: rgba(113, 180, 159, 0.56);
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.message-actions .ESAction {
  aspect-ratio: 1/1;
  border-radius: 100% !important;
  color: rgba(113, 180, 159, 0.56) !important;
}
.message-actions .p-button-icon {
  margin: 0;
}
.message-actions .p-button-icon + .p-button-label {
  display: none;
}

.board-wrapper {
  --background: url("/images/ourboard-desktop-background.png");
  --background-placeholder: url("/images/ourboard-desktop-background-placeholder.png");
  --foreground-img-width: 2202;
  --foreground-img-height: 1344;
  --foreground-aspect-ratio: var(--foreground-img-width)/var(--foreground-img-height);
  --foreground-height: min(100vh, 100vw * var(--foreground-img-height) / var(--foreground-img-width));
  --foreground-left: calc((100vw - min(100vw, 100vh * var(--foreground-aspect-ratio))) / 2);
  --board-wrapper-top: unset;
  --board-wrapper-bottom: 0;
  --background-size: auto 100%;
  --background-position: bottom center;
  --board-width: 1616;
  --board-height: 730;
  --board-aspect-ratio: var(--board-width)/var(--board-height);
  --board-relative-width: 73.6%;
  --board-top-pos: unset;
  --board-left-pos: 13.9%;
  --board-bottom-pos: 24.5%;
  --background-extension-aspect-ratio: 2329/800;
  --toolbar-top: unset;
  --toolbar-bottom: 82.2%;
}

.board-wrapper .board .board-content::-webkit-scrollbar {
  width: 0.8rem;
  background: rgba(137, 73, 0, 0.2901960784);
}
.board-wrapper .board .board-content::-webkit-scrollbar-thumb {
  background: #fff;
  -webkit-border-radius: 0.4rem;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm > .ESContainerVertical::-webkit-scrollbar {
  width: 0.8rem;
  background: rgba(0, 0, 0, 0.2784313725);
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm > .ESContainerVertical::-webkit-scrollbar-thumb {
  background: #fff;
  -webkit-border-radius: 0.4rem;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.board-wrapper {
  position: fixed;
  z-index: 1;
  aspect-ratio: var(--foreground-aspect-ratio);
  height: var(--foreground-height);
  left: var(--foreground-left);
  top: var(--board-wrapper-top);
  bottom: var(--board-wrapper-bottom);
}
.board-wrapper .board-background-extension {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.board-wrapper .board-background-extension:before, .board-wrapper .board-background-extension:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  aspect-ratio: var(--background-extension-aspect-ratio);
  left: 50%;
  background-image: var(--background);
  background-position: bottom left;
  transform: translateX(-50%);
  pointer-events: none;
}
.board-wrapper .board-background-extension:before {
  background-image: var(--background-placeholder);
  z-index: -1;
}
.board-wrapper::after {
  position: absolute;
  content: "";
  inset: 0;
  background-image: var(--background);
  background-size: var(--background-size);
  background-position: var(--background-position);
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}
.board-wrapper .toolbar {
  width: var(--board-relative-width);
  position: absolute;
  left: var(--board-left-pos);
  z-index: 4;
  top: var(--toolbar-top);
  bottom: var(--toolbar-bottom);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5294117647);
  border-radius: 1rem;
  padding: 1rem 1rem;
  margin-bottom: 0.9rem;
}
.board-wrapper .toolbar.center {
  justify-content: center;
}
.board-wrapper .toolbar .logo img {
  height: 2rem;
}
.board-wrapper .board {
  background: #000;
  position: absolute;
  top: var(--board-top-pos);
  bottom: var(--board-bottom-pos);
  left: var(--board-left-pos);
  aspect-ratio: var(--board-aspect-ratio);
  width: var(--board-relative-width);
  overflow: hidden;
  display: flex;
}
.board-wrapper .board .board-content {
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
  height: 100%;
  background-image: url("/images/ourboard-board.png");
  background-size: 100% auto;
  background-attachment: scroll;
  background-position: top center;
}
.board-wrapper .board .board-content:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("/images/ourboard-board-placeholder.png");
  background-size: 100% auto;
}
.board-wrapper .board .board-content .board-content-scrollable {
  background-image: url("/images/ourboard-board.png");
  background-size: 100% auto;
  background-attachment: scroll;
  background-position: top center;
}
.board-wrapper .board .board-content .board-content-scrollable:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("/images/ourboard-board-placeholder.png");
  background-size: 100% auto;
}

.board-content-scrollable.login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.board-content-scrollable.login form {
  background: rgba(0, 0, 0, 0.3411764706);
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}
.board-content-scrollable.login form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.board-content-scrollable.login form .form-fields input {
  border: none;
  border-radius: 0.4rem;
  padding: 14px 10px;
  background: #000;
  color: #fff;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  font-family: "Bright Chalk", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
.board-content-scrollable.login form .error-container {
  color: #fff;
  min-height: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  font-family: "Bright Chalk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.board .ESLink .p-button-link,
.board .ESAction,
.board .ESLinkAbs,
.board button.submit {
  background: transparent;
  padding: 0.2rem 0.5rem;
  border: 0.2rem solid transparent;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  font-family: "Bright Chalk", sans-serif;
  margin: 0 !important;
  vertical-align: middle;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  white-space: nowrap;
}
.board .ESLink .p-button-link:hover, .board .ESLink .p-button-link:active, .board .ESLink .p-button-link:focus,
.board .ESAction:hover,
.board .ESAction:active,
.board .ESAction:focus,
.board .ESLinkAbs:hover,
.board .ESLinkAbs:active,
.board .ESLinkAbs:focus,
.board button.submit:hover,
.board button.submit:active,
.board button.submit:focus {
  background: transparent;
  color: #fff;
  border-color: inherit;
}
.board .ESLink .p-button-link:hover span, .board .ESLink .p-button-link:active span, .board .ESLink .p-button-link:focus span,
.board .ESAction:hover span,
.board .ESAction:active span,
.board .ESAction:focus span,
.board .ESLinkAbs:hover span,
.board .ESLinkAbs:active span,
.board .ESLinkAbs:focus span,
.board button.submit:hover span,
.board button.submit:active span,
.board button.submit:focus span {
  text-decoration: none !important;
}

.toolbar .ESNavbar .main-menu {
  padding: 0;
  background-color: transparent;
}
.toolbar .ESNavbar .main-menu .p-menubar-root-list {
  gap: 0.6rem;
}
.toolbar .ESNavbar .main-menu .p-menuitem-link,
.toolbar .ESNavbar .main-menu .p-menuitem > .ESAction {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0.5rem !important;
}
.toolbar .ESNavbar .main-menu .p-menuitem-link .p-menuitem-text,
.toolbar .ESNavbar .main-menu .p-menuitem > .ESAction .p-menuitem-text {
  padding-right: 0;
}
.toolbar .ESNavbar .main-menu .p-menuitem-link:after,
.toolbar .ESNavbar .main-menu .p-menuitem > .ESAction:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.15rem;
  background: #fff;
  width: 0;
  transition: 0.5s ease-in-out;
  border-radius: 0.05rem;
}
.toolbar .ESNavbar .main-menu .p-menuitem-link:hover,
.toolbar .ESNavbar .main-menu .p-menuitem > .ESAction:hover {
  background-color: transparent !important;
}
.toolbar .ESNavbar .main-menu .p-menuitem-link:hover:after,
.toolbar .ESNavbar .main-menu .p-menuitem > .ESAction:hover:after {
  width: 100%;
}
.toolbar .ESNavbar .main-menu .active-item .p-menuitem-link {
  background-color: transparent !important;
}
.toolbar .ESNavbar .main-menu .active-item .p-menuitem-link:after {
  width: 100%;
}

.spacer {
  flex-grow: 1;
}

.p-dialog-mask .ESModal.p-dialog {
  width: 100%;
  max-width: 550px;
  aspect-ratio: 859/1032;
  box-shadow: none;
  overflow: hidden;
}
.p-dialog-mask .ESModal.p-dialog:before, .p-dialog-mask .ESModal.p-dialog:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/modal-background-placeholder.png");
  background-size: 100% 100%;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: -1;
  filter: drop-shadow(4px 4px 4px #000);
}
.p-dialog-mask .ESModal.p-dialog:after {
  background-image: url("/images/modal-background.png");
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-header {
  background: transparent;
  color: #fff;
  padding: 17% 3rem 2rem;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-header .p-dialog-title {
  font-family: "Bright Chalk", sans-serif;
  font-size: 2rem;
  font-weight: normal;
  line-height: 2rem;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-header .p-dialog-header-icon.p-dialog-header-close.p-link {
  color: #fff;
  filter: url(#chalk);
  outline: none !important;
  box-shadow: none !important;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-header .p-dialog-header-icon.p-dialog-header-close.p-link:enabled:hover {
  background: transparent;
  color: #fff;
  opacity: 0.5;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-header .p-dialog-header-icon.p-dialog-header-close.p-link svg {
  width: 100%;
  height: 100%;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content {
  background: transparent;
  color: #fff;
  margin: 0;
  position: relative;
  padding: 0 2rem 3rem;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm > .ESContainerVertical {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm > .ESContainerVertical > *:first-child {
  margin-top: auto !important;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm > .ESContainerVertical > *:last-child {
  margin-bottom: auto !important;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .label-text {
  font-family: "Bright Chalk", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4rem;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESTextareaInput,
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm div.ESAutocompleteInput {
  padding: 0.8rem;
  position: relative;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESTextareaInput:before,
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm div.ESAutocompleteInput:before {
  content: "";
  inset: 0;
  border: 0.2rem solid #fff;
  position: absolute;
  border-radius: 1rem;
  filter: url(#chalk);
  pointer-events: none;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESTextareaInput:has(:active, :focus):before,
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm div.ESAutocompleteInput:has(:active, :focus):before {
  border-color: #8df196;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESTextareaInput .p-inputtext,
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm div.ESAutocompleteInput .p-inputtext {
  background: transparent;
  resize: none;
  border: none;
  border-radius: 1rem;
  color: #8df196;
  font-family: "Bright Chalk", sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  outline: none;
  box-shadow: none;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESTextareaInput button.p-autocomplete-dropdown.p-button.p-component.p-button-icon-only,
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm div.ESAutocompleteInput button.p-autocomplete-dropdown.p-button.p-component.p-button-icon-only {
  background: transparent;
  border: none;
  filter: url(#chalk);
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESTextareaInput button.p-autocomplete-dropdown.p-button.p-component.p-button-icon-only svg,
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm div.ESAutocompleteInput button.p-autocomplete-dropdown.p-button.p-component.p-button-icon-only svg {
  width: 100%;
  height: 100%;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm span.ESAutocompleteInput .p-inputtext {
  padding: 0;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESCheckboxInput {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESCheckboxInput .p-checkbox {
  width: auto;
  height: auto;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESCheckboxInput .p-checkbox .p-checkbox-box {
  width: 2rem;
  height: 2rem;
  filter: url(#chalk);
  background: transparent !important;
  outline: none;
  box-shadow: none;
  border-color: #fff;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESCheckboxInput .p-checkbox .p-checkbox-box.p-highlight, .p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESCheckboxInput .p-checkbox:not(.p-checkbox-disabled) .p-checkbox-box.p-highlight:hover {
  background: transparent;
  border-color: #fff;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESCheckboxInput label.label-text {
  margin: 0;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESForm_FormControls {
  justify-content: center;
  gap: 1rem;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESForm_FormControls {
  justify-content: center;
  width: 100%;
  padding: 0 !important;
  gap: 1rem;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESForm_FormControls button {
  margin: 0 !important;
  font-family: "Bright Chalk", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8rem;
  border-radius: 0.6rem;
  border: none !important;
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESForm_FormControls .p-button.p-button-success:not(.p-button-outlined):before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: #689f38;
  z-index: -1;
  filter: url(#chalk);
}
.p-dialog-mask .ESModal.p-dialog .p-dialog-content .ESForm .ESForm_FormControls .p-checkbox .p-checkbox-box {
  filter: url(#chalk);
  background: transparent;
  width: 2rem !important;
  height: 2rem !important;
}

.board-content-scrollable,
.ESPage {
  min-height: 100%;
}

.page-overlay-spinner {
  position: absolute;
  background: rgba(0, 0, 0, 0.5803921569);
}
.page-overlay-spinner span {
  border-color: rgb(191, 123, 31) rgb(255, 179, 98) transparent;
}

#root > .ESContainerVertical > .ESHtml {
  display: none;
}

@media screen and (max-width: 960px) {
  .ESPage {
    padding-top: 3rem;
  }
  .page-title {
    display: block;
    color: #fff;
    position: absolute;
    width: 100%;
    padding: 0 1rem 1rem;
    font-size: 2rem;
    font-family: "Bright Chalk", sans-serif;
    z-index: 1;
    margin-top: -3rem;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgb(0, 0, 0) 80%, rgba(255, 255, 255, 0) 100%);
  }
  .page-title i.pi {
    font-size: 2rem;
    margin-right: 1rem;
  }
  #root {
    width: 100%;
    height: 100%;
  }
  #root > .ESContainerVertical {
    width: 100%;
    height: 100%;
  }
  #root > .ESContainerVertical .board-wrapper {
    position: initial;
    aspect-ratio: initial;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  #root > .ESContainerVertical .board-wrapper:after {
    display: none;
  }
  #root > .ESContainerVertical .board-wrapper .board-background-extension {
    display: none;
  }
  #root > .ESContainerVertical .board-wrapper .toolbar {
    width: auto;
    position: initial;
    margin: 0;
    background: #000;
    border-radius: 0;
  }
  #root > .ESContainerVertical .board-wrapper .board {
    position: initial;
    width: 100%;
    height: 100%;
  }
  #root > .ESContainerVertical .board-wrapper .board .board-content {
    background-size: 200vh auto;
    background-position: top right;
  }
  #root > .ESContainerVertical .board-wrapper .board .board-content:before,
  #root > .ESContainerVertical .board-wrapper .board .board-content .board-content-scrollable,
  #root > .ESContainerVertical .board-wrapper .board .board-content .board-content-scrollable:before {
    background-size: 200vh auto;
    background-position: top right;
  }
  #root > .ESContainerVertical .board-wrapper .board .messages-wrapper .messages .message {
    font-size: 1.8rem;
    line-height: 2rem;
    width: 100%;
  }
  #root > .ESContainerVertical .board-wrapper .board .messages-wrapper .messages .message .message-timestamp {
    display: inline-block;
  }
  #root > .ESContainerVertical .board-wrapper .board .messages-wrapper .messages .message .message-from,
  #root > .ESContainerVertical .board-wrapper .board .messages-wrapper .messages .message .message-to {
    display: inline-flex;
    gap: 0;
  }
  #root > .ESContainerVertical .board-wrapper .board .messages-wrapper .messages .message .message-from .p-avatar .pi,
  #root > .ESContainerVertical .board-wrapper .board .messages-wrapper .messages .message .message-to .p-avatar .pi {
    font-size: 1rem;
  }
  #root > .ESContainerVertical .board-wrapper .board .messages-wrapper .messages .message .message-content {
    width: 100%;
  }
  .ESNavbar .p-menubar .p-menubar-button {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem !important;
  }
  .ESNavbar .p-menubar .p-menubar-button:hover {
    background-color: #1a1a1a;
  }
  .ESNavbar .p-menubar .p-menubar-button > svg {
    width: 60%;
    height: 60%;
  }
}
.p-autocomplete-panel {
  background: #0e0e0e;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #3b3b3b;
}

.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item {
  font-family: "Bright Chalk", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #c1c1c1;
}

.p-autocomplete-panel .p-autocomplete-items-wrapper::-webkit-scrollbar {
  width: 0.8rem;
  background: rgba(19, 19, 19, 0.3);
}
.p-autocomplete-panel .p-autocomplete-items-wrapper::-webkit-scrollbar-thumb {
  background: #fff;
  -webkit-border-radius: 0.2rem;
  cursor: pointer;
}

.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight {
  color: #47a54a;
  background: #060606;
}

.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover {
  color: #ffffff;
  background: #121212;
}

.p-menubar.p-menubar-mobile-active .p-menubar-root-list {
  left: initial;
  right: 0;
  width: auto;
  white-space: nowrap;
  background: #454545;
  border-radius: 0.6rem;
}
.p-menubar.p-menubar-mobile-active .p-menubar-root-list > .p-menuitem > .p-menuitem-link {
  color: #fff;
}
.p-menubar.p-menubar-mobile-active .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-text,
.p-menubar.p-menubar-mobile-active .p-menubar-root-list > .p-menuitem > .p-menuitem-link .p-menuitem-icon {
  color: #fff !important;
}

@media screen and (min-width: 960px) {
  .ESNavbar ul.p-menubar-root-list > li:last-child .p-menuitem-icon {
    margin: 0 !important;
  }
  .ESNavbar ul.p-menubar-root-list > li:last-child .p-menuitem-text {
    display: none;
  }
}
.chalk-font {
  font-family: "Bright Chalk", sans-serif;
  font-size: 1.8rem;
  line-height: 2rem;
}

.center {
  text-align: center;
}

.ml-2 {
  margin-left: 0.6rem;
}

.message-content span {
  word-break: break-word;
}

.morph-container {
  position: relative;
}
.morph-container .message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4rem;
}
.morph-container .message .message-from,
.morph-container .message .message-to {
  font-size: 2.4rem;
}
.morph-container .message .message-timestamp {
  font-size: 2rem;
  line-height: 2rem;
}

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