html {
    background: #050c1f;
    --black: #000000;
    --white: #ffffff;
    --darkest: #101010;
    --darker: #091843;
    --dark: #A3AFBF;
    --medium: #DFE7EF;
    --light: #CAD4E1;
    --lighter: #F5F8FC;
    --lightest: var(--white);
    --primary: #9fbcff;
    --primary-light: #DDD9FF;
    --primary-trans: rgba(123,22,255,0.4);
    --yellow: gold; /* FDCB6E */
    --orange: #463000; /* E17055 */
    --teal: silver; /* 00CEC9 */
    --bg: var(--darkest);
    --color: var(--lightest);
    --surface: #0e0f20; /* var(--lightest); */
  }
  .btn-link,
  .btn-link:hover,
  .btn-link:active,
  .btn-link:visited {
    text-decoration: none;
  }
  #leaderboard > * {
    font-family: "Overpass Mono", system-ui;
    }
  h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    font-family: "Oswald", system-ui;
}

  a {
    color: #9fbcff; /* var(--primary); */
    text-decoration: none;
    transition: all 120ms ease-out 0s;
    display: inline-block;
    border-radius: 0.4rem;
  }
  /* a:hover {
    background: var(--primary-trans);
    color: var(--primary-light);
    box-shadow: 0px 0px 0px 0.4rem var(--primary-trans);
  } */
  
  button, textarea, input, select {
    font-family: inherit;
    color: inherit;
  }
  button:active, button:focus, textarea:active, textarea:focus, input:active, input:focus, select:active, select:focus {
    outline: 0;
  }
  
  button, select {
    cursor: pointer;
  }
  
  .l-wrapper {
    width: 100%;
    max-width: 960px;
    margin: auto;
    padding: 1.6rem 1.6rem 3.2rem;
  }
  
  .l-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 1.6rem;
    grid-row-gap: 1.6rem;
    position: relative;
  }
  #winner h3 {
    font-size: 1.67em;
  }
  @media screen and (max-width: 700px) {
    .l-grid {
      grid-template-columns: 1fr;
    }
  }
  #tokenImage {
    font-size: 63px;
  }
  #tokenTitle {
    color: #0d6efd;
    font-size: 36px;
    text-transform: uppercase;
    font-family: "Pixelify Sans", sans-serif;
  }
  .c-kudos {
    color: var(--primary);
  }
  .c-kudos strong {
    font-size: 18px;
    vertical-align: middle;
  }
  .c-header {
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.4rem;
    position: relative;
  }
  .c-header:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 0.2rem;
    background: var(--primary-trans);
  }
  
  .c-card {
    border-radius: 0.8rem;
    background: var(--surface);
    width: 100%;
    margin-bottom: 1.6rem;
    /* box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.12); */
    box-shadow: 0px 0px 0px 1px rgb(40 25 0);
  }
  .c-card__body, .c-card__header {
    padding: 2.4rem;
  }
  @media screen and (max-width: 700px) {
    .c-card__body, .c-card__header {
      padding: 1.2rem;
    }
  }
  .c-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
  }
  @media screen and (max-width: 700px) {
    .c-card__header {
      flex-direction: column;
    }
  }
  
  @media screen and (max-width: 700px) {
    .c-place {
      transform: translateY(4px);
    }
  }
  
  .c-logo {
    display: inline-block;
    width: 100%;
    max-width: 17.6rem;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .c-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .c-list__item {
    padding: 1.6rem 0;
  }
  .c-list__item .c-flag {
    margin-top: 0.8rem;
  }
  @media screen and (max-width: 700px) {
    .c-list__item .c-flag {
      margin-top: 0.4rem;
    }
  }
  .c-list__grid {
    display: grid;
    grid-template-columns: 4.8rem 3fr 1fr;
    grid-column-gap: 2.4rem;
  }
  @media screen and (max-width: 700px) {
    .c-list__grid {
      grid-template-columns: 3.2rem 3fr 1fr;
      grid-column-gap: 0.8rem;
    }
  }
  
  .c-media {
    display: inline-flex;
    align-items: center;
  }
  .c-media__content {
    padding-left: 1.6rem;
  }
  @media screen and (max-width: 700px) {
    .c-media__content {
      padding-left: 0.8rem;
    }
  }
  .c-media__title {
    margin-bottom: 0.4rem;
    color: #FFF;
  }
  .c-card__header > * {
    color: #FFF;
  }
  .c-card__body .u-mt--16 {
    color: #FFF;
  }

  @media screen and (max-width: 700px) {
    .c-media__title {
      font-size: 1.4rem;
    }
  }
  
  .c-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    box-shadow: inset 0px 0px 0px 1px #2a1900;
    border-radius: 50%;
    background: var(--lightest);
    color: var(--dark);
  }
  @media screen and (max-width: 700px) {
    .c-avatar {
      width: 3.2rem;
      height: 3.2rem;
    }
  }
  .c-avatar--lg {
    width: 9.6rem;
    height: 9.6rem;
  }
  
  .c-button {
    display: inline-block;
    background: var(--dark);
    border: 0;
    border-radius: 0.4rem;
    padding: 1.2rem 2rem;
    transition: all 120ms ease-out 0s;
  }
  .c-button--block {
    display: block;
    width: 100%;
  }
  .c-button:hover, .c-button:focus {
    filter: brightness(0.9);
  }
  .c-button:focus {
    box-shadow: 0px 0px 0px 0.4rem var(--primary-trans);
  }
  .c-button:active {
    box-shadow: 0px 0px 0px 0.4rem var(--primary-trans), inset 0px 0px 0.8rem rgba(0, 0, 0, 0.2);
    filter: brightness(0.8);
  }
  
  .c-select {
    background: transparent;
    padding: 1.2rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-size: 1.4rem;
    border-color: rgba(255, 255, 255, 0.2);
    transition: all 120ms ease-out 0s;
  }
  .c-select:hover {
    background: #1a1c33; /* var(--primary);*/
  }
  
  .c-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    background: var(--lightest);
    color: var(--dark);
    border-radius: 0.4rem;
  }
  @media screen and (max-width: 700px) {
    .c-flag {
      width: 2.4rem;
      height: 2.4rem;
    }
  }
  
  .c-button--light {
    background: var(--lightest);
  }
  
  .c-button--primary {
    background: var(--primary);
  }
  
  .c-button--dark {
    background: var(--darkest);
  }
  
  .c-button--transparent {
    background: transparent;
  }
  
  .c-button--medium {
    background: var(--medium);
  }
  
  .c-button--yellow {
    background: var(--yellow);
  }
  
  .c-button--orange {
    background: var(--orange);
  }
  
  .c-button--teal {
    background: var(--teal);
  }
  
  .c-button--light-gradient {
    background: linear-gradient(to top, var(--light), var(--lightest));
  }
  
  .u-text--title {
    font-family: "Oswald", system-ui;
  }
  
  .u-text--left {
    text-align: left;
  }
  .u-text--center {
    text-align: center;
  }
  .u-text--right strong {
    text-align: right;
  }
  
  .u-bg--light {
    background: var(--lightest) !important;
  }
  
  .u-text--light {
    color: var(--lightest) !important;
  }
  
  .u-bg--primary {
    background: var(--primary) !important;
  }
  
  .u-text--primary {
    color: var(--primary) !important;
  }
  
  .u-bg--dark {
    background: var(--darkest) !important;
  }
  
  .u-text--dark {
    color: var(--darkest) !important;
  }
  
  .u-bg--transparent {
    background: transparent !important;
  }
  
  .u-text--transparent {
    color: transparent !important;
  }
  
  .u-bg--medium {
    background: var(--medium) !important;
  }
  
  .u-text--medium {
    color: var(--medium) !important;
  }
  
  .u-bg--yellow {
    background: var(--yellow) !important;
  }
  
  .u-text--yellow {
    color: var(--yellow) !important;
  }
  
  .u-bg--orange {
    background: var(--orange) !important;
  }
  
  .u-text--orange {
    color: var(--yellow) !important;
  }
  
  .u-bg--teal {
    background: var(--teal) !important;
  }
  
  .u-text--teal {
    color: var(--yellow) !important;
  }
  .u-text--teal2 {
    color: var(--teal) !important;
  }
  
  .u-bg--light-gradient {
    background: linear-gradient(to top, var(--light), var(--lightest)) !important;
  }
  
  .u-text--light-gradient {
    color: linear-gradient(to top, var(--light), var(--lightest)) !important;
  }
  
  .u-display--flex {
    display: flex;
  }
  
  .u-align--center {
    align-items: center;
  }
  
  .u-justify--center {
    justify-content: center;
  }
  
  .u-align--flex-end {
    align-items: flex-end;
  }
  
  .u-justify--flex-end {
    justify-content: flex-end;
  }
  
  .u-align--flex-start {
    align-items: flex-start;
  }
  
  .u-justify--flex-start {
    justify-content: flex-start;
  }
  
  .u-align--space-between {
    align-items: space-between;
  }
  
  .u-justify--space-between {
    justify-content: space-between;
  }
  
  .u-text--small {
    font-size: 1.4rem;
  }
  
  .u-pl--2 {
    padding-left: 0.2rem;
  }
  
  .u-ml--2 {
    margin-left: 0.2rem;
  }
  
  .u-pr--2 {
    padding-right: 0.2rem;
  }
  
  .u-mr--2 {
    margin-right: 0.2rem;
  }
  
  .u-pb--2 {
    padding-bottom: 0.2rem;
  }
  
  .u-mb--2 {
    margin-bottom: 0.2rem;
  }
  
  .u-pt--2 {
    padding-top: 0.2rem;
  }
  
  .u-mt--2 {
    margin-top: 0.2rem;
  }
  
  .u-pl--4 {
    padding-left: 0.4rem;
  }
  
  .u-ml--4 {
    margin-left: 0.4rem;
  }
  
  .u-pr--4 {
    padding-right: 0.4rem;
  }
  
  .u-mr--4 {
    margin-right: 0.4rem;
  }
  
  .u-pb--4 {
    padding-bottom: 0.4rem;
  }
  
  .u-mb--4 {
    margin-bottom: 0.4rem;
  }
  
  .u-pt--4 {
    padding-top: 0.4rem;
  }
  
  .u-mt--4 {
    margin-top: 0.4rem;
  }
  
  .u-pl--8 {
    padding-left: 0.8rem;
  }
  
  .u-ml--8 {
    margin-left: 0.8rem;
  }
  
  .u-pr--8 {
    padding-right: 0.8rem;
  }
  
  .u-mr--8 {
    margin-right: 0.8rem;
  }
  
  .u-pb--8 {
    padding-bottom: 0.8rem;
  }
  
  .u-mb--8 {
    margin-bottom: 0.8rem;
  }
  
  .u-pt--8 {
    padding-top: 0.8rem;
  }
  
  .u-mt--8 {
    margin-top: 0.8rem;
  }
  
  .u-pl--16 {
    padding-left: 1.6rem;
  }
  
  .u-ml--16 {
    margin-left: 1.6rem;
  }
  
  .u-pr--16 {
    padding-right: 1.6rem;
  }
  
  .u-mr--16 {
    margin-right: 1.6rem;
  }
  
  .u-pb--16 {
    padding-bottom: 1.6rem;
  }
  
  .u-mb--16 {
    margin-bottom: 1.6rem;
  }
  
  .u-pt--16 {
    padding-top: 1.6rem;
  }
  
  .u-mt--16 {
    margin-top: 1.6rem;
  }
  
  .u-pl--24 {
    padding-left: 2.4rem;
  }
  
  .u-ml--24 {
    margin-left: 2.4rem;
  }
  
  .u-pr--24 {
    padding-right: 2.4rem;
  }
  
  .u-mr--24 {
    margin-right: 2.4rem;
  }
  
  .u-pb--24 {
    padding-bottom: 2.4rem;
  }
  
  .u-mb--24 {
    margin-bottom: 2.4rem;
  }
  
  .u-pt--24 {
    padding-top: 2.4rem;
  }
  
  .u-mt--24 {
    margin-top: 2.4rem;
  }
  
  .u-pl--32 {
    padding-left: 3.2rem;
  }
  
  .u-ml--32 {
    margin-left: 3.2rem;
  }
  
  .u-pr--32 {
    padding-right: 3.2rem;
  }
  
  .u-mr--32 {
    margin-right: 3.2rem;
  }
  
  .u-pb--32 {
    padding-bottom: 3.2rem;
  }
  
  .u-mb--32 {
    margin-bottom: 3.2rem;
  }
  
  .u-pt--32 {
    padding-top: 3.2rem;
  }
  
  .u-mt--32 {
    margin-top: 3.2rem;
  }







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

  .animated-border-box.ready {
    position: relative;
    overflow: visible; 
  }

  .animated-border-box #searchTxt {
    padding-left: 140px;
  }
  .animated-border-box.ready #searchTxt {
    padding-left: 10px;
   }

  .hidden2 {
    display: none;
  }
  .orange {
    color: orange;
  }


  /* Glowing border */
  .animated-border-box,
  .animated-border-box-glow,
  .animated-border-box-glow2,
  .animated-border-box-glow3,
  .animated-border-box-glow4 {
    height: 100%;
    width: 100%;
    position: absolute;
    /* overflow: hidden;  */
    z-index: 0;
    /* Border Radius */
      border-radius: 10px;
      left: 0;
  }
  
  .animated-border-box-glow{
    overflow: hidden;
    /* Glow Blur */
    filter: blur(20px);
  }
  .animated-border-box-glow2{
    overflow: hidden;
    /* Glow Blur */
    filter: blur(20px);
  }
  .animated-border-box-glow3{
    overflow: hidden;
    /* Glow Blur */
    filter: blur(30px);
  }
  .animated-border-box-glow4{
    overflow: hidden;
    /* Glow Blur */
    filter: blur(40px);
  }
  
  .animated-border-box-glow4:before {
    content: '';
    z-index: -2;
    text-align: center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(0deg);
    position: absolute;
      width: 99999px;
      height: 99999px;
      background-repeat: no-repeat;
      background-position: 0 0;
    /*border color, change middle color*/
      background-image: conic-gradient(rgba(0,0,0,0), rgba(0, 183, 255, 0.2), rgba(0,0,0,0) 25%);
    /* change speed here */
      animation: rotate2 3s linear infinite;
      animation-delay: .5s;
  }

  .animated-border-box-glow3:before {
    content: '';
    z-index: -2;
    text-align: center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(0deg);
    position: absolute;
      width: 99999px;
      height: 99999px;
      background-repeat: no-repeat;
      background-position: 0 0;
    /*border color, change middle color*/
      background-image: conic-gradient(rgba(0,0,0,0), rgba(163, 25, 237, 0.2), rgba(0,0,0,0) 25%);
    /* change speed here */
      animation: rotate2 3.3s linear infinite;
      animation-delay: .75s;
  }

  .animated-border-box-glow2:before {
    content: '';
    z-index: -2;
    text-align: center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(0deg);
    position: absolute;
      width: 99999px;
      height: 99999px;
      background-repeat: no-repeat;
      background-position: 0 0;
    /*border color, change middle color*/
      background-image: conic-gradient(rgba(0,0,0,0), #1976ed, rgba(0,0,0,0) 25%);
    /* change speed here */
      animation: rotate 2.5s linear infinite;
      animation-delay: 0s;
  }

  .animated-border-box-glow:before {
    content: '';
    z-index: -3;
    text-align: center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(0deg);
    position: absolute;
      width: 99999px;
      height: 99999px;
      background-repeat: no-repeat;
      background-position: 0 0;
    /*border color, change middle color*/
      background-image: conic-gradient(rgba(0,0,0,0), rgb(152, 25, 237, .5), rgba(0,0,0,0) 25%);
    /* change speed here */
      animation: rotate 2.7s linear infinite;
      animation-delay: .25s;
  }
  
  .animated-border-box:after {
      content: '';
      position: absolute;
      z-index: -1;
    /* border width */
      left: 5px;
      top: 5px;
    /* double the px from the border width left */
      width: calc(100% - 10px);
      height: calc(100% - 10px);
    /*bg color*/
      background: #292a2e;
    /*box border radius*/
      border-radius: 7px;
  }
  
  @keyframes rotate {
      100% {
          transform: translate(-50%, -50%) rotate(1turn);
      }
  }

  @keyframes rotate2 {
    100% {
        transform: translate(-50%, -50%) rotate(2turn);
    }
}
  
  
.btn-primary,
.btn-primary:hover {
    background: #0d6efd;
    background-color: #0d6efd;
}
  /*// Border Animation END//*/
  
  
  



  /* Timer */
  .timer {
    margin-top: 10px;
}
  
.timer > svg {
    width: 200px;
    height: 200px;
}

.timer > svg > circle {
    fill: none;
    stroke-opacity: 0.3;
    stroke: #0d6efd;
    stroke-width: 10;
    transform-origin: center center;
    transform: rotate(-90deg);
}

.timer > svg > circle + circle {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
    stroke-opacity: 1;
}

.timer.animatable > svg > circle + circle {
    transition: stroke-dashoffset 0.3s ease;
}

.timer > svg > text {
    font-size: 36px;
    /* stroke: #0d6efd; */
    fill: #0d6efd;
}

.timer > svg > text + text {
    font-size: 16px;
    /* stroke: #0d6efd; */
    fill: #0d6efd;
}
#vvtFound h2,
#vvtFound .timer {
    color: #0d6efd;
}
#tokenImage .fa {
  font-size: 3em;
  /* background-color: #18191f; */
  color: #fff;
  /* box-shadow: 2px 2px 2px #00000080, 10px 1px 12px #00000080,
    2px 2px 10px #00000080, 2px 2px 3px #00000080, inset 2px 2px 10px #00000080,
    inset 2px 2px 10px #00000080, inset 2px 2px 10px #00000080,
    inset 2px 2px 10px #00000080; */
  border-radius: 29px;
  padding: 11px 19px;
  margin: 0 auto;
  animation: animate 3s linear infinite;
  text-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff,
    0 0 200px #0072ff;
}

@keyframes animate {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

#bgOverlay {
    width: 100%;
    min-height: 2000px;
    /* overflow: scroll; */
    background: rgb(0, 0, 0, .92);
    padding: 25px;
    color: #FFF;
    font-size: 22px;
    text-transform: uppercase;
    font-family: "Pixelify Sans", sans-serif;
    position: fixed;
    top: 0;
    z-index: 9999;
}
#bgOverlay h3 {
    color: #FFF;
    font-size: 22px;
    text-transform: uppercase;
    font-family: "Pixelify Sans", sans-serif;
    display: block;
}
#bgOverlay h3:hover,
#bgOverlay h3.clicked {
    color: gold;
}
