@import url('https://db.onlinewebfonts.com/c/a7fcb1becc12274d5b761b1d895f8aa9?family=Minecraft+Ten');

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 5000px;
  background: rgb(180, 230, 255);
}

.page {
  min-height: 5000px;
  text-align: center;
  padding-top: 100px;
  box-sizing: border-box;
}

h1 {
  font-family: "Minecraft Ten", sans-serif;
  font-size: 60px;
  margin: 0;
  color: #1769aa;
}


/* =========================
   SEARCH
========================= */

.search-row {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.search-box {
  margin: 0;
}

.search-box input {
  width: 450px;
  height: 55px;
  padding: 0 20px;
  box-sizing: border-box;

  background: #fffbd6;
  border: 4px solid #123b5d;
  border-radius: 6px;

  font-family: "Minecraft Ten", sans-serif;
  font-size: 18px;
  color: #123b5d;

  outline: none;
}

.search-box input::placeholder {
  color: #6b7780;
}

.sort-box select {
  width: 170px;
  height: 55px;
  padding: 0 14px;
  box-sizing: border-box;

  background: #fffbd6;
  border: 4px solid #123b5d;
  border-radius: 6px;

  font-family: "Minecraft Ten", sans-serif;
  font-size: 14px;
  color: #123b5d;

  cursor: pointer;
  outline: none;
}


/* =========================
   CATEGORIES
========================= */

.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.category-btn {
  padding: 10px 18px;

  background: #fffbd6;
  border: 3px solid #123b5d;
  border-radius: 8px;

  font-family: "Minecraft Ten", sans-serif;
  font-size: 14px;
  color: #123b5d;

  cursor: pointer;
}

.category-btn:hover {
  background: #fff7ad;
}

.category-btn.active {
  background: #1769aa;
  color: white;
}


/* =========================
   BUILDS
========================= */

.builds {
  margin: 60px auto;
  width: 100%;
  max-width: 1500px;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 25px;

  box-sizing: border-box;
  padding: 0 15px;
}

.build-card.is-hidden {
  display: none !important;
}

.build-card {
  overflow: hidden;

  background: #dff3ff;
  border: 1.5px solid #159de0;
  border-radius: 24px;

  min-height: 340px;

  text-align: left;

  cursor: pointer;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.build-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 8px 20px rgba(0,70,120,.15);
}

.build-card img {
  width: 100%;
  height: 300px;

  object-fit: cover;
  display: block;

  background: #dff3ff;
}

.build-info {
  padding: 20px 16px 18px;
}

.build-category {
  font-family: "Minecraft Ten", sans-serif;
  font-size: 13px;

  color: #0874a8;

  margin-bottom: 8px;
}

.build-card h2,
.popup-info h2 {
  font-family: "Minecraft Ten", sans-serif;
  color: #142536;
  margin: 0;
}

.build-card h2 {
  font-size: 18px;
}


/* =========================
   POPUPS
========================= */

.build-popup,
.addon-popup,
.sub-popup {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 20px;
  box-sizing: border-box;

  background: rgba(0,20,40,.75);

  backdrop-filter: blur(5px);

  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .25s ease,
    visibility .25s ease;
}

.build-popup.show,
.addon-popup.show,
.sub-popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-content,
.addon-popup-content,
.sub-popup-content {
  position: relative;

  background: #dff3ff;

  border: 3px solid #123b5d;
  border-radius: 20px;

  box-shadow:
    0 15px 50px rgba(0,0,0,.35);

  box-sizing: border-box;
}

.popup-content {
  width: min(800px,95vw);

  max-height: 90vh;

  overflow-y: auto;
}

.popup-content img {
  width: 100%;
  max-height: 500px;

  object-fit: contain;
  display: block;

  background: #b4e6ff;
}

.popup-info {
  padding: 25px;
  text-align: left;
}

.popup-info h2 {
  font-size: 28px;
}

.popup-close,
.addon-popup-close,
.sub-popup-close {
  position: absolute;

  top: 10px;
  right: 10px;

  width: 40px;
  height: 40px;

  background: #fffbd6;

  border: 2px solid #123b5d;
  border-radius: 8px;

  color: #123b5d;

  font-size: 28px;

  cursor: pointer;

  z-index: 5;
}


/* =========================
   BUILD DETAILS
========================= */

.popup-details {
  margin-top: 20px;

  display: grid;
  gap: 10px;
}

.detail {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 10px;

  padding: 16px 18px;

  background: #fffbd6;

  border: 2px solid #123b5d;
  border-radius: 8px;

  font-family: "Minecraft Ten", sans-serif;
  font-size: 18px;

  color: #123b5d;
}

.detail strong {
  color: #0874a8;
}


/* =========================
   PRICES
========================= */

.popup-prices {
  margin-top: 20px;
  padding-top: 15px;

  border-top: 2px solid #159de0;

  font-family: "Minecraft Ten", sans-serif;

  color: #123b5d;
}

.popup-prices h3 {
  font-size: 24px;
  margin: 0 0 14px;
}

.price-row {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 12px;

  padding: 11px 0;

  font-size: 19px;
}

.price-row strong {
  color: #0874a8;
}

.price-row.total {
  margin-top: 8px;

  padding-top: 15px;

  border-top: 2px solid #159de0;

  font-size: 23px;
}


/* =========================
   ADDONS
========================= */

.addon-price-right {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  gap: 12px;

  margin-left: auto;
}

.addons-button,
.addon-choice-button {
  padding: 9px 16px;

  background: #fffbd6;

  border: 2px solid #123b5d;
  border-radius: 6px;

  font-family: "Minecraft Ten", sans-serif;

  color: #123b5d;

  cursor: pointer;

  white-space: nowrap;
}

.addons-button:hover,
.addon-choice-button:hover {
  background: #fff7ad;
}

.addon-popup-content {
  width: min(650px,92vw);

  max-height: 90vh;

  overflow-y: auto;

  padding: 30px;
}

.addon-popup-content h2,
.sub-popup-content h2 {
  margin: 0 0 25px;

  font-family: "Minecraft Ten", sans-serif;

  color: #142536;
}

.addon-list {
  display: grid;
  gap: 12px;
}

.addon-option {
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-wrap: wrap;

  gap: 12px;

  padding: 16px;

  background: #dff3ff;

  border: 2px solid #123b5d;
  border-radius: 10px;

  font-family: "Minecraft Ten", sans-serif;

  color: #123b5d;
}

.addon-select {
  min-width: 150px;

  padding: 9px 12px;

  background: #fffbd6;

  border: 2px solid #123b5d;
  border-radius: 6px;

  font-family: "Minecraft Ten", sans-serif;

  color: #123b5d;

  cursor: pointer;
}

.addon-select:hover {
  background: #fff7ad;
}

.addon-choice-right {
  display: flex;

  align-items: center;

  gap: 10px;
}

.addon-popup-bottom {
  display: flex;

  justify-content: space-between;

  margin-top: 25px;

  padding-top: 18px;

  border-top: 2px solid #159de0;

  font-family: "Minecraft Ten", sans-serif;

  font-size: 20px;

  color: #123b5d;
}

.addon-popup-bottom strong {
  color: #0874a8;
}

.addon-done-button,
.sub-popup-done {
  width: 100%;

  margin-top: 20px;

  padding: 14px;

  background: #1769aa;

  border: 2px solid #123b5d;
  border-radius: 8px;

  color: white;

  font-family: "Minecraft Ten", sans-serif;

  cursor: pointer;
}

.addon-done-button:hover,
.sub-popup-done:hover {
  background: #0d568e;
}

.clear-addons-button {
  width: 100%;

  margin-top: 10px;

  padding: 14px;

  background: #fffbd6;

  border: 2px solid #123b5d;
  border-radius: 8px;

  color: #123b5d;

  font-family: "Minecraft Ten", sans-serif;

  cursor: pointer;
}

.clear-addons-button:hover {
  background: #fff7ad;
}


/* =========================
   TRIM POPUP
========================= */

.sub-popup-content {
  width: min(450px,92vw);

  padding: 30px;
}

.sub-popup-content select {
  width: 100%;

  padding: 12px;

  background: white;

  border: 2px solid #123b5d;
  border-radius: 7px;

  font-family: "Minecraft Ten", sans-serif;

  color: #123b5d;
}

.sub-title {
  margin-top: 25px !important;
}


/* =========================
   CUSTOM TRIM SELECT
========================= */

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-button {
  width: 100%;
  min-height: 50px;

  padding: 10px 14px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 10px;

  background: #fffbd6;

  border: 2px solid #123b5d;
  border-radius: 7px;

  font-family: "Minecraft Ten", sans-serif;

  font-size: 16px;

  color: #123b5d;

  cursor: pointer;

  text-align: left;
}

.custom-select-arrow {
  font-size: 12px;

  transition:
    transform .2s ease;
}

.custom-select.open
.custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  display: none;

  position: absolute;

  left: 0;
  right: 0;

  top: calc(100% + 5px);

  max-height: 260px;

  overflow-y: auto;

  background: #dff3ff;

  border: 2px solid #123b5d;
  border-radius: 7px;

  z-index: 10001;

  box-shadow:
    0 8px 20px rgba(0,0,0,.25);
}

