:root {
  --c1: #212529;
  --c0: #222;
  --c3: #2196f3;
  --c4: #eee;
  --font1: #fff;
  --font1: #6f42c1;
  --font2: #6f42c1;
  --font3: #3498db;
  --hover: #f114db;
  --mainTitle: var(--font1);
  --main: #41307c;
  --nabvcolors: #fff;
  --secondarybuttonhover: #375a7f;
  --secondary: #2ea7e3;
  --c2: #41307c;
  --c5: #4255d4;
  --reversable: #fff;
  --darkcontrast: #606e79;
  --card: #212529;
  --bckmodal: #262626;
  --upbackground: #f8f9fa;
  --tableHover: #ffc107;
  --buttonHover: #3a00ff;
  --links: #0d6efd;
  --linkshover: #0a58ca;
  --didBackground: #6024db2e;
  --qrbackground: transparent;
  --qr: #6f42c1;
  --icon: #fff;
  --newMessage: #ff870e;
  --backColor: #fff;
}

.dark-mode {
  --c1: greenyellow;
  --c0: greenyellow;
  --icon: #6f42c1;
  --main: #11c334;
  --b1: #212529;
  --b0: #222;
  --backColor: linear-gradient(var(--b1), var(--b0));
  --mainTitle: #fff;
}

#iamcodedid {
  color: var(--icon);
}

.colored-toast.swal2-icon-success {
  background-color: #45bb00 !important;
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
  background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
  background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
  background-color: #87adbd !important;
}

.colored-toast .swal2-title, .colored-toast .swal2-close, .colored-toast .swal2-html-container {
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--font2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--backColor);
  grid-template-rows: 82.235px 1fr;
  grid-template-areas: "navbar"
                       "main";
  width: 100vw;
  height: 100vh;
  margin: 0;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  display: grid;
  overflow: hidden;
}

#navbar {
  z-index: 2;
  grid-area: navbar;
}

#main {
  grid-area: main;
  height: 100%;
  overflow: scroll;
}

a.iamlink {
  color: var(--font2);
  text-decoration: none;
}

a.iamlink:hover {
  color: var(--buttonHover);
  text-decoration: underline;
}

@media (width <= 575px) {
  body {
    grid-template-rows: 60px 1fr;
    grid-template-areas: "navbar"
                         "main";
  }
}

#navbar {
  color: var(--nabvcolors);
  justify-content: space-between;
  align-items: center;
  height: 82.235px;
  padding: 0 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--font2) !important;
}

#walletDisconnect {
  background-color: #0000 !important;
}

.center {
  flex-grow: 4;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin: 0 auto;
  display: flex;
}

#usrAddr {
  cursor: pointer;
  width: 130px;
  margin-left: 10px;
  margin-right: auto;
}

.translation, .btn {
  margin-left: 10px;
}

.loadercontainer {
  z-index: 0;
  z-index: -1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  display: flex;
  position: fixed;
}

svg.darklight {
  fill: #0000;
  transition: all .5s;
}

.darklight {
  cursor: pointer;
  align-items: center;
  margin-left: 10px;
  margin-right: auto;
  padding: 0 10px;
  display: flex;
  width: 45px !important;
  height: 30px !important;
}

.dark-mode svg.darklight {
  fill: #fff;
  stroke: #fff;
}

.hamburger {
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: #0000;
  border: 0;
  outline: none;
  margin: 0;
  padding: 15px;
  transition: all .3s;
  display: inline-block;
  overflow: visible;
}

.hamburger:hover, .hamburger.is-active:hover {
  opacity: .7;
}

.is-active {
  transform: translate(12px);
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  margin-top: -2px;
  display: block;
  top: 50%;
}

.hamburger-inner, .hamburger-inner:before, .hamburger-inner:after {
  background-color: #eee;
  border-radius: 4px;
  width: 40px;
  height: 4px;
  transition-property: transform;
  transition-duration: .15s;
  transition-timing-function: ease;
  position: absolute;
}

