:root {
  --lua-blue: #00257A;
  --white-back-color: white;
  --back-color: #eff4ff;
  --header-color: #2c3e67;
  --header-fg: white;
  --button-color: #008FEE;
  --button-fg: white;
  --admin-color: #FFCAD9;
  --site-width: 960px;
  --link-color: #008FEE;
  --link-color-hover: #22a7ff;
  --button-height: 35px;
  --red-button-color: #EE004F;
  --base-font-size: 16px;
  --small-font-size: 14px;
  --body-color: #47555C;
  --border-color: #C1CCE4;
  --light-border-color: #d3dbec;
  --line-height: 24px;
  --input-border-color: #9dafd5;
  --input-border-color-focused: #4a68a9;
  --font-family: Open Sans, sans-serif;
  --sub-color: #757779;
  --sub-color-light: #919294;
  --error-color: #fa494d;
  --tag-color: #4b69af; }

body {
  color: var(--body-color);
  font-size: var(--base-font-size);
  font-family: var(--font-family);
  margin: 0; }

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

h1, h2, h3 {
  margin: 40px 0 20px 0; }

h2 {
  font-size: 24px; }

h3 {
  font-size: 18px; }

details.query_log {
  position: fixed;
  background: var(--white-back-color);
  border: 2px solid var(--border-color);
  bottom: 0;
  right: 0;
  padding: 10px;
  opacity: 0.8;
  margin: 10px;
  max-height: 50vh;
  overflow: auto;
  border-radius: 4px; }
  details.query_log summary {
    cursor: pointer; }
  details.query_log[open] {
    opacity: 1; }

button, input[type='submit'], .button {
  display: inline-block;
  text-decoration: none;
  background: var(--button-color);
  line-height: 35px;
  height: 35px;
  padding: 0 30px;
  font-size: var(--base-font-size);
  font-family: 'Open Sans', sans-serif;
  border: 0;
  border-radius: 3px;
  color: var(--button-fg);
  cursor: pointer; }
  button:hover, input[type='submit']:hover, .button:hover {
    background-color: color-mix(in lab, var(--button-color), white 5%);
    color: var(--button-fg); }
  button:active, input[type='submit']:active, .button:active {
    background-color: color-mix(in lab, var(--button-color), black 5%); }

.round_button {
  transition: all 0.2s ease;
  opacity: 0.8;
  display: inline-block;
  border: 1px solid rgba(0, 143, 238, 0.8);
  border-radius: 15px;
  text-decoration: none;
  background: none;
  padding: 2px 12px;
  font-size: var(--small-font-size); }
  .round_button:hover {
    color: var(--button-fg);
    opacity: 1;
    background: var(--link-color); }

input {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--base-font-size); }

p {
  line-height: 1.5;
  margin: 20px 0; }
  p > code {
    background: rgba(68, 68, 102, 0.1);
    padding: 2px 4px;
    border-radius: 6px; }

hr {
  height: 1px;
  background: var(--border-color);
  border: 0;
  margin: 20px 0; }

