:root {
  --font-base: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: UnifrakturMaguntia;
  src: url(/assets/fonts/UnifrakturMaguntia/UnifrakturMaguntia-Regular.ttf);
  font-weight: 400;
}

* {
  font-family: Montserrat;
  /*
  font-family: UnifrakturMaguntia;
  */
  padding: 0;
  margin: 0;
}

html {
  overflow: unset;
  overscroll-behavior: none;
}

body {
  height: 100%;
  width: 100%;
  overflow: auto;
  overscroll-behavior: none;
}

h1, h2, h3, h4, h5, p {
  cursor: text;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
}

h1 {
  font-size: 28px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 14px;
}

button, a, button *, a * {
  cursor: pointer;
}
button[disabled], button[disabled] * {
  cursor: default;
}

div.spacer {
  width: 100%;
  height: 100%;
}

button {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

button.div {
  color: black;
  background: none;
  border: none;
  outline: none;
}

a {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  transition: background-color 0.3s;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:hover {
  color: #000;
}

button.a {
  background: none;
  border: none;
  outline: none;
  text-decoration: underline;
  font-weight: 500;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
}
button.a:hover {
  color: #000;
}

button.a-hover {
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  font-size: 14px;
}
button.a-hover:hover {
  text-decoration: underline;
}

button.primary {
  width: 100%;
  padding: 15px 0px;
  background-color: #111;
  color: #fff;
  border: 1px solid #111;
  outline: none;
  border-radius: 25px;
  transition: background-color 0.3s;
  font-size: 14px;
  font-weight: 500;
}
button.primary:hover {
  background-color: #000;
  color: #fff;
}
button.primary.loading {
  background-color: #fff;
  min-height: 50px;
}
button.primary[disabled] {
  pointer-events: none;
  background-color: #333;
  border: 1px solid #333;
}

button.secondary {
  width: 100%;
  padding: 15px 0px;
  background-color: #fff;
  color: #000;
  border: 1px solid #111;
  outline: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
}
button.secondary:hover {
  background-color: #f2f2f2;
}

p.secondary {
  color: #333;
}

a.button-primary {
  width: calc(100% - 50px);
  padding: 15px 0px;
  background-color: #111;
  color: #fff;
  border: 1px solid #111;
  outline: none;
  border-radius: 25px;
  transition: color 0.3s;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 25px;
  display: block;
  text-align: center;
}
a.button-primary:hover {
  background-color: #000;
  color: #fff;
}
a.button-primary.loading {
  background-color: #fff;
  min-height: 50px;
}

a.button-secondary {
  width: calc(100% - 50px);
  padding: 15px 0px;
  background-color: #fff;
  color: #000;
  border: 1px solid #111;
  outline: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 25px;
  display: block;
  text-align: center;
}
a.button-secondary:hover {
  background-color: #f2f2f2;
}

[placeholder]:empty:before {
  content: attr(placeholder);
  color: #555;
  cursor: text;
}

#react-root {
  position: relative;
}

.terms-of-service-home, .privacy-policy-home {
  padding: 5vh 5vw;
}

.terms-of-service, .privacy-policy {
  width: 550px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .terms-of-service, .privacy-policy {
    width: 90%
  }
}

.terms-of-service-home *, .privacy-policy-home * {
  font-size: 12px;
}
.terms-of-service-home h1, .privacy-policy-home h1 {
  font-size: 22px;
}
.terms-of-service-home h2, .privacy-policy-home h2 {
  font-size: 18px;
}

.contact-us-home {
  background-color: #f2f2f2;
  padding-bottom: 5vh;
}

.contact-us-home main {
  width: 50%;
  padding: 0 5%;
  margin-left: 5%;
}
@media only screen and (max-width: 768px) {
  .contact-us-home main {
    width: 90%;
    margin: 0;
  }
}

.contact-us-home h1 {
  font-size: 28px;
  font-weight: 500;
  padding-top: 30px;
  padding-bottom: 15px;
}

.contact-us-home .description {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-size: 14px;
}

.contact-us-home .contact-methods {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  font-size: 14px;
}

.contact-us-home .contact-methods .panel {
  position: relative;
  padding: 15px;
}

.required-fields {
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
}

label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  cursor: text;
}

.input {
  margin-bottom: 20px;
}