.hamburger-inner:before, .hamburger-inner:after {
  content: "";
  display: block;
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger--elastic .hamburger-inner {
  transition-duration: .275s;
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
  top: 2px;
}

.hamburger--elastic .hamburger-inner:before {
  transition: opacity .125s .275s;
  top: 10px;
}

.hamburger--elastic .hamburger-inner:after {
  transition: transform .275s cubic-bezier(.68, -.55, .265, 1.55);
  top: 20px;
}

.hamburger--elastic.is-active .hamburger-inner {
  transition-delay: 75ms;
  transform: translate3d(0, 10px, 0)rotate(135deg);
}

.hamburger--elastic.is-active .hamburger-inner:before {
  opacity: 0;
  transition-delay: 0s;
}

.hamburger--elastic.is-active .hamburger-inner:after {
  transition-delay: 75ms;
  transform: translate3d(0, -20px, 0)rotate(-270deg);
}

.hamburger--elastic-r .hamburger-inner {
  transition-duration: .275s;
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
  top: 2px;
}

.hamburger--elastic-r .hamburger-inner:before {
  transition: opacity .125s .275s;
  top: 10px;
}

.hamburger--elastic-r .hamburger-inner:after {
  transition: transform .275s cubic-bezier(.68, -.55, .265, 1.55);
  top: 20px;
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transition-delay: 75ms;
  transform: translate3d(0, 10px, 0)rotate(-135deg);
}

.hamburger--elastic-r.is-active .hamburger-inner:before {
  opacity: 0;
  transition-delay: 0s;
}

.hamburger--elastic-r.is-active .hamburger-inner:after {
  transition-delay: 75ms;
  transform: translate3d(0, -20px, 0)rotate(270deg);
}

.sidebar:after {
  display: none;
}

.sidebar {
  opacity: 1;
  z-index: 1;
  z-index: 99;
  background: #000;
  border-left: 1px solid #595a5f;
  width: 220px;
  height: 100vh;
  transition: transform .5s;
  position: fixed;
  top: 80px;
  right: 0;
  overflow: auto;
  transform: translate3d(100%, 0, 0);
}

.sidebar.isOpen {
  visibility: visible;
  border-left: 1px solid #639;
  transition: transform .5s;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0 10px #639;
}

.mini {
  padding: 3em;
  font-size: .6em;
  display: block;
}

.content:before, .content:after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.content.isOpen {
  opacity: .6;
  transition: transform .3s;
  transform: translate3d(0, 0, -300px);
}

.nav li {
  width: 100%;
  list-style-type: none;
}

.nav li a:hover, .nav li span:hover {
  background: #639;
}

.nav li a.active, .nav li span.active {
  background: #444;
  box-shadow: inset 5px 0 #5b5, inset 6px 0 #222;
}

.nav li {
  cursor: pointer;
  width: 100%;
  list-style-type: none;
}

.nav li a img {
  width: 25px;
  height: 25px;
  padding: 1px;
}

.nav li a {
  border-bottom: 1px solid #343538;
  padding: 15px;
  text-decoration: none;
  display: block;
  position: relative;
}

.nav {
  padding: 0;
}

.nav li a:hover {
  background: #639;
}

.nav li a.active {
  background: #444;
  box-shadow: inset 5px 0 #5b5, inset 6px 0 #222;
}

#fontlogo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  font-family: Major Mono Display, monospace !important;
}

.rounded-pill {
  background-color: none;
  border: 1px solid var(--nabvcolors);
}

.btn-outline-info, .btn-outline-secondary {
  color: var(--font2) !important;
  border-color: var(--font2) !important;
}

.btn-outline-primary {
  color: var(--font1) !important;
  border-color: var(--font1) !important;
}

.btn-outline-primary:hover {
  background-color: red !important;
}

.btn-outline-secondary:hover {
  background-color: var(--secondarybuttonhover) !important;
}

.title {
  text-align: center;
  width: 100%;
  margin-top: 10%;
  font-family: Montserrat;
}

.title h1 {
  color: var(--mainTitle);
  margin: 0;
  padding: 0 0 1em;
  font-size: 90px;
  font-weight: 100;
  line-height: 1;
  position: relative;
}

.title h1 span {
  color: #fff;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.title h3 {
  color: var(--mainTitle);
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
}

#edit, #iam {
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: calc(100vh - 140.25px);
  display: flex;
  overflow-y: scroll;
}

#soveraindocspremint {
  flex-direction: column;
  height: calc(100vh - 161.25px);
  position: relative;
  overflow-y: scroll;
}

.left-column {
  flex: 1;
  padding: 20px;
}

img#itemImgMINT, img#avatarIMG {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

#itemImgMINT, #avatarIMG {
  max-width: 100% !important;
}

#preview {
  max-width: 100%;
}

#labelItemImgMINT {
  cursor: pointer;
  flex-flow: row-reverse;
  align-items: center;
  display: block;
}

