:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.welcome_page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: calc(100vh - 20px - 40px);
}

.welcome_image {
  width: 200px;
  margin-bottom: 60px;
}

.welcome_header {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.welcome_subtext {
  font-size: 20px;
  text-align: center;
}

.welcome_button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 2px 10px 0 rgba(58, 58, 58, 0.35);
  user-select: none;
  cursor: pointer;
  transition: filter 250ms, box-shadow 250ms;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 18px;
  padding-left: 18px;
  background-color: var(--color-primary);
  color: white;
  margin-top: 60px;
  font-size: 20px;
}
.welcome_button:hover {
  filter: brightness(104%);
  box-shadow: 0 6px 14px 0 rgba(58, 58, 58, 0.35);
}
.welcome_button:active {
  filter: brightness(112%);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.navbar__container-grid {
  display: flex;
  flex-direction: column;
  grid-area: navbar;
  overflow: auto;
}

.navbar__container-slideout {
  display: flex;
  flex-direction: column;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  bottom: 0;
  min-width: 250px;
  max-width: 250px;
  z-index: 100;
}

.navbar__expanded {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 0px 0px 10px 20px;
  border-right: 1px solid var(--frame-color-subtle);
  background-color: white;
}

.navbar__collapsed {
  display: flex;
  flex-direction: row;
}

.navbar__collapsed-content {
  border-right: 1px solid var(--frame-color-subtle);
  background-color: white;
  min-width: 59px;
  max-width: 59px;
  height: 100vh;
}

.navbar__logo-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding-right: 10px;
}

.navbar__logo-header-close {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  height: 22;
  width: 22;
  opacity: 0.5;
}
.navbar__logo-header-close:hover {
  filter: brightness(104%);
}
.navbar__logo-header-close:active {
  filter: brightness(112%);
}

.navbar__unleesh-logo {
  width: 80px;
}

.navbar__collapsed-header {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}
.navbar__collapsed-header:hover {
  color: var(--color-secondary);
}
.navbar__collapsed-header:active {
  filter: brightness(120%);
}

.navbar__profile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  border-top: 1px solid var(--frame-color-subtle);
  border-bottom: 1px solid var(--frame-color-subtle);
  padding: 15px 0px 15px 0px;
  margin-bottom: 30px;
}
.navbar__profile-header:hover {
  color: var(--color-secondary);
}
.navbar__profile-header:active {
  filter: brightness(120%);
}

.navbar__profile-photo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 10px;
}

.navbar__name-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 36px;
}

.navbar__name {
  font-size: 14px;
  font-weight: 500;
}

.navbar__subtext {
  font-size: 12px;
  opacity: 0.6;
  margin-right: 15px;
}

.navbar__menu {
  display: flex;
  flex-direction: column;
}

.navbar__menu-path {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  font-size: 10px;
  color: var(--text-faded);
  font-weight: 500;
  margin: 20px 0 5px 0;
}
.navbar__menu-path:hover {
  color: var(--color-secondary);
}
.navbar__menu-path:active {
  filter: brightness(120%);
}

.navbar__menu-item {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  color: var(--color-primary);
  padding: 8px 0px 8px 0px;
  margin: 5px 0px 5px 0px;
}
.navbar__menu-item:hover {
  color: var(--color-secondary);
}
.navbar__menu-item:active {
  filter: brightness(120%);
}

.navbar__menu-subitem {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  color: var(--color-primary);
  padding: 4px 0px 4px 0px;
  margin-bottom: 5px;
}
.navbar__menu-subitem:hover {
  color: var(--color-secondary);
}
.navbar__menu-subitem:active {
  filter: brightness(120%);
}

#current-page.navbar__menu-item {
  font-weight: 600;
}

.navbar__footer {
  justify-self: flex-end;
  border-top: 1px solid var(--frame-color);
  padding: 10px 0px 10px 0px;
}

.navbar__footer-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  opacity: 0.8;
  margin: 20px 0px 20px 0px;
}
.navbar__footer-row:hover {
  color: var(--color-secondary);
}
.navbar__footer-row:active {
  filter: brightness(120%);
}

.navbar__footer-row-text {
  opacity: 0.8;
  margin-left: 5px;
  font-size: 14px;
}

.navbar__footer-policies {
  font-size: 10px;
  color: var(--text-faded);
  margin-bottom: 5px;
}

.navbar__footer-policies a:link,
.navbar__footer-policies a:visited {
  color: var(--text-faded);
}
.navbar__footer-policies a:link:hover,
.navbar__footer-policies a:visited:hover {
  color: var(--color-secondary);
}

.notification_badge {
  display: inline-block;
  font-size: 12px;
  align-content: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  margin-top: -3px;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.notification_badge p {
  font-size: 0.6em;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  height: 1.2em;
  width: 1.2em;
  line-height: 1.2em;
}

/*
.notification_badge p:hover {
    background: #ffcb3b;
}
*/
.thread_badge {
  position: absolute;
  bottom: 2px;
  right: 5px;
  color: white;
  background: var(--color-primary);
  font-size: 12px;
  border-radius: 50%;
}

.nav_menu_item {
  display: flex;
  align-items: center;
  position: relative;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.steps__forward-icon {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  height: 24;
  width: 24;
  fill: red !important;
  stroke: red !important;
}
.steps__forward-icon:hover {
  filter: brightness(104%);
}
.steps__forward-icon:active {
  filter: brightness(112%);
}

.steps__back {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  color: var(--color-primary);
  margin-left: 10px;
}
.steps__back:hover {
  color: var(--color-secondary);
}
.steps__back:active {
  filter: brightness(120%);
}

.steps__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 60px;
}

.steps__nav-next {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--color-primary);
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  margin-right: 5px;
}
.steps__nav-next:hover {
  color: var(--color-secondary);
}
.steps__nav-next:active {
  filter: brightness(120%);
}

.steps__nav-next-text {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  margin-right: 5px;
}
.steps__nav-next-text:hover {
  color: var(--color-secondary);
}
.steps__nav-next-text:active {
  filter: brightness(120%);
}

.steps__path {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}