.input .validation {
  margin-top: 10px;
  font-size: 14px;
}
.input .validation .validation-field {
  display: flex;
  align-items: start;
  margin-bottom: 5px;
}
.input .validation .validation-field > *:first-child {
  margin-right: 5px;
}

.input .validation .validation-field img {
  margin-top: 5px;
}

input {
  font-size: 14px;
}
input[disabled] {
  pointer-events: none;
}

input[type="text"] {
  width: calc(100% - 30px);
  padding: 15px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #000;
  transition: border 0.3s;
}
input[type="text"]:focus,
input[type="text"]:hover
{
  border: 1px solid #000;
}

input[type="password"] {
  width: calc(100% - 30px);
  padding: 15px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #000;
  transition: border 0.3s;
}
input[type="password"]:focus,
input[type="password"]:hover
{
  border: 1px solid #000;
}

input[type="email"] {
  width: calc(100% - 30px);
  padding: 15px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #000;
  transition: border 0.3s;
}
input[type="email"]:focus,
input[type="email"]:hover
{
  border: 1px solid #000;
}

.input.checkbox {
  margin-bottom: 15px;
  font-size: 12px;
}

.input.checkbox span.label {
  user-select: none;
}

.input.checkbox input[type="checkbox"] {
  margin-top: 3px;
  margin-left: 1px;
  margin-right: 10px;
}

.input.checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

input[type="checkbox"] {
  outline: none;
  color: #333;
  accent-color: black;
  border: 1px solid #111;
  cursor: pointer;
  transition: color 0.3s;
}
input[type="checkbox"]:focus,
input[type="checkbox"]:hover {
  color: #000;
}

.contact-us-home h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us-home .hr {
}

.contact-us-home .textarea-container {
  width: 100%;
  overflow-x: hidden;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  transition: border 0.3s;
}

.contact-us-home .textarea-container.active {
  border: 1px solid #000;
}

.contact-us-home textarea {
  padding: 5px 10px;
  width: calc(100% - 5px);
  resize: none;
  height: 15vh;
  border: none;
  outline: none;
}

.contact-us-home .input.message {
  position: relative;
}

.characters-remaining {
  font-size: 12px;
  text-align: right;
  color: #f2f2f2;
  transition: color 0.3s;
}
.characters-remaining.active {
  color: #000;
}
.characters-remaining.error {
  color: red;
}

.input.error .error-message {
  display: block;
}
.input.error label {
  color: red;
}
.error-message {
  color: red;
  margin-top: 5px;
  font-size: 12px;
  display: none;
}

.contact-us-home .policy {
  margin-top: 30px;
  font-size: 12px;
  padding: 0px 15px;
}

.legal > h1 {
  margin-bottom: 3vh;
}

.legal > h2 {
  margin-top: 1vh;
  margin-bottom: 2vh;
  padding-top: 1vh;
}

.legal > p {
  margin-bottom: 2vh;
}

.legal > ul {
  padding-left: 5vw;
}

.legal > ul > li {
  margin-bottom: 1vh;
}

.legal > .last-updated {
  margin-bottom: 2vh;
}

.nav-bars {
}

.nav-bar-padding {
  height: 81px;
}
@media only screen and (max-width: 768px) {
  .nav-bar-padding {
    height: 56px;
  }
}

.nav-top {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  pointer-events: none;
  border-bottom: 1px solid #000;
}

.nav-top > nav {
  transition: background-color 0.25s, border-color 0.25s;
  background-color: transparent;
  border-bottom: 1px solid;
  border-color: transparent;
}
.nav-top.opaque > nav {
  background-color: #fff;
  border-bottom: 1px solid #000;
  border-color: #f2f2f2;
}

.nav-top > nav.primary {
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
  padding-top: 25px;
  padding-bottom: 20px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .nav-top > nav.primary {
    height: 28px;
    padding-top: 17px;
    padding-bottom: 10px;
  }
}

.nav-top > nav.primary > .left {
  display: flex;
  width: 33%;
  pointer-events: none;
}
.nav-top > nav.primary > .left {
  pointer-events: all;
}

