@charset "UTF-8";
/* GLOBAL STYLES */
body {
  font-family: "Outfit";
  background: white;
  min-height: 100vh;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 13pt;
  }
}

h1, h2, h3, .collapse-link {
  font-weight: bold;
}

a {
  color: #188EAC;
}

a.link-current {
  font-weight: bold;
}
a.link-current::after {
  content: "◀";
}

nav .menu-toggle-circle {
  position: relative;
}
nav .menu-toggle-circle .number-badge {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  font-size: 9pt;
}

.button-blob, .button-circle, .button-pill, .tag {
  background-color: #F2FAFB;
  height: 2rem;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
}
.button-blob a, .button-circle a, .button-pill a, .tag a {
  color: black;
}
.button-blob .fa:last-child, .button-circle .fa:last-child, .button-pill .fa:last-child, .tag .fa:last-child {
  margin-left: 0.3rem;
}
.button-blob .fa:first-child, .button-circle .fa:first-child, .button-pill .fa:first-child, .tag .fa:first-child {
  margin-right: 0.3rem;
}

.button-pill, .tag {
  min-width: 10rem;
  border: none;
}
.button-pill:hover, .tag:hover {
  text-decoration: none;
  color: initial;
  background-color: #e8e8e8;
}

.button-circle {
  width: 2rem;
}

.button-blob {
  height: 3rem;
  padding: 1.2rem;
}

/* Utility styles */
.upside-down {
  transform: rotate(180deg);
}

.fake-link {
  cursor: pointer;
}

.invisible-button, nav .search-form button {
  background: none;
  border: none;
  cursor: pointer;
}

.small {
  font-size: 9pt;
}

.large {
  font-size: 14pt;
}

.row-gap-1 {
  row-gap: 1rem;
}

.nowrap {
  white-space: nowrap;
}

.monospace {
  font-family: monospace;
}

.spacer {
  height: 3rem;
}

/* NAVIGATION */
nav {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  justify-content: space-between;
}
nav a {
  color: black;
}
nav a:hover, nav a:active {
  color: black;
  text-decoration: none;
}
nav .nav-right, nav .nav-left {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  nav .nav-left {
    justify-content: flex-start;
  }
  nav .nav-right {
    justify-content: flex-end;
  }
}
nav .nav-button, nav .menu-toggle, nav .search-form, nav .menu-toggle-circle {
  font-size: 16pt;
  padding: 0.3rem;
  border-radius: 10px;
}
nav .search-form, nav .menu-toggle-circle {
  border: 1px solid black;
}
nav .menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .menu-toggle-circle {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background-size: cover;
  background-position: center;
}
nav .nav-button {
  background-color: #2CC4EB;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .nav-button .nav-button-label {
  font-size: 13pt;
}
nav .nav-button .nav-button-label:not(:first-child) {
  margin-left: 0.8rem;
}
nav .search-form {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  nav .search-form {
    width: calc(100% - 3rem);
  }
}
nav .search-form input {
  border: none;
  font-size: 14pt;
  width: 100%;
}
nav .collapse-container {
  position: absolute !important;
  z-index: 10;
  width: 100%;
  left: 0;
  top: 100%;
  background-color: #F2FAFB;
}
nav .collapse-container .collapse.show, nav .collapse-container .collapse.collapsing {
  justify-content: space-around;
}
nav .logo-small, nav .logo {
  padding: 0 1rem;
  font-size: 24pt;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  nav .logo {
    display: none;
  }
}
nav .logo-small {
  display: none;
}
@media screen and (max-width: 768px) {
  nav .logo-small {
    display: inline-block;
  }
}
nav .menu-item {
  display: block;
  padding: 0.3rem;
}
nav .menu-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main area */
.main-wrapper {
  flex-grow: 1;
}
@media screen and (min-width: 1200px) {
  .main-wrapper {
    display: flex;
    justify-content: center;
  }
}

.main-right-spacer {
  width: 200px;
}

