html {
  box-sizing: border-box;
}

html,
body,
#root {
  margin: 0px;
  padding: 0px;
  width: 100vw;
  height: auto;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

li {
  text-indent: 0px;
  list-style-type: disc;
  margin: 0px 0px 8px 24px;
  padding: 0px;
}

a {
  text-decoration: none;
}

.secondary-button-big {
  margin: 0px;
  padding: 12px 16px;
  width: max-content;
  height: min-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  gap: 8px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  border: 3px solid var(--grey-10);
  border-radius: 4px;
  color: var(--grey-10);
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.secondary-button-big:hover {
  background-color: var(--grey-90);
  border: 3px solid var(--grey-20);
}

.secondary-button-big:focus {
  outline-offset: 2px;
  outline: 3px solid #295ECC !important;
}

.secondary-button-medium {
  margin: 0px;
  padding: 6px 12px;
  width: max-content;
  height: min-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  border: 2px solid var(--grey-10);
  border-radius: 4px;
  color: var(--grey-10);
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.secondary-button-medium:hover {
  background-color: var(--grey-90);
  border: 2px solid var(--grey-20);
}

.secondary-button-medium:focus {
  outline-offset: 2px;
  outline: 3px solid #295ECC !important;
}

.secondary-button-small {
  margin: 0px;
  padding: 4px 8px;
  width: max-content;
  height: min-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  gap: 8px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  border: 2px solid var(--grey-10);
  border-radius: 4px;
  color: var(--grey-10);
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.secondary-button-small:hover {
  background-color: var(--grey-90);
  border: 2px solid var(--grey-20);
}

.secondary-button-small:focus {
  outline-offset: 2px;
  outline: 3px solid #295ECC !important;
}

.button img {
  margin: 0px;
  padding: 0px;
  width: 32px !important;
  height: auto;
}

body {
  overflow-x: hidden;
}

nav {
  margin: 0px;
  padding: 0px;
  height: auto;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0px;
  z-index: 100;
  background-color: var(--white-100);
  border-bottom: 1px solid var(--grey-80);
  z-index: 10000;
}

.navigation-wrapper {
  margin: 0 auto;
  padding: 16px 0px;
  max-width: 1224px;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 80px;
  row-gap: 24px;
}

.logo-link {
  margin: 0px;
  padding: 0px;
  width: auto;
  height: 40px;
  border: none !important;
  cursor: pointer;
  display: flex;
  /* position: absolute; */
  left: 0px;
  /* top: 10px; */
  /* z-index: 100; */
  flex-direction: row;
  gap: 0px;
  align-items: center;
  /* border: 1px solid red; */
}

.app-logo {
  padding: 0px;
  margin: 0px;
  width: auto;
  height: 48px;
}

.app-name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.home-footer {
  margin: 0px;
  padding: 104px 0px 180px 0px;
  background-color: var(--grey-10);
}

.home-content-wrapper {
  margin: 0 auto;
  padding: 0px;
  max-width: 1224px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.top-alignment {
  align-items: start;
}

.footer-navigation {
  width: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-navigation li {
  text-indent: 0px;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.footer-navigation li h6 {
  font-size: 16px;
  line-height: 24px;
}

.divider-vertical {
  margin: 0px;
  padding: 0px;
  width: 1px;
  height: 160px;
  border-left: 1px solid var(--white-100);
}

.footer-logo-link {
  margin: 0px;
  padding: 0px;
  min-width: 200px;
  height: 40px;
  border: none !important;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
}

.footer-logo-link h2 {
  color: var(--white-100);
}

.footer-item {
  margin: 0px;
  padding: 0px;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.footer-item:hover {
  cursor: pointer;
}

.footer-item h6 {
  color: var(--grey-80);
}

.footer-item h6:hover {
  color: var(--white-100);
  text-decoration: underline;
}

.footer-item:focus {
  outline-offset: 2px;
  outline: 3px solid #295ECC !important;
}

.footer-item.active h6 {
  color: var(--white-100);
  text-decoration: underline;
  font-weight: 700;
}

.article-container-header {
  margin: 0px auto;
  padding: 16px 24px;
  max-width: 1224px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--grey-80);
}

.article-container {
  margin: 0px auto;
  padding: 16px 24px;
  max-width: 1224px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 32px;
  border-bottom: 1px solid var(--grey-80);
}

.article-container-col {
  margin: 0px auto;
  padding: 24px 16px;
  max-width: 1224px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
  border-bottom: 1px solid var(--grey-80);
}

.green-section {
  margin: 24px auto;
  background-color: var(--brand-green-05);
  border: 1px solid var(--brand-green-50);
  border-radius: 8px;
}

.grey-section {
  /* background-image: url("/bk-price-chart.png"); */
  /* background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  /* background: linear-gradient(to right, var(--grey-99), #F2EEF2); */
  background-color: var(--grey-95);
  border: 1px solid var(--grey-80);
  /* background-color: var(--brand-light-blue-05);
  border: 1px solid var(--brand-light-blue-50); */
  border-radius: 16px;
  /* -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30); */
}

.blue-section {
  /* background-image: url("/bk-price-chart.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background: linear-gradient(to right, var(--grey-99), #F2EEF2); */
  /* background-color: var(--grey-95); */
  border-top: 1px solid var(--grey-80);
  /* background-color: var(--brand-light-blue-05);
  border: 1px solid var(--brand-light-blue-50); */
  /* border-radius: 16px; */
  /* -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30); */
}

.logo-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 0;
  border-radius: 8px;
  background-color: var(--grey-95);
}

.logo-wrapper img {
  width: 100%;
  height: auto;
}

.wrapper-header-text {
  width: calc(100% - 92px);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0px;
}

.wrapper-section-text {
  margin: 0px;
  padding: 0px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}

.article-container h2 {
  max-width: 740px;
}

.article-container p {
  max-width: 740px;
}

.badge-container {
  margin: 0px auto;
  padding: 24px 0px;
  max-width: 1224px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.aside-section {
  margin: 0px auto;
  padding: 72px 0px 0px 0px;
  max-width: 430px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 32px;
}

.stock-card {
  width: auto;
  height: auto;
  margin: 0px;
  padding: 16px 24px;
  border: 1px solid var(--grey-80);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--white-100);
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.30);
  border: 1px solid var(--grey-80);
}

.stock-card p {
  text-wrap: nowrap;
}

.snapshot-card {
  min-width: 352px;
}

.revenue-card {
  min-width: 402px;
}

.profitability-card {
  min-width: 415px;
}

.valuation-card {
  min-width: 406px;
}

.dividend-card {
  min-width: 430px;
}

.data-row {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.revenue-asset {
  width: 352px;
  height: auto;
}

.fixed-label {
  width: 156px;
}

.badge-wrapper {
  padding: 2px 8px;
  margin: 0px;
  border-radius: 4px;
  width: max-content;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4px;
}

.badge-wrapper h6 {
  text-wrap: nowrap;
}

.badge-gold {
  background-color: var(--brand-gold-15);
  border: 1px solid var(--brand-gold-80);
}

.badge-gold h6 {
  color: var(--brand-gold-80);
}

.badge-bronze {
  background-color: var(--brand-bronze-15);
  border: 1px solid var(--brand-bronze-80);
}

.badge-bronze h6 {
  color: var(--brand-bronze-80);
}

.badge-silver {
  background-color: var(--grey-90);
  border: 1px solid var(--grey-30),
}

.badge-silver h6 {
  color: var(--grey-20);
}

.badge-yellow {
  background-color: var(--brand-yellow-15);
  border: 1px solid var(--brand-yellow-80),
}

.badge-yellow h6 {
  color: var(--brand-yellow-80);
}

.badge-green {
  background-color: var(--brand-green-15);
  border: 1px solid var(--brand-green-80);
}

.badge-green h6 {
  color: var(--brand-green-80);
}

.badge-red {
  background-color: var(--brand-red-15);
  border: 1px solid var(--brand-red-80);
}

.badge-red h6 {
  color: var(--brand-red-80);
}

.badge-blue {
  background-color: var(--brand-blue-15);
  border: 1px solid var(--brand-blue-80);
}

.badge-blue h6 {
  color: var(--brand-blue-80);
}

.badge-purple {
  background-color: var(--brand-purple-15);
  border: 1px solid var(--brand-purple-80);
}

.badge-purple h6 {
  color: var(--brand-purple-80);
}

.notification {
  margin: 0px;
  padding: 8px 16px;
  height: auto;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  text-align: left;
  align-items: start;
  gap: 8px;
}

.notification img {
  width: 24px;
  height: auto;
}

.notification-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notification-generic {
  background: linear-gradient(to right, var(--grey-99), #F2EEF2);
  border: 1px solid var(--grey-80);
}

.notification-info {
  background-color: var(--brand-light-blue-05);
  border: 1px solid var(--brand-light-blue-50);
}

.notification-success {
  background-color: var(--brand-green-05);
  border: 1px solid var(--brand-green-50);
}

.notification-alert {
  background-color: var(--brand-yellow-05);
  border: 1px solid var(--brand-yellow-50);
}

.notification-error {
  background-color: var(--brand-red-05);
  border: 1px solid var(--brand-red-50);
}

.article-table {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-table caption {
  width: 100%;
  text-align: left;
}

.article-header {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--grey-80);
}

.article-list {
  margin: 0px;
  padding: 0px;
}

.article-list .article-row:nth-child(even) {
  background-color: var(--white-100);
}

.article-list .article-row:nth-child(odd) {
  background-color: var(--grey-95);
}

.article-row {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid var(--grey-80);
}

.article-item {
  margin: 8px 16px;
  text-align: left;
  width: 100%;
}

.box-list {
  width: 100%;
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}

.box-item {
  width: calc(50% - 32px);
  display: flex;
  flex-grow: 0;
}

.article-divider {
  margin: 24px;
  padding: 0px;
  border-bottom: 1px solid var(--grey-80);
}

.followup-stock {
  margin: 0px;
  padding: 24px 0px;
  width: 100%;
  background-color: var(--white-100);
  /* background-color: var(--grey-95);
  border-top: 1px solid var(--grey-80);
  border-bottom: 1px solid var(--grey-80); */
}

.followup-stock-inner {
  margin: 0px auto;
  padding: 16px 24px;
  max-width: 1224px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.followup-section-text {
  margin: 0px;
  padding: 0px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}

.followup-stock img {
  width: 450px;
}