.nav-top > nav.primary > .middle {
  width: 33%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-top > nav.primary > .middle * {
  pointer-events: all;
}

.nav-top > nav.primary > .right {
  display: flex;
  flex-direction: row-reverse;
  width: 33%;
  pointer-events: none;
}
.nav-top > nav.primary > .right * {
  pointer-events: all;
}

.nav-top > nav.search {
  display: flex;
  justify-content: start;
  height: 28px;
  padding: 8px 0px;
}

.nav-top .right .anchors {
  position: relative;
  right: 35px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .nav-top .right .anchors {
    right: 20px;
  }
}

.logo a {
  display: inline-block;
  outline: none;
}

.logo img {
  height: 34px;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .logo img {
    height: 25px;
    width: auto;
  }
}

.absolute-elements {
  position: relative;
}

footer {
  font-size: .8em;
  background-color: #fff;
  color: #000;
  font-weight: 500;
}

footer .logo {
  width: 100%;
  text-align: center;
  padding-top: 35px;
  padding-bottom: 30px;
}

footer .mobile {
  border-top: 1px solid #000;
  min-height: 30vh;
  /*
  padding: 0px 20px;
  padding-bottom: 5px;
  */
}

footer .mobile .hr {
  width: 100%;
  border-top: 1px solid #f2f2f2;
}

footer .primary {
}

footer .dropdown-section .title {
  padding: 15px 20px;
  width: 100%;
}
footer .dropdown-section .dropdown {
  padding: 5px 35px;
}

.dropdown-section {
  width: 100%;
}
.dropdown-section .title-description h6 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.dropdown-section .icon-container {
  margin-right: 10px;
}
.dropdown-section .title {
  color: black;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.dropdown-section .title .caret {
  transition: transform 0.2s;
}
.dropdown-section .title .caret.down {
  transform: rotate(90deg);
}
.dropdown-section .title .caret svg {
  width: 12px;
  height: 12px;
}

.dropdown-section h6 {
  font-size: 14px;
  font-weight: 500;
}

.dropdown-section h6.fraktur {
  font-size: 16px;
  position: relative;
  top: 2px;
}

.dropdown-section .title-description > p {
  margin-top: 5px;
  font-size: 12px;
}

.dropdown-section .dropdown-container {
  overflow: hidden;
}
.dropdown-section .dropdown-container.opening {
  height: 0;
}

.dropdown-section .dropdown {
  transition: all 0.3s;
}
.dropdown-section .dropdown.open {
  visibility: visible;
}
.dropdown-section .dropdown.closed {
  /*
  margin-top: -10%;
  */
  pointer-events: none;
  visibility: hidden;
}
.dropdown-section .dropdown.opening {
}
.dropdown-section .dropdown.closing {
}

footer .mobile .dropdown-section .dropdown .link {
  padding: 10px 0px;
}

footer .mobile .dropdown-section .dropdown a {
  text-decoration: none;
  color: black;
}

footer .mobile .dropdown-section .dropdown a .fraktur {
  font-size: 13px;
}

footer .primary {
  padding-top: 50px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  min-height: 30vh;
  border-top: 1px solid #000;
  border-bottom: 1px solid #f2f2f2;
}

@media only screen and (max-width: 768px) {
  footer .primary {
    flex-direction: column;
  }
}

footer .primary section {
  width: 25%;

  /*
  border-top: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  */

  padding: 2vh 1vw;
}

@media only screen and (max-width: 768px) {
  footer .primary section {
    padding: 2vh 3vw;
    width: calc(100% - 6vw - 2px);
    border-right: none;
    border-bottom: none;
  }
}

footer .primary section:last-child {
  border-right: none;
}

footer .primary h6 {
  margin-bottom: 30px;
  font-size: 10px;
  font-weight: 500;
}

footer .primary h6.fraktur {
  font-size: 12px;
  position: relative;
  top: 2px;
}

footer .primary .link {
  margin-bottom: 30px;
}

footer .primary .link a {
  text-decoration: none;
  color: #000;
}

footer .primary .link a.mailing-list {
  text-decoration: underline;
}
footer .primary .link a.mailing-list .fraktur {
  font-size: 13px;
}

footer .copyright {
  padding-top: 6vh;
  padding-bottom: 6vh;
}

footer .copyright .statement {
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

footer .copyright .statement .fraktur {
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.cover {
  position: relative;
  overflow: hidden;
}

.cover a {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.cover .collection {
  position: absolute;
  bottom: 55%;
  font-weight: 700;
  color: #fff;
  font-size: 1.2em;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .cover .collection {
  }
}

.cover .collection * {
  font-family: UnifrakturMaguntia;
  font-size: 48px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
}

.cover .button-imitation {
  position: absolute;
  bottom: 40%;
  background: none;
  padding: 12px 1.5vw;
  border: 3px solid #fff;
  border-radius: 5px;
  z-index: 1;
  width: 462px;
  text-align: center;
  font-weight: 500;
  font-size: 0.7em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .cover .button-imitation {
    width: 50%;
    bottom: 15%;
  }
}

.cover .button-imitation * {
  font-family: UnifrakturMaguntia;
  font-size: 22px;
}

.cover .button-imitation {
}
/*
@media only screen and (max-width: 768px) {
  .cover h1 {
    font-size: 5vw;
  }
}
*/

.cover .cover-image {
  width: 100%;
  aspect-ratio: 2;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .cover .cover-image {
    aspect-ratio: 0.8;
  }
}

.cover .cover-image picture {
  object-fit: cover;
  object-position: center top;
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cover .cover-image picture img {
  position: absolute;
  width: 100%;
  max-width: 100%;
  /*
  object-fit: cover;
  object-position: center top;
  */
}
@media only screen and (max-width: 768px) {
  /*
  .cover .cover-image img {
    width: 100%;
  }
  */
}

.popup-container {
  position: relative;
}

.popup-container .popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 101;
  transition: opacity 0.5s, visibility 0.5s;
  height: 100%;
}

.popup-container.closed .popup {
  opacity: 0;
  visibility: hidden;
}
.popup-container.open .popup {
  opacity: 0.5;
  visibility: visible;
}

.popup-container .background {
  position: fixed;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  z-index: 102;
  transition: right 0.33s ease-in, opacity 0.5s;
  overflow-y: scroll;
}
.popup-container.closed .background {
  opacity: 0;
  right: -50vw;
}

@media only screen and (max-width: 768px) {
  .popup-container .background {
    width: 100vw;
  }
  .popup-container.closed .background {
    right: -100vw;
  }
}

.popup-container.open .background {
  opacity: 1;
  right: 0vw;
}

.popup-container .background .content {
  position: relative;
  padding: 8vh 10%;
  transition: opacity 0.3s ease-in;
}
.popup-container.closed .background .content {
  opacity: 0;
}
.popup-container.open .background .content {
  opacity: 1;
}

.popup-container .background .content .row {
  display: flex;
  justify-content: space-between;
}

.popup-container .background .content h3 {
  font-weight: 500;
}

.popup-container .background .content button.x {
  background: none;
  border: none;
  outline: none;
}

.popup-container.top-right-bottom-full > .background {
  height: fit-content;
  overflow-y: hidden;
}
@media only screen and (max-width: 768px) {
  .popup-container.top-right-bottom-full > .background {
    transition: bottom 0.33s ease-in, opacity 0.5s;
    bottom: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  .popup-container.top-right-bottom-full.closed .background {
    bottom: -50vh;
    right: 0;
  }
}

.popup-container.fade-in-out > .background {
  width: 100vw;
  height: 100vh;
  transition: opacity 0.5s;
}
.popup-container.fade-in-out.open > .background {
  opacity: 1;
  right: 0vw;
}
.popup-container.fade-in-out.closing > .background {
  opacity: 0;
  right: 0vw;
}
.popup-container.fade-in-out.closed > .background {
  opacity: 0;
  right: -100vw;
}
@media only screen and (max-width: 768px) {
  .popup-container.fade-in-out > .background {
    height: 200vh;
  }
  .popup-container.fade-in-out.open > .background {
  }
  .popup-container.fade-in-out.closed > .background {
  }
}

.popup-container.center > .background {
  height: fit-content;
  overflow-y: hidden;
  width: 50vw;
  right: 25vw;
  transition: bottom 0.33s ease-in, opacity 0.5s;
}
.popup-container.center.open > .background {
  bottom: 30vh;
  border-radius: 15px;
}
.popup-container.center.closed > .background {
  bottom: -50vh;
}
@media only screen and (max-width: 768px) {
  .popup-container.center > .background {
    width: 100vw;
    right: 0vw;
  }
  .popup-container.center.open > .background {
    bottom: 0vh;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .popup-container.center-center.closed > .background {
  }
}

.disclaimer {
}

.x-icon {
}

.x-icon svg {
  width: 10px;
  height: 10px;
  fill: #000;
  opacity: 0.7;
}

.link-placeholder {
  color: #666;
}

.selector {
  width: 100%;
  position: relative;
  user-select: none;
  cursor: pointer;
}

.selector .options {
  z-index: 100;
  position: absolute;
  width: 100%;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
  overflow-x: hidden;
}

.selector .options .option-items {
  width: calc(100% + 15px);
  overflow-y: scroll;
  max-height: 50vh;
}

.selector.down .options {
  z-index: 100;
  top: calc(100% - 2px);
  bottom: unset;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #111;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #fff;
  overflow-x: hidden;
}
.selector.up .options {
  bottom: calc(100% - 4px);
  top: unset;
  border-top: 1px solid #111;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.selector .selected {
  display: block;
  width: 100%;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  outline: none;
  color: #000;
  background-color: #fff;
  font-weight: 500;
  text-align: left;
  transition: border-color 0.2s;
}
.selector .selected:hover {
  border-color: #111;
}

.selector .selected .selected-text {
  outline: none;
  display: block;
  padding: 15px;
  min-height: 12px;
  padding-right: 25px;
  font-size: 12px;
}

.selector .selected.dropdown {
  border-bottom: 1px solid #111;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
  border-top: 1px solid #111;
  transition: border-color 0s;
}

.selector.down .selected.dropdown {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.selector.up .selected.dropdown {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.selector .option {
  display: block;
  width: 100%;
  padding: 10px 0px;
  border: none;
  outline: none;
  color: #000;
  background-color: #fff;
  font-weight: 500;
  text-align: left;
}
.selector .option {
  border-radius: 0px;
  padding: 10px 15px;
}
.selector.down .option.last {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.selector.up .option.first {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.selector .option:hover {
  background-color: #333;
  color: #fff;
}
.selector .selected:hover {
  color: #000;
  background-color: #fff;
}
.selector .option:disabled {
  color: #555;
  cursor: default;
  pointer-events: none;
}

.selector .caret {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
  transform: rotate(90deg);
  position: absolute;
  right: 12px;
  top: 40%;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.selector.open .caret {
  transform: rotate(-90deg);
}
.selector .caret svg {
  width: 12px;
  height: 12px;
}

.spinner-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 12px;
}

.spinner {
  position: absolute;
  left: calc(50% + 10px);
  top: 15px;
  animation: rotate 2s linear infinite;
  z-index: 2;
  margin: -25px 0 0 -25px;
  width: 30px;
  height: 30px;
}

.spinner .path {
  stroke: black;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#not-found-home {
}

#not-found-home {
  text-align: center;
  padding-top: 40vh;
  padding-bottom: 50vh;
  padding-left: 4vw;
  padding-right: 4vw;
  width: calc(100% - 8vw);
}

#not-found-home .back-home {
  margin: auto;
  margin-top: 15px;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  #not-found-home .back-home {
    width: 80%;
  }
}

.fraktur {
  font-family: UnifrakturMaguntia;
}

#login-home {
}

#login-home .inputs {
  width: 500px;
  margin: 0 auto;
  padding: 40px 4%;
  margin-top: 20vh;
  margin-bottom: 35vh;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #login-home .inputs {
    width: 86%;
  }
}

#login-home .inputs .submit {
}

#login-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#login-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#login-home .links a:first-child {
  margin-right: 5px;
}
#login-home .links a:last-child {
  margin-left: 5px;
}

#create-account-home {
}

#create-account-home .inputs {
  width: 500px;
  margin: 0 auto;
  padding: 40px 4%;
  margin-top: 20vh;
  margin-bottom: 35vh;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #create-account-home .inputs {
    width: 86%;
  }
}