.steps__content {
  max-width: 650px;
  padding: 5px;
  margin: 5px;
  position: relative;
  min-height: calc(100vh - 200px);
  overflow: hidden;
}

.steps__step-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.steps__overview {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--frame-color);
  padding-bottom: 20px;
}

.steps__overview-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.steps__overview-subtext {
  font-size: 14px;
  opacity: 0.9;
}

.steps__submit-activity-top {
  display: flex;
  flex-direction: row;
  background-color: #bfe0f1;
  padding: 8px 10px 8px 10px;
  flex: 1;
  border-radius: 4px 4px 0px 0px;
}

.steps__submit-activity-top-tip {
  display: flex;
  flex-direction: row;
  background-color: #bfe0f1;
  padding: 8px 10px 8px 10px;
  flex: 1;
  border-radius: 4px 4px 4px 4px;
  margin-bottom: 30px;
}

.steps__activity-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 10px;
}

.material-icons.steps__activity-description-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.45;
  margin-right: 8px;
}

.steps__activity-description {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 17px;
}

.steps__activity-response-container {
  display: flex;
  flex-direction: column;
  position: sticky;
  bottom: 0;
  border-radius: 4px 4px 0px 0px;
  box-shadow: 0px -2px 4px 0px rgba(58, 58, 58, 0.45);
  background-color: white;
  flex-grow: 1;
  margin: 0px 4px 0px 4px;
}

.steps__activity-icon {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  margin: 0px 2px 0px 2px;
}
.steps__activity-icon:hover {
  color: var(--color-secondary);
}
.steps__activity-icon:active {
  filter: brightness(120%);
}

.steps__activity-response-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 6px 12px 6px 12px;
  margin: 0px;
  transition: max-height 250ms, padding 250ms;
  max-height: 250px;
  overflow: hidden;
}

.steps__activity-response-row.hide-row {
  max-height: 0px;
  padding: 0px 12px 0px 12px;
}

@media screen and (max-width: 760px) {
  .steps__activity-response-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.steps__submit-answer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 20px;
  transition: min-height 250ms;
  min-height: 85px;
}

.steps__submit-answer-container.expanded {
  min-height: 220px;
}

.steps__activity-textarea {
  resize: none;
  border: 1px solid var(--frame-color);
  border-radius: 4px;
  padding: 8px 10px 8px 10px;
  font: inherit;
  background-color: var(--input-background);
  flex: 1;
}

.steps__activity-attachment-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px 10px 0px 10px;
}

.steps__activity-attachment {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px;
}
.steps__activity-attachment:hover {
  color: var(--color-secondary);
}
.steps__activity-attachment:active {
  filter: brightness(120%);
}

.steps__activity-attachment-text {
  font-size: 10px;
  opacity: 0.5;
}

.steps__activity-button {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-primary);
  padding: 8px 18px 8px 18px;
  margin: 0px 10px 5px 10px;
  border-radius: 4px;
  color: var(--color-primary);
  min-width: 100px;
}
.steps__activity-button:hover {
  color: var(--color-secondary);
}
.steps__activity-button:active {
  filter: brightness(120%);
}
.steps__activity-button:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.steps__activity-button-selected {
  background-color: var(--color-primary);
  color: white;
}
.steps__activity-button-selected:hover {
  background-color: var(--color-secondary);
  color: black;
}

.steps__activity-show-attachment-media {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: contain;
  margin-left: 15px;
  border-radius: 2px;
}

.steps__activity-show-attachment-close-container {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  box-shadow: 0px 0px 4px 0px rgba(58, 58, 58, 0.85);
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: white;
  border-radius: 50%;
  padding: 2px;
}
.steps__activity-show-attachment-close-container:hover {
  color: var(--color-secondary);
}
.steps__activity-show-attachment-close-container:active {
  filter: brightness(120%);
}
.steps__activity-show-attachment-close-container:hover {
  background-color: var(--color-secondary);
  color: black;
}

.steps__activity-submit-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px 0px 10px;
  margin-top: 10px;
}

.steps__submit-public {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 10px;
  font-size: 13px;
}
.steps__submit-public:hover {
  color: var(--color-secondary);
}
.steps__submit-public:active {
  filter: brightness(120%);
}

.steps__activity-submit-button {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  padding: 6px 14px 6px 14px;
  border-radius: 4px;
  color: white;
  width: min-content;
  font-size: 14px;
}
.steps__activity-submit-button:hover {
  color: var(--color-secondary);
}
.steps__activity-submit-button:active {
  filter: brightness(120%);
}
.steps__activity-submit-button:hover {
  color: black;
  background-color: var(--color-secondary);
}

.steps__submissions {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}

.steps__submissions-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
}

.steps__submissions-placeholder {
  height: 150px;
  width: 600px;
  background-color: var(--color-primary);
  margin-bottom: 20px;
  border-radius: 4px;
  padding: 10px;
  color: white;
}

.steps__submit-form-input {
  padding: 6px 10px 6px 12px;
  flex: 1;
  font-size: 16px;
  margin: 3px 0 3px 0;
  border-radius: 2px;
  background-color: var(--input-background);
}

.steps__edit-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 12px 18px 20px;
}

.steps__edit-button {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 30px;
}
.steps__edit-button:hover {
  color: var(--color-secondary);
}
.steps__edit-button:active {
  filter: brightness(120%);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.activity__container-grid {
  display: flex;
  flex-direction: column;
  grid-area: activity;
  overflow: auto;
}

.activity__container-slideout {
  display: flex;
  flex-direction: column;
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: 350px;
  max-width: 350px;
  z-index: 100;
}

.activity__expanded {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  border-left: 1px solid var(--frame-color-subtle);
  background-color: white;
}

.activity__collapsed {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.activity__collapsed-content {
  background-color: white;
  min-width: 60px;
  max-width: 60px;
  height: 100vh;
}

.activity__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--frame-color);
  opacity: 0.8;
  min-height: 60px;
}

.activity__collapsed-header {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}
.activity__collapsed-header:hover {
  color: var(--color-secondary);
}
.activity__collapsed-header:active {
  filter: brightness(120%);
}