.heading {
  text-transform: uppercase;
  letter-spacing: 7px;
  padding-top: 1em;
  font-size: 2em;
  line-height: 69px;
}

#stepAttest2 {
  word-wrap: break-word;
}

#imgalert {
  position: fixed;
}

:root {
  --fill-color: green;
}

.btn-edit {
  box-sizing: content-box;
  color: #000;
  opacity: .5;
  background-color: #0000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 512 512'%3E%3Cpath d='M441 58.9L453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2L344 121.9 390.1 168 255.8 302.2c-2.9 2.9-6.5 5-10.4 6.1l-58.5 16.7 16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25L175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25C446.8-3.1 401.2-3.1 373.1 25zM88 64C39.4 64 0 103.4 0 152V424c0 48.6 39.4 88 88 88H360c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24V424c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40H200c13.3 0 24-10.7 24-24s-10.7-24-24-24H88z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  border: 0;
  border-radius: .25rem;
  width: 1em;
  height: 1em;
  padding: .25em 1em .25em .25em;
  position: absolute;
  top: 1.3em;
  right: 0;
}

.btn-edit:hover {
  color: #000;
  opacity: .75;
  text-decoration: none;
}

.btn-trash {
  box-sizing: content-box;
  color: #000;
  opacity: .5;
  background-color: #0000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 512 512'%3E%3Cpath d='M441 58.9L453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2L344 121.9 390.1 168 255.8 302.2c-2.9 2.9-6.5 5-10.4 6.1l-58.5 16.7 16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25L175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25C446.8-3.1 401.2-3.1 373.1 25zM88 64C39.4 64 0 103.4 0 152V424c0 48.6 39.4 88 88 88H360c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24V424c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40H200c13.3 0 24-10.7 24-24s-10.7-24-24-24H88z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  border: 0;
  border-radius: .25rem;
  width: 1em;
  height: 1em;
  padding: .25em 1em .25em .25em;
  position: absolute;
  top: 1.3em;
  right: 0;
}

.table-hover tbody tr:hover {
  color: var(--font2);
}

.form-control {
  color: var(--font);
  background-color: #0000;
}

.table {
  --bs-table-hover-bg: var(--tableHover) !important;
}

#success_message {
  word-wrap: break-word;
}

.table, .table:hover {
  color: var(--font2);
}

.table-bordered {
  border: 0;
}

.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
  border: 1px solid var(--main);
  border-left-width: 0;
  border-right-width: 0 !important;
}

.card {
  background-color: var(--card);
}

.text-muted {
  color: #999 !important;
}

.card-footer {
  background-color: #444;
  border-top: 1px solid #00000020;
  padding: .75rem 1.25rem;
}

.bootstrap-table .fixed-table-container .table td, .bootstrap-table .fixed-table-container .table th {
  word-break: break-word;
}

.swal2-modal {
  background-color: var(--bckmodal);
  color: var(--reversable);
  border: 1px solid var(--main);
  box-shadow: 0 0 10px var(--c3);
}

.taskInput, .form-control:disabled, .form-control[readonly] {
  color: var(--reversable);
  border: 1px solid var(--main);
  background-color: #0000;
}

.modal-header {
  border-bottom: 1px solid var(--main);
}

.modal-footer {
  border-top: 1px solid var(--main);
}

.swal2-title, .swal2-content {
  color: var(--main);
}

.form-control {
  border: 1px solid var(--main);
}

.form-control::placeholder {
  color: var(--main);
}

.alert {
  margin-bottom: 0 !important;
}

.modal-content {
  background-color: var(--bckmodal);
  box-shadow: 0 0 10px var(--c3);
  border: 1px solid var(--border);
}

.btn-outline-info {
  color: var(--c3);
  border-color: var(--c3);
}

.card-link {
  color: var(--font2);
  word-wrap: break-word;
  overflow: hidden;
  max-width: 372px !important;
}

.published {
  word-break: break-all;
}

.container {
  margin-top: 2em;
}

#head {
  flex-direction: row;
  justify-content: space-around;
  height: 111px;
  padding-bottom: 1em;
  display: flex;
}

.card {
  display: flex;
}

.actionsLink {
  color: #d63384;
}

@media (width >= 576px) {
  .container {
    max-width: 540px;
  }
}

@media (width >= 768px) {
  .container {
    max-width: 720px;
  }
}