#create-account-home .inputs h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

#create-account-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#create-account-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#create-account-home .links a:first-child {
  margin-right: 5px;
}
#create-account-home .links a:last-child {
  margin-left: 5px;
}

#forgot-password-home {
}

.inputs > .submit {
  margin-top: 30px;
}

#forgot-password-home .inputs {
  width: 500px;
  margin: 0 auto;
  padding: 40px 4%;
  margin-top: 20vh;
  margin-bottom: 35vh;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #forgot-password-home .inputs {
    width: 86%;
  }
}

#forgot-password-home .inputs h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

#forgot-password-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#forgot-password-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#forgot-password-home .links a:first-child {
  margin-right: 5px;
}
#forgot-password-home .links a:last-child {
  margin-left: 5px;
}

#forgot-password-home .resend {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
#forgot-password-home .resend button {
  width: 150px;
}
#forgot-password-home .resend span {
  margin-left: 15px;
}

#reset-password-home {
}

#reset-password-home .inputs {
  width: 500px;
  margin: 0 auto;
  padding: 40px 4%;
  margin-top: 20vh;
  margin-bottom: 35vh;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #reset-password-home .inputs {
    width: 86%;
  }
}

#reset-password-home .inputs h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

#reset-password-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#reset-password-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#reset-password-home .links a:first-child {
  margin-right: 5px;
}
#reset-password-home .links a:last-child {
  margin-left: 5px;
}