.activity__refresh {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  margin-right: 8px;
}
.activity__refresh:hover {
  color: var(--color-secondary);
}
.activity__refresh:active {
  filter: brightness(120%);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.path__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  color: var(--color-primary);
}

.path__nav-home {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  margin-left: 10px;
}
.path__nav-home:hover {
  color: var(--color-secondary);
}
.path__nav-home:active {
  filter: brightness(120%);
}

.path__page {
  flex-grow: 1;
  border-radius: 8px;
  box-shadow: 0px 2px 8px 0px rgba(58, 58, 58, 0.35);
  padding: 20px;
  margin: 2px 6px 10px 6px;
  background-color: white;
}

.path__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.path__header-path-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 0px;
  margin-right: 15px;
}

.path__header-info-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.path__header-name {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.path__header-status {
  color: var(--text-faded);
  font-size: 12px;
  margin-bottom: 10px;
}

.path__header-progress-container {
  width: 75%;
  background-color: #eaebeb;
  border-radius: 4px;
}

.path__header-progress-bar {
  background-color: var(--color-green);
  border-radius: 4px;
  height: 4px;
}

.path__section {
  margin-bottom: 25px;
}

.path__section-header {
  display: flex;
  flex-direction: row;
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  align-items: flex-start;
}
.path__section-header:hover {
  color: var(--color-secondary);
}
.path__section-header:active {
  filter: brightness(120%);
}

.path__section-name {
  font-size: 18px;
  font-weight: 500;
}

.path__section-number {
  margin-left: 2px;
  font-size: 14px;
  opacity: 0.54;
}

.path__section-steps-container {
  margin-top: 20px;
  border-top: 1px solid var(--frame-color-subtle);
}

.path__section-step {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 12px;
  padding-left: 12px;
  user-select: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--frame-color-subtle);
  margin-left: 20px;
  font-weight: 500px;
}
.path__section-step:hover {
  color: var(--color-secondary);
}
.path__section-step:active {
  filter: brightness(120%);
}
.path__section-step.done {
  opacity: 0.75px;
  font-weight: 400;
}

.path__section-step-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.path__section-step-number {
  margin-left: 2px;
  font-size: 12px;
  opacity: 0.5;
}

.path__section-step-icon-done {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--color-green);
}

.path__section-step-icon-not-done {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--color-primary);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.profile__page {
  display: flex;
  flex-direction: row;
  padding-top: 50px;
}

@media screen and (max-width: 760px) {
  .profile__page {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }
}
.profile__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 2;
  padding-right: 5px;
}

@media screen and (max-width: 760px) {
  .profile__left {
    margin-bottom: 10px;
  }
}
.profile__photo {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 8px;
}

.profile__photo-edit-container {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
}
.profile__photo-edit-container:hover {
  color: var(--color-secondary);
}
.profile__photo-edit-container:active {
  filter: brightness(120%);
}

.profile__left-button {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  padding: 8px 18px 8px 18px;
  margin: 10px 0px 5px 0px;
  border-radius: 4px;
  color: white;
  width: 165px;
}
.profile__left-button:hover {
  color: var(--color-secondary);
}
.profile__left-button:active {
  filter: brightness(120%);
}
.profile__left-button:hover {
  color: black;
  background-color: var(--color-secondary);
}

.profile__social-icon {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  height: 40px;
  width: 40px;
  margin: 5px;
}
.profile__social-icon:hover {
  color: var(--color-secondary);
}
.profile__social-icon:active {
  filter: brightness(120%);
}

.profile__total-points {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-green);
  padding: 8px 18px 8px 18px;
  border-radius: 4px;
  color: var(--color-green);
  width: 165px;
  margin-top: 10px;
}

.profile__right {
  flex: 3;
  padding-left: 5px;
  padding-right: 5px;
}

.profile__quote {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.0235294118);
  border-radius: 4px;
  padding: 14px 6px 14px 6px;
  margin-bottom: 25px;
}

.profile__section {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.profile__name {
  font-size: 40px;
  font-weight: 500;
}

.profile__company {
  font-size: 20px;
  font-weight: 400;
}

.profile__section-label {
  font-size: 14px;
  color: var(--text-faded);
  margin-bottom: 3px;
}

.profile__section-text {
  font-size: 16px;
  font-weight: 500;
}

.profile__input {
  font-family: inherit;
  font-weight: 400;
  padding: 6px 10px 6px 12px;
  flex: 1;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
}

.profile__show-password {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
}
.profile__show-password:hover {
  color: var(--color-secondary);
}
.profile__show-password:active {
  filter: brightness(120%);
}

.profile__password-error {
  font-size: 14px;
  color: #ff4a4a;
}

.profile__button-disabled {
  opacity: 0.8;
  background-color: var(--frame-color);
  color: black;
  cursor: default;
}
.profile__button-disabled:hover {
  background-color: var(--frame-color);
  color: black;
  cursor: default;
}

.profile__recent-settings {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  color: var(--color-primary);
}
.profile__recent-settings:hover {
  color: var(--color-secondary);
}
.profile__recent-settings:active {
  filter: brightness(120%);
}

.post__box {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--frame-color);
  padding: 8px 4px 8px 12px;
  margin: 8px 0 8px 0;
}

.post__box-no-border {
  border: none;
}

.post__box-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

.post__profile-photo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 5px;
}

.post__name-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 40px;
}

.post__name-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.post__name {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.post__name:hover {
  color: var(--color-secondary);
}
.post__name:active {
  filter: brightness(120%);
}

.post__name-interpunct {
  font-size: 28px;
  line-height: 0.1;
  margin: 0px 4px 9px 4px;
  opacity: 0.7;
}

.post__subtext {
  font-size: 12px;
  color: var(--text-faded);
  margin-right: 15px;
}

.post__subtext a:link,
.post__subtext a:visited {
  color: var(--text-faded);
}
.post__subtext a:link:hover,
.post__subtext a:visited:hover {
  color: var(--color-secondary);
}

.post__date {
  font-size: 12px;
  font-weight: 400;
  margin-right: 5px;
  margin-bottom: 1px;
}

.post__content {
  min-height: 20px;
  padding-left: 6px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.post__action {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px 10px 0 0;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}

.post__action-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 6px;
  padding-left: 6px;
  color: var(--color-primary);
}
.post__action-link:hover {
  color: var(--color-secondary);
}
.post__action-link:active {
  filter: brightness(120%);
}

.post__comment {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 6px;
  padding-left: 6px;
}
.post__comment:hover {
  color: var(--color-secondary);
}
.post__comment:active {
  filter: brightness(120%);
}

.post__comment-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  opacity: 0.75;
}

