@font-face {
  font-family: "Helvetica Neue";
  src: local("HelveticaNeue"),
    /* url("../assets/fonts/HelveticaNeue-Light.otf") format("otf"), */
      url("../assets/fonts/HelveticaNeue-Roman.otf") format("otf");

  font-weight: normal;
}
@font-face {
  font-family: "Helvetica Neue Bold";
  src: local("HelveticaNeue"),
    url("../assets/fonts/HelveticaNeue-Bold.otf") format("otf");

  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue Medium";
  src: local("HelveticaNeue"),
    url("../assets/fonts/HelveticaNeue-Medium.otf") format("otf");

  font-weight: 500;
}
@font-face {
  font-family: "Helvetica Neue Thin";
  src: local("HelveticaNeue"),
    url("../assets/fonts/HelveticaNeue-Medium.otf") format("otf");

  font-weight: 300;
}
html {
  font-size: 16px;
}
:root {
  --primary: #1269ff;

  --md-primary-fg-color: #fff;
  --md-primary-fg-color--light: #ecb7b7;
  --md-primary-fg-color--dark: #90030c;
  ---md-primary-fg-color: #0000008a;
  --md-text-font: "Helvetica Neue", sans-serif;
  --md-default-fg-color--light: rgba(0, 0, 0, 0.85);
  --md-typeset-a-color: #1269ff !important;
}
.md-grid {
  width: 80%;
  max-width: 1600px;
  @media (max-width: 768px) {
    max-width: 100%;
  }
}
.md-icon {
  color: var(--primary);
}
.md-nav {
  font-size: 0.8125rem;
  line-height: 18px;
  font-weight: 400;
}
.md-typeset h1 {
  font-size: 2rem;
  color: black;
}
.md-typeset h2 {
  font-size: 1.6rem;
  color: black;
}
.md-typeset a {
  color: var(--primary);
}
.md-typeset a:hover {
  color: var(--primary);
  text-decoration: underline;
}

p {
  font-size: 0.9375rem;
}
.admonition p {
  font-size: 0.7375rem;
}
.md-nav__link[for]:focus,
.md-nav__link[for]:hover,
.md-nav__link[href]:focus,
.md-nav__link[href]:hover,
.md-nav__link--active {
  color: var(--primary) !important;
}
.md-nav__link[href] {
  color: var(--default-color) !important;
}
.md-header {
  color: var(--primary);
}
.md-search__form {
  background-color: hsla(var(--md-hue), 0%, 0%, 0.07);
  color: black;
}
.md-search__form:hover {
  background-color: hsla(var(--md-hue), 0%, 0%, 0.07);
}
.md-search__input:placeholder {
  color: black;
}
.md-search__input + .md-search__icon {
  color: hsla(var(--md-hue), 0%, 0%, 0.87);
}
.md-nav__title {
  display: none !important;
}
.md-typeset {
  font-size: 0.9375rem;
}
.feedback-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #f5f6f7;
  border-radius: 10px;
  gap: 10px;
  h4 {
    margin: 0;
  }
  .feedback-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .md-button {
    background: #f5f6f7;
    padding: 4px 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: black;
    border-color: #f5f6f7;
  }
  .md-button:hover {
    background: var(--primary);
  }
  .feedback-thanks {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.custom-nav-buttons {
  .md-button {
    color: black;
    border: none;
    background: none;
    font-size: 12px;
    font-weight: normal;
  }
  .md-button:hover {
    color: var(--primary);
    border: none;
    background: none;
    text-decoration: none;
  }
  .md-button:hover span:first-of-type {
    color: black;
    text-decoration: none !important;
    border: none;
    background: none;
  }
  .md-button:hover span:last-of-type {
    color: var(--primary);
    border: none;
    background: none;
    text-decoration: underline;
  }
}
