/* content */


.page {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--white);
}

.content {
  width: calc(100% - 0rem);
  height: calc(100% - 0rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.container_account {
  width: calc(100% - 0rem);
  height: calc(100% - 0rem);
  min-height: calc(100vh - 0rem);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  background-color: var(--white);
}


/* section */
.container_section {
  min-height: calc(100vh - 7.5rem);
  margin: 2.5rem 5rem 5rem calc(5rem + 15rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.section_top {
  width: calc(100% - 0rem);
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
}

.section_top_headline {
  min-height: calc(3rem - 0rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section_top_headline h1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  
  color: var(--text-headline);
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
}

.section_top_headline a {
  width: calc(3rem - 2px);
  height: calc(3rem - 2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-round);
  color: var(--text-headline);
}

.section_top_headline a:hover {
  background-color: var(--grey-light);
  border: 1px solid var(--border-light);
  text-decoration: none;
}

.section_top_headline a i {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25em;
}

.section_top_subheading {
  display: flex;
}

.section_top_subheading span {
  margin: 0.625rem 0 0;
  color: var(--text-subheading);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 2;
}

.section_top_subheading span strong {
  font-size: 1em;
  font-weight: 600;
  line-height: 2;
}

.section_bottom {
  width: calc(100% - 0rem);
  display: flex;
  flex-direction: column;
}

.section_info_1 {
  width: calc(100% - 0rem);
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25em;
}

.section_info_2 {
  width: calc(100% - 0rem);
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25em;
}

.section_info_3 {
  width: calc(100% - 0rem);
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25em;
}

.section_info_4 {
  width: calc(100% - 0rem);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25em;
}

.section_info_title {
  min-height: calc(3.125rem - 0rem);
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  font-size: 2em;
  font-weight: 600;
}

.section_info_text {
  margin: 0.625rem 0 0;
  color: var(--text);
  font-size: 0.875em;
  font-weight: 500;
}

.section_col_1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-content: flex-start;
}

.section_col_2_1,
.section_col_2_2,
.section_col_2_3,
.section_col_2_4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25em;
}

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

.section_div_0 {
  margin: 1.25rem 0 0;
}

.section_div_1 {
  margin: 1.25rem 0 0;
  padding: 2.5rem 0 0;
  border-top: 0.1rem solid var(--border-input-colour);
}

.form_switch {
  width: 60px;
  height: 34px;
}

.form_switch label {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.form_switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.form_switch span {
  min-height: auto !important;
  display: block !important;
  margin: 0 !important;
}

.form_switch input[type="checkbox"]:checked + .form_slider {
  background-color: var(--color-primary);
}

.form_switch input[type="checkbox"]:focus + .form_slider {
  /* box-shadow: 0 0 1px var(--color-primary); */
}

.form_switch input[type="checkbox"]:checked + .form_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.form_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--grey-dark);
  -webkit-transition: .4s;
  transition: .4s;
}

.form_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.form_slider.round {
  border-radius: 34px;
}

.form_slider.round:before {
  border-radius: 50%;
}


/* section: store */
.store_photo {
  width: calc(100% - 0rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.store_photo span {
  min-height: calc(1.25rem - 0rem);
  margin: 0.25rem 0 0;
  display: flex;
  align-items: center;
  color: var(--text-negative);
  font-size: 0.75em;

  display: none;
}

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

#store-photo-file {
  display: none;
}

.store_photo_box img {
  width: calc(6.25rem - 0.2rem);
  height: calc(6.25rem - 0.2rem);
  border-radius: var(--radius-round);
  border: 0.1rem solid var(--grey);
  cursor: pointer;
}

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


.store_info {
  width: calc(100% - (2.5rem + 0.2rem));
  height: fit-content;
  min-height: calc(4rem - (1.25rem));
  margin: 0 0 1.25rem;
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 0.1rem solid var(--grey);
  text-align: center;
}

.store_info:first-child {
  background-color: var(--grey);
}

.store_info:last-child {
  margin: 0;
}

.store_info_title {
  color: var(--text-headline);
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.store_info_text {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  font-size: 1.5em;
  font-weight: 600;
}


.store_orders_top {
  width: calc(100% - (2.5rem + 0.2rem));
  height: fit-content;
  min-height: calc(4rem - (1.25rem));
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--grey);
  border-radius: var(--radius);
  border: 0.1rem solid var(--grey);
}

.store_orders_top h2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.store_orders_top a {
  font-size: 0.875em;
  font-weight: 300;
  text-decoration: none;
  line-height: 1;
}

.store_orders_top a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.store_orders {
  width: calc(100% - 2.5rem);
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.store_orders span {
  width: calc(100% - 0rem);
  padding: 0.625rem 0;
  border-top: 0.1em solid transparent;
  /* border-bottom: 0.1em solid var(--border-default); */
  color: var(--text-headline);
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1;
}

.store_orders a {
  width: calc(100% - 0rem);
  padding: 0.625rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 0.1em solid var(--border-default);
  cursor: pointer;
  text-decoration: none;
}

.store_order_img {
  width: calc(3rem - 0.2rem);
  height: calc(3rem - 0.2rem);
  border: 0.1rem solid var(--border-default);
  border-radius: var(--radius-round);
}

.store_order_info {
  margin: 0 0 0 0.625rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.store_order_title {
  color: var(--text-headline);
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1;
}

.store_orders a:hover .store_order_title {
  color: var(--text-link-hover);
}

.store_order_data {
  height: calc(100% - 0rem);
  margin: 0.625rem 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.store_order_status {
  color: var(--text-subheading);
  font-size: 0.813em;
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1;
}

.store_order_amount {
  color: var(--text-headline);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1;
}



/* section: inventory */
#inventory-section {
  display: none;
}

.inventory_products {
  width: calc(100% - 0rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25em;
}

.inventory_product {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: var(--radius);
  border: 0.1rem solid var(--border-product);
  text-decoration: none;
  cursor: pointer;
}

.inventory_product:hover {
  background-color: var(--bg-product-hover);
  border: 0.1rem solid var(--border-default);
}

.inventory_product img {
  border-radius: var(--radius);
}


/* section: inventory/product-add */
/* section: inventory/product-edit */
#inventory-error-type,
#inventory-error-category,
#inventory-error-title,
#inventory-error-brand,
#inventory-error-price,
#inventory-error-desc,
#inventory-error-colour,
#inventory-error-size,
#inventory-error-photo-1,
#inventory-error-photo-2 {
  display: none;
}

#inventory-photo-1-reset,
#inventory-photo-2-reset {
  display: none;
}


/* section: inventory/product-add */
.section_form_inventory {
  width: calc(100% - 0rem);
  display: flex;
  flex-direction: column;
}

.form_inventory {
  width: calc(100% - 0rem);
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
}

.form_inventory h5,
.form_inventory label {
  height: fit-content;
  margin: 0 0 0.25rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--text-headline);
  font-size: 0.625em;
  font-weight: 600;
}

.form_inventory label i {
  cursor: pointer;
}

.form_inventory label i:hover {
  color: var(--text-link-hover);
}

.form_inventory select {
    width: calc(100% - 0rem);
    max-width: calc(100% - 0rem);
    height: calc(3rem - 0rem);
    padding: 0 1rem;
    background-color: var(--bg-input);
    outline: none;
    border: 0.125rem solid var(--border-input);
    border-radius: var(--radius-default);
    font-size: 1em;
    font-weight: 300;
}

.form_inventory input[type="text"],
.form_inventory input[type="number"] {
  width: calc(100% - (2.5rem + 0.25rem));
  max-width: calc(100% - (2.5rem + 0.25rem));
  height: calc(3rem - (2rem + 0.25rem));
  padding: 1rem 1.25rem;
  background-color: var(--bg-input);
  outline: none;
  border: 0.125rem solid var(--border-input);
  border-radius: var(--radius-default);
  font-size: 1em;
  font-weight: 300;
}

.form_inventory textarea {
  width: calc(100% - (2.5rem + 0.25rem));
  max-width: calc(100% - (2.5rem + 0.25rem));
  padding: 1rem 1.25rem;
  background-color: var(--bg-input);
  outline: none;
  resize: vertical;
  border: 0.125rem solid var(--border-input);
  border-radius: var(--radius-default);
  font-size: 1em;
  font-weight: 300;
}

.form_inventory img {
  width: calc(100% - 0.2rem);
  background-color: var(--white);
  border-radius: var(--radius);
  border: 0.1rem solid var(--border-product);
  cursor: pointer;
}

.form_inventory span {
  min-height: calc(1.25rem - 0rem);
  margin: 0.25rem 0 0;
  display: flex;
  align-items: center;
  color: var(--text-negative);
  font-size: 0.75em;

  display: none;
}

.form_inventory_button {
  width: calc(100% - 0rem);
  display: flex;
  flex-direction: column;
}

.form_inventory_button button {
  width: calc(100% - 0rem);
  height: calc(3rem - 0rem);
  padding: 0.625rem 1.25rem;
  background-color: var(--bg-button);
  outline: none;
  border: 1px solid var(--bg-button);
  border-radius: var(--radius-default);
  color: var(--white);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.form_inventory_button button:hover {
  background-color: var(--bg-button-hover);
}

.form_inventory_link {
  width: calc(100% - (2.5rem + 0.25rem));
  max-width: calc(100% - (2.5rem + 0.25rem));
  height: fit-content;
  min-height: calc(3rem - (0rem + 0.25rem));
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  background-color: var(--bg-input-text);
  outline: none;
  border: 0.125rem solid var(--border-input-colour);
  border-radius: var(--radius-default);
  font-size: 0.875em;
  font-weight: 400;
  word-break: break-all;
}

.form_inventory_copy {
  margin: 0 0 0 0.625rem;
  cursor: pointer;
}

.form_inventory_copy:hover {
  color: var(--color-primary);
}

.form_inventory_copy i {
  font-size: 1.25em;
}

.form_inventory_title {
  min-height: calc(2.125rem - 0rem);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--text-headline);
  font-size: 0.875em;
  font-weight: 400;
}

.form_inventory_title i {
  margin: 0 0.625rem 0 0;
  font-size: 1.25em;
}

#inventory-photo-1-file,
#inventory-photo-2-file,
#inventory-photo-1-reset,
#inventory-photo-2-reset {
  display: none;
}


/* section: inventory/product-edit */


/* section: account */
.account_info {
  display: flex;
}

.account_info a {
  width: calc(100% - (2.5rem + 0.2rem));
  padding: 1.25rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  background-color: transparent;
  border-radius: var(--radius);
  border: 0.1rem solid var(--border-default);
  color: var(--text-link);
  text-decoration: none;
  cursor: pointer;
}

.account_info a:hover {
  background-color: var(--bg-settings-hover);
  color: var(--text-link-hover);
}

.account_info a i {
  font-size: 1.5em;
}

.account_info a span {
  margin: 0 0 0 0.625rem;
  display: flex;
  flex-direction: column;
}

.account_info a span strong {
  color: var(--text-headline);
  font-size: 1rem;
  font-weight: 500;
}

.account_info a span h4 {
  color: var(--text-light);
  margin: 0.625rem 0 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
}


/* section: account/profile */
.section_form_profile {
  width: calc(100% - 0rem);
  display: flex;
  flex-direction: column;
}

.form_profile {
  width: calc(100% - 2.5rem);
  height: fit-content;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  background-color: var(--grey);
  border-radius: var(--radius);
}

.form_profile span {
  min-height: calc(1.25rem - 0rem);
  margin: 0.25rem 0 0;
  display: flex;
  align-items: center;
  color: var(--text-negative);
  font-size: 0.75em;

  display: none;
}

.form_profile_title {
  min-height: calc(2.125rem - 0rem);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--text-headline);
  font-size: 1em;
  font-weight: 400;
}

.form_profile_title i {
  margin: 0 0.625rem 0 0;
  font-size: 1em;
}


/* section: account/vault */
.vault_info {
  width: calc(100% - (2.5rem + 0.2rem));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 0.1rem solid var(--grey);
  text-align: center;
}

.vault_balance_p {
  color: var(--text);
}

.section_form_vault {
  width: calc(100% - 2.5rem);
  height: fit-content;
  margin: 0 0 1.25rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  background-color: var(--grey);
  border-radius: var(--radius);
}

.section_form_vault:last-child {
  margin: 0;
}

#vault-info,
#vault-info-form,
#vault-bank,
#vault-bank-form {
  display: none;
}