.post__replies-box {
  border-bottom: 1px solid var(--frame-color);
}

.mypost__container {
  display: flex;
  flex-direction: column;
  padding: 16px 0 16px 12px;
  margin: 8px 0 8px 0;
  background-color: var(--color-secondary-faded);
  border-radius: 2px;
}

.mypost__title {
  font-size: 20;
  font-weight: 300;
  margin-bottom: 5px;
}

.mypost__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.mypost__footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.mypost__edit {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  padding: 4px 8px 4px 8px;
  color: var(--color-primary);
  border-radius: 4px;
  border: 1px solid var(--color-primary);
  margin-right: 12px;
}
.mypost__edit:hover {
  color: var(--color-secondary);
}
.mypost__edit:active {
  filter: brightness(120%);
}
.mypost__edit:hover {
  border: 1px solid var(--color-secondary);
}

.mypost__attachment {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 4px;
  margin-top: 10px;
}

.post__attachment {
  margin-top: 10px;
  height: 200px;
  width: 250px;
  border-radius: 4px;
  object-fit: contain;
}

.post__box-header {
  position: relative;
}

.post__delete-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  font-size: 20px;
  color: #999;
  opacity: 0.7;
  z-index: 10;
  user-select: none;
  transition: color 0.2s, opacity 0.2s, transform 0.1s;
}

.post__delete-icon:hover {
  opacity: 1;
  color: #e74c3c;
}

.post__delete-icon:active {
  transform: scale(0.9);
}

.post__edit-icon {
  position: absolute;
  top: 8px;
  right: 32px;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  opacity: 0.7;
  z-index: 10;
  user-select: none;
  transition: color 0.2s, opacity 0.2s, transform 0.1s;
}

.post__edit-icon:hover {
  opacity: 1;
  color: #e74c3c;
}

.post__edit-icon:active {
  transform: scale(0.9);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.home__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 60px;
  justify-content: space-between;
}

.home__section {
  margin: 20px 5px 40px 5px;
}

.home__section-header {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-faded);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.pathcard {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
  border-radius: 8px;
  box-shadow: 0px 2px 8px 0px rgba(58, 58, 58, 0.35);
  padding: 12px;
  background-color: white;
  min-height: 110px;
  margin: 8px 5px 15px 5px;
  max-width: 680px;
}
.pathcard:hover {
  color: var(--color-secondary);
}
.pathcard:active {
  filter: brightness(120%);
}

.pathcard__icon {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 0px;
  margin-right: 25px;
}

.pathcard__name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}

.pathcard__points-text {
  color: var(--text-faded);
  font-size: 12px;
  margin-bottom: 4px;
}

.pathcard__progress-container {
  width: 100px;
  background-color: #eaebeb;
  border-radius: 4px;
}

.pathcard__progress-bar {
  background-color: var(--color-green);
  border-radius: 4px;
  height: 4px;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.profile__page {
  display: flex;
  flex-direction: row;
  padding-top: 50px;
}

@media screen and (max-width: 760px) {
  .profile__page {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }
}
.profile__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 2;
  padding-right: 5px;
}

@media screen and (max-width: 760px) {
  .profile__left {
    margin-bottom: 10px;
  }
}
.profile__photo {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 8px;
}

.profile__photo-edit-container {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
}
.profile__photo-edit-container:hover {
  color: var(--color-secondary);
}
.profile__photo-edit-container:active {
  filter: brightness(120%);
}

.profile__left-button {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  padding: 8px 18px 8px 18px;
  margin: 10px 0px 5px 0px;
  border-radius: 4px;
  color: white;
  width: 165px;
}
.profile__left-button:hover {
  color: var(--color-secondary);
}
.profile__left-button:active {
  filter: brightness(120%);
}
.profile__left-button:hover {
  color: black;
  background-color: var(--color-secondary);
}

.profile__social-icon {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  height: 40px;
  width: 40px;
  margin: 5px;
}
.profile__social-icon:hover {
  color: var(--color-secondary);
}
.profile__social-icon:active {
  filter: brightness(120%);
}

.profile__total-points {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-green);
  padding: 8px 18px 8px 18px;
  border-radius: 4px;
  color: var(--color-green);
  width: 165px;
  margin-top: 10px;
}

.profile__right {
  flex: 3;
  padding-left: 5px;
  padding-right: 5px;
}

.profile__quote {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.0235294118);
  border-radius: 4px;
  padding: 14px 6px 14px 6px;
  margin-bottom: 25px;
}