/* Sidebar */
@media screen and (min-width: 1200px) {
  .sidebar {
    width: 200px;
    padding: 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sidebar {
    padding: 0.6rem 0;
  }
}
.sidebar > a {
  border-radius: 10px;
  padding: 0.3rem 0.6rem;
  color: black;
}
@media screen and (min-width: 1200px) {
  .sidebar > a {
    display: block;
    width: 100%;
  }
}
.sidebar > a:hover {
  text-decoration: none;
}
.sidebar > a.active {
  background-color: #2CC4EB;
}

.sidebar-unread {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #188EAC;
  border-radius: 10px;
  padding: 0 0.3rem;
  margin-left: 0.3rem;
  font-size: 14px;
}

/* Main */
@media screen and (min-width: 1200px) {
  .sidebar ~ main {
    margin: 0 0 0 3rem;
  }
}
main {
  background-color: white;
  width: 1200px;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  main {
    width: 100vw;
    margin: 0;
    padding-right: 0.6rem;
    padding-left: 0.6rem;
  }
}
main h1 {
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 0.3rem solid #2CC4EB;
}
main > h1:not(.no-margin), main > h2:not(.no-margin), main > h3:not(.no-margin), main > .collapse-link:not(.no-margin) {
  margin-top: 2rem;
}
main img {
  max-width: 100%;
}
main .page-block {
  padding: 3rem;
}

/* Landing page */
.hero {
  margin: 2rem 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.hero-text {
  flex-basis: 0;
  flex-grow: 1;
}

.hero-image {
  flex-basis: 0;
  height: calc(100% + 4rem);
  max-width: 600px;
  max-height: 500px;
  margin: -2rem 0;
}

.hero-image-top {
  margin-top: -2rem;
  height: calc(100% + 2rem);
}

.hero-gallery {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0.6rem 0;
}
.hero-gallery img {
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

/* Profile page */
.owner-only {
  background-color: #F2FAFB;
  opacity: 0.8;
  margin-top: 2rem;
  padding: 3rem;
  text-align: center;
}

.profile-banner {
  height: 240px;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1200px) {
  .profile-banner {
    width: 1200px;
  }
}

.profile-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 3rem 1rem;
}
.profile-info .profile-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
}
.profile-info .display-name {
  font-size: 18pt;
}

.profile-avatar {
  height: 150px;
  margin-top: -75px;
  border-radius: 10px;
}

.profile-interact {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.profile-interact form {
  margin: 0;
}

.profile-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #F2FAFB;
  list-style-type: none;
  margin: 0;
}
.profile-menu li {
  padding: 1rem;
  flex-basis: 0;
}
.profile-menu li a {
  color: black;
}

.profile-highlight {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 3rem;
  gap: 3rem;
}
.profile-highlight img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 10px;
}

.profile-custom:not(.customised) {
  padding: 1rem;
}

/* EDIT PROFILE */
.image-preview {
  width: 150px;
}

.banner-image-preview {
  margin-top: 3rem;
  margin-bottom: 3rem;
  margin-left: -3rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .banner-image-preview {
    margin-right: -3rem;
  }
}

#editor {
  width: 100%;
  min-height: 50vh;
}

/* ART PAGE */
.art-display-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.art-display {
  max-width: 100%;
}

.fave-button {
  background: none;
  border: none;
  display: inline-block;
  color: darkred;
  font-size: 14pt;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* EDIT ART */
.image-input-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem;
}
.image-input-wrapper.deselected, .image-input-wrapper.dragging {
  background-color: #F2FAFB;
  opacity: 0.5;
}
.image-input-wrapper input[type=file] {
  flex-grow: 1;
}
.image-input-wrapper .image-buttons {
  color: gray;
}
.image-input-wrapper .image-drag-handle {
  cursor: grab;
  padding: 0.5rem;
}
.image-input-wrapper .image-preview {
  width: auto;
  max-height: 150px;
  max-width: 150px;
}

/* FOLDER PAGE */
.folder-row {
  overflow-x: auto;
  gap: 1rem;
  white-space: nowrap;
  height: 220px;
}
.folder-row .folder {
  height: 200px;
  flex-basis: 220px;
  width: 220px;
  background-color: #F2FAFB;
  padding: 13px;
  border-radius: 10px;
  display: inline-flex;
  flex-direction: column;
  color: black;
  white-space: initial;
  vertical-align: top;
}
.folder-row .folder-thumbnail {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60pt;
  color: #188EAC;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e8e8e8;
}
.folder-row .folder-title {
  padding-top: 0.3rem;
}