.custom-select.open
.custom-select-options {
  display: block;
}

.custom-select-options button {
  width: 100%;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 12px;

  background: transparent;

  border: 0;

  font-family: "Minecraft Ten", sans-serif;

  font-size: 15px;

  color: #123b5d;

  cursor: pointer;

  text-align: left;
}

.custom-select-options button:hover {
  background: #fff7ad;
}


/* =========================
   PAGINATION
========================= */

.pagination {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 14px;

  width: 100%;

  margin: 35px auto 60px;

  font-family: "Minecraft Ten", sans-serif;
}

.pagination button {
  min-width: 55px;
  height: 50px;

  padding: 8px 14px;

  background: #fffbd6;

  color: #123b5d;

  border: 3px solid #123b5d;
  border-radius: 7px;

  font-family: "Minecraft Ten", sans-serif;

  font-size: 22px;

  cursor: pointer;

  transition:
    background .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

.pagination button:hover:not(:disabled) {
  background: #fff2a8;

  transform: translateY(-2px);

  box-shadow:
    0 4px 0 #123b5d;
}

.pagination button:active:not(:disabled) {
  transform: translateY(2px);

  box-shadow: none;
}

.pagination button:disabled {
  opacity: 0.45;
  cursor: default;
}

#pageNumber {
  min-width: 100px;

  font-family: "Minecraft Ten", sans-serif;

  font-size: 17px;

  color: #123b5d;

  background: #dff3ff;

  border: 3px solid #123b5d;
  border-radius: 7px;

  padding: 12px 15px;
}


