/* Positioning */
/* Box Model */
/* Typography */
/* Visuals */
/* Transitions & Animations */
/* Miscellaneous */
/* Media Queries */
/* Base Styles */
/* Main Styles */
/* Novera Logo */
/* Registration Form */
/* Form Fields */
/* Hover */
/* Focus */

/* Fonts */

@font-face {
    font-family: 'Inter Regular';
    src: url("/static/unscripted_v2_main/fonts/inter_font/Inter_18pt-Regular.645368443dd4.woff2");
}

@font-face {
    font-family: 'Roboto Regular';
    src: url("/static/unscripted_v2_main/fonts/roboto_font/Roboto-Regular.6887b6f24414.woff2");
}

@font-face {
    font-family: 'Merriweather Regular';
    src: url("/static/unscripted_v2_main/fonts/merriweather_font/Merriweather_24pt-Regular.4b3fcb8e7b7c.woff2");
}

@font-face {
    font-family: 'Lato Regular';
    src: url("/static/unscripted_v2_main/fonts/lato_font/Lato-Regular.ae05cb2ad509.woff2");
}

/* ------------------------------------------------------------------------------ */

:root {
  /* GLOBAL THEME TOKENS NEUTRALS (WHITE) */
  --neutral-color-000: #ffffff;
  --neutral-color-050: #fafafa;
  --neutral-color-075: #e9e9e9;
  --neutral-color-100: #e0e0e0;
  --neutral-color-200: #bcbcbc;
  --neutral-color-300: #ababab;
  --neutral-color-400: #737373;

  /* GLOBAL THEME TOKENS NEUTRALS (BLACK) */
  --neutral-color-black--200: #413f3f;
  --neutral-color-black--100: #363636;
  --neutral-color-black-000: #000000;

  /* GLOBAL THEME TOKENS NEUTRALS (RED) */
  --neutral-color-red--300: #ff5a5a;
  --neutral-color-red--200: #ff4c4c;
  --neutral-color-red--100: #ff3c3c;
  --neutral-color-red-000: #ec1f1f;
  --neutral-color-red-100: #dc1e1e;

  /* GLOBAL THEME TOKENS NEUTRALS (GREEN) */
  --neutral-color-green--100: #9bfd9b;
  --neutral-color-green--050: #98ff8e6e;
  --neutral-color-green-000: #318f31;
  --neutral-color-green-050: #277727;
  --neutral-color-green-100: #1d581d;

  /* GLOBAL THEME TOKENS NEUTRALS (BLUE) */
  --neutral-color-blue-000: #46ebe4;
  --neutral-color-blue-100: #3bbeb9;

  /* GLOBAL THEME TOKENS FONTS */
  --font-family-primary: 'Roboto', sans-serif;
  --font-family-secondary: 'Lato Regular', sans-serif;

  /* COMPONENT TOKENS (HEADER & ITEMS) */
  --header-height: 10vh;
  --primary-border-color: var(--neutral-color-100);
  --primary-item-color: var(--neutral-color-200);
  --primary-item-color-hover: var(--neutral-color-black-000);
  --primary-item-font: var(--font-family-primary);

  /* COMPONENT TOKENS (BACKGROUND) */
  --primary-article-background-color: var(--neutral-color-050);

  /* COMPONENT TOKENS (BUTTONS) */
  --button-primary-color: var(--neutral-color-black-000);
  --button-primary-text-color: var(--neutral-color-000);

  /* COMPONENT TOKENS (INPUTS) */
  --primary-input-border: var(--neutral-color-100);
  --primary-input-border-hover: var(--neutral-color-black-000);
  --primary-input-outline-focus: var(--neutral-color-black-000);
}

body {
  /* Positioning */
  display: flex;
  flex-direction: column;
  /* Box Model */
  height: 120vh;
  margin: 0rem;
}

.header {
  /* Positioning */
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 9999;
  /* Box Model */
  width: 100%;
  height: var(--header-height);
  background-color: var(--neutral-color-000);
  border-bottom: 1px solid var(--primary-border-color);
}

/* Mobile Styles */
@media (max-width: 932px) {
  .header {
    /* Positioning */
    justify-content: space-between;
    /* Box Model */
    width: 100vw;
  }
}