.folder-badge-link {
  font-size: small;
  border: 1px solid #767676;
  border-radius: 0.3rem;
  padding: 0.3rem;
  color: #767676;
}

.collapse-link {
  color: black;
  font-weight: bold;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 15pt;
}

.tag-info.collapsing {
  height: 0;
  padding-bottom: 0;
  transition: all 0.01s linear;
}

.tag-manage {
  display: flex;
  gap: 0.3rem;
}

.tag {
  min-width: auto;
  color: black;
  padding: 0.3rem 1.2rem;
}
.tag.selected {
  background-color: #188EAC;
  color: white;
}

.tag-highlight {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.tag-highlight-image {
  width: 100px;
  height: 100px;
  margin-right: 0.6rem;
}

.tag-highlight-text {
  flex-grow: 1;
  flex-basis: 0;
}

@media screen and (min-width: 1200px) {
  div[class$=-section] {
    margin: 2rem 0;
  }
}
@media screen and (max-width: 768px) {
  div[class$=-section] {
    padding: 0.3rem;
  }
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .gallery {
    justify-content: center;
  }
}

.wide-gallery .gallery-description {
  flex-basis: 0;
  flex-grow: 1;
}

.gallery-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.gallery-thumbnail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  width: 224px;
  border: 1px solid #A9C7C1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: 0.2s all linear;
}
.gallery-thumbnail.collapsed {
  width: 0px;
  opacity: 0;
}
.gallery-thumbnail.empty {
  justify-content: center;
}
.gallery-thumbnail img {
  height: 224px;
  width: 224px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.gallery-thumbnail .gallery-thumbnail-badgerow {
  font-size: 14pt;
  display: flex;
  gap: 0.3rem;
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
}
.gallery-thumbnail .gallery-thumbnail-badge {
  border-radius: 10px;
  color: white;
  background-color: #188EAC;
  padding: 0 0.3rem;
  font-size: 10pt;
}

/* Messages */
.mail-item.unread {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Notifications */
.notification-manage-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  #notification-manage {
    text-align: right;
  }
}
.notification-manage-button {
  border: 1px solid #A9C7C1;
}

.notification-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.notification-item {
  max-width: 1000px;
  background-color: #F2FAFB;
  border: 1px solid #A9C7C1;
  padding: 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.notification-item img {
  width: 48px;
  border-radius: 5px;
}
.notification-item a {
  font-weight: bold;
  color: inherit;
}

.notification-message {
  padding: 0.3rem;
  width: 100%;
}

.notification-left {
  height: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.6rem;
  border-left: 8px solid transparent;
}
.notification-left.unread {
  border-color: #2CC4EB;
}

.dummy-checkbox {
  display: inline-block;
}
.dummy-checkbox .real-checkbox {
  display: none;
}
.dummy-checkbox .real-checkbox:checked ~ .dummy-checkbox-box::after {
  content: "✔️";
}

.dummy-checkbox-spacer, .dummy-checkbox-box {
  width: 1.6em;
  height: 1.6em;
}

.dummy-checkbox-box {
  border: 1px solid #A9C7C1;
}

.notification-respond {
  padding: 0 0.3rem;
  font-size: 14pt;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* Footer */
footer {
  padding: 3rem calc(50% - 600px);
  background-color: #F2FAFB;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0.6rem;
  }
}

@media screen and (min-width: 1200px) {
  .footer-columns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
}

.footer-branding, .footer-link-wrapper {
  flex-grow: 1;
  flex-basis: 0;
}
@media screen and (min-width: 1200px) {
  .footer-branding, .footer-link-wrapper {
    padding: 0 3rem 0.6rem 0;
  }
}

.footer-header {
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 0.1rem solid #2CC4EB;
}

.footer-link {
  display: block;
  margin: 0.3rem 0;
}

.footer-divider:before {
  content: "|";
  margin: 0 1rem;
}
