/*
Ex-Mass - Coming Soon Template

Content Tabel
+---------------+

-LESS Variables
-General Classes
-Common-Stuff

-Animation Elements
Style1
Style2

-Preloader

-Browsers Hacks
   
  
*/
/* The Cult of Four - Custom Styling */
/* Fonts loaded in HTML head */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*Default Value don change these for styles. use below variables (in each style section)*/
.white {
  color: #fff !important;
}
.black {
  color: #000000 !important;
}
.gray {
  color: #ABB0AC !important;
}
canvas {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%!important;
}

/* Ensure canvas doesn't cover content on mobile */
@media all and (max-width: 450px) {
  canvas {
    position: fixed;
    z-index: 0;
    opacity: 0.3;
  }
}
/* Cult of Four: Font Classes */
.font {
  font-family: 'Inter', sans-serif;
}
.font2 {
  font-family: 'Playfair Display', serif;
}
img {
  width: auto\9;
  max-width: 100%;
}
/*  General classes  */
.no-margin {
  padding: 0;
  margin: 0;
}
.no-padding {
  padding: 0;
}
.no-padding-right {
  padding-right: 0;
}
.no-padding-left {
  padding-left: 0;
}
.no-margin-left {
  margin-left: 0;
  padding-left: 0;
}
.no-margin-right {
  margin-right: 0;
  padding-right: 0;
}
/* Cult of Four: Link Colors - Gold Accent */
a:hover,
a:focus,
a:active {
  color: #F3BA2F;
  text-decoration: none;
}
a {
  text-decoration: none;
  color: #F3BA2F;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html,
body,
.wrapper {
  height: 100%;
  width: 100%;
}
/* Cult of Four: Body with subtle grain effect */
body {
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  background-color: #000000;
  margin: 0;
  position: relative;
  padding: 0;
}

/* Mobile: Allow scrolling */
@media all and (max-width: 450px) {
  html, body {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
    background-color: #000000;
  }

  .wrapper {
    height: auto;
    min-height: 100vh;
    position: relative;
    z-index: 10;
  }

  #container {
    position: relative;
    height: auto;
    min-height: 100vh;
    z-index: 10;
  }

  .page {
    z-index: 100;
  }

  .social-icons {
    z-index: 200;
  }

  footer {
    z-index: 100;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}
/* Cult of Four: Typography */
p {
  line-height: 1.75;
  font-size: 15px;
  color: #E5E5E5;
  font-weight: 300;
}
/* Cult of Four: Selection Colors */
::-moz-selection {
  background-color: #F3BA2F;
  color: #000;
  text-shadow: none;
  -webkit-text-shadow: none;
}
::selection {
  background-color: #F3BA2F;
  color: #000;
  text-shadow: none;
  -webkit-text-shadow: none;
}
ul {
  margin: 0;
  padding: 0;
}
a,
button,
a:hover,
button:hover,
a:focus,
button:focus,
a.active,
button.active {
  outline: none!important;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: #F3BA2F;
}
.uppercase {
  text-transform: uppercase;
}
/* Cult of Four: Headings */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700!important;
}

h1 {
  letter-spacing: 8px;
  font-size: 64px;
  text-transform: uppercase;
}