.header {
  background: var(--header-color);
  height: 55px;
  color: var(--header-fg); }
  .header .header_inner {
    max-width: var(--site-width);
    min-width: 800px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px; }
  .header .header_search {
    flex: 1;
    max-width: 400px; }
    .header .header_search input[type=text] {
      border: 0;
      font-size: 14px;
      padding: 8px 10px;
      border-radius: 4px;
      background: var(--back-color);
      color: #666;
      width: 100%;
      box-sizing: border-box; }
      .header .header_search input[type=text]:focus {
        outline: none;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  .header .user_panel {
    font-size: var(--small-font-size);
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-content: center; }
    .header .user_panel > * {
      margin-left: 12px; }
      .header .user_panel > *:first-child {
        margin-left: 0; }
    .header .user_panel .unread_notifications {
      background: var(--white-back-color);
      height: 22px;
      line-height: 22px;
      color: var(--link-color);
      padding: 0 8px;
      border-radius: 18px; }
      .header .user_panel .unread_notifications:hover {
        color: var(--link-color); }
    .header .user_panel a {
      color: #88d0ff;
      text-decoration: none;
      font-weight: bold; }
      .header .user_panel a:hover {
        color: #eef8ff; }
  .header .text_logo {
    width: 150px;
    vertical-align: top; }
  .header .icon_logo {
    width: 45px;
    height: 45px;
    margin-top: 2px; }

.errors {
  color: var(--error-color); }

.content {
  background: var(--back-color);
  border-bottom: 1px solid var(--light-border-color); }

.main_column {
  max-width: var(--site-width);
  min-width: 800px;
  margin: 0 auto;
  padding-bottom: 40px; }

.footer {
  color: #9E9E9E;
  width: var(--site-width);
  margin: 0 auto;
  padding: 20px 0;
  font-size: 12px;
  display: flex; }
  .footer a {
    color: #9E9E9E; }
  .footer > :last-child {
    margin-left: auto; }

.sub_footer {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px; }
  .sub_footer span {
    display: block;
    color: #b4b4b4;
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase; }
  .sub_footer img {
    margin-top: 5px;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.2s ease; }
    .sub_footer img:hover {
      opacity: 1;
      filter: grayscale(0%); }

.header_count {
  color: var(--sub-color); }

.admin_tools {
  background: var(--admin-color);
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--border-color);
  border-radius: 2px;
  padding: 10px 15px;
  font-size: 14px;
  color: #9C445D; }
  .admin_tools .label {
    font-weight: bold; }
  .admin_tools a {
    color: #D1496F; }

.manifest_source {
  background: #444;
  padding: 8px;
  font-size: 12px;
  color: var(--button-fg);
  border-radius: 2px; }

.form .row {
  display: flex;
  gap: 10px;
  margin: 10px 0; }
  .form .row label {
    width: 200px;
    text-align: right;
    color: var(--sub-color); }
  .form .row textarea {
    width: 50%;
    box-sizing: border-box;
    vertical-align: top;
    height: 100px; }

.form .wide_row {
  margin: 10px 0; }
  .form .wide_row .label {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: bold; }
    .form .wide_row .label .sub {
      font-weight: normal;
      color: var(--sub-color); }
  .form .wide_row input[type="text"], .form .wide_row input[type="password"], .form .wide_row input[type="email"] {
    box-sizing: border-box;
    width: 100%;
    max-width: 450px; }
  .form .wide_row textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    height: 200px; }

.form input[type="text"], .form input[type="password"], .form input[type="email"], .form textarea {
  border: 2px solid var(--input-border-color);
  border-radius: 2px;
  padding: 4px;
  box-sizing: border-box; }
  .form input[type="text"]:focus, .form input[type="password"]:focus, .form input[type="email"]:focus, .form textarea:focus {
    border-color: var(--input-border-color-focused);
    outline: none; }

.form .selectize-input {
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  border: 2px solid var(--input-border-color);
  border-radius: 2px;
  padding: 4px;
  box-sizing: border-box; }
  .form .selectize-input:focus {
    border-color: var(--input-border-color-focused);
    outline: none; }

.form .button_row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center; }
  .form .button_row a {
    color: var(--sub-color); }
    .form .button_row a:hover {
      color: color-mix(in lab, var(--sub-color), white 10%); }
    .form .button_row a.aside {
      margin-left: auto; }

pre {
  background: #323744;
  color: white;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 2px; }
  pre.term_snippet {
    font-size: 14px; }

.table {
  background: var(--white-back-color);
  border: 1px solid #809ad5;
  box-shadow: 1px 1px 0 #5a7cc8;
  font-size: 14px;
  margin: 20px 0; }
  .table.field_table tr > td:first-child {
    text-align: right; }
  .table td {
    padding: 6px 8px; }
  .table thead {
    background: #bcd1ff;
    font-weight: bold;
    color: #42537a; }
  .table .pid {
    text-align: right; }
  .table .mem {
    font-family: monospace;
    text-align: right; }
  .table .time_ago {
    font-style: italic;
    color: #999; }

img.avatar {
  display: inline-block;
  margin-right: 4px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: rgba(0, 0, 0, 0.15); }

.external_url {
  word-wrap: break-word; }

/* builtins */
.nb {
  color: #FFA122; }

/* strings */
.s, .s1, .s2, .se {
  color: #ffe898; }

/* proper names, self */
.nc, .vc, .bp {
  color: #98d9ff; }

/* true, false, nil */
.kc {
  color: #acfff0; }

/* function lit, braces, parens  */
.nf, .kt {
  color: #9fff98; }

/* operators */
.o {
  font-weight: bold;
  color: #ff9898; }

.nv {
  color: #ff9898; }

/* keywords */
.k, .kd {
  font-weight: bold;
  color: #cb98ff; }

.c1, .c2 {
  color: #929292; }

.m, .mi, .mf, .mh {
  color: #9495ff; }

.pager {
  height: 30px;
  line-height: 30px;
  margin: 20px 0; }
  .pager a {
    margin-right: 5px; }
  .pager .pager_label {
    color: #5d7079; }

.page_tabs {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px; }
  .page_tabs .tab {
    font-size: 16px;
    padding-bottom: 5px; }
  .page_tabs .tab {
    transition: all 0.2s ease;
    color: var(--body-color);
    text-decoration: none;
    border-bottom: 4px solid transparent; }
    .page_tabs .tab.active, .page_tabs .tab:hover {
      color: var(--link-color);
      border-bottom: 4px solid var(--link-color); }

.development_flag, .new_tag, .user_flag, .archive_flag, .manifest_tag {
  display: inline-block;
  vertical-align: 2px;
  font-weight: bold;
  margin-left: 10px;
  text-transform: uppercase;
  font-size: 12px;
  height: 17px;
  line-height: 17px;
  letter-spacing: 0.03em;
  background: var(--tag-color);
  color: var(--button-fg);
  border-radius: 2px;
  padding: 0 4px; }
  .development_flag.archive_flag, .new_tag.archive_flag, .user_flag.archive_flag, .archive_flag.archive_flag, .manifest_tag.archive_flag {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.5); }
  .development_flag.manifest_tag, .new_tag.manifest_tag, .user_flag.manifest_tag, .archive_flag.manifest_tag, .manifest_tag.manifest_tag {
    text-transform: initial; }

.graph_container {
  height: 180px;
  margin-bottom: 40px;
  margin-left: -50px; }
  .graph_container .axis path, .graph_container .axis line {
    fill: none;
    stroke: #9dafd5;
    shape-rendering: crispEdges; }
  .graph_container .axis text {
    fill: #757779; }
  .graph_container .x_guides, .graph_container .y_guides {
    stroke: #d3dbec;
    fill: none;
    shape-rendering: crispEdges; }
  .graph_container .graph path {
    fill: rgba(44, 62, 103, 0.3);
    stroke: rgba(44, 62, 103, 0.8); }
  .graph_container .dots circle {
    fill: white;
    stroke: #2c3e67; }
.about_page ul {
  padding-left: 20px;
  line-height: 1.5; }
.admin_page_page .main_column {
  min-width: 0;
  max-width: none;
  margin-left: 40px;
  margin-right: 40px; }

.admin_page_page .page_header_widget {
  margin-bottom: 20px; }
  .admin_page_page .page_header_widget > * {
    min-width: 0;
    max-width: none;
    margin-left: 40px;
    margin-right: 40px; }

.admin_page_page .filter_form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
  flex-wrap: wrap; }
  .admin_page_page .filter_form > * {
    min-width: 0; }
  .admin_page_page .filter_form > input {
    max-width: 200px; }
  .admin_page_page .filter_form > .enum_field {
    display: flex;
    border-style: solid;
    border-color: var(--border-color); }
    .admin_page_page .filter_form > .enum_field legend {
      font-weight: bold; }
    .admin_page_page .filter_form > .enum_field li {
      display: inline-block; }
    .admin_page_page .filter_form > .enum_field button {
      display: block;
      box-sizing: border-box;
      cursor: pointer;
      padding: 5px 10px;
      font-size: 14px;
      height: 30px;
      line-height: initial; }
      .admin_page_page .filter_form > .enum_field button.active {
        font-weight: bold;
        border: 2px solid var(--button-color); }
    .admin_page_page .filter_form > .enum_field ul {
      display: flex;
      gap: 5px;
      padding: 0;
      margin: 0;
      list-style: none;
      display: flex;
      gap: 5px;
      flex-wrap: wrap; }
.audit_module_page .version {
  background: var(--white-back-color);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  margin-bottom: 20px; }
  .audit_module_page .version:last-child {
    margin-bottom: 0; }
  .audit_module_page .version > .version_header {
    display: flex;
    align-items: center;
    padding: 10px; }
    .audit_module_page .version > .version_header > * {
      margin: 0; }
      .audit_module_page .version > .version_header > *:last-child {
        margin-left: auto; }
  .audit_module_page .version > .rocks {
    padding: 10px;
    font-size: 14px; }
    .audit_module_page .version > .rocks > ul {
      margin-bottom: 0; }
  .audit_module_page .version > pre {
    margin: 0;
    padding: 10px;
    font-size: 14px;
    border-radius: 0;
    overflow-x: auto; }
    .audit_module_page .version > pre .added {
      background: #206d3f;
      color: rgba(255, 255, 255, 0.8); }
    .audit_module_page .version > pre .removed {
      background: #6d2035;
      color: rgba(255, 255, 255, 0.8); }
    .audit_module_page .version > pre .truncated {
      font-size: 14px;
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.8);
      padding: 5px;
      margin: 10px 0;
      font-family: var(--font-family); }
      .audit_module_page .version > pre .truncated:last-child {
        margin-bottom: 0; }
.dependency_stats_page a.sub {
  color: var(--sub-color); }

.dependency_stats_page .table {
  font-size: var(--base-font-size);
  margin-bottom: 60px; }
  .dependency_stats_page .table td:first-child, .dependency_stats_page .table td:nth-child(2) {
    text-align: right; }
  .dependency_stats_page .table tr:nth-child(2n) {
    background: #f7f7f7; }
.edit_module_version_page .development_group {
  border: 1px solid var(--border-color);
  background: var(--white-back-color);
  padding: 20px;
  margin-bottom: 20px; }
  .edit_module_version_page .development_group p {
    margin-bottom: 0; }
  .edit_module_version_page .development_group .sub {
    margin: 5px 0;
    color: var(--sub-color); }
  .edit_module_version_page .development_group .label {
    font-weight: bold; }
  .edit_module_version_page .development_group span.label {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle; }
  .edit_module_version_page .development_group .wide_row {
    margin: 0 0 20px 0; }
    .edit_module_version_page .development_group .wide_row:last-child {
      margin-bottom: 0; }

.edit_module_version_page .rock_list {
  margin: 0;
  padding: 0; }
  .edit_module_version_page .rock_list .action_buttons {
    float: right; }
  .edit_module_version_page .rock_list .timestamp, .edit_module_version_page .rock_list .downloads {
    margin-left: 10px;
    color: var(--sub-color); }
  .edit_module_version_page .rock_list .delete_btn {
    background: var(--red-button-color); }
    .edit_module_version_page .rock_list .delete_btn:hover {
      background: color-mix(in lab, var(--red-button-color), white 10%); }
    .edit_module_version_page .rock_list .delete_btn:active {
      background: color-mix(in lab, var(--red-button-color), black 10%); }
  .edit_module_version_page .rock_list .arch {
    line-height: var(--button-height);
    border: 1px solid var(--border-color);
    background: var(--white-back-color);
    padding: 10px 20px;
    list-style: none;
    margin: 0 0 10px 0; }
.index_page .home_columns {
  display: flex;
  gap: 10px; }
  .index_page .home_columns > * {
    width: 50%; }
  .index_page .home_columns .split_header {
    margin: 0 0 20px 0; }

.index_page .split_header {
  display: flex;
  align-items: center;
  margin: 40px 0 20px 0; }
  .index_page .split_header h2 {
    margin-top: 0;
    margin-bottom: 0; }
  .index_page .split_header > * {
    margin-right: 10px; }
    .index_page .split_header > *:last-child {
      margin-right: 0; }

.index_page .announce {
  font-size: 14px;
  margin: 20px 0;
  color: var(--sub-color); }
  .index_page .announce .new_tag {
    margin: 0 10px 0 0; }

.index_page .header_sub {
  font-size: var(--small-font-size);
  margin-left: 5px;
  color: var(--sub-color-light);
  display: inline-block;
  vertical-align: 4px; }
  .index_page .header_sub a {
    color: var(--sub-color); }

.index_page .intro_banner {
  background: var(--white-back-color);
  border-bottom: 1px solid var(--light-border-color);
  margin-bottom: 30px;
  padding: 25px 0; }
  .index_page .intro_banner .intro_banner_inner {
    width: var(--site-width);
    margin: 0 auto;
    display: flex;
    gap: 20px; }
  .index_page .intro_banner img {
    width: 130px;
    height: 124px; }
  .index_page .intro_banner .intro_text {
    flex: 1; }
  .index_page .intro_banner p {
    margin: 10px 0; }
    .index_page .intro_banner p:first-child {
      margin-top: 0; }
    .index_page .intro_banner p:last-child {
      margin-bottom: 0; }
.manifest_recent_versions_page .version_list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .manifest_recent_versions_page .version_list .version_row {
    font-size: 16px;
    margin: 10px 0;
    background: var(--white-back-color);
    padding: 5px 10px;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    line-height: 1.5;
    color: var(--sub-color-light); }
    .manifest_recent_versions_page .version_list .version_row .author {
      color: var(--body-color); }
      .manifest_recent_versions_page .version_list .version_row .author:hover {
        color: color-mix(in lab, var(--body-color), black 20%); }
    .manifest_recent_versions_page .version_list .version_row .version_name {
      color: var(--body-color); }
    .manifest_recent_versions_page .version_list .version_row .created_at {
      color: var(--sub-color);
      float: right;
      font-size: 14px;
      line-height: 24px; }
    .manifest_recent_versions_page .version_list .version_row .development_flag {
      margin: 0 5px; }
.manifests_page .manifest_list .manifest_row {
  margin: 10px 0;
  background: var(--white-back-color);
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  line-height: 1.5; }
  .manifests_page .manifest_list .manifest_row .manifest_admins {
    float: right;
    color: var(--sub-color); }
  .manifests_page .manifest_list .manifest_row .title {
    font-size: 16px; }
  .manifests_page .manifest_list .manifest_row .open_flag {
    display: inline-block;
    vertical-align: top;
    margin-top: 4px;
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.03em;
    height: 17px;
    line-height: 17px;
    background: var(--tag-color);
    color: var(--button-fg);
    border-radius: 2px;
    padding: 0 4px; }
.module_page .installer {
  width: var(--site-width);
  margin: 15px auto; }
  .module_page .installer pre {
    margin: 0;
    position: relative;
    padding-left: 95px; }
    .module_page .installer pre:before {
      content: "Install:";
      font-family: var(--font-family);
      font-size: 12px;
      text-transform: uppercase;
      font-weight: bold;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      line-height: 48px;
      padding: 0 10px;
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.6); }

.module_page h3 {
  font-weight: bold; }

.module_page .version_row, .module_page .manifest_row, .module_page .dependency_row, .module_page .label_row {
  margin-bottom: 6px; }
  .module_page .version_row .sub, .module_page .manifest_row .sub, .module_page .dependency_row .sub, .module_page .label_row .sub {
    margin-left: 10px;
    color: var(--sub-color); }
    .module_page .version_row .sub a, .module_page .manifest_row .sub a, .module_page .dependency_row .sub a, .module_page .label_row .sub a {
      color: color-mix(in lab, var(--sub-color), black 10%); }
      .module_page .version_row .sub a:hover, .module_page .manifest_row .sub a:hover, .module_page .dependency_row .sub a:hover, .module_page .label_row .sub a:hover {
        color: color-mix(in lab, var(--sub-color), black 30%); }

.module_page .description {
  margin-top: 30px; }
.module_version_page h3 {
  font-weight: bold; }

.module_version_page .rock_list .sub {
  color: var(--sub-color-light); }
  .module_version_page .rock_list .sub a {
    color: var(--sub-color); }
.notifications_page .notification_row {
  margin-bottom: 10px; }
  .notifications_page .notification_row .timestamp {
    margin-left: 10px;
    color: var(--sub-color); }
  .notifications_page .notification_row .new_tag {
    margin: 0 10px 0 0; }
.popular_this_week_page a.sub {
  color: var(--sub-color); }

.popular_this_week_page .table {
  font-size: var(--base-font-size);
  margin-bottom: 60px; }
  .popular_this_week_page .table td:first-child, .popular_this_week_page .table td:nth-child(2) {
    text-align: right; }
  .popular_this_week_page .table tr:nth-child(2n) {
    background: #f7f7f7; }
.search_page .user_list {
  display: flex;
  flex-direction: column;
  gap: 10px; }
  .search_page .user_list .user_row {
    font-size: 16px;
    background: var(--white-back-color);
    padding: 5px 10px;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    line-height: 1.5; }
.upload_rock_page .file_input_row {
  margin: 15px 0; }
.upload_rockspec_page .file_uploader {
  background: var(--white-back-color);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  display: inline-block;
  padding: 10px;
  margin-right: 10px; }
  .upload_rockspec_page .file_uploader strong {
    display: block;
    margin-bottom: 8px; }

.upload_rockspec_page .form_buttons {
  margin-top: 20px; }
.user_profile_page h3 {
  font-weight: bold; }
.user_settings_api_keys_page summary {
  cursor: pointer; }
  .user_settings_api_keys_page summary code {
    font-size: 16px;
    cursor: pointer; }

.user_settings_api_keys_page .rendered_key {
  font-family: monospace;
  font-size: 14px;
  padding: 3px;
  margin-top: 5px;
  min-width: 380px;
  border: 1px solid var(--border-color);
  border-radius: 2px; }
.user_settings_security_audit_page .main_column {
  max-width: 1600px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0; }
  .user_settings_security_audit_page .main_column > p {
    max-width: var(--site-width); }
.module_header_widget .module_summary {
  line-height: 1.5;
  color: var(--sub-color); }

.module_header_widget .archive_flag {
  vertical-align: middle; }
.module_list_widget {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0; }
  .module_list_widget .module_row {
    background: var(--white-back-color);
    padding: 5px 10px;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 5px; }
    .module_list_widget .module_row .title {
      font-size: 16px; }
    .module_list_widget .module_row .author {
      color: gray; }
      .module_list_widget .module_row .author a {
        color: #444; }
        .module_list_widget .module_row .author a:hover {
          color: #666; }
    .module_list_widget .module_row .main {
      display: flex;
      gap: 5px; }
    .module_list_widget .module_row .module_manifests {
      margin-left: auto;
      display: flex;
      gap: 5px; }
      .module_list_widget .module_row .module_manifests > a {
        text-decoration: none;
        margin: 0; }
        .module_list_widget .module_row .module_manifests > a:hover {
          color: var(--button-fg); }
    .module_list_widget .module_row .main, .module_list_widget .module_row .summary {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .module_list_widget .module_row .summary {
      color: gray;
      font-size: var(--small-font-size); }
    .module_list_widget .module_row .downloads {
      color: gray; }
      .module_list_widget .module_row .downloads .value {
        color: #444; }
.page_header_widget {
  margin: 0;
  background: var(--white-back-color);
  border-bottom: 1px solid var(--light-border-color);
  padding-top: 15px; }
  .page_header_widget > * {
    margin: 15px auto; }
    .page_header_widget > *:not(.metadata_columns) {
      max-width: var(--site-width);
      min-width: 800px; }
    .page_header_widget > *:first-child {
      margin-top: 0; }
    .page_header_widget > *:last-child {
      margin-bottom: 0; }
  .page_header_widget > .page_tabs {
    border-bottom: 0;
    margin-top: 20px; }
  .page_header_widget .admin_tools {
    margin-top: 20px;
    box-sizing: border-box; }
  .page_header_widget .page_header_inner:last-child, .page_header_widget > h1:last-child {
    margin-bottom: 20px; }
  .page_header_widget .page_header_inner {
    display: flex;
    align-items: center;
    gap: 10px; }
    .page_header_widget .page_header_inner h1, .page_header_widget .page_header_inner p {
      margin: 0; }
    .page_header_widget .page_header_inner > *:last-child:first-child {
      flex: 1; }
    .page_header_widget .page_header_inner .right_tools {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px; }
  .page_header_widget h1 {
    font-size: 32px; }
    .page_header_widget h1 .sub {
      color: var(--sub-color);
      font-size: 18px;
      font-weight: normal; }
  .page_header_widget .follow_area {
    display: flex; }
    .page_header_widget .follow_area > * {
      margin-right: 10px; }
      .page_header_widget .follow_area > *:last-child {
        margin-right: 0; }
    .page_header_widget .follow_area button:not(:last-child) {
      border-radius: 3px 0 0 3px; }
    .page_header_widget .follow_area button, .page_header_widget .follow_area .button {
      display: inline-flex;
      align-items: center;
      padding: 0 20px;
      gap: 6px; }
    .page_header_widget .follow_area .followers_count {
      box-sizing: border-box;
      border: 1px solid var(--border-color);
      border-left: 0;
      display: inline-block;
      vertical-align: top;
      padding: 0 10px;
      height: var(--button-height);
      line-height: 33px;
      color: var(--sub-color);
      background: color-mix(in lab, var(--back-color), white 50%);
      border-radius: 0 3px 3px 0; }
  .page_header_widget .metadata_columns {
    margin-top: 25px;
    border-top: 1px solid var(--light-border-color);
    white-space: nowrap; }
    .page_header_widget .metadata_columns .metadata_columns_inner {
      max-width: var(--site-width);
      min-width: 800px;
      margin: 0 auto;
      display: flex;
      gap: 40px; }
    .page_header_widget .metadata_columns .column {
      box-sizing: border-box;
      white-space: normal;
      height: 75px;
      border-left: 1px solid var(--light-border-color);
      font-size: 18px;
      padding: 15px 0 15px 20px; }
      .page_header_widget .metadata_columns .column h3 {
        margin-top: 0;
        margin-bottom: 3px;
        font-size: 12px;
        color: var(--sub-color-light);
        font-weight: bold;
        text-transform: uppercase; }
      .page_header_widget .metadata_columns .column:first-child {
        border-left: 0;
        padding-left: 0px; }
.user_header_widget img.avatar {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0; }

.user_header_widget .user_flag {
  margin-left: 0;
  margin-top: 10px; }

.user_header_widget h1 {
  margin: 0;
  line-height: 60px; }

.user_header_widget .metadata_columns {
  margin-top: 15px; }

.user_header_widget .social_links {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 12px; }
  .user_header_widget .social_links a {
    text-decoration: none;
    color: color-mix(in srgb, var(--sub-color) 80%, transparent);
    transition: color 0.1s ease; }
    .user_header_widget .social_links a:hover {
      color: var(--link-color); }
/**
 * Selectize (v0.15.2)
 * https://selectize.dev
 *
 * Copyright (c) 2013-2015 Brian Reavis & contributors
 * Copyright (c) 2020-2022 Selectize Team & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 * @author Ris Adams <selectize@risadams.com>
 */
.selectize-control.plugin-drag_drop.multi>.selectize-input.dragging{overflow:visible}.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible !important;background:#f2f2f2 !important;background:rgba(0,0,0,0.06) !important;border:0 none !important;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:"!";visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,0.2)}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header{position:relative;padding:10px 8px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;border-radius:3px 3px 0 0}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close{position:absolute;right:8px;top:50%;color:#303030;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important;text-decoration:none}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover{color:black}.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content{display:flex}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;flex-grow:1;flex-basis:0;min-width:0}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button .item{display:inline-flex;align-items:center;padding-right:0 !important}.selectize-control.plugin-remove_button .item .remove{color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:2px 6px;border-left:1px solid #d0d0d0;border-radius:0 2px 2px 0;box-sizing:border-box;margin-left:6px}.selectize-control.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,0.05)}.selectize-control.plugin-remove_button .item.active .remove{border-left-color:#cacaca}.selectize-control.plugin-remove_button .disabled .item .remove:hover{background:0}.selectize-control.plugin-remove_button .disabled .item .remove{border-left-color:white}.selectize-control.plugin-clear_button .clear{text-decoration:none;display:flex;position:absolute;height:100%;width:25px;top:0;right:calc(8px - 6px);color:#000;opacity:.4;font-weight:bold;border:0;cursor:pointer;z-index:1;font-size:21px;justify-content:center;align-items:center}.selectize-control.plugin-clear_button .clear:hover{opacity:1}.selectize-control.plugin-clear_button.single .clear{right:calc(8px - 6px + 1.5rem)}.selectize-dropdown.plugin-auto_position.selectize-position-top{border-top:1px solid #d0d0d0;border-bottom:0 none;border-radius:3px 3px 0 0;box-shadow:0 -6px 12px rgba(0,0,0,0.18)}.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active{border-radius:0 0 3px 3px;border-top:0 none}.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before{top:0;bottom:unset}.selectize-control{position:relative}.selectize-dropdown,.selectize-input,.selectize-input input{color:#303030;font-family:inherit;font-size:13px;line-height:18px;font-smoothing:inherit}.selectize-input,.selectize-control.single .selectize-input.input-active{background:#fff;cursor:text;display:inline-block}.selectize-input{border:1px solid #d0d0d0;padding:8px 8px;display:inline-block;width:100%;position:relative;z-index:1;box-sizing:border-box;box-shadow:inset 0 1px 1px rgba(0,0,0,0.1);border-radius:3px}.selectize-control.multi .selectize-input.has-items{padding:calc(8px - 2px - 0px) 8px calc(8px - 2px - 3px - 0px)}.selectize-input.full{background-color:#fff}.selectize-input.disabled,.selectize-input.disabled *{cursor:default !important}.selectize-input.focus{box-shadow:inset 0 1px 2px rgba(0,0,0,0.15)}.selectize-input.dropdown-active{border-radius:3px 3px 0 0}.selectize-input>*{vertical-align:baseline;display:inline-block;zoom:1}.selectize-control.multi .selectize-input>div{cursor:pointer;margin:0 3px 3px 0;padding:2px 6px;background:#f2f2f2;color:#303030;border:0 solid #d0d0d0}.selectize-control.multi .selectize-input>div.active{background:#e8e8e8;color:#303030;border:0 solid #cacaca}.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active{color:#7d7d7d;background:white;border:0 solid white}.selectize-input>input{display:inline-block !important;padding:0 !important;min-height:0 !important;max-height:none !important;max-width:100% !important;margin:0 !important;text-indent:0 !important;border:0 none !important;background:none !important;line-height:inherit !important;user-select:auto !important;box-shadow:none !important}.selectize-input>input::-ms-clear{display:none}.selectize-input>input:focus{outline:none !important}.selectize-input>input[placeholder]{box-sizing:initial}.selectize-input.has-items>input{margin:0 0 !important}.selectize-input::after{content:" ";display:block;clear:left}.selectize-input.dropdown-active::before{content:" ";display:block;position:absolute;background:#f0f0f0;height:1px;bottom:0;left:0;right:0}.selectize-dropdown{position:absolute;top:100%;left:0;width:100%;z-index:10;border:1px solid #d0d0d0;background:#fff;margin:-1px 0 0 0;border-top:0 none;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,0.1);border-radius:0 0 3px 3px}.selectize-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.selectize-dropdown [data-selectable] .highlight{background:rgba(125,168,208,0.2);border-radius:1px}.selectize-dropdown .option,.selectize-dropdown .optgroup-header,.selectize-dropdown .no-results,.selectize-dropdown .create{padding:5px 8px}.selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option{cursor:inherit;opacity:.5}.selectize-dropdown [data-selectable].option{opacity:1;cursor:pointer}.selectize-dropdown .optgroup:first-child .optgroup-header{border-top:0 none}.selectize-dropdown .optgroup-header{color:#303030;background:#fff;cursor:default}.selectize-dropdown .active{background-color:#e8e8e8;color:#303030}.selectize-dropdown .active.create{color:#495c68}.selectize-dropdown .selected{background-color:#e8e8e8;color:#303030}.selectize-dropdown .create{color:rgba(48,48,48,0.5)}.selectize-dropdown .active:not(.selected){background:#f5fafd;color:#495c68}.selectize-dropdown-content{overflow-y:auto;overflow-x:hidden;max-height:200px;overflow-scrolling:touch}.selectize-dropdown-emptyoptionlabel{text-align:center}.selectize-dropdown .spinner{display:inline-block;width:30px;height:30px;margin:5px 8px}.selectize-dropdown .spinner:after{content:" ";display:block;width:24px;height:24px;margin:3px;border-radius:50%;border:5px solid #d0d0d0;border-color:#d0d0d0 transparent #d0d0d0 transparent;animation:lds-dual-ring 1.2s linear infinite}@keyframes lds-dual-ring{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input{cursor:pointer}.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input:not(:read-only){cursor:text}.selectize-control.single .selectize-input:after{content:" ";display:block;position:absolute;top:50%;right:15px;margin-top:-3px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:#808080 transparent transparent transparent}.selectize-control.single .selectize-input.dropdown-active:after{margin-top:-4px;border-width:0 5px 5px 5px;border-color:transparent transparent #808080 transparent}.selectize-control.rtl{text-align:right}.selectize-control.rtl.single .selectize-input:after{left:15px;right:auto}.selectize-control.rtl .selectize-input>input{margin:0 4px 0 -2px !important}.selectize-control .selectize-input.disabled{opacity:.5;background-color:#fafafa}.selectize-dropdown.plugin-auto_position.selectize-position-top{border-top:1px solid #d0d0d0;border-bottom:0 none;border-radius:3px 3px 0 0;box-shadow:0 -6px 12px rgba(0,0,0,0.18)}.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active{border-radius:0 0 3px 3px;border-top:0 none}.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before{top:0;bottom:unset}.selectize-control.plugin-clear_button .clear{text-decoration:none;display:flex;position:absolute;height:100%;width:25px;top:0;right:calc(8px - 6px);color:#000;opacity:.4;font-weight:bold;border:0;cursor:pointer;z-index:1;font-size:21px;justify-content:center;align-items:center}.selectize-control.plugin-clear_button .clear:hover{opacity:1}.selectize-control.plugin-clear_button.single .clear{right:calc(8px - 6px + 1.5rem)}.selectize-control.plugin-drag_drop.multi>.selectize-input.dragging{overflow:visible}.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible !important;background:#f2f2f2 !important;background:rgba(0,0,0,0.06) !important;border:0 none !important;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:"!";visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,0.2)}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header{position:relative;padding:10px 8px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;border-radius:3px 3px 0 0}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close{position:absolute;right:8px;top:50%;color:#303030;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important;text-decoration:none}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover{color:black}.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content{display:flex}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;flex-grow:1;flex-basis:0;min-width:0}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button .item{display:inline-flex;align-items:center;padding-right:0 !important}.selectize-control.plugin-remove_button .item .remove{color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:2px 6px;border-left:1px solid #d0d0d0;border-radius:0 2px 2px 0;box-sizing:border-box;margin-left:6px}.selectize-control.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,0.05)}.selectize-control.plugin-remove_button .item.active .remove{border-left-color:#cacaca}.selectize-control.plugin-remove_button .disabled .item .remove:hover{background:0}.selectize-control.plugin-remove_button .disabled .item .remove{border-left-color:white}