@media (width >= 992px) {
  .container {
    max-width: 960px;
  }
}

@media (width >= 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (width <= 480px) {
  #mainTitle {
    font-size: 2em;
  }

  #usrAddr, #logo, .notmobile {
    display: none;
  }
}

@media (width <= 801px) {
  #main {
    width: 90vw;
  }

  img#itemImgMINT {
    max-width: 44vw;
  }
}

@media (width <= 767px) {
  #main {
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
  }

  #IAMform {
    unicode-bidi: isolate;
    flex-direction: column;
    align-items: center;
    margin-top: 22px;
    display: block;
  }

  .item {
    width: 100%;
  }

  #utilsfortheautodetermined {
    text-align: center;
    word-wrap: break-word;
    width: 50%;
    margin: auto;
    padding-top: 1em;
  }

  #utilsfortheautodetermined, .heading {
    text-align: center;
    word-wrap: break-word;
    margin: auto;
    line-height: 1.2em;
  }
}

#customLoader {
  border-radius: 100%;
  width: 100px;
  height: 102px;
  position: absolute;
  top: 45%;
  left: calc(50% - 50px);
}

.circle {
  width: 100%;
  height: 100%;
  position: absolute;
}

.circle .inner {
  backgroudn-clip: padding;
  border-top: none;
  border-bottom: 5px solid #00ffaab3;
  border-left: 5px solid #00ffaab3;
  border-right: none;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 10px #00ffaa26;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.circle:nth-of-type(0) {
  transform: rotate(0);
}

.circle:nth-of-type(0) .inner {
  animation: 2s linear infinite spin;
}

.circle:first-of-type {
  transform: rotate(70deg);
}

.circle:first-of-type .inner {
  animation: 2s linear infinite spin;
}

.circle:nth-of-type(2) {
  transform: rotate(140deg);
}

.circle:nth-of-type(2) .inner {
  animation: 2s linear infinite spin;
}

#customLoader {
  animation: 5s linear infinite spin;
}

#amount {
  color: var(--font2);
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  font-size: .72rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--bs-font-monospace);
  unicode-bidi: bidi-override;
  background-color: #0000;
  border: 1px solid #0000;
  text-decoration: none;
  display: inline-block;
  cursor: default !important;
}

.loader {
  justify-content: center;
  align-items: center;
  display: flex;
}

.loader i {
  color: #3498db;
  font-size: 40px;
}

.search-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.search-bar {
  align-items: center;
  width: 100%;
  max-width: 400px;
  display: flex;
  position: relative;
}

.search-input {
  border: 1px solid var(--c2);
  border-radius: 20px;
  flex-grow: 1;
  height: 40px;
  padding: 5px 10px;
  font-size: 16px;
}

.search-button {
  background-color: #0000;
  border: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

#walletsendtoAddress {
  color: var(--c5);
  background: no-repeat;
  border: none;
  width: 400px !important;
}

section {
  color: var(--font2);
  z-index: 1000;
  text-align: center;
  margin: auto;
  padding: 5px;
  font-family: Exo, sans-serif;
  font-weight: 100;
  left: 0;
  right: 0;
}

section .top {
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
}

input .bal {
  color: #09e828;
  background: none;
  font-size: 50px;
}

section .eth {
  color: #fff;
  margin-left: 10px;
  font-size: 20px;
}

@font-face {
  font-family: Exo;
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwOwRmPg.ttf") format("truetype");
}

.price-input-container {
  position: relative;
}

.price-input-container .price-input {
  text-align: right;
  color: #fff;
  letter-spacing: 4px;
  width: 100%;
  height: 70px;
  font-size: 20pt;
  position: relative;
}

.price-input-container .price-input:focus {
  color: #fff;
  box-shadow: none;
  outline-style: none;
  background-color: #000 !important;
}

.price-input-container:after {
  content: "ETH";
  text-align: center;
  width: 50px;
  height: 70px;
  font-size: 24pt;
  line-height: 70px;
  position: absolute;
  top: 0;
  right: -50px;
}

#addressValue:focus {
  color: #fff;
  box-shadow: none;
  outline-style: none;
  background-color: #000 !important;
}

.center {
  justify-content: center;
  display: flex;
}

#mainSearch {
  background-color: #0000;
  color: var(--c4) !important;
}

#resultsList {
  text-decoration: none;
  -webkit-text-decoration-style: none;
  text-decoration-style: none;
  text-align: left;
  background: #639;
  width: 100%;
  margin: auto;
  list-style: none;
  position: absolute;
}