.red-x {
  width: 12px;
}

.green-checkmark {
  width: 12px;
}

#validation-code-home {
}

#validation-code-home .inputs {
  width: 500px;
  margin: 0 auto;
  padding: 40px 4%;
  margin-top: 20vh;
  margin-bottom: 35vh;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #validation-code-home .inputs {
    width: 86%;
  }
}

#validation-code-home .inputs h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

#validation-code-home .inputs .input.code {
  display: flex;
  align-items: center;
  justify-content: center;
}
#validation-code-home .inputs .input.code input {
  margin: 0 10px;
  padding: 15px 0px;
  font-size: 28px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #validation-code-home .inputs .input.code input {
    margin: 0px 5px;
    padding: 10px 0px;
  }
}

#validation-code-home .inputs .submit {
}

#validation-code-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#validation-code-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#validation-code-home .links a:first-child {
  margin-right: 5px;
}
#validation-code-home .links a:last-child {
  margin-left: 5px;
}

#validation-code-home .resend {
  display: flex;
  align-items: center;
  width: 100%;
}
#validation-code-home .resend button {
  width: 150px;
}
#validation-code-home .resend span {
  margin-left: 15px;
}

#redirect {
  min-height: 100vh;
}

#request-payment-home {
}

#request-payment-home .instructions {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

