.list-item.nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 14px 18px;
  background: #141414;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.list-item.nav-item:hover {
  background: #1b1b1b;
  border-color: #3a3a3a;
}

.list-item.nav-item .grp.body.p0 {
  margin: 0;
  color: #5b9cf6;
  font-size: 15px;
  line-height: 1.2;
}


.list-item.nav-item::after {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-right: 2px;
  border-right: 2px solid #c8c8c8;
  border-bottom: 2px solid #c8c8c8;
  transform: rotate(-45deg);
}


/* ---- search bar ---- */
.hub-search-bar-input-container {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  flex: 1 1 auto;
  width: calc(100% - 76px);            /* 56 button + 4 margin + inline whitespace + slack */
  max-width: 560px;
  min-width: 0;
  height: 52px;
  box-sizing: border-box;
  padding: 0 0 0 4px;
  margin: 0;
  background: #141414;
  border: 1px solid #262626;
  border-radius: 12px;
  text-align: left;
  transition: border-color 0.15s ease;
}

.hub-search-bar-input-container:focus-within {
  border-color: rgb(51, 95, 255);
}

/* ---- input ---- */
.hub-search-bar-input-container input.hub-search-bar-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0 4px 0 16px;
  margin: 0;
  color: #ececec;
  font-size: 16px;                     /* 16px avoids iOS auto-zoom on focus */
  line-height: 1.2;
  font-family: inherit;
  text-align: left !important;
}

.hub-search-bar-input-container input.hub-search-bar-input::placeholder {
  color: #8a8a8a;
  text-align: left;
  opacity: 1;
}

/* ---- search button ---- */
.hub-search-bar-button {
  display: inline-flex;
  vertical-align: middle;
  align-self: center;
  flex: 0 0 auto;
  float: none;
  position: static;
  width: 56px;
  height: 52px;
  margin: 0 0 0 4px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background-color: rgb(51, 95, 255);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transition: background-color 0.15s ease;
}

.hub-search-bar-button.pointer {
  cursor: pointer;
}

.hub-search-bar-button:hover {
  background-color: rgb(70, 111, 255);
}

.hub-search-bar-button:active {
  background-color: rgb(42, 80, 224);
}

.hub-search-bar-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.hub-search-bar-button:disabled {
  opacity: 0.5;
  cursor: default;
}

/* ---- loader ---- */
.hub-search-bar-loader {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.hub-search-bar-loader .nu-loader {
  display: none;
}

.hub-search-bar-loader .nu-loader.loading {
  display: block;
  margin-right: 12px;                  /* margin on the spinner, so an idle
                                          loader takes up no space at all */
}

/* ---- tablet ---- */
@media (max-width: 900px) {
  .hub-search-bar-input-container {
    max-width: none;                   /* let it use the full wrapper width */
  }
}

/* ---- mobile ---- */
@media (max-width: 600px) {
  .hub-search-bar-input-container {
    width: calc(100% - 68px);
    height: 46px;
    border-radius: 10px;
  }

  .hub-search-bar-input-container input.hub-search-bar-input {
    padding: 0 2px 0 12px;
  }

  .hub-search-bar-button {
    width: 48px;
    height: 46px;
    border-radius: 10px;
  }
}

.square-image {
  position: relative;
}


.square-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid #4285F4;
  transform: rotate(5deg);
}


.square-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.social-links-item {
    background-color: #25262B;
    float: left !important;
}