/* =========================
   PURCHASE
========================= */

.purchase-build-button {
  width: 100%;

  margin-top: 20px;

  padding: 15px;

  background: #1769aa;

  color: white;

  border: 2px solid #123b5d;
  border-radius: 8px;

  font-family: "Minecraft Ten", sans-serif;

  font-size: 18px;

  cursor: pointer;
}

.purchase-build-button:hover {
  background: #0d568e;
}

.purchase-build-button:active {
  transform: translateY(1px);
}


/* =========================================================
   DISCORD ACCOUNT
========================================================= */

.account-area {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 9999;
}


/* =========================
   LOGIN BUTTON
========================= */

.discord-login-button {
  display: flex;

  align-items: center;
  justify-content: center;

  min-width: 190px;
  height: 52px;

  padding: 0 20px;

  border: 3px solid rgba(255,255,255,.45);
  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      #5865f2,
      #4752c4
    );

  color: white;

  font-family: Arial, sans-serif;

  font-size: 16px;

  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 5px 0 #303b9e,
    0 8px 18px rgba(0,0,0,.3);

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

.discord-login-button:hover {
  transform: translateY(-3px);

  filter: brightness(1.08);

  box-shadow:
    0 8px 0 #303b9e,
    0 12px 22px rgba(0,0,0,.35);
}