.form_vault_title {
  min-height: calc(2.125rem - 0rem);
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--text-headline);
  font-size: 1em;
  font-weight: 500;
}

.form_vault_title i {
  margin: 0 0.625rem 0 0;
  font-size: 1em;
}

.form_vault {
  width: calc(100% - 0rem);
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
}

.form_vault:last-child {
  margin: 0;
}

.form_vault h5 {
  height: fit-content;
  margin: 0 0 0.25rem;
  color: var(--text-headline);
  font-size: 0.625em;
  font-weight: 600;
}

.form_vault input[type="text"],
.form_vault input[type="number"] {
  width: calc(100% - (2.5rem + 0.25rem));
  max-width: calc(100% - (2.5rem + 0.25rem));
  height: calc(3rem - (2rem + 0.25rem));
  padding: 1rem 1.25rem;
  background-color: var(--bg-input);
  outline: none;
  border: 0.125rem solid var(--border-input-white);
  border-radius: var(--radius-default);
  font-size: 1em;
  font-weight: 300;
}

.form_vault select {
    width: calc(100% - 0rem);
    max-width: calc(100% - 0rem);
    height: calc(3rem - 0rem);
    padding: 0 1rem;
    background-color: var(--bg-input);
    outline: none;
    border: 0.125rem solid var(--border-input-white);
    border-radius: var(--radius-default);
    font-size: 1em;
    font-weight: 300;
}