.flower-of-life {
  border: 1px solid var(--mainTitle);
  box-sizing: border-box;
  border-radius: 50%;
  width: 6em;
  height: 6em;
  margin: auto;
  font-size: 50px;
  position: relative;
  overflow: hidden;
}

.flower-of-life .petal {
  box-sizing: border-box;
  border: 1px solid var(--mainTitle);
  border-radius: 50%;
  width: 2em;
  height: 2em;
  margin: auto;
  position: absolute;
  top: -2em;
  left: -2em;
}

.flower-of-life .petal:first-child {
  top: 0;
  left: 2em;
}

.flower-of-life .petal:nth-child(2) {
  top: 1em;
  left: 2em;
}

.flower-of-life .petal:nth-child(3) {
  top: 2em;
  left: 2em;
}

.flower-of-life .petal:nth-child(4) {
  top: 3em;
  left: 2em;
}

.flower-of-life .petal:nth-child(5) {
  top: 4em;
  left: 2em;
}

.flower-of-life .petal:nth-child(6) {
  top: .5em;
  left: 1.15em;
}

.flower-of-life .petal:nth-child(7) {
  top: 1.5em;
  left: 1.15em;
}

.flower-of-life .petal:nth-child(8) {
  top: 2.5em;
  left: 1.15em;
}

.flower-of-life .petal:nth-child(9) {
  top: 3.5em;
  left: 1.15em;
}

.flower-of-life .petal:nth-child(10) {
  top: .5em;
  left: 2.88em;
}

.flower-of-life .petal:nth-child(11) {
  top: 1.5em;
  left: 2.88em;
}

.flower-of-life .petal:nth-child(12) {
  top: 2.5em;
  left: 2.88em;
}

.flower-of-life .petal:nth-child(13) {
  top: 3.5em;
  left: 2.88em;
}

.flower-of-life .petal:nth-child(14) {
  top: 1em;
  left: .26em;
}

.flower-of-life .petal:nth-child(15) {
  top: 2em;
  left: .26em;
}

.flower-of-life .petal:nth-child(16) {
  top: 3em;
  left: .26em;
}

.flower-of-life .petal:nth-child(17) {
  top: 1em;
  left: 3.75em;
}

.flower-of-life .petal:nth-child(18) {
  top: 2em;
  left: 3.75em;
}

.flower-of-life .petal:nth-child(19) {
  top: 3em;
  left: 3.75em;
}

.linktypebuton {
  color: var(--links);
  background-color: #0000;
  border: none;
  text-decoration: underline;
}

.linktypebuton:hover {
  color: var(--linkshover);
}

.iconbutton {
  cursor: pointer;
}

.iconbutton:hover {
  color: red;
}

.cursor {
  cursor: pointer;
}

#logo path {
  fill: none;
  stroke: #000;
  stroke-width: 2px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000px;
  animation: 4s linear forwards draw;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

a {
  color: var(--c5);
}

.superactive {
  background-color: var(--c3);
  color: var(--c4);
}

.loader-container {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.overlay {
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(#0000004d, #141414);
  width: 100vw;
  height: calc(100% - 81px);
  margin-top: 81px;
  transition: opacity 1s;
  position: fixed;
  overflow-y: scroll;
}

.overlayisOpen {
  opacity: 1;
  visibility: visible;
  z-index: 11;
  transition: opacity 1s;
}

#setWalletRestore {
  background: var(--font2);
  color: var(--c4) !important;
}

#setWalletRestore:disabled {
  color: #6c757d;
  background: none;
}

#autographBanner {
  border: 1px solid var(--c2);
  color: var(--font2);
  background: none;
  border-radius: .25rem;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.redborder {
  background: #f27474 !important;
  border: 2px solid red !important;
}

.swal2-image {
  width: 100% !important;
  height: 100% !important;
}

.hand, #avatarImage {
  cursor: pointer;
}

#attestingModalBody {
  min-height: 200px;
}

svg#success {
  width: 100px;
  height: 100px;
  margin-left: -50px;
  position: absolute;
  top: 50px;
  left: 50%;
}

svg.animate path {
  animation: .75s linear .5s both dash;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 210px;
  }

  75% {
    stroke-dashoffset: -220px;
  }

  100% {
    stroke-dashoffset: -205px;
  }
}

#autographIMG {
  width: 100%;
}

.swiper {
  width: 100vw;
  position: fixed !important;
}