.discord-login-button:active {
  transform: translateY(3px);

  box-shadow:
    0 2px 0 #303b9e,
    0 4px 10px rgba(0,0,0,.25);
}


/* =========================
   LOGGED-IN PROFILE
========================= */

.account-info {
  position: relative;

  display: flex;

  align-items: center;

  padding: 0;

  background: transparent;

  border: none;

  box-shadow: none;
}


/* =========================
   PROFILE BUTTON
========================= */

.account-profile-button {
  display: flex;
  align-items: center;
  gap: 10px;

  min-width: 190px;
  height: 52px;

  padding: 0 14px;

  background: #fffbd6;

  border: 3px solid #123b5d;
  border-radius: 8px;

  color: #123b5d;

  font-family: "Minecraft Ten", sans-serif;
  font-size: 14px;
  font-weight: normal;

  cursor: pointer;

  box-shadow:
    0 5px 0 #123b5d,
    0 8px 15px rgba(0,0,0,.18);

  transition:
    transform .15s ease,
    background .15s ease,
    box-shadow .15s ease;
}

.account-profile-button:hover {
  background: #fff7ad;

  transform: translateY(-2px);

  box-shadow:
    0 7px 0 #123b5d,
    0 11px 20px rgba(0,0,0,.22);
}

.account-profile-button:active {
  transform: translateY(3px);

  box-shadow:
    0 2px 0 #123b5d,
    0 4px 8px rgba(0,0,0,.15);
}


/* =========================
   AVATAR
========================= */

.account-profile-button img {
  width: 36px;
  height: 36px;

  border-radius: 6px;

  object-fit: cover;

  border: 2px solid #123b5d;
}


/* =========================
   USERNAME
========================= */

#accountUsername {
  flex: 1;

  max-width: 150px;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  color: #123b5d;

  font-family: "Minecraft Ten", sans-serif;

  font-size: 14px;
  font-weight: normal;

  text-align: left;
}


/* =========================
   ARROW
========================= */

.account-arrow {
  font-size: 12px;

  color: #123b5d;

  transition: transform .25s ease;
}

.account-profile-button.open .account-arrow {
  transform: rotate(180deg);
}

/* =========================
   AVATAR
========================= */

.account-profile-button img {
  width: 36px;
  height: 36px;

  border-radius: 50%;

  object-fit: cover;

  border:
    2px solid
    rgba(255,255,255,.35);
}


/* =========================
   USERNAME
========================= */

#accountUsername {
  flex: 1;

  max-width: 150px;

  overflow: hidden;

  white-space: nowrap;

  text-overflow: ellipsis;

  color: white;

  font-family: Arial, sans-serif;

  font-size: 14px;

  font-weight: 800;

  text-align: left;
}


/* =========================
   ARROW
========================= */

.account-arrow {
  font-size: 12px;

  transition:
    transform .25s ease;
}

.account-profile-button.open
.account-arrow {
  transform: rotate(180deg);
}


/* =========================
   PROFILE DROPDOWN
========================= */

.account-dropdown {
  position: absolute;

  right: 0;

  bottom: calc(100% + 12px);

  width: 280px;

  padding: 10px;

  box-sizing: border-box;

  background:
    rgba(35,45,55,.98);

  border:
    2px solid
    rgba(255,255,255,.25);

  border-radius: 14px;

  box-shadow:
    0 15px 40px rgba(0,0,0,.4);

  backdrop-filter: blur(12px);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform:
    translateY(12px)
    scale(.94);

  transform-origin:
    bottom right;

  transition:
    opacity .22s ease,
    transform .22s cubic-bezier(.2,.8,.2,1),
    visibility .22s ease;
}

