#dark-mode-toggle-1 {
  --dark-mode-toggle-dark-icon: url("/images/sun.svg");
  --dark-mode-toggle-light-icon: url("/images/moon.svg");
  --dark-mode-toggle-icon-size: 2.5rem;
  margin: 37rem 0 0 1rem;
  position: fixed;
  z-index: 1;
}

body,
html {
  background: white;
  font-family: 'League Spartan', sans-serif;
}

li {
  margin: 10px;
}

.txt,
a {
  color: blue;
}

.txt:hover,
a:hover {
  color: #00B4FF;
}

.hero.is-primary {
  background-color: transparent;
}

.hero-body {
  padding: 1.5rem 1.5rem;
}

.hero-body .content {
  text-align: center;
  color: black;
}

.hero-body .content h1 {
  font-size: 2.8em;
  font-weight: 600;
  margin-bottom: 0.3em;
  color: black;
}

.hero-body .content h3 {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5em;
}

img.social-logo {
  display: inline-block;
  margin-right: 10px;
  text-indent: -9999px;
  width: 20px;
}

#app> :nth-child(2) {
  padding-top: 0;
}

.help.form-label {
  font-size: 1em;
  font-weight: 600;
  color: #565656;
}

.center-block {
  margin: 0 auto;
  display: block;
}

.box span.icon {
  float: right;
  font-size: 1.7em;
  padding: 2rem 2rem 0 0;
}

.is-large.fab {
  font-size: 7em;
}

.is-large.fas {
  font-size: 5em;
  margin-left: 0.2em;
}

.menu-list li a:hover {
  background: #d9d9d9;
}

.scrollable {
  height: 65vh;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
}

.button.is-primary {
  margin-top: 0.7em;
}

.thirdparty-logo {
  height: 1.5em;
  padding-right: 8px;
  vertical-align: middle;
}

#step-1,
#step-2,
#step-3 {
  padding-bottom: 0.3em;
  padding-top: 0.4em;
}

.columns {
  margin-top: -1.8rem;
}

.column.box {
  padding: 1em;
}

#page-404 {
  color: #888;
  display: table;
  font-family: 'League Spartan', sans-serif;
  height: 100%;
  text-align: center;
  width: 100%;
}

#page-404>div {
  display: table-cell;
  vertical-align: middle;
  margin: 2em auto;
}

#page-404 h1 {
  color: black;
  font-size: 4em;
  font-weight: 600;
  text-align: center;
}

#page-404 p {
  margin: 0 auto;
  width: 50%;
  text-align: center;
  color: black;
  font-size: 2em;
  font-weight: 200;
}

.modal-card-body ul {
  list-style-type: disc;
}

.modal-card-body li {
  margin-left: 2.5em;
}

.modal-card-body textarea {
  height: 66%;
  width: 100%;
}

.center-parent {
  width: 100%;
  text-align: center;
}

.center-parent>.child {
  display: inline-block;
  margin: 2px;
}

.column.is-information .sidebar-img {
  pointer-events: none;
  height: 21em;
  padding: 2em;
}

.modal-card-body.modal-box {
  display: flex;
  flex-direction: column;
  height: 450px;
}

.modal-card-body.modal-box textarea {
  height: 100%;
}

.box {
  margin-top: 0.8em;
}

.box:not(:last-child) {
  margin-bottom: 0.5em;
}

.box.final-box>a.button {
  margin-right: 0.2em;
}

.no-select {
  user-select: none;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]+label {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font: 16px/20px 'League Spartan', sans-serif;
  color: black;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type=checkbox]+label:last-child {
  margin-bottom: 0;
}

input[type=checkbox]+label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #00b4ff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

input[type=checkbox]:checked+label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#particles-js {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
}