.solid-button {
  background-color: black;
  color: var(--primary);
  padding: 1rem 2rem;
  transition: 500ms;
  outline: transparent;
  border: 3px solid transparent;
  font-weight: bold;
}
.solid-button:hover, .solid-button:focus {
  background-color: transparent;
  color: black;
  border-color: black;
}

.inverted-solid-button {
  background-color: var(--primary);
  color: black;
  padding: 1rem 2rem;
  transition: 500ms;
  outline: transparent;
  border: 3px solid black;
  font-weight: bold;
}
.inverted-solid-button:hover, .inverted-solid-button:focus {
  background-color: white;
}

.button {
  outline: transparent;
  color: var(--primary);
  border: 2px var(--primary) solid;
  padding: 1rem 2rem;
  background-color: transparent;
  position: relative;
  z-index: 2;
  transition: color 500ms;
  font-weight: bold;
  transition-delay: 1000ms;
}
.button:hover {
  color: black;
}
.button::before, .button::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.5s, left 0.5s, right 0.5s, height 0.5s, box-shadow 0.5s;
  transition-delay: 1s, 0.5s, 0.5s, 0s, 0s;
  z-index: -1;
}
.button::before {
  left: -20px;
  top: 50%;
  box-shadow: 5px 8px 0 var(--primary), 5px -8px 0 var(--primary);
}
.button::after {
  right: -20px;
  top: 50%;
  box-shadow: -5px 8px 0 var(--primary), -5px -8px 0 var(--primary);
}
.button:hover::before, .button:hover::after {
  width: 60%;
  height: 102%;
  transition-delay: 0s, 0s, 0s, 0.5s, 1s;
}
.button:hover::before {
  box-shadow: 5px 0 0 transparent, 5px 0 0 transparent;
  left: -2px;
}
.button:hover::after {
  box-shadow: -5px 0 0 transparent, -5px 0 0 transparent;
  right: -2px;
}

.input {
  padding: 1rem 1.25rem;
  width: 100%;
}
.input:focus {
  border: var(--primary) solid 2px;
  outline: none;
}

.cb_switch {
  position: relative;
  width: 80px;
  height: 50px;
  border-radius: 25px;
  background: linear-gradient(0deg, #f1f1f1, #ebebeb);
  border-top: 0.05em solid #ececec;
  border-bottom: 0.05em solid #ececec;
}
.cb_switch .inner {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(0deg, #c0c0c0, #b8b8b8);
  border-radius: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}
.cb_switch .inner.active {
  background: linear-gradient(0deg, #e9c707, var(--primary));
}
.cb_switch .inner.active .toggle {
  transform: translateX(100%);
}
.cb_switch .inner .toggle {
  position: absolute;
  top: -3px;
  left: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(0deg, #ccc, #e4e4e4);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  border-top: 0.04em solid #ececec;
  border-bottom: 0.01em solid #e0e0e0;
  transition: 500ms;
}

.checkbox input {
  display: none;
}
.checkbox label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.checkbox label span {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid gray;
  position: relative;
}
.checkbox label span::after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
  display: none;
}
.checkbox input:checked ~ label > span {
  background: linear-gradient(0deg, #e9c707, var(--primary));
}
.checkbox input:checked ~ label > span::after {
  display: block;
}

.menuLink {
  text-decoration: none;
  color: white;
  padding: 1em 0;
  text-align: center;
  transition: "500ms";
  position: relative;
  text-transform: uppercase;
}
.menuLink:hover, .menuLink.active {
  color: rgba(255, 255, 255, 0.2);
}
.menuLink:hover::before, .menuLink.active::before {
  letter-spacing: 1px;
  opacity: 1;
}
.menuLink::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5em;
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700, 0 0 30px #ffd700, 0 0 80px #ffd700;
  font-weight: 500;
  letter-spacing: 20px;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: 0.5s;
}

/*# sourceMappingURL=misc.css.map */
