@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
:root {
  --heading-color: #363636;
  --bg-color: #f5f7f9;
  --font-color: #4a4a4a;
  --box-color: #ffffff;
  --hr-color: #f5f5f5;
  --button-color: #ffffff;
  --card-shadow: rgba(0,0,0,0.1);
  --notif-bg: #eef3fc;
  --notif-col: #2160c4;
  --navbar-bg: #f5f7f9b0;
  --input-bg: #ffffffb8;
  --box-shadow: #0a0a0a1a;
  --box-border: #0a0a0a05;
  --strong-color: #363636;
  --menu-bg: #fff6f6;
  --placeholder: #a8a7a7;
  --icon: #dbdbdb;
  --input-border: #e0e0e0;
  --img-desc: #7a7a7a;
  --about-text: #363636;
  --about-benefit: #fffd73;
  --span-color: #4a4a4a;
  --is-warning: #ffdd57;
  --is-whover: #fffd73;
  --is-ihover: #a1dbff;
  --is-info: #c4e8ff;
  --has-text: #7a7a7a;
  --is-link: #42afe3;
  --ani-bg: #2c2626;
  --menu-li-border: #f5f5f5;
  --notif-pri: #00d1b2;
  --label-col: #4a4a4a;
}

[data-theme="dark"] {
  --heading-color: #aebbe4;
  --bg-color: #1F2023;
  --font-color: #dad3d3;
  --box-color: #27292D;
  --hr-color: #7e7474;
  --button-color: #3b3b3b;
  --card-shadow: rgba(255, 255, 255, 0.041);
  --notif-bg: #215fc456;
  --input-bg: #3a3a3ab8;
  --notif-col: #c6c6ff;
  --navbar-bg: #1f2023b9;
  --box-shadow: #ececec1a;
  --box-border: #ffffff05;
  --strong-color: #dfdfdf;
  --menu-bg: #585555;
  --placeholder: #c2c2c2;
  --icon: #e48170;
  --input-border: #5e5e5e;
  --img-desc: #bbbbbb;
  --about-text: #b9b9b9;
  --about-benefit: #7e4e2e;
  --span-color: #aebbe4;
  --is-warning: #a9403d;
  --is-whover: #ce5d59;
  --is-ihover: #844dbb;
  --is-info: #5e1ca0;
  --has-text: #c5c5c5;
  --is-link: #fce473;
  --ani-bg: #3b3c42;
  --menu-li-border: #313131;
  --notif-pri: #63c9ba69;
  --label-col: #cecece;
}

::-webkit-input-placeholder {
  color: var(--placeholder) !important;
}

:-ms-input-placeholder {
  color: var(--placeholder) !important;
}

::-ms-input-placeholder {
  color: var(--placeholder) !important;
}

::placeholder {
  color: var(--placeholder) !important;
}

html, body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin: 0;
  background-color: var(--bg-color);
}

.navbar {
  background-color: var(--navbar-bg);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
          backdrop-filter: saturate(180%) blur(10px);
}

.navbar.border {
  border: 1px solid #e2e8f0;
}

.nav-icon {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #7e7474;
}

.nav-icon:hover {
  color: #e48170;
}

.footer {
  background-color: var(--bg-color);
}

.input {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background-color: var(--input-bg);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
          backdrop-filter: saturate(180%) blur(10px);
  border: 1px solid var(--input-border);
  border-radius: 32px;
  color: var(--placeholder);
}

.input:focus {
  border-color: #e48170 !important;
  -webkit-box-shadow: 0 0 0 0.125em #e481703f;
          box-shadow: 0 0 0 0.125em #e481703f;
}

.control.has-icons-left .icon {
  color: var(--icon);
}

.box {
  background-color: var(--box-color);
  -webkit-box-shadow: 0 0.5em 1em -0.125em var(--box-shadow), 0 0 0 1px var(--box-border);
          box-shadow: 0 0.5em 1em -0.125em var(--box-shadow), 0 0 0 1px var(--box-border);
}

.title {
  color: var(--heading-color) !important;
}

.subtitle {
  color: var(--font-color);
}

p {
  color: var(--font-color);
}

hr {
  background-color: var(--hr-color) !important;
}

strong {
  color: var(--strong-color) !important;
}

.has-text-grey {
  color: var(--has-text) !important;
}

span {
  color: var(--span-color);
}

.label {
  color: var(--label-col);
}

.notification.is-primary {
  background-color: var(--notif-pri);
  color: var(--font-color);
}

.header-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: var(--bg-color);
}

