@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:200,700,900&display=swap");
html {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  --background-colour: #fff;
  --surface-colour: #000;
  --primary-colour: #000;
  --secondary-colour: #fff;
  --on-background: #000;
  --on-surface: #fff;
  --on-primary: #fff;
  --on-secondary: #fff;
}

input,
h1,
h2,
h3,
h4,
button,
select,
textarea {
  font-family: "Nunito Sans", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html[data-theme=dark] {
  --background-colour: #000;
  --surface-colour: #121212;
  --primary-colour: #fff;
  --secondary-colour: #fff;
  --on-background: #fff;
  --on-surface: #fff;
  --on-primary: #fff;
  --on-secondary: #fff;
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 750ms !important;
  transition-delay: 0 !important;
}

body {
  margin: 0;
  background-color: var(--background-colour);
  text-align: center;
  color: var(--on-background);
}

a {
  color: #000;
  text-decoration: none;
}

svg {
  width: 150px;
  margin: 20px auto;
}

ul {
  position: relative;
  margin: 10px auto;
  padding: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  box-shadow: 1px 1px 30px #eee;
  font-size: 16px;
  list-style: none;
  z-index: 1;
  border-radius: 15px;
}
ul.login {
  border: 1px solid #eee;
  border-radius: 15px;
}
@media (min-width: 1000px) {
  ul {
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #eee;
    border-radius: 15px;
  }
}
ul li {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  box-shadow: 1px 1px 10px #eee;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  outline: 1px solid #fff;
  color: #000;
}
ul li:hover {
  background: #eee;
  box-shadow: 1px 1px 10px #fff;
  outline: 1px solid #eee;
}
ul li.active {
  background: black;
  color: white;
  box-shadow: 1px 1px 10px #b9b7b7;
  outline: 1px solid white;
}

form {
  margin: 10px 0;
}
form .container {
  background: #fff;
  box-shadow: 1px 1px 70px #eee;
  width: 300px;
  margin: 10px auto;
  padding: 15px 20px;
  border-radius: 20px;
  box-sizing: content-box;
  position: relative;
}
form .container .show {
  position: absolute;
  display: flex;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
form .container .show svg {
  margin: 0;
  width: 25px;
  cursor: pointer;
  fill: #eee;
}
form .container label {
  display: flex;
  text-align: left;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  align-items: center;
}
form .container label span {
  color: rgba(0, 0, 0, 0.1);
  font-size: 10px;
  text-transform: uppercase;
  padding-left: 5px;
  margin-left: 5px;
  border-left: 2px solid #eee;
  cursor: pointer;
}
form .container .arrow svg {
  width: 20px;
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 0.3;
}
form .container input {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 20px;
  outline: none;
}
form .container.password input {
  width: calc(100% - 20px);
  padding-right: 20px !important;
}
form .container select {
  -webkit-appearance: none; /* Remove default styling on iOS */
  -moz-appearance: none; /* Remove default styling on Firefox */
  appearance: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 30px;
  padding: 0;
  padding: 0 0 0 20px;
  margin: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 20px;
  outline: none;
}
form button {
  margin: 5px auto;
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 15px 30px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  background: black;
  color: white;
  box-shadow: 1px 1px 10px #b9b7b7;
  outline: 1px solid white;
  font-size: 20px;
  position: relative;
  z-index: 2;
}
form button span {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: normal;
  font-weight: 700;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
}
form a {
  display: block;
  font-size: 12px;
  margin: 20px 0;
  text-transform: uppercase;
}

.marketing .brand {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin: 5px;
  background: transparent;
  box-shadow: 1px 1px 10px #eee;
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 700;
  cursor: pointer;
}
.marketing .brand svg {
  width: 20px;
  margin: 0 0 0 5px;
}
.marketing .brand.active {
  background: black;
  color: white;
}
.marketing .brand.active svg {
  fill: rgba(255, 255, 255, 0.2);
}

.addresses button {
  margin: 5px auto;
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 15px 30px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  background: black;
  color: white;
  box-shadow: 1px 1px 10px #b9b7b7;
  outline: 1px solid white;
  font-size: 20px;
  position: relative;
  z-index: 2;
}
.addresses button span {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: normal;
  font-weight: 700;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
}
.addresses .address-container {
  background: #fff;
  box-shadow: 1px 1px 70px #eee;
  width: 300px;
  margin: 10px auto;
  padding: 15px 20px;
  border-radius: 20px;
  box-sizing: content-box;
  text-align: left;
  position: relative;
  z-index: 1;
}
.addresses .address-container.default {
  border: 1px solid #eee;
}
.addresses .address-container .actions {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}
.addresses .address-container .actions svg {
  fill: black;
  width: 15px;
  cursor: pointer;
}
.addresses .address-container .actions svg:hover {
  transform: scale(1.1);
}
.addresses .address-container .name {
  font-weight: 900;
}
.addresses .address-container .address {
  font-weight: 700;
  font-size: 14px;
}

.jwid {
  display: block;
  font-size: 20px;
  margin: 0px 0;
  font-weight: 700;
  color: rgb(0, 0, 0);
}

.change {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  color: black;
  box-shadow: 1px 1px 10px #eee;
  outline: 1px solid white;
  font-size: 12px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  color: black;
  box-shadow: 1px 1px 10px #eee;
  outline: 1px solid white;
  font-size: 10px;
  position: relative;
}

.close-button {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  background: black;
  color: white;
  box-shadow: 1px 1px 10px #eee;
  outline: 1px solid white;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.close-button .close {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: normal;
  font-weight: 700;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 5px;
}

.support-pin {
  display: block;
  align-items: center;
  margin: 10px auto;
  border-radius: 10px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 16px;
  position: relative;
}
.support-pin span {
  font-size: 50px;
  display: block;
  margin: 0;
  line-height: 50px;
}

.delete-account {
  display: block;
  margin: 50px 10px 0 10px;
  font-weight: 600;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.1);
  font-size: 12px;
}

.response-message {
  position: relative;
  background: var(--content-contrast);
  color: white;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 30px;
  justify-content: center;
  align-items: center;
  padding: 5px 0px 5px 20px;
  border-radius: 0px;
  text-align: left;
  font-weight: 500;
  gap: 10px;
  font-size: 14px;
  z-index: 1;
}
.response-message.red {
  background: #d31027;
}
.response-message.green {
  background: olive;
}
.response-message .close {
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  background: transparent;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  cursor: pointer;
}

.hold-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}
.hold-screen .ripple {
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
.hold-screen .ripple div {
  position: absolute;
  border: 4px solid black;
  opacity: 1;
  border-radius: 50%;
  animation: ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.hold-screen .ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.confirmation-prompt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
  overflow: hidden;
}
.confirmation-prompt .prompt {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background-color: white;
  box-shadow: 1px 1px 10px #eee;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  z-index: 1000; /* Ensure .prompt is above the overlay */
}
.confirmation-prompt .prompt:not(.prompt) {
  filter: blur(5px); /* Apply the blur to all children of .confirmation-prompt except .prompt */
}
.confirmation-prompt .prompt p {
  font-weight: 700;
  margin: 0 0 10px 0;
}
.confirmation-prompt .prompt .yes, .confirmation-prompt .prompt .no {
  margin: 0 5px;
  display: inline-block;
  color: white;
  background: black;
  border: 2px solid black;
  padding: 5px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 1px 1px 10px #eee;
}
.confirmation-prompt .prompt .yes:hover, .confirmation-prompt .prompt .no:hover {
  transform: scale(1.1);
}
.confirmation-prompt .prompt .no {
  background: white;
  color: black;
  font-weight: 700;
}

.overlay {
  display: none; /* Initially hidden */
  position: fixed; /* Fixed position to cover the viewport */
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  z-index: 9999; /* Ensure it's in front of everything else */
  margin: 0;
  overflow: hidden; /* Hide overflow to avoid double scroll */
}
.overlay .overlay-content {
  height: calc(100vh - env(safe-area-inset-bottom));
  overflow-y: auto; /* Enable vertical scrolling */
  -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
}
.overlay h2 {
  padding: 0;
  max-width: 500px;
  margin: 10px auto;
  font-size: 25px;
  font-weight: 900;
}
.overlay p {
  max-width: 500px;
  margin: 10px auto;
  font-size: 14px;
  font-weight: 700;
}
.overlay ol {
  padding: 20px;
  width: 80%;
  max-width: 500px;
  margin: 10px auto;
  font-size: 16px;
  list-style-type: none !important;
  counter-reset: item;
  text-align: left;
  font-weight: 900;
  box-shadow: 1px 1px 10px #eee;
}
.overlay ol li {
  display: block;
  margin: 10px auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
}
.overlay ol li span {
  font-weight: 900;
}
.overlay ol li:before {
  content: counter(item) "";
  counter-increment: item;
  font-weight: bold;
  margin-right: 5px;
  background: #000;
  color: white;
  font-variant-numeric: tabular-nums;
  padding: 3px 7px;
  border-radius: 5px;
}
.overlay button {
  margin-bottom: 100px;
}/*# sourceMappingURL=jwid.css.map */