.profile__section {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.profile__name {
  font-size: 40px;
  font-weight: 500;
}

.profile__company {
  font-size: 20px;
  font-weight: 400;
}

.profile__section-label {
  font-size: 14px;
  color: var(--text-faded);
  margin-bottom: 3px;
}

.profile__section-text {
  font-size: 16px;
  font-weight: 500;
}

.profile__input {
  font-family: inherit;
  font-weight: 400;
  padding: 6px 10px 6px 12px;
  flex: 1;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
}

.profile__show-password {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
}
.profile__show-password:hover {
  color: var(--color-secondary);
}
.profile__show-password:active {
  filter: brightness(120%);
}

.profile__password-error {
  font-size: 14px;
  color: #ff4a4a;
}

.profile__button-disabled {
  opacity: 0.8;
  background-color: var(--frame-color);
  color: black;
  cursor: default;
}
.profile__button-disabled:hover {
  background-color: var(--frame-color);
  color: black;
  cursor: default;
}

.profile__recent-settings {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  color: var(--color-primary);
}
.profile__recent-settings:hover {
  color: var(--color-secondary);
}
.profile__recent-settings:active {
  filter: brightness(120%);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.breakoutspage__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.breakoutspage__search {
  padding: 10px 15px 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
  flex: 1;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.bedit__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  color: var(--color-primary);
}

.bedit__nav-item {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  margin: 0 10px 0 10px;
}
.bedit__nav-item:hover {
  color: var(--color-secondary);
}
.bedit__nav-item:active {
  filter: brightness(120%);
}

.bedit__form {
  padding: 0 5px 0 5px;
}

.bedit__info-and-photo {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 760px) {
  .bedit__info-and-photo {
    display: flex;
    flex-direction: column;
  }
}
.bedit__section {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.bedit__clickable-section {
  cursor: pointer;
}

.bedit__section-label {
  font-size: 14px;
  color: var(--text-faded);
  margin-bottom: 3px;
}

.bedit__section-input {
  font-family: inherit;
  font-weight: 400;
  padding: 6px 10px 6px 12px;
  flex: 1;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
}

.bedit__icon-preview-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
  width: 200px;
  font-size: 72px;
  opacity: 0.5;
}

.bedit__icon-preview {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 8px;
}

.bedit__event-times {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media screen and (max-width: 760px) {
  .bedit__event-times {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.bedit__section-fake-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  padding: 8px 18px 8px 18px;
  margin-left: 10px;
  border-radius: 4px;
  color: var(--color-primary);
  width: "min-content";
}
.bedit__section-fake-button:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.bedit__button-outlined {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  padding: 8px 18px 8px 18px;
  margin-right: 10px;
  border-radius: 4px;
  color: var(--color-primary);
  width: "min-content";
}
.bedit__button-outlined:hover {
  color: var(--color-secondary);
}
.bedit__button-outlined:active {
  filter: brightness(120%);
}
.bedit__button-outlined:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.bedit__section-button {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  padding: 8px 18px 8px 18px;
  border-radius: 4px;
  color: white;
  width: 150px;
}
.bedit__section-button:hover {
  color: var(--color-secondary);
}
.bedit__section-button:active {
  filter: brightness(120%);
}
.bedit__section-button:hover {
  color: black;
  background-color: var(--color-secondary);
}

.bedit__error {
  color: #b00020;
  font-size: 15;
  opacity: 0.9;
  margin-top: 4px;
}

.bedit__confirm-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media screen and (max-width: 760px) {
  .bedit__confirm-row {
    display: flex;
    flex-direction: column;
    align-items: initial;
  }
  .bedit__confirm-row-cancel-delete {
    margin-top: 10px;
  }
}
:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.bcard {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0px 2px 8px 0px rgba(58, 58, 58, 0.35);
  padding: 20px;
  background-color: white;
  margin: 8px 5px 15px 5px;
  max-width: 680px;
}

.bcard__icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 8px;
  margin-right: 15px;
}

@media screen and (max-width: 760px) {
  .bcard__icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 10px;
  }
}
.bcard__icon-small {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 0px;
  margin-right: 5px;
}

.bcard__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.bcard__body-mobile {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bcard__body-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.bcard__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bcard__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
}

.bcard__info-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
}

.bcard__time {
  font-weight: 500;
  white-space: nowrap;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.bevent__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  color: var(--color-primary);
}

.bevent__nav-item {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  margin: 0 10px 0 10px;
}
.bevent__nav-item:hover {
  color: var(--color-secondary);
}
.bevent__nav-item:active {
  filter: brightness(120%);
}

.bevent__info {
  display: flex;
  flex-direction: row;
  border-radius: 8px;
  box-shadow: 0px 2px 8px 0px rgba(58, 58, 58, 0.35);
  padding: 20px 20px 10px 20px;
  background-color: white;
  margin: 8px 5px 15px 5px;
  max-width: 680px;
}

@media screen and (max-width: 760px) {
  .bevent__info {
    display: flex;
    flex-direction: column;
  }
}
.bevent__attending {
  display: flex;
  flex-direction: column;
  flex: 2;
  margin-bottom: 10px;
}

.bevent__attending-me {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}
.bevent__attending-me:hover {
  color: var(--color-secondary);
}
.bevent__attending-me:active {
  filter: brightness(120%);
}

.bevent__attending-others-row {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  margin: 5px 0 5px 0;
}
.bevent__attending-others-row:hover {
  color: var(--color-secondary);
}
.bevent__attending-others-row:active {
  filter: brightness(120%);
}

.bevent__attending-set-my {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}

.bevent__meta {
  display: flex;
  flex-direction: column;
  flex: 3;
  max-width: 340px;
  margin-bottom: 10px;
}

.bevent__meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 5px 0 5px 0;
  overflow-wrap: anywhere;
}

.bevent__icon {
  margin-right: 10px;
}

.bevent__activity-title {
  margin: 40px 0 10px 0;
  font-size: 18px;
  font-weight: 300;
}

.bevent__modal-profile-photo {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 10px;
}

.bevent__modal-name {
  font-size: 20px;
  min-width: 250px;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.msgattach {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  padding: 10px;
  border-radius: 4px;
}

.msgattach__vertical {
  display: flex;
  flex-direction: column;
}

.msgattach__textarea {
  resize: none;
  border: 1px solid var(--frame-color);
  border-radius: 4px;
  padding: 8px 10px 8px 10px;
  font: inherit;
  background-color: var(--input-background);
  flex: 1;
  width: calc(100% - 20px);
}

.msgattach__attachment-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  min-width: 80px;
  margin: 0 5px 0 5px;
}

.msgattach__attachment-media {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 4px;
}

.msgattach__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 5px;
}

.msgattach__buttons-vertical {
  margin-right: 10px;
}

.msgattach__clear-form {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 12px;
  color: var(--color-primary);
}
.msgattach__clear-form:hover {
  color: var(--color-secondary);
}
.msgattach__clear-form:active {
  filter: brightness(120%);
}

.msgattach__submit {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  padding: 6px 14px 6px 14px;
  margin-top: 5px;
  border-radius: 4px;
  color: white;
  width: min-content;
  font-size: 14px;
  min-width: 43px;
  min-height: 18px;
}
.msgattach__submit:hover {
  color: var(--color-secondary);
}
.msgattach__submit:active {
  filter: brightness(120%);
}
.msgattach__submit:hover {
  color: black;
  background-color: var(--color-secondary);
}