.form_vault span {
  min-height: calc(1.25rem - 0rem);
  margin: 0.25rem 0 0;
  display: flex;
  align-items: center;
  color: var(--text-negative);
  font-size: 0.75em;

  display: none;
}

.form_vault button {
  width: calc(100% - 0rem);
  height: calc(3rem - 0rem);
  padding: 0.625rem 1.25rem;
  background-color: var(--bg-button);
  outline: none;
  border: 1px solid var(--bg-button);
  border-radius: var(--radius-default);
  color: var(--white);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.form_vault button:hover {
  background-color: var(--bg-button-hover);
}

.form_vault_info {
  width: calc(100% - (2.5rem + 4px));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-info);
  border-radius: var(--radius);
  border: 2px solid var(--border-info);
}

.form_vault_info i {
  margin: 0 0 0.625rem;
  font-size: 1.5em;
}

.form_vault_info p {
  width: calc(100% - 0rem);
  color: var(--text-info);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}

.form_vault_bank {
  width: calc(100% - (2.5rem + 4px));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-bank);
  border-radius: var(--radius);
  border: 2px solid var(--border-bank);
}

.form_vault_bank ul {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.form_vault_bank ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--text-subheading);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  text-align: left;
}

.form_vault_bank ul li strong {
  color: var(--text-headline);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  text-align: right;
}