#request-payment-home .inputs {
  width: 500px;
  margin: 0 auto;
  padding: 40px 4%;
  margin-top: 25vh;
  margin-bottom: 35vh;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #request-payment-home .inputs {
    width: 86%;
  }
}

#request-payment-home .inputs .submit {
}

#request-payment-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#request-payment-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#request-payment-home .links a:first-child {
  margin-right: 5px;
}
#request-payment-home .links a:last-child {
  margin-left: 5px;
}

#request-payment-home .input.amount {
  display: flex;
  align-items: center;
}
#request-payment-home .input.amount .currency {
  font-weight: 600;
  margin-right: 5px;
}
#request-payment-home .input.amount input {
  font-weight: 600;
  padding-left: 10px;
}

#request-payment-home.qr-code .inputs {
  margin-top: 20vh;
}

#request-payment-home .inputs h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

#request-payment-home .inputs.qr-code {
  margin-top: 20vh;
}

#request-payment-home .qr-code-instructions {
  text-align: center;
  margin-top: 30px;
  font-weight: 500;
}

#request-payment-home .qr-code {
  display: flex;
  justify-content: center;
}

#confirm-payment-home {
}

#confirm-payment-home .inputs {
  width: 500px;
  margin: 0 auto;
  padding: 40px 4%;
  margin-top: 25vh;
  margin-bottom: 35vh;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #confirm-payment-home .inputs {
    width: 86%;
  }
}

#confirm-payment-home.success .inputs {
  margin-top: 30vh;
}

#confirm-payment-home .inputs .action {
  margin-bottom: 35px;
}

#confirm-payment-home .inputs .submit {
}

#confirm-payment-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#confirm-payment-home .success-message {
  margin-bottom: 25px;
}

#confirm-payment-home.success .links a {
  margin-bottom: 0px;
}
#confirm-payment-home .links a {
  font-size: 14px;
}

#confirm-payment-home .links a:first-child {
  margin-right: 5px;
}
#confirm-payment-home .links a:last-child {
  margin-left: 5px;
}

#add-funds-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#add-funds-home .instructions {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
#add-funds-home .exchange {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}

#add-funds-home .disclaimer {
  margin-top: 10px;
  font-size: 12px;
}

#add-funds-home .inputs {
  width: 500px;
  margin: 20vh auto;
  padding: 40px 4%;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #add-funds-home .inputs {
    width: 86%;
  }
}

#add-funds-home.payment-processing .inputs {
  margin-top: 30vh;
  margin-bottom: 40vh;
}

#add-funds-home .inputs .submit {
}

#add-funds-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#add-funds-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#add-funds-home .links a:first-child {
  margin-right: 5px;
}
#add-funds-home .links a:last-child {
  margin-left: 5px;
}