.msgattach__submit-inactive {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  padding: 6px 14px 6px 14px;
  margin-top: 5px;
  border-radius: 4px;
  color: white;
  width: min-content;
  font-size: 14px;
  opacity: 0.5;
  min-width: 43px;
  min-height: 18px;
}

.msgattach__attachment {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px;
}
.msgattach__attachment:hover {
  color: var(--color-secondary);
}
.msgattach__attachment:active {
  filter: brightness(120%);
}

.msgattach-attachment-text {
  font-size: 10px;
  opacity: 0.5;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.pathmates__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.pathmates__search-box {
  padding: 10px 15px 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
  flex: 1;
}

.pathmates__list {
  display: flex;
  flex-direction: column;
}

.pathmates__card {
  box-shadow: 0px 2px 8px 0px rgba(58, 58, 58, 0.35);
  background-color: white;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 10px 10px 10px;
  padding: 12px 18px 12px 18px;
}

.pathmates__card-icon {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: contain;
  margin: 0 15px 0 15px;
}

@media screen and (max-width: 760px) {
  .pathmates__card-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: contain;
    margin: 0 8px 0 8px;
  }
}
.pathmates__card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 125px;
  flex: 1;
}

.pathmates__card-name {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
}
.pathmates__card-name:hover {
  color: var(--color-secondary);
}
.pathmates__card-name:active {
  filter: brightness(120%);
}

@media screen and (max-width: 760px) {
  .pathmates__card-name {
    font-size: 20px;
  }
}
.pathmates__about {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.pathmates__card-total-points {
  color: var(--color-green);
}

.pathmates__card-body-name-and-links {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

@media screen and (max-width: 760px) {
  .pathmates__card-body-name-and-links {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.pathmates__card-last-activity-label {
  font-size: 14px;
  opacity: 0.45;
  margin-right: 25px;
}

.pathmates__card-last-activity-time {
  font-size: 14px;
  font-weight: 500;
}

.pathmates__card-last-activity {
  font-size: 14px;
  opacity: 0.9;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.pmnt__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.pmnt__header-back {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--color-primary);
  font-size: 16px;
}
.pmnt__header-back:hover {
  color: var(--color-secondary);
}
.pmnt__header-back:active {
  filter: brightness(120%);
}

.pmnt__selection-area {
  display: flex;
  flex-direction: row;
  flex: 1;
}

@media screen and (max-width: 760px) {
  .pmnt__selection-area {
    display: flex;
    flex-direction: column;
  }
}
.pmnt__label {
  font-size: 14px;
  opacity: 0.85;
}

.pmnt__send-to-selected {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-primary);
  padding: 8px 18px 8px 18px;
  margin: 5px 0 5px 0;
  border-radius: 4px;
  color: var(--color-primary);
  width: "min-content";
  white-space: nowrap;
}
.pmnt__send-to-selected:hover {
  color: var(--color-secondary);
}
.pmnt__send-to-selected:active {
  filter: brightness(120%);
}
.pmnt__send-to-selected:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.pmnt__send-to-not-selected {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  padding: 8px 18px 8px 18px;
  margin: 5px 0 5px 0;
  border-radius: 4px;
  width: "min-content";
  opacity: 0.5;
  white-space: nowrap;
}
.pmnt__send-to-not-selected:hover {
  color: var(--color-secondary);
}
.pmnt__send-to-not-selected:active {
  filter: brightness(120%);
}

.pmnt__search-box {
  padding: 10px 15px 10px 20px;
  font-size: 16px;
  margin: 3px 0 3px 0;
  border-radius: 4px;
  background-color: var(--input-background);
  flex: 1;
}

.pmnt__recipients-box {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  flex: 1;
  border-radius: 4px;
  flex-wrap: wrap;
}

.pmnt__recipients-box-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  padding: 4px 12px 4px 12px;
  margin: 0 10px 5px 0;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 100px;
  font-weight: 500;
}

.pmnt__recipient-row {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
}
.pmnt__recipient-row:hover {
  color: var(--color-secondary);
}
.pmnt__recipient-row:active {
  filter: brightness(120%);
}

.pmnt__response-container {
  display: flex;
  flex-direction: column;
  position: sticky;
  bottom: 0;
  box-shadow: 0px -2px 4px 0px rgba(58, 58, 58, 0.45);
  margin: 0px 4px 0px 4px;
}

.pmnt__response-container-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 0.75;
  color: white;
  user-select: none;
  pointer-events: none;
}

.pmnt__maf-cover {
  opacity: 0.5;
  pointer-events: none;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.pmh__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.pmh__header-new-pathmail,
.pmh__header-new-pathmail:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid var(--color-primary);
  padding: 8px 18px 8px 18px;
  border-radius: 4px;
  width: "min-content";
  color: var(--color-primary);
  transition: filter 250ms;
  font-size: 14px;
}
.pmh__header-new-pathmail:hover,
.pmh__header-new-pathmail:visited:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.pmh__header-new-pathmail:active,
.pmh__header-new-pathmail:visited:active {
  filter: brightness(120%);
}

.pmh__search-box {
  padding: 10px 15px 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
  flex: 1;
}

.pmh__threads-list {
  display: flex;
  flex-direction: column;
  margin-right: 4px;
}

.pmh__thread {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.pmh__thread-mobile {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.pmh__thread-photo {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  object-fit: contain;
}

.pmh__thread-initials {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  width: 75px;
  border-radius: 75px;
  font-size: 24px;
  font-weight: 500;
  background-color: #e7e7e7;
}

@media screen and (max-width: 760px) {
  .pmh__thread-photo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 5px;
  }
  .pmh__thread-initials {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    font-size: 16px;
    margin-right: 5px;
  }
}
.pmh__thread-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 10px;
}

.pmh__thread-name {
  font-size: 18px;
  font-weight: 500;
}

.pmh__thread-time {
  font-size: 14px;
  font-weight: 500;
}

.pmh__thread-subtext {
  font-size: 12px;
}

.pmh__thread-message {
  font-size: 14px;
  margin-top: 8px;
  position: relative;
  min-height: 3.6em;
  max-height: 4.8em;
  overflow: hidden;
  line-height: 1.2em;
}

.pmh__thread-message:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 1.2em;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--color-app-background) 50%);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.pmt__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  position: sticky;
  top: 0;
  background-color: var(--color-app-background);
  z-index: 10;
}