#chatcontainer {
  flex-direction: column;
  height: calc(100vh - 81px);
  margin-top: 81px;
  display: flex;
}

#qrtroqcontainer {
  height: calc(100vh - 81px);
  margin-top: 81px;
}

#chatheader {
  font: x-large;
  background-color: var(--bckmodal);
}

#chatheader, #chatfooter {
  padding: 10px;
}

#chatBox {
  flex-grow: 1;
  width: 100%;
  padding: 1em;
  overflow: hidden scroll;
  touch-action: pan-y !important;
  height: calc(100% - 90px) !important;
}

.swiper-slide {
  touch-action: pan-y !important;
}

.timestamp {
  color: #8888c2;
  font-size: .61em;
}

.who {
  color: #ff0;
}

.notyou {
  color: #0fa;
}

#chatfooter {
  position: sticky;
  bottom: 0;
}

.sidenavbutton {
  background: var(--c2) !important;
}

.swiper-wrapper {
  top: 81px !important;
}

@media only screen and (width <= 767px) {
  .swiper-wrapper {
    height: calc(100vh - 81px) !important;
    position: fixed !important;
    top: 81px !important;
  }

  #chatcontainer {
    height: calc(100vh - 136px) !important;
    margin-top: 0 !important;
    overflow-y: scroll !important;
  }

  #qrtroqcontainer {
    margin-top: 2px !important;
  }

  body.swal2-height-auto {
    height: 100vh !important;
  }

  #chatfooter {
    width: 100vw;
    position: fixed;
    bottom: 0;
  }

  #chatBox {
    margin-bottom: 50px;
  }
}

@media only screen and (width <= 320px) {
  #chatfooter {
    height: 110px;
  }
}

#chatBadge {
  z-index: 1;
  padding: .25em .35em;
  display: none;
  position: absolute;
  top: 24px;
  right: 33px;
}

.newmessage {
  background-color: var(--newMessage) !important;
}

.form-control.is-valid, .was-validated .form-control:valid {
  border-color: var(--font2);
}

#canvas {
  justify-content: center;
  margin-top: 2em;
  display: flex;
}

.minifont {
  font-size: xx-small !important;
}

#yourAddress {
  font-family: var(--bs-font-monospace);
  direction: ltr;
  unicode-bidi: bidi-override;
  font-size: 1.7em;
}

.centered {
  justify-content: center;
  display: flex;
}

.didBanner {
  color: var(--font2);
  background-color: var(--didBackground);
  border-color: #0000 !important;
}

.img-thumbnail {
  padding: 0;
}

.btn-primary, .btn-primary.disabled, .btn-primary:disabled {
  background-color: var(--c2);
  border-color: var(--c2);
}

.btn-primary:hover {
  background-color: var(--font2);
  border-color: var(--font2);
}

#copyAddress {
  cursor: pointer;
}

.success-message {
  text-align: center;
  max-width: 500px;
  font-size: xxx-large;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.success-message__icon {
  max-width: 75px;
}

.success-message__title {
  color: #3dc480;
  opacity: 0;
  transition: all .2s;
  transform: translateY(25px);
}

.active .success-message__title {
  opacity: 1;
  transform: translateY(0);
}

.success-message__content {
  color: #b8babb;
  opacity: 0;
  transition: all .2s 50ms;
  transform: translateY(25px);
}

.active .success-message__content {
  opacity: 1;
  transform: translateY(0);
}

.icon-checkmark circle {
  fill: #3dc480;
  transform-origin: 50%;
  transition: transform .2s cubic-bezier(.22, .96, .38, .98);
  transform: scale(0);
}

.icon-checkmark path {
  transition: stroke-dashoffset .35s .1s;
}

.active .icon-checkmark circle {
  transform: scale(1);
}

.uiicon {
  cursor: pointer;
}

#qrScanVideo {
  width: 100% !important;
}

#lockscreen {
  z-index: 2;
  color: #fff;
  background-color: #41307cf0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin: 0;
  display: flex;
  position: fixed;
}

.cover-heading {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.btn-unlock {
  border: 1px solid;
  padding: 10px 20px;
  font-size: 1.25rem;
}

.cover-container img {
  max-width: 50%;
}

.swal2-input {
  color: var(--c4);
}

.sidebar {
  flex-direction: column;
  align-items: baseline;
  display: flex;
}

/*# sourceMappingURL=index.59e0f205.css.map */