.brand-title {
  color: var(--heading-color) !important;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-title-about {
  padding-top: .5rem;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-benefit {
  font-weight: bold;
  background-color: var(--about-benefit);
}

.about-footer {
  color: var(--about-text);
  font-size: 1.10rem;
  line-height: 1.25;
  margin-bottom: .5rem;
}

.modal-card-body {
  border-radius: 5px;
}

.button {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.button-noborder {
  border: 0;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
          box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
}

.button-home {
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.164);
          box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.164);
}

.button-home:hover {
  -webkit-transform: translateY(-0.15rem);
          transform: translateY(-0.15rem);
  -webkit-box-shadow: 0 0.5em 3em -0.125em rgba(10, 10, 10, 0.164);
          box-shadow: 0 0.5em 3em -0.125em rgba(10, 10, 10, 0.164);
}

.button.is-warning {
  background-color: var(--is-warning);
}

.button.is-warning:hover {
  background-color: var(--is-whover);
}

.button.is-info {
  background-color: var(--is-info);
}

.button.is-info:hover {
  background-color: var(--is-ihover);
}

.button.is-link {
  background-color: var(--is-link);
}

.bd-anchor-title {
  position: relative;
}

.bd-anchor-link {
  position: absolute;
  right: calc(100% + 0.5rem);
}

a:hover {
  color: #00a2ff;
}

.imgticle {
  border: 2px outset transparent;
  border-radius: 5px;
}

.imgticle:hover {
  border: 2px solid #fce473;
  border-radius: 5px;
}

.imgdesc {
  color: var(--img-desc);
  font-style: italic;
}

.herobr {
  border-bottom: 1px solid #fce473;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.box {
  padding: 2rem;
}

.box-aside {
  width: 180px;
  padding: .35rem;
  margin-top: 21px;
  z-index: 1;
  -webkit-transform: translate(-25px, 20px);
          transform: translate(-25px, 20px);
}

.menu-section {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid var(--hr-color);
}

.menu-section a {
  display: block;
  padding: .5rem;
}

.menu-list {
  display: block;
}

.menu li a {
  border-top: 1px solid var(--menu-li-border);
  color: var(--heading-color);
  display: block;
  line-height: 1.25;
  min-height: 26px;
  padding: 8px 10px 8px 20px;
  position: relative;
}

.menu li a:hover {
  background-color: var(--menu-bg);
}

.menu li a span {
  border-radius: 11px;
  display: inline-block;
  font-size: 10px;
  height: 22px;
  line-height: 21px;
  padding: 0 8px;
  position: absolute;
  top: 5px;
  right: 10px;
}

.menu li.current-cat a {
  background: #fce473;
  border-top-color: #fce473;
  color: #333;
  color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  z-index: 1;
}

.menu li.current-cat a span {
  background: rgba(255, 255, 255, 0.5);
}

.navigation {
  border-top: 2px solid var(--hr-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}

.navigation a:hover {
  color: #addff7;
}

.navigation a:hover span:hover {
  color: #addff7;
}

.navigation-left {
  margin-top: 1.5rem;
  margin-right: auto;
}

.navigation-right {
  margin-top: 1.5rem;
  margin-left: auto;
}

.bd-anchors {
  margin-top: 3rem;
  position: fixed;
}

.bd-anchors-title {
  color: #b5b5b5;
  font-size: .975rem;
  font-weight: 600;
  margin-bottom: .5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.bd-anchors-list {
  font-size: .975rem;
  list-style: none;
}

.bd-anchors-list li {
  margin-bottom: .2rem;
}

.bd-anchors-list a {
  color: var(--font-color);
}

.bd-anchors-list a:hover {
  color: #0051ff;
}

.listSearch {
  background-color: var(--box-color);
}

.listSearch li {
  margin: 5px;
}

.listsearch-nav {
  background-color: var(--box-color);
  border-radius: 5px;
  border: 0px solid var(--input-border);
  display: block;
  position: absolute;
  margin-top: 5px;
}

.listsearch-nav li {
  margin: 5px;
  width: 490px;
}

.navi {
  border: 1px solid var(--input-border);
}

.field-nav {
  width: 500px;
}

.version {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.animation {
  width: 100%;
  background-color: var(--ani-bg);
  padding: 15px;
  margin-bottom: 5px;
  border-radius: 0px;
}

.squares {
  width: 250px;
  height: 250px;
  background-color: red;
}

@media only screen and (max-width: 600px) {
  .field-nav {
    width: 250px;
  }
  .listsearch-nav li {
    width: 240px;
  }
  .position-square {
    width: 50px;
    height: 50px;
  }
  .y {
    width: 250px;
    height: 250px;
  }
}

.theme-switch-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: right;
}

.theme-switch-wrapper em {
  margin-left: 10px;
  font-size: 1rem;
}

.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 30px;
}

.theme-switch input {
  display: none;
}

.slider {
  width: 50%;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  bottom: 7px;
  content: '';
  -webkit-mask: url(../img/sun.svg);
          mask: url(../img/sun.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #b6b600;
  height: 22px;
  position: absolute;
  -webkit-transition: .4s;
  transition: .4s;
  width: 22px;
}

input:checked + .slider:before {
  content: '';
  -webkit-mask: url(../img/moon.svg);
          mask: url(../img/moon.svg);
  background-color: #c0adad;
}
/*# sourceMappingURL=style.css.map */