/* section: account/upgrades */
.upgrades_info {
  width: calc(100% - (2.5rem + 0.2rem));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius);
  border: 0.1rem solid var(--grey);
  text-align: center;
}

.section_form_upgrades {
  width: calc(100% - 0rem);
  display: flex;
  flex-direction: column;
}

.form_upgrades {
  width: calc(100% - 2.5rem);
  height: fit-content;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  background-color: var(--grey);
  border-radius: var(--radius);
}

.form_upgrades span {
  min-height: calc(1.25rem - 0rem);
  margin: 0.25rem 0 0;
  display: flex;
  align-items: center;
  color: var(--text-negative);
  font-size: 0.75em;

  display: none;
}

.form_upgrades button {
  width: calc(100% - 0rem);
  height: calc(3rem - 0rem);
  margin: 1.25rem 0 0;
  padding: 0.625rem 1.25rem;
  background-color: var(--bg-button);
  outline: none;
  border: 1px solid var(--bg-button);
  border-radius: var(--radius-default);
  color: var(--white);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.form_upgrades button:hover {
  background-color: var(--bg-button-hover);
}

.form_upgrades_title {
  min-height: calc(2.125rem - 0rem);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--text-headline);
  font-size: 1em;
  font-weight: 400;
}

.form_upgrades_title i {
  margin: 0 0.625rem 0 0;
  font-size: 1em;
}

.form_upgrades_radio {
  width: fit-content;
  margin: 1.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em;
}

.form_upgrades_radio label {
  display: grid;
  place-items: center;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  cursor: pointer;
}

.form_upgrades_radio label:focus-within,
.form_upgrades_radio label:has(:checked) {
  color: var(--form-radio-color);
}

.form_upgrades_radio input[type="radio"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  display: grid;
  place-content: center;
  background-color: transparent;
  border-radius: 50%;
  border: 0.15rem solid var(--text);
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}

.form_upgrades_radio input[type="radio"]::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  box-shadow: inset 1em 1em var(--form-radio-color);
  transform: scale(0);
  transition: 120ms transform ease-in-out;
}

.form_upgrades_radio input[type="radio"]:checked::before {
  border: 0.15rem solid var(--form-radio-color);
  outline: 0.15rem solid var(--form-radio-color);
  outline-offset: 0.15rem;
  transform: scale(1);
}

.form_upgrades_radio input[type="radio"]:checked,
.form_upgrades_radio input[type="radio"]:focus {
  border: 0.15rem solid var(--form-radio-color);
  outline: 0.15rem solid var(--form-radio-color);
  outline-offset: 0.15rem;
}


/* defaults */
#loader {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  -webkit-animation: default_loading 1.7s linear infinite;
  display: none;
}

#loader i {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
  font-size: 2em;
}

@-webkit-keyframes default_loading {
  from { -webkit-transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); }
}

@-webkit-keyframes default_loading_two {
  from { -webkit-transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); }
}