.account-dropdown.show {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform:
    translateY(0)
    scale(1);
}


/* =========================
   PROFILE HEADER
========================= */

.account-dropdown-header {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px;

  border-radius: 10px;

  background:
    rgba(255,255,255,.06);
}

.account-dropdown-header img {
  width: 48px;
  height: 48px;

  border-radius: 50%;

  object-fit: cover;

  border:
    2px solid
    rgba(255,255,255,.3);
}

.account-dropdown-header div {
  display: flex;

  flex-direction: column;

  min-width: 0;
}

.account-dropdown-header strong {
  color: white;

  font-family: Arial, sans-serif;

  font-size: 15px;

  font-weight: 800;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

.account-dropdown-header span {
  margin-top: 3px;

  color:
    rgba(255,255,255,.6);

  font-family: Arial, sans-serif;

  font-size: 12px;
}


/* =========================
   PROFILE MENU BUTTONS
========================= */

.account-menu-button {
  width: 100%;

  margin-top: 8px;

  padding: 12px;

  border: none;

  border-radius: 9px;

  background:
    rgba(255,255,255,.07);

  color: white;

  font-family: Arial, sans-serif;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  text-align: left;

  transition:
    background .15s ease,
    transform .15s ease;
}

.account-menu-button:hover {
  background:
    rgba(255,255,255,.13);

  transform:
    translateX(2px);
}

.account-menu-button:active {
  transform:
    translateX(2px)
    scale(.99);
}


/* =========================
   LOGOUT INSIDE PROFILE
========================= */

.account-menu-button.logout {
  margin-top: 10px;

  background:
    rgba(217,83,79,.15);

  color: #ff7773;

  border:
    1px solid
    rgba(217,83,79,.25);
}

.account-menu-button.logout:hover {
  background:
    rgba(217,83,79,.28);

  color: white;
}


/* =========================
   POPUP LOCK
========================= */

body.popup-open {
  overflow: hidden;
}


/* =========================
   DISCORD LOGIN POPUP
========================= */

.discord-login-popup {
  position: fixed;

  inset: 0;

  display: flex;

  justify-content: center;
  align-items: center;

  padding: 20px;

  box-sizing: border-box;

  background:
    rgba(0,20,40,.75);

  backdrop-filter: blur(5px);

  z-index: 20000;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .25s ease,
    visibility .25s ease;
}

.discord-login-popup.show {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.discord-login-popup-content {
  position: relative;

  width: min(420px,92vw);

  padding: 35px 30px 30px;

  box-sizing: border-box;

  background: #dff3ff;

  border: 3px solid #123b5d;

  border-radius: 20px;

  box-shadow:
    0 15px 50px rgba(0,0,0,.4);

  text-align: center;

  transform:
    translateY(10px)
    scale(.97);

  transition:
    transform .25s ease;
}

.discord-login-popup.show
.discord-login-popup-content {
  transform:
    translateY(0)
    scale(1);
}

.discord-login-popup-content h2 {
  margin: 0;

  font-family:
    "Minecraft Ten",
    sans-serif;

  font-size: 30px;

  color: #142536;
}

.discord-login-popup-content p {
  margin: 15px 0 25px;

  font-family: Arial, sans-serif;

  font-size: 15px;

  color: #123b5d;

  line-height: 1.5;
}

.discord-login-popup-close {
  position: absolute;

  top: 10px;
  right: 10px;

  width: 40px;
  height: 40px;

  background: #fffbd6;

  border: 2px solid #123b5d;

  border-radius: 8px;

  color: #123b5d;

  font-size: 28px;

  cursor: pointer;
}

.discord-login-popup-close:hover {
  background: #fff7ad;
}

.discord-popup-login-button {
  width: 100%;

  height: 52px;

  border: 3px solid
    rgba(255,255,255,.45);

  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      #5865f2,
      #4752c4
    );

  color: white;

  font-family: Arial, sans-serif;

  font-size: 16px;

  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 5px 0 #303b9e,
    0 8px 18px rgba(0,0,0,.3);

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease;
}

.discord-popup-login-button:hover {
  transform: translateY(-3px);

  filter: brightness(1.08);

  box-shadow:
    0 8px 0 #303b9e,
    0 12px 22px rgba(0,0,0,.35);
}

.discord-popup-login-button:active {
  transform: translateY(3px);

  box-shadow:
    0 2px 0 #303b9e,
    0 4px 10px rgba(0,0,0,.25);
}


/* =========================
   SUCCESS PAGE
========================= */

.discord-success-page {
  position: fixed;

  inset: 0;

  display: flex;

  justify-content: center;
  align-items: center;

  padding: 30px;

  box-sizing: border-box;

  background:
    rgb(180,230,255);

  z-index: 30000;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}

.discord-success-page.show {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.discord-success-content {
  width: min(800px,90vw);

  padding: 45px 35px;

  background: #dff3ff;

  border: 4px solid #123b5d;

  border-radius: 20px;

  box-shadow:
    0 15px 50px rgba(0,0,0,.3);

  text-align: center;
}

.discord-success-content h1 {
  margin: 0;

  font-family:
    "Minecraft Ten",
    sans-serif;

  font-size:
    clamp(28px,5vw,55px);

  line-height: 1.25;

  color: #1769aa;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .builds {
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }

  .search-row {
    flex-direction: column;
  }

  .search-box input,
  .sort-box select {
    width: 90vw;

    max-width: 450px;
  }

}


@media (max-width: 768px) {

  .builds {
    display: grid !important;

    grid-template-columns:
      repeat(3,minmax(0,1fr)) !important;

    gap: 15px;
  }

}


@media (max-width: 500px) {

  .builds {
    grid-template-columns: 1fr !important;
  }

  h1 {
    font-size: 45px;
  }

  .addon-price-right {
    gap: 7px;
  }

  .addons-button {
    padding: 8px 10px;

    font-size: 12px;
  }

}


@media (max-width: 600px) {

  .account-area {
    right: 12px;
    bottom: 12px;
  }

  .discord-login-button {
    min-width: 0;

    height: 46px;

    padding: 0 14px;

    font-size: 14px;
  }

  .account-profile-button {
    min-width: 0;

    width: 52px;
    height: 52px;

    padding: 0;

    justify-content: center;

    border-radius: 50%;
  }

  .account-profile-button img {
    width: 38px;
    height: 38px;
  }

  #accountUsername,
  .account-arrow {
    display: none;
  }

  .account-dropdown {
    right: 0;

    width:
      min(
        280px,
        calc(100vw - 24px)
      );
  }

}


/* =========================
   FORCE SHOREBUILDS PROFILE
========================= */

.account-profile-button {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;

  width: 190px !important;
  min-width: 190px !important;
  height: 52px !important;

  padding: 0 14px !important;
  box-sizing: border-box !important;

  background: #fffbd6 !important;

  border: 3px solid #123b5d !important;
  border-radius: 8px !important;

  color: #123b5d !important;

  font-family: "Minecraft Ten", sans-serif !important;
  font-size: 14px !important;
  font-weight: normal !important;

  box-shadow:
    0 5px 0 #123b5d,
    0 8px 15px rgba(0,0,0,.18) !important;

  cursor: pointer !important;
}

.account-profile-button:hover {
  background: #fff7ad !important;

  transform: translateY(-2px) !important;

  box-shadow:
    0 7px 0 #123b5d,
    0 11px 20px rgba(0,0,0,.22) !important;
}

.account-profile-button img {
  width: 36px !important;
  height: 36px !important;

  border-radius: 6px !important;

  object-fit: cover !important;

  border: 2px solid #123b5d !important;
}

#accountUsername {
  color: #123b5d !important;

  font-family: "Minecraft Ten", sans-serif !important;
  font-size: 14px !important;
  font-weight: normal !important;
}

.account-arrow {
  color: #123b5d !important;
}