#add-funds-home .input input {
  font-weight: 600;
}

#add-funds-home .input.amount {
  display: flex;
  align-items: center;
}
#add-funds-home .input.amount .currency {
  font-weight: 600;
  margin-right: 5px;
}
#add-funds-home .input.amount input {
  font-weight: 600;
  padding-left: 10px;
}

#bank-account-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#bank-account-home .balance-transactions {
  width: 500px;
  margin: 20vh auto;
  padding: 40px 4%;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #bank-account-home .balance-transactions {
    width: 86%;
  }
}

#bank-account-home .balance-transactions .title {
  font-weight: 600;
  margin-bottom: 2px;
}

#bank-account-home .balance-transactions section:first-child {
  margin-top: 0px;
}
#bank-account-home .balance-transactions section {
  margin-top: 20px;
}

#bank-account-home .balance-transactions .account-number {
  font-weight: 600;
  /*
  border: 1px solid #000;
  */
  background-color: #f2f2f2;
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
}

#bank-account-home .balance-transactions .balance {
  font-weight: 600;
  /*
  border: 1px solid #000;
  */
  background-color: #f2f2f2;
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
}
#bank-account-home .balance-transactions .balance h2 {
  font-size: 32px;
}
#bank-account-home .balance-transactions .balance .amount {
  font-weight: 600;
}

#bank-account-home .balance-transactions .transactions {
  /*
  background-color: #f2f2f2;
  border: 1px solid #000;
  border-radius: 5px;
  */
}

#bank-account-home .balance-transactions .transactions > .transaction {
  /*
  border: 1px solid #000;
  border-radius: 5px;
  */
  padding: 10px 15px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#bank-account-home .balance-transactions .transactions > .transaction::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

#bank-account-home .balance-transactions .transactions > .transaction:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#bank-account-home .balance-transactions .transactions > .transaction:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#bank-account-home .balance-transactions .transactions > .transaction:nth-child(odd) {
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
}
#bank-account-home .balance-transactions .transactions > .transaction:nth-child(even) {
  background-color: #fff;
  border: 1px solid #f2f2f2;
}
#bank-account-home .balance-transactions .transactions > .transaction:last-child {
  margin-bottom: 0px;
}

#bank-account-home .balance-transactions .transactions > .transaction > .line {
  display: flex;
  justify-content: space-between;
}
#bank-account-home .balance-transactions .transactions > .transaction > .line > .description {
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
  max-width: 55%;
  word-wrap: break-word;
}
#bank-account-home .balance-transactions .transactions > .transaction > .line > .amount {
  font-size: 16px;
  font-weight: 600;
}
#bank-account-home .balance-transactions .transactions > .transaction > .line > .transaction-type {
  font-size: 12px;
}
#bank-account-home .balance-transactions .transactions > .transaction > .line > .date-time {
  font-size: 12px;
}

#transfers-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#transfers-home .inputs {
  width: 500px;
  margin: 22vh auto;
  padding: 40px 4%;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #transfers-home .inputs {
    width: 86%;
  }
}

#transfers-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#transfers-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#transfers-home .links a:first-child {
  margin-right: 5px;
}
#transfers-home .links a:last-child {
  margin-left: 5px;
}

#transfers-home .input input {
  font-weight: 600;
}

#transfers-home .input.amount {
  display: flex;
  align-items: center;
}
#transfers-home .input.amount .currency {
  font-weight: 600;
  margin-right: 5px;
}
#transfers-home .input.amount input {
  font-weight: 600;
  padding-left: 10px;
}

#transfers-home .instructions {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

#transfers-home .success-message {
  text-align: center;
}

#otp-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#otp-home .inputs {
  width: 500px;
  margin: 25vh auto;
  padding: 40px 4%;
  border-radius: 5px;
  border: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  #otp-home .inputs {
    width: 86%;
  }
}

#otp-home .inputs h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
}

#otp-home .inputs .otp {
  width: calc(100% - 30px);
  padding: 15px 15px;
  border: 1px solid #000;
  border-radius: 25px;
  min-height: 19px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  overflow-x: hidden;
}

#otp-home .links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#otp-home .links a {
  font-size: 14px;
  margin-bottom: 10px;
}

#otp-home .links a:first-child {
  margin-right: 5px;
}
#otp-home .links a:last-child {
  margin-left: 5px;
}