@media only screen and (max-width: 932px) and (orientation: landscape) {
  .header {
    /* Positioning */
    position: relative;
    /* Box Model */
    height: 20vh;
  }
}

/* Desktop styles */
@media (min-width: 932px) {
  .header {
    /* Box Model */
    padding: 0.5rem;
  }
}

.header__novera_logo__container {
  /* Positioning */
  display: flex;
  justify-content: center;
  /* Box Model */
  margin: 1rem;
}

/* Mobile Styles */
@media (max-width: 932px) {
  .header__novera_logo__container {
    /* Box Model */
    margin-left: 1rem;
  }
}

.header__novera_logo {
  /* Positioning */
  display: inline-flex;
  align-items: center;
  /* Box Model */
  gap: 1.5rem;
  /* Typography */
  text-decoration: none;
  color: #000000;
}

.header__novera_logo:hover {
  opacity: 70%;
}

.header__novera_logo__triangles {
  /* Box Model */
  width: 3rem;
  height: auto;
  /* Visibility */
  overflow: visible;
}

.header__novera_logo__text {
  /* Box Model */
  margin-bottom: 0.2rem;
  /* Typography */
  font-family: "Mulish", sans-serif;
  font-size: 2.3rem;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.3rem;
}

.header__dropdown_button {
  /* Positioning */
  display: block;
  /* Box Model */
  background-color: var(--neutral-color-000);
  border: none;
  /* Typography */
  font-size: 2rem;
  color: var(--primary-item-color);
}

/* Mobile Styles */
@media (max-width: 932px) {
  .header__dropdown_button {
    /* Box Model */
    margin-right: 1rem;
  }
}

/* Desktop styles */
@media (min-width: 932px) {
  .header__dropdown_button {
    /* Positioning */
    display: none;
  }
}

.header__navigation, .header__navigation--open {
  /* Positioning */
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: space-between;
}