@keyframes default_rotate {
  0% {
    transform: rotate(0deg); /* Start at 0 degrees */
  }
  100% {
    transform: rotate(360deg); /* End at 360 degrees (one full turn) */
  }
}


@media only screen and (max-width: 1024px) {


  /* section */
  .container_section {
    margin: 2.5rem 2.5rem 5rem calc(2.5rem + 15rem);
  }

  .section_info_1,
  .section_info_2,
  .section_info_3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section_info_4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section_info_title {
    min-height: fit-content;
    font-size: 1.5em;
  }

  .section_col_2_1,
  .section_col_2_3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }


  /* section: store */


  /* section: inventory */
  .inventory_products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }


  /* section: inventory/product-add */
  /* section: inventory/product-edit */
  /* section: account */
  /* section: account/profile */


  /* section: account/vault */
  .section_form_vault {
    margin: 0;
  }

  .section_form_vault h2 {
    font-size: 1.5em;
  }

  .form_vault_title {
    margin: 0 0 1.25rem;
  }


  /* section: account/upgrades */
  .form_upgrades_radio {
    gap: 1.25em;
  }


}


@media only screen and (max-width: 768px) {


  /* section */
  .container_section {
    width: calc(100% - 2.5rem);
    height: calc(100% - (1.25rem + 4rem));
    min-height: calc(100vh - (1.25rem + 4rem));
    margin: 1.25rem 1.25rem 4rem;
  }

  .section_top {
    margin: 0 0 1.25rem;
  }

  .section_top_headline {
    min-height: calc(2.5rem - 0rem);
  }

  .section_top_headline h1 {
    font-size: 1.5em;
  }

  .section_top_headline a {
    width: calc(2.5rem - 2px);
    height: calc(2.5rem - 2px);
  }

  .section_top_headline a i {
    width: 1rem;
    height: 1rem;
    font-size: 1em;
  }

  .section_bottom {
    margin: 0 0 1.25rem;
  }

  .section_info_1,
  .section_info_2 {
    margin: 0 0 1.25rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.625em;
  }

  .section_info_3,
  .section_info_4 {
    margin: 0 0 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625em;
  }

  .section_info_title {
    min-height: fit-content;
    font-size: 1.5em;
  }

  .section_info_text {
    font-size: 0.75em;
  }

  .section_col_2_1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0em;
  }

  .section_col_2_2 {
    gap: 0.625em;
  }

  .section_col_2_3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.625em;
  }

  .section_col_2_4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0em;
  }

  .section_div_1 {
    margin: 0.625rem 0 0;
    padding: 1.563rem 0 0;
  }


  /* section: store */
  .store_photo_box img {
    width: calc(5rem - 0.2rem);
    height: calc(5rem - 0.2rem);
  }


  /* section: inventory */
  .inventory_products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625em;
  }


  /* section: inventory/product-add */
  /* section: inventory/product-edit */


  /* section: account */
  .account_info a {
    width: calc(100% - (1.25rem + 0.2rem));
    padding: 0.625rem;
    flex-direction: column;
  }

  .account_info a span {
    margin: 0.625rem 0 0;
  }

  .account_info a span h4 {
    font-size: 0.813rem;
  }


  /* section: account/profile */


  /* section: account/vault */
  .vault_info {
    width: calc(100% - (1.25rem + 0.2rem));
    padding: 0.625rem;
    align-items: flex-start;
    text-align: start;
  }

  .section_form_vault {
    margin: 0;
  }

  .section_form_vault h2 {
    margin: 0 0 1.25rem;
    font-size: 1.25em;
  }

  .form_vault_title {
    margin: 0 0 1.25rem;
  }

  .form_vault input[type="text"],
  .form_vault input[type="number"] {
    width: calc(100% - (1.25rem + 0.25rem));
    max-width: calc(100% - (1.25rem + 0.25rem));
    height: calc(3rem - (1rem + 0.25rem));
    padding: 0.5rem 0.625rem;
  }

  .form_vault select {
    padding: 0 0.4rem;
  }

  .form_vault_bank ul li {
    margin: 0 0 0.625rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .form_vault_bank ul li:last-child {
    margin: 0;
  }


  /* section: account/upgrades */
  .upgrades_info {
    width: calc(100% - (1.25rem + 0.2rem));
    padding: 0.625rem;
    align-items: flex-start;
    text-align: start;
  }

  .form_upgrades_radio {
    gap: 1.25em;
  }


  /* defaults */
  #loader {
    top: 0.625rem;
    right: 0.625rem;
  }

  #loader i {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5em;
  }


}


/* content */