body {
    font-family: Arial, sans-serif;
	margin: 0px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
}

.lgcont {
  max-width: 955px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
}

.topblock { 
    background: #90e2f0;
	background: url("background.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;	
	width: 100%;
	  max-width: 100%;
	} 

p { line-height: 1.4em}
	

.vending-machine-wrapper img {
    width: 600px;
    filter: grayscale(100%);
    transition: filter 2s;
}

@media only screen and (max-width: 768px) {
	.vending-machine-wrapper img { width: 100%;  }
}

.linklow a { color: #000; }
.linklow a:hover { color: #f16400; } 

.copyw a { color:#fff  !important}

.beaucoup-important {
    color: black;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    background: #4caf5047;
    border-radius: 10px;
    padding: 10px 5px;
}



#secretCat {
    /* opacity: 0.3;  */
    transition: transform 0.3s ease-in-out;
   position: absolute;
	top: 500px;
    left: 20%;
    margin-left: -180px;
}


#secretCat:hover {
    transform: scale(1.03); 
}

@media only screen and (max-width: 768px) { 
	#secretCat {
		top: 340px;
		left: 10%;
		margin-left: -100px;
		max-width: 180px;
	}
} 

@keyframes flash {
  0% { opacity: 1; }
  10% { opacity: 0.3; }
  20% { opacity: 1; }
  30% { opacity: 0.4; }
  40% { opacity: 1; }
  50% { opacity: 0.2; }
  60% { opacity: 1; }
  70% { opacity: 0.4; }
  80% { opacity: 1; }
  90% { opacity: 0.3; }
  100% { opacity: 1; }
}

.flash-effect {
    animation: flash 3.5s; /* This makes the flash effect last for half a second. Adjust as needed. */
}

.mt-3 {
    margin-top: 3rem!important;
}

.mt-4 {  margin-top: 5rem!important; }

.fa-lg {font-size: 1.63333em; } 
.fa-black { color: #000 } 

.ml-4 {  margin-left: 2rem!important; }

.bgme { background: #354a5f2b; margin-top: 60px; padding-bottom: 30px; padding-top: 30px;}

h1 { text-align: center; margin-bottom: 30px }
h2 { text-align: left; margin-bottom: 30px }

.texty {  font-size: 26px; line-height: 1.4em; text-align:center; max-width: 620px; margin: 0 auto 0;} 

.texty2 p, .texty2 ul li { font-size: 20px; line-height: 1.4em; text-align:left;} 

#remaining-nfts { 
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

#remaining-nfts.show {
  opacity: 1;
  transition: opacity 3s ease-in-out;
}

.remaining-nfts-display {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 7px 10px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    z-index: 9999; /* Ensures the div is above all other elements */
}

.remaining-nfts-display{ color: #429546}

@keyframes shake {
    0% { transform: translate(0px, 5px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-2deg); }
    20% { transform: translate(-3px, 0px) rotate(2deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(2deg); }
    50% { transform: translate(-1px, 2px) rotate(-7deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-9deg); }
    80% { transform: translate(-1px, -1px) rotate(2deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-2deg); }
}

.vending-machine.shaking img {
    animation: shake 1.5s;
    animation-iteration-count: infinite;
}

button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
}

button:hover { background: #429546 } 


/* ---  popup box  ---  */ 

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}

#popup-box, #popup-box-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 650px;
  max-width: 95%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
}

#popup-box.open, #popup-box-alert.open {
  opacity: 1;
  display: block;
  animation: fadeIn 0.5s;
}

#popup-box.close, #popup-box-alert.close {
  opacity: 0;
  display: none;
  animation: fadeOut 0.5s;
}

#close-btn, #alert-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
#close-btn:hover, #alert-close-btn:hover { background-color: #a4d3a4;}

#content {
  display: flex;
  flex-wrap: wrap;
}

#col1 {
  flex: 0 0 50%;
  margin-top: 20px;
  padding-right: 10px;
  box-sizing: border-box;
  text-align: right;
}

#col2 {
  flex: 0 0 50%;
  margin-top: 20px;
  padding-left: 10px;
  box-sizing: border-box;
  text-align: left;
}

@media only screen and (max-width: 768px) {
	#col2 { padding-left: 0px }
}


#col3, #col4 {
  flex: 20 0 100%;
  margin-top: 20px;
  text-align: center; 
}

#popup-close-btn, #alert-close-btn {
    background-color: #d4e7d4;
    border: 1px solid #000;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
}


#popup-close-btn:hover, #alert-close-btn:hover  {
    background-color: #a4d3a4;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

  #col1 img,
  #col2 img {
    max-width: 280px;
  }
  
@media only screen and (max-width: 768px) {
  #col1 img,
  #col2 img {
    max-width: 140px;
  }
  #popup-box, #popup-box-alert { width: 300px } 
  
  #pending-spin {  max-width: 120px;}
}



/* need to know section */

#needtoknow  { text-align: left}


/* youtube vid section */ 


#two-column-section {
  margin-top: 0px;
  padding-bottom: 30px;
  padding-top: 30px;
}

#two-column-section .row {
  display: flex;
  align-items: center;
}

#two-column-section .col-md-6 {
  padding: 0 15px;
}

#two-column-section .thumbnail {
  max-width: 100%;
}

#two-column-section p {
  font-size: 18px;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  #two-column-section .col-md-6 {
    flex-basis: 100%;
    padding: 0;
  }
}



/* FAQ section  */ 

#faq {
  padding: 30px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;

}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-bottom: 0px;
}

.faq-item.active .answer {
  max-height: 1000px;
  transition: max-height 0.3s ease-in;
  padding-bottom: 20px;
}

.faq-item .answer ul li { margin-bottom:8px; margin-top: 5px;} 

.question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: #f7f7f7;
  font-weight: bold;
  cursor: pointer;
}

.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease-out;
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
}

.answer {
  padding: 15px 15px 0px 15px;
  line-height: 1.4em;
  text-align: left;
}

/* Back to top button styles */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #d5d5d57a;
}

@media (min-width: 768px) {
  .back-to-top {
    display: block;
  }
}

#nftResult { font-weight: 500; background: #000; padding: 5px; color: #fff}

/* wallet info & butt */

#walletInfo {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

#walletInfo.show {
  opacity: 1;
  transition: opacity 3s ease-in-out;
}


#account {
  margin-right: 10px;
  color: #423f3f;
}

#disconnectBtn {
  padding: 5px 10px;
  cursor: pointer;
}

@media (max-width: 1127px) {
#walletInfo { top:5px;	}
#walletInfo #account, #disconnectBtn { font-size: 12px}
.vending-machine-wrapper img { margin-top: 20px}

.remaining-nfts-display { font-size: 12px}

}





/* pending anim   */ 

#pending-anim {
    position: absolute;
    top: 200px;
    left: 50%;
    margin-left: -180px;
    transform: rotate(0deg);
    transform-origin: center;
    animation: spin 3s linear infinite;
    display: none; /* hide him! */
}


#pending-spin {
    animation: spin 2s linear infinite;
	max-width: 180px;
}


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