/* Mobile Styles */
@media (max-width: 932px) {
  .header__navigation {
    /* Positioning */
    position: absolute;
    display: none;
    transform: translateY(-10px);
    /* Visibility */
    opacity: 0;
  }
  
  .header__navigation--open {
    /* Positioning */
    position: absolute;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    top: var(--header-height);
    z-index: 9999;
    /* Box Model */
    width: 100%;
    height: 50vh;
    background-color: #ffffff;
    border: 1px solid var(--primary-border-color);
    /* Typography */
    font-family: var(--primary-item-font);
    color: var(--primary-item-color);
    /* Visibility */
    opacity: 1;
    /* Transitions & Animations */
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
}

@media only screen and (max-width: 932px) and (orientation: landscape) {
  .header__navigation--open {
    /* Box Model */
    margin-top: 10vh;
  }
}

/* Desktop styles */
@media (min-width: 932px) {
  .header__navigation {
    /* Positioning */
    /* Box Model */
    width: 50vh;
    margin-left: 5vh;
  }
}

/* Mobile Styles */
@media (max-width: 932px) {
  .header__navigation__items {
    /* Positioning */
    display: flex;
    flex-direction: column;
    align-self: left;
  }
}

/* Desktop styles */
@media (min-width: 932px) {
  .header__navigation__items {
    /* Positioning */
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.header__navigation__items a {
  /* Typography */
  font-family: var(--primary-item-font);
  text-decoration: none;
  color: var(--primary-item-color);
  /* Miscellaneous */
  cursor: pointer;
}

.header__navigation__items a:hover {
  /* Typography */
  color: var(--primary-item-color-hover);
}

/* Mobile Styles */
@media (max-width: 932px) {
  .header__navigation__items a {
    /* Box Model */
    padding: 1rem;
    border: 1px solid var(--primary-border-color);
  }
}

.header__navigation__login_menu {
    margin-right: 3rem;
}

.header__navigation__login_menu a {
  /* Typography */
  text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 932px) {
  .header__navigation__login_menu {
    /* Positioning */
    align-self: center;
    /* Box Model */
    margin: 2rem;
  }
}

.login_button {
  /* Box Model */
  padding: 1rem;
  border: 1px solid var(--primary-item-color);
  /* Typography */
  font-family: var(--primary-item-font);
  color: var(--primary-item-color);
  /* Miscellaneous */
  cursor: pointer;
}

.login_button:hover {
  /* Box Model */
  padding: 1rem;
  border: 1px solid #000000;
  /* Typography */
  color: #000000;
}

.register_button {
  /* Box Model */
  background-color: #000000;
  padding: 1rem;
  /* Typography */
  font-family: var(--primary-item-font);
  color: #ffffff;
  /* Miscellaneous */
  cursor: pointer;
}

.register_button:hover {
  /* Box Model */
  background-color: #3f3f3f;
  /* Typography */
  /* Miscellaneous */
}

.account_container {
  /* Positioning */
  position: relative;
  /* Miscellaneous */
  cursor: pointer;
}

.account_container__account {
  /* Positioning */
  display: flex;
  flex-direction: row;
  align-items: center;
}

.account_container__account__account_picture {
  /* Box Model */
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
}

/* Mobile Styles */
@media (max-width: 932px) {
  .account_container__account__account_picture {
    /* Box Model */
    margin-right: 0.2rem;
  }
}

/* Desktop styles */
@media (min-width: 932px) {
  .account_container__account__account_picture {
    /* Box Model */
    margin-right: 0.6rem;
  }
}

.account_container__account__account_info {
  /* Typography */
  font-family: var(--font-family-primary);
}

/* Mobile Styles */
@media (max-width: 932px) {
  .account_container__account__account_info {
    /* Typography */
    font-size: 0.8rem;
  }
}

/* Desktop styles */
@media (min-width: 932px) {
  .account_container__account__account_info {
    /* Typography */
    font-size: 0.8rem;
  }
}

.account_container__account__account_info h2 {
  /* Box Model */
  margin: 0rem;
  /* Typography */
  color: var(--neutral-color-black-000);
}

.account_container__account__account_info p {
  /* Box Model */
  margin: 0rem;
  /* Typography */
  color: var(--neutral-color-200);
}

.account_container__menu {
  /* Positioning */
  position: absolute;
  /* Visibility */
  opacity: 0;
}

.account_container__menu--open {
  /* Positioning */
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Box Model */
  background-color: var(--neutral-color-000);
  border: 1px solid var(--primary-border-color);
  /* Visibility */
  opacity: 1;
  /* Transitions & Animations */
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.account_container__menu--open a:not(.write_article_button a) {
  /* Box Model */
  padding: 1rem;
  /* Typography */
  font-family: var(--font-family-primary);
  color: var(--neutral-color-300);
}

.account_container__menu--open a:not(.write_article_button a):hover {
  /* Typography */
  color: var(--neutral-color-black--200);
}

/* Mobile Styles */
@media (max-width: 932px) {
  .account_container__menu--open {
    /* Positioning */
    bottom: 120%;
    /* Box Model */
    padding: 0.7rem;
  }
}

/* Desktop styles */
@media (min-width: 932px) {
  .account_container__menu--open {
    /* Positioning */
    top: 130%;
    /* Box Model */
    padding: 1rem;
  }
}

.main {
  /* Box Model */
  background-color: var(--primary-article-background-color);
}

/* Mobile Styles */
@media (max-width: 932px) {
  .main {
    /* Box Model */
    margin-top: 10vh;
  }
}

@media only screen and (max-width: 932px) and (orientation: landscape) {
  .main {
    /* Box Model */
    margin-top: 0vh;
  }
}

/* Desktop styles */
@media (min-width: 932px) {
  .main {
    /* Box Model */
    margin-top: 12vh;
  }
}

.footer {
  /* Positioning */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* Box Model */
  padding: 5rem;
  border-top: 1px solid var(--primary-border-color);
}

.footer span a {
  /* Box Model */
  margin: 1rem;
  /* Typography */
  font-family: var(--font-family-primary);
  color: var(--neutral-color-300);
  text-decoration: none;
}

.footer span a:hover {
  /* Typography */
  color: var(--neutral-color-400);
}

/* Mobile Styles */
@media (max-width: 932px) {
  .footer {
    /* Box Model */
    height: 100%;
    padding: 1rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    /* Typography */
    font-size: 0.7rem;
  }
}

/* ------------------------------------------------------------------------------ */