.pmt__header-back,
.pmt__header-back:visited {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  color: var(--color-primary);
}
.pmt__header-back:hover,
.pmt__header-back:visited:hover {
  color: var(--color-secondary);
}
.pmt__header-back:active,
.pmt__header-back:visited:active {
  filter: brightness(120%);
}

.pmt__group-name {
  align-self: center;
  opacity: 0.75;
  margin: 10px 0 10px 0;
}

.pmt__message {
  display: flex;
  flex-direction: row;
  margin-bottom: 2px;
  max-width: 80%;
}

.pmt__message-me {
  align-self: flex-end;
  margin-right: 4px;
}

.pmt__message-other {
  align-self: flex-start;
}

.pmt__message-bottom-margin {
  margin-bottom: 20px;
}

.pmt__profile-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-right: 5px;
}

.pmt__profile-photo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: contain;
}

.pmt__profile-initials {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  background-color: #e7e7e7;
}

.pmt__bubble {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 8px 15px 8px 15px;
}

.pmt__bubble-me {
  background-color: #488db0;
  color: white;
}

.pmt__bubble-other {
  background-color: #ffe499;
  color: black;
}

.pmt__bubble-name {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
  font-weight: 600;
}

.pmt__bubble-time {
  font-size: 14px;
  align-self: flex-end;
  margin-top: 2px;
}

.cool {
  margin: 100px;
}

.pmt__bubble-me-borders-first {
  border-radius: 12px 12px 3px 12px;
}

.pmt__bubble-me-borders-middle {
  border-radius: 12px 3px 3px 12px;
}

.pmt__bubble-me-borders-last {
  border-radius: 12px 3px 12px 12px;
}

.pmt__bubble-other-borders-first {
  border-radius: 12px 12px 12px 3px;
}

.pmt__bubble-other-borders-middle {
  border-radius: 3px 12px 12px 3px;
}

.pmt__bubble-other-borders-last {
  border-radius: 3px 12px 12px 12px;
}

.pmt__reply-container {
  display: flex;
  flex-direction: column;
  position: sticky;
  bottom: 0;
  box-shadow: 0px -2px 4px 0px rgba(58, 58, 58, 0.45);
  margin: 0px 4px 0px 4px;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.modal__container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 200ms;
  opacity: 0;
}

.modal__container-show {
  opacity: 1;
}

.modal__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 20vw;
  max-width: 75vw;
  max-height: 90vh;
  overflow-y: auto;
  background-color: white;
  border-radius: 4px;
  padding: 30px 50px 20px 50px;
}

.modal__title {
  font-size: 20px;
  margin-bottom: 25px;
}

.modal__buttons-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 25px;
}

.modal__button-done {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  padding: 8px 18px 8px 18px;
  border-radius: 4px;
  color: white;
  width: 100px;
}
.modal__button-done:hover {
  color: var(--color-secondary);
}
.modal__button-done:active {
  filter: brightness(120%);
}
.modal__button-done:hover {
  color: black;
  background-color: var(--color-secondary);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.signup__logo {
  height: auto;
  margin: 30px 0 30px 0;
  max-width: 50%;
}

.signup__preview-photo-container {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 18px;
  padding: 10px;
  align-self: flex-start;
}
.signup__preview-photo-container:hover {
  color: var(--color-secondary);
}
.signup__preview-photo-container:active {
  filter: brightness(120%);
}

.signup__preview-photo {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 0;
}

.signup__preview-photo-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 120px;
  opacity: 0.5;
  color: white;
}

.signup__form {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 0px 10px 0 10px;
}

.signup__input-row {
  display: flex;
  flex-direction: row;
  padding: 2px;
}

.signup__input {
  font-family: inherit;
  padding: 6px 10px 6px 12px;
  margin-top: 5px;
  flex: 1;
  border-radius: 4px;
  background-color: var(--input-background);
  font-size: 16px;
}

.signup__input-error {
  color: #ffd9df;
  font-size: 14px;
  font-weight: 500;
}