h2 {
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 400!important;
  opacity: 0.9;
  margin-top: 15px;
}
.capital {
  text-transform: capitalize;
}
#loading {
  visibility: hidden;
}
*:focus {
  outline: none;
}
.inline {
  display: inline-block;
}
.center-absolute {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.error {
  font-size: 13px;
  line-height: 18px;
  color: #F3BA2F;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.animate {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.animate2 {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.social-icons {
  top: 0px;
  position: absolute;
  left: 20px;
}
.social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-icons li {
  background-color: rgba(50, 50, 50, 0.4);
  background: none\9;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66323232', endColorstr='#66323232');
  padding: 100px 10px 10px 10px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-icons li:not([dummy]) {
  filter: progid:DXImageTransform.Microsoft.gradient(enabled='false');
}
.social-icons li:hover {
  background-color: rgba(50, 50, 50, 0.45);
  background: none\9;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#73323232', endColorstr='#73323232');
  padding-bottom: 20px;
}
.social-icons li:hover:not([dummy]) {
  filter: progid:DXImageTransform.Microsoft.gradient(enabled='false');
}
.social-icons li:hover a {
  top: 10px;
}
.social-icons li a {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  top: 0;
  position: relative;
  display: inline-block;
}
/* Cult of Four: Social Icons Hover - Gold */
.social-icons li a:hover {
  color: #F3BA2F;
}
section,
header {
  position: relative;
}
.fontawesome {
  font-family: fontawesome;
}
.letterspace1 {
  letter-spacing: 1px;
}
.letterspace2 {
  letter-spacing: 2px;
}
.letterspace3 {
  letter-spacing: 3px;
}
.le-input {
  background-color: #F4f4f4;
  border: none;
  color: #000000;
  border-radius: 3px;
  padding: 10px;
}
/* Cult of Four: Button Styling */
.le-btn {
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.2;
  border: 1px solid #F3BA2F;
  text-transform: uppercase;
  display: inline-block;
  color: #F3BA2F;
  background-color: transparent;
  border-radius: 9999px;
  font-size: 12px;
  padding: 14px 32px;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.le-btn.cult-btn:hover {
  background: linear-gradient(135deg, #F3BA2F 0%, #E5A520 100%);
  color: #000;
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(243, 186, 47, 0.4), 0 0 60px rgba(243, 186, 47, 0.2);
}

.le-btn:focus,
.le-btn.active,
.le-btn:active {
  background-color: #F3BA2F;
  color: #000;
  border-color: #F3BA2F;
}
.le-btn.big {
  padding: 15px 30px;
  font-size: 16px;
}
.le-btn.icon-btn {
  padding: 9px 10px 9px 10px;
}
.le-btn.icon-btn:before {
  font-size: 19px;
  width: 19px;
  height: 19px;
  line-height: 19px;
}
.le-btn.small {
  font-size: 10px;
  padding: 9px 12px;
}
.bold {
  font-weight: bold!important;
}
.bold100 {
  font-weight: 100!important;
}
.bold200 {
  font-weight: 200!important;
}
.bold300 {
  font-weight: 300!important;
}
.bold400 {
  font-weight: 400!important;
}
.bold500 {
  font-weight: 500!important;
}
.bold600 {
  font-weight: 600!important;
}
.bold700 {
  font-weight: 700!important;
}
.bold800 {
  font-weight: 800!important;
}
.unselectable {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.italic {
  font-style: italic;
}
/*Sections*/
/* Cult of Four: Container */
.wrapper {
  position: absolute;
  width: 100%;
  z-index: 10;
}
/*Supply Counter*/
#supply-counter-holder {
  position: absolute;
  bottom: 20px;
  right: 30px;
  text-align: center;
}

#coundown-holder {
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.dash {
  vertical-align: bottom;
  display: inline-block;
  position: relative;
}
.dash:first-child {
  margin-left: 0;
}
/* Cult of Four: Countdown Digits */
.dash .digit {
  font-size: 55px;
  font-weight: 300!important;
  float: left;
  width: 33px;
  text-align: center;
  font-family: 'Inter', monospace;
  color: #F3BA2F;
  position: relative;
}
.hours_dash:after,
.minutes_dash:after {
  content: ":";
  display: inline-block;
  color: #F3BA2F;
  font-weight: 300!important;
  font-size: 55px;
}
.days_dash {
  margin-right: 10px;
}
.days_dash .dash_title {
  top: 30px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  position: absolute;
  right: -23px;
  width: auto;
}
.days_dash .digit {
  font-weight: 600!important;
  font-size: 100px;
  width: 60px;
  line-height: 1;
}
.dash_title {
  display: inline-block;
  width: 100%;
  font-weight: 600!important;
  font-size: 10px;
  color: #E5E5E5;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}
.dev_comment {
  font-size: 20px;
  text-align: center;
  font-style: italic;
  margin: 40px 10px;
}
@keyframes showLine {
  0% {
    width: 0%;
  }
  100% {
    width: 50%;
  }
}
/* Cult of Four: Supply Counter Caption */
#supply-caption {
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  text-align: center;
  font-size: 20px;
  color: #F3BA2F;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 20px;
}

#counter-caption {
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  text-align: right;
  font-size: 22px;
  color: #F3BA2F;
  letter-spacing: 3px;
  font-weight: 600;
}

/* Supply Display */
.supply-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  font-family: 'Inter', monospace;
}

.minted-number,
.total-number {
  font-size: 72px;
  font-weight: 300;
  color: #F3BA2F;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(243, 186, 47, 0.4);
}

.total-number {
  color: rgba(229, 229, 229, 0.7);
  font-size: 48px;
}

.supply-divider {
  font-size: 48px;
  color: rgba(243, 186, 47, 0.5);
  font-weight: 300;
}

.loading-dots {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

/* Supply Status */
.supply-status {
  text-align: center;
  font-size: 13px;
  color: rgba(229, 229, 229, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 10px;
}

#supply-percentage {
  color: #F3BA2F;
  font-weight: 600;
}

/* Supply Counter Animations */
@keyframes pulseGlow {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(243, 186, 47, 0.4);
    transform: scale(1);
  }
  50% { 
    text-shadow: 0 0 40px rgba(243, 186, 47, 0.8);
    transform: scale(1.02);
  }
}

.minted-number.loaded {
  animation: pulseGlow 0.5s ease;
}

.error-supply {
  color: rgba(243, 186, 47, 0.4);
}
.iconic-line {
  position: relative;
  display: block;
}
.iconic-line:after {
  display: inline-block;
  height: 1px;
  animation: showLine 1s ease 4s forwards;
  margin: 0 10px;
  content: "";
  margin: auto;
  vertical-align: middle;
  background-color: #fff;
}
.iconic-line img {
  display: inline-block;
  vertical-align: middle;
}
/* Cult of Four: Highlight & Mark */
.highlight {
  color: #F3BA2F;
}
mark {
  color: #F3BA2F;
  background-color: transparent;
}
hr {
  border-top: none;
  border-bottom: 1px solid #F3BA2F;
}
/* Cult of Four: Page Layout */
.page {
  padding: 15px;
  padding-left: 35px;
  left: -110%;
  -webkit-transition: all ease 1s;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  transition: all ease 1s;
  position: absolute;
  top: 20%;
  color: #E5E5E5;
  width: 55%;
  z-index: 10;
  border-left: 2px solid rgba(243, 186, 47, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}

/* Cult of Four: Custom scrollbar */
.page::-webkit-scrollbar {
  width: 6px;
}
.page::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.page::-webkit-scrollbar-thumb {
  background: rgba(243, 186, 47, 0.4);
  border-radius: 3px;
}
.page::-webkit-scrollbar-thumb:hover {
  background: rgba(243, 186, 47, 0.6);
}

.page h1 {
  text-transform: uppercase;
  font-size: 64px;
  color: #fff;
  text-shadow: 0 0 40px rgba(243, 186, 47, 0.3);
  margin-bottom: 10px;
}
.page.active {
  left: 60px;
}

/* Cult of Four: BEP-404 Info Section */
.page.info-section {
  top: 50%;
  left: -110%;
}
.page.info-section.active {
  left: 60px;
}
.page.info-section h1 {
  font-size: 32px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.page .body p:last-child {
  margin-bottom: 0;
}

/* Cult of Four: Risk Warning */
.risk-warning {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(243, 186, 47, 0.6) !important;
  margin-top: 15px !important;
  margin-bottom: 25px !important;
  font-weight: 400;
}

/* Cult of Four: Stats Strip */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid rgba(243, 186, 47, 0.2);
  border-bottom: 1px solid rgba(243, 186, 47, 0.2);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

.stat-item {
  color: #E5E5E5;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item strong {
  color: #F3BA2F;
  font-weight: 600;
}

.stat-divider {
  color: rgba(243, 186, 47, 0.4);
  font-size: 14px;
}

/* Cult of Four: Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #E5E5E5;
  font-size: 15px;
  line-height: 1.6;
}

.feature-list li:before {
  content: "↳";
  position: absolute;
  left: 0;
  color: #F3BA2F;
  font-weight: 600;
  font-size: 16px;
}

/* Cult of Four: Countdown Caption */
.countdown-caption {
  margin-top: 15px;
  text-align: right;
  font-size: 11px;
  color: rgba(229, 229, 229, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

/* Cult of Four: Wallet Lookup - The Cultist Index (BSC) */
.wallet-lookup-holder {
  margin-top: 30px;
  margin-bottom: 20px;
}

.chain-note {
  text-align: center;
  font-size: 11px;
  color: rgba(243, 186, 47, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 12px;
  font-style: italic;
}

.input-group-wallet {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 15px;
}

.wallet-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 186, 47, 0.3);
  color: #E5E5E5;
  padding: 12px 16px;
  font-size: 13px;
  font-family: 'Inter', monospace;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.wallet-input:focus {
  outline: none;
  border-color: #F3BA2F;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(243, 186, 47, 0.2);
}

.wallet-input::placeholder {
  color: rgba(229, 229, 229, 0.4);
}

.lookup-btn {
  white-space: nowrap;
  padding: 12px 28px !important;
}

.error-message {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: none;
}

.error-message.show {
  display: block;
}

/* BSC Results Container */
.cult-results {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(243, 186, 47, 0.3);
  min-height: 100px;
}

.cult-results > div {
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Loading State */
.consulting-chain {
  text-align: center;
  padding: 50px 20px;
}

.consulting-chain p {
  color: #F3BA2F;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(243, 186, 47, 0.2);
  border-top-color: #F3BA2F;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* BSC Token Info Section */
.cult-token-info {
  margin-bottom: 35px;
}

.rank-display {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px 25px;
  background: linear-gradient(135deg, rgba(243, 186, 47, 0.08) 0%, rgba(122, 68, 255, 0.05) 100%);
  border: 1px solid rgba(243, 186, 47, 0.3);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(243, 186, 47, 0.1);
}

.rank-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: rgba(243, 186, 47, 0.7);
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
}

.rank-name {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #F3BA2F;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 30px rgba(243, 186, 47, 0.4);
  margin-bottom: 8px;
}

.rank-description {
  font-size: 13px;
  color: rgba(229, 229, 229, 0.6);
  letter-spacing: 1px;
  font-style: italic;
}

/* Balance Display */
.balance-display {
  margin-bottom: 35px;
}

.balance-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.balance-item {
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(243, 186, 47, 0.2);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.balance-item:hover {
  border-color: rgba(243, 186, 47, 0.5);
  background: rgba(243, 186, 47, 0.05);
}

.balance-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(229, 229, 229, 0.6);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.balance-value {
  font-size: 28px;
  color: #F3BA2F;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* Cult Relics Section */
.cult-relics-section {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(243, 186, 47, 0.2);
}

.relics-title {
  font-size: 16px;
  letter-spacing: 3px;
  color: #F3BA2F;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* NFT Grid */
.cult-nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.cult-nft-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(243, 186, 47, 0.25);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cult-nft-card:hover {
  border-color: #F3BA2F;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(243, 186, 47, 0.3);
}

.nft-image-container {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(243, 186, 47, 0.05);
}

.nft-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cult-nft-card:hover .nft-image {
  transform: scale(1.1);
}

.nft-info {
  padding: 12px;
  background: rgba(0, 0, 0, 0.6);
}

.nft-id {
  text-align: center;
  font-size: 11px;
  color: #F3BA2F;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin: 0;
}

/* No Relics State */
.no-relics {
  text-align: center;
  padding: 50px 20px;
  color: rgba(229, 229, 229, 0.5);
}

.no-relics p {
  font-size: 14px;
  margin-bottom: 10px;
}

.no-relics .hint {
  font-size: 12px;
  color: rgba(243, 186, 47, 0.5);
  font-style: italic;
}

/* Error State */
.error-state {
  text-align: center;
  padding: 40px 20px;
}

.error-state p {
  margin-bottom: 12px;
}

.error-details {
  font-size: 12px;
  color: rgba(229, 229, 229, 0.6);
  font-family: monospace;
}

.error-hint {
  font-size: 12px;
  color: rgba(243, 186, 47, 0.6);
  font-style: italic;
  margin-top: 15px;
}

.fixed {
  position: fixed;
}
.alert-success {
  font-weight: bold!important;
  font-size: 18px;
}
label.error {
  position: absolute;
  bottom: -20px;
  font-weight: bold!important;
  right: 0;
  margin: auto;
  text-align: left;
  left: 0;
}
/*------------------------------------*\
    $Functions
\*------------------------------------*/
@keyframes glitchOne {
  100% {
    clip: rect(54px, 9999px, 89px, 0);
  }
  95% {
    clip: rect(100px, 9999px, 64px, 0);
  }
  90% {
    clip: rect(54px, 9999px, 76px, 0);
  }
  85% {
    clip: rect(99px, 9999px, 97px, 0);
  }
  80% {
    clip: rect(22px, 9999px, 39px, 0);
  }
  75% {
    clip: rect(88px, 9999px, 39px, 0);
  }
  70% {
    clip: rect(36px, 9999px, 81px, 0);
  }
  65% {
    clip: rect(40px, 9999px, 9px, 0);
  }
  60% {
    clip: rect(3px, 9999px, 15px, 0);
  }
  55% {
    clip: rect(15px, 9999px, 32px, 0);
  }
  50% {
    clip: rect(51px, 9999px, 23px, 0);
  }
  45% {
    clip: rect(26px, 9999px, 94px, 0);
  }
  40% {
    clip: rect(52px, 9999px, 6px, 0);
  }
  35% {
    clip: rect(46px, 9999px, 8px, 0);
  }
  30% {
    clip: rect(36px, 9999px, 4px, 0);
  }
  25% {
    clip: rect(17px, 9999px, 24px, 0);
  }
  20% {
    clip: rect(89px, 9999px, 75px, 0);
  }
  15% {
    clip: rect(91px, 9999px, 74px, 0);
  }
  10% {
    clip: rect(12px, 9999px, 18px, 0);
  }
  5% {
    clip: rect(11px, 9999px, 6px, 0);
  }
}
#coundown-holder {
  text-align: center;
}
.form-holder form .input-group-addon {
  vertical-align: middle;
  display: inline-block;
}
.form-holder form .input-group-addon .le-btn {
  vertical-align: middle;
  display: inline-block;
  border-radius: 0 5px 5px 0;
  padding: 10px;
  line-height: 15px;
  min-width: 80px;
  font-size: 11px;
  margin-left: -5px;
}
.form-holder form .input-group {
  position: relative;
}
.form-holder form .input-group .le-input {
  vertical-align: middle;
  height: 15px;
  display: inline-block;
  padding: 10px;
  border-radius: 5px 0 0 5px;
}
footer {
  position: absolute;
  bottom: 20px;
  left: 30px;
}
/* Cult of Four: Footer */
footer .copyright {
  font-size: 11px;
  color: #E5E5E5;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  opacity: 0.7;
}
footer .copyright p {
  margin: 0;
}
footer nav {
  margin-bottom: 10px;
}
footer nav a {
  text-transform: capitalize;
  border-bottom: 3px solid transparent;
}
footer nav a,
footer nav a:focus,
footer nav a:active {
  color: #E5E5E5;
}
footer nav a.active {
  border-bottom-color: #F3BA2F;
}
footer nav ul {
  list-style: none;
}
footer nav ul li {
  display: inline-block;
  margin-right: 5px;
}
/*------------------*/
.goto-top {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #CFD2CD;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: fixed;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  padding: 20px;
}
.goto-top:after {
  content: "^";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: #fff;
  line-height: 20px;
  text-align: center;
}
/*Preloader*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  z-index: 5000;
  /* makes sure it stays on top */
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace.pace-inactive .pace-progress {
  display: none;
}
.pace .pace-progress {
  position: fixed;
  z-index: 7000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 100px;
  margin: auto;
  height: 5rem;
  width: 5rem;
}
.pace .pace-progress:after {
  display: block;
  position: absolute;
  top: 0;
  right: .5rem;
  content: attr(data-progress-text);
  font-family: 'Open Sans', sans-serif;
  font-weight: 100;
  font-size: 5rem;
  line-height: 1;
  text-align: right;
  color: #fff;
}
#status {
  width: 160px;
  height: 20px;
  position: absolute;
  z-index: 6000;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  top: 50px;
  background-image: url(../images/page-loader.GIF);
  background-repeat: no-repeat;
  background-position: center;
}
@media all and (max-width: 940px) {
  .social-icons li {
    padding: 10px;
  }
  .page {
    top: 100px;
    width: 90%;
  }
  .page.active {
    left: 0;
    right: 0;
    margin: auto;
  }
  .page h1 {
    font-size: 32px;
    letter-spacing: 4px;
  }
  .page h2 {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .page .body *,
  .page .body .le-btn {
    font-size: 13px;
  }
  .page.info-section h1 {
    font-size: 24px;
  }
  .stats-strip {
    font-size: 10px;
    gap: 6px;
  }
  .feature-list li {
    font-size: 13px;
  }
  #counter-caption {
    font-size: 16px;
  }
  #supply-caption {
    font-size: 16px;
  }
  .minted-number,
  .total-number {
    font-size: 48px;
  }
  .total-number {
    font-size: 32px;
  }
  .supply-divider {
    font-size: 32px;
  }
  .supply-status {
    font-size: 11px;
  }
  .days_dash .digit {
    font-size: 60px;
    width: 35px;
  }
  .days_dash .dash_title {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    top: 0;
    position: relative;
    width: auto;
    right: 0;
  }
  .days_dash {
    margin-right: 0px;
  }
}
@media all and (max-width: 700px) {
  .le-btn {
    padding: 10px 15px;
  }
  footer nav ul li {
    font-size: 12px;
  }
  .copyright p {
    font-size: 10px;
  }
  #counter-caption {
    font-size: 12px;
  }
  .days_dash {
    bottom: 3px;
  }
  .days_dash .digit {
    font-size: 40px;
    width: 25px;
  }
  .dash {
    margin-left: 0px;
  }
  .digit {
    width: 20px!important;
    font-size: 30px!important;
  }
  .hours_dash:after,
  .minutes_dash:after {
    font-size: 30px;
  }
}
@media all and (max-width: 450px) {
  .form-holder form .input-group .le-input {
    border-radius: 5px;
    width: 90%;
    max-width: 100%;
    margin: 0;
  }
  .form-holder form .input-group-addon {
    display: block;
  }
  .form-holder form .input-group-addon .le-btn {
    display: block;
    border-radius: 5px;
    width: 60%;
    margin: 10px auto 0;
  }
  .social-icons {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    margin: auto;
  }
  footer {
    position: relative;
    margin: 20px 0 ;
  }
  .page {
    top: 0;
    width: 90%;
    position: relative;
    display: none;
    max-height: none;
    overflow-y: visible;
  }
  .page,
  .page.active {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  .page.active {
    display: block;
  }
  .page h1 {
    font-size: 28px;
    letter-spacing: 3px;
  }
  .page.info-section h1 {
    font-size: 20px;
    margin-top: 30px;
  }
  .stats-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
  }
  .stat-divider {
    display: none;
  }
  .feature-list li {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .risk-warning {
    font-size: 10px !important;
    margin-bottom: 20px !important;
  }
  form .input-group-addon .le-btn {
    width: 50px;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    font-size: 11px;
    margin-left: 0px;
  }
  form .input-group .le-input {
    display: block;
    max-width: 170px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
  }
  #coundown-holder,
  #supply-counter-holder {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    margin: 30px 0;
    right: 0;
  }
  #coundown-holder #counter-caption,
  #supply-caption {
    text-align: center;
    margin: 10px 0;
    width: 100%;
  }
  .countdown-caption {
    text-align: center;
    font-size: 10px;
  }
  .supply-display {
    gap: 10px;
  }
  .minted-number,
  .total-number {
    font-size: 36px;
  }
  .total-number {
    font-size: 28px;
  }
  .supply-divider {
    font-size: 28px;
  }
  .input-group-wallet {
    flex-direction: column;
    gap: 12px;
  }
  .lookup-btn {
    width: 100%;
  }
  .balance-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .cult-nft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .rank-name {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .rank-display {
    padding: 25px 15px;
  }
}
/*Browsers Hacks*/
.ie10 #container,
.ie9 #container {
  background: url(../images/bg.gif) repeat #000;
  background-size: cover;
  background-position: center center;
}
.ie9 .page-holder {
  background-color: #000000;
  filter: none!important;
}
/*# sourceMappingURL=stylesheet.css.map */