.signup__button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 2px 10px 0 rgba(58, 58, 58, 0.35);
  user-select: none;
  cursor: pointer;
  transition: filter 250ms, box-shadow 250ms;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 18px;
  padding-left: 18px;
  font-size: 20px;
}
.signup__button:hover {
  filter: brightness(104%);
  box-shadow: 0 6px 14px 0 rgba(58, 58, 58, 0.35);
}
.signup__button:active {
  filter: brightness(112%);
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.signin__logo {
  width: 432px;
  max-width: 80%;
}

.signin__background {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../../resources/assets/slide-background-new.png");
}

.signin__input {
  font-family: inherit;
  font-weight: 400;
  padding: 12px 20px 12px 20px;
  width: 325px;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
  margin-top: 10px;
}

.access_code__input {
  font-family: inherit;
  font-weight: 400;
  padding: 12px 40px 12px 40px;
  width: 125px;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
  margin-top: 10px;
  text-align: center;
}

.signin__login {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 2px 10px 0 rgba(58, 58, 58, 0.35);
  user-select: none;
  cursor: pointer;
  transition: filter 250ms, box-shadow 250ms;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 18px;
  padding-left: 18px;
  background-color: #82bad6;
  min-width: 150px;
  margin: 10px 0 20px 0;
  font-size: 18px;
}
.signin__login:hover {
  filter: brightness(104%);
  box-shadow: 0 6px 14px 0 rgba(58, 58, 58, 0.35);
}
.signin__login:active {
  filter: brightness(112%);
}
.signin__login :hover {
  color: var(--color-secondary);
}

.signin__second-option {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  color: white;
}
.signin__second-option:hover {
  color: var(--color-secondary);
}
.signin__second-option:active {
  filter: brightness(120%);
}
.signin__second-option :hover {
  background-color: var(--color-secondary);
  color: black;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

.ann__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

/*
  here's where those min-height numbers come from
  60px: header
  71px: search box
  142: response box
*/
.ann__list {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px - 71px - 142px);
  margin-right: 4px;
}

.ann__search {
  padding: 10px 15px 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  background-color: var(--input-background);
  flex: 1;
}

.ann {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ann__photo {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 10px;
}

.ann__initials {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  width: 75px;
  border-radius: 75px;
  font-size: 24px;
  font-weight: 500;
  background-color: #e7e7e7;
}

.ann__new {
  display: flex;
  flex-direction: column;
  position: sticky;
  bottom: 0;
  box-shadow: 0px -2px 4px 0px rgba(58, 58, 58, 0.45);
  margin: 0px 4px 0px 4px;
  border-radius: 4px 4px 0px 0px;
}

.ann__new-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #bfe0f1;
  padding: 8px 10px 8px 10px;
  flex: 1;
  border-radius: 4px 4px 0px 0px;
}

:root {
  --color-primary: #0088cb;
  --color-primary-faded: rgba(0, 136, 203, 0.0823529412);
  --color-secondary: #ffcb3b;
  --color-secondary-faded: rgba(255, 203, 59, 0.1254901961);
  --color-green: #52c445;
  --color-app-background: #f5fbff;
  --color-text: #363636;
  --frame-color: rgba(127, 138, 148, 0.2078431373);
  --frame-color-subtle: rgba(127, 138, 148, 0.1450980392);
  --input-background: #fcfcfc;
  --button-disabled: #82bad6;
  --text-faded: #979999;
}

path__section-steps-search-container {
  margin-top: 20px;
  border-top: 1px solid var(--frame-color-subtle);
}

.path__section-step-search {
  display: block;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: filter 250ms;
  text-decoration: none;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 12px;
  padding-left: 12px;
  user-select: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--frame-color-subtle);
  margin-left: 20px;
  font-weight: 500px;
}
.path__section-step-search.done {
  opacity: 0.75px;
  font-weight: 400;
}

.path__section-step-search:hover {
  /*color: common.$color-secondary;*/
  /*cursor: pointer;*/
}

.path__section-step-search:active {
  filter: brightness(120%);
}

.path__section-step-search.done {
  opacity: 0.75px;
  font-weight: 400;
}

.path__section-step-search-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.path__section-step-search-number {
  margin-left: 2px;
  font-size: 12px;
  opacity: 0.5;
}

.path__section-step-search-header {
  cursor: pointer;
}

.path__section-step-search-header:hover {
  color: var(--color-secondary);
}

/*
.path__section-step-search-body:hover {
  cursor: default;
  color: common.$color-text;
  text-decoration: none;
}

.step__content:hover {
  cursor: default;
  color: common.$color-text;
  text-decoration: none;
}
*/
body {
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  padding: 0px;
  margin: 0px;
  background-color: var(--color-app-background);
}

.global-container {
  width: 100vw;
  height: 100vh;
  display: grid;
  column-gap: 5px;
  grid-template-columns: 60px 1fr 60px;
  grid-template-rows: 1fr;
  grid-template-areas: "navbar content activity";
}

.global-container-nav-expanded {
  grid-template-columns: 250px 1fr 60px;
}

.global-container-activity-expanded {
  grid-template-columns: 60px 1fr 350px;
}

.global-container-both-expanded {
  grid-template-columns: 250px 1fr 350px;
}

.global-container-mobile {
  width: calc(100vw - 20px);
  height: 100vh;
  padding: 0 10px 0 10px;
}

.page-container {
  overflow-y: auto;
  grid-area: content;
  scroll-behavior: smooth;
}

.current-page {
  max-width: 750px;
}

.medium_icon {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  height: 24;
  width: 24;
}
.medium_icon:hover {
  filter: brightness(104%);
}
.medium_icon:active {
  filter: brightness(112%);
}

.row {
  display: flex;
  flex-direction: row;
}

.centered_row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sbc_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

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

.sb_column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.centered_column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.clickable {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
}
.clickable:hover {
  color: var(--color-secondary);
}
.clickable:active {
  filter: brightness(120%);
}

.hide {
  display: none;
  height: 0px;
  width: 0px;
  overflow: hidden;
}

.header_height {
  min-height: 60px;
}

.material-icons {
  opacity: 0.54;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-32 {
  font-size: 32px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

a:link,
a:visited {
  color: var(--color-primary);
}

a:hover {
  color: var(--color-secondary);
}

a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

input,
textarea {
  border: 1px solid var(--frame-color);
}

.spin {
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid #363636;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #363636 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.lds-ring-small {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}

.lds-ring-small div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 3px;
  border: 3px solid #363636;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #363636 transparent transparent transparent;
}

.lds-ring-small div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring-small div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring-small div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring-small {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#color-blue {
  color: var(--color-primary);
}

#link-black {
  color: var(--color-text);
  text-decoration: none;
}

#link-black:hover {
  color: var(--color-secondary);
}

#link-white {
  color: white;
  text-decoration: none;
}

#link-white:hover {
  color: var(--color-text);
}

.color-blue {
  color: var(--color-primary);
}

.page-header {
  font-size: 32px;
  font-weight: 300;
}

@media screen and (max-width: 760px) {
  .page-header {
    font-size: 20px;
  }
}
.big-rounded-button {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px 4px 16px;
  border-radius: 20%/50%;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.big-rounded-button:hover {
  color: var(--color-secondary);
}
.big-rounded-button:active {
  filter: brightness(120%);
}
.big-rounded-button:hover {
  border: 1px solid var(--color-secondary);
}

.big-rounded-button-2 {
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  cursor: pointer;
  transition: filter 250ms;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px 4px 16px;
  border-radius: 10%/40%;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.big-rounded-button-2:hover {
  color: var(--color-secondary);
}
.big-rounded-button-2:active {
  filter: brightness(120%);
}
.big-rounded-button-2:hover {
  border: 1px solid var(--color-secondary);
}
.big-rounded-button-2:active {
  filter: brightness(120%);
}

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