@import url('https://fonts.googleapis.com/css?family=Permanent+Marker&display=swap');
@font-face {
  font-family: 'Permanent Marker', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body {
  scroll-behavior: smooth;
}
body {
  font-size: 20px;
  background-color: #174cd0;
  color: #fff;
}
h1 {
  font-family: 'Permanent Marker', sans-serif;
  font-size: 52px;
  text-transform: uppercase;
  color: #f6885e;
}
a, a:hover {
  color: #FFFFFF;
  border-radius: 12px;
}
a:hover, .btn:hover {
}
a.navbar-brand:hover {
  background: transparent;
}
.nav-link {
  text-decoration: none;
  font-size: 90%;
  padding-left: 10px;
}
#mainNav {
}
.nav-logo {
  width: 30vw;
}
.layer {
  display: block;
  width: 30vw;
  height: 30vw;
  margin: auto;
}
.clear {
  display: block;
  width: 30vw;
  height: 30vw;
}
input, select {
  border-radius: 24px;
  padding: 4px 10px;
}
.overlay_select {
  cursor: pointer;
  display: inline-block;
  border: 2px solid #177cd0;
  padding: 3px;
  margin: 3px;
}
.overlay_active {
  border: 3px solid #177c00;
}
.overlay_select img {
  width: 60px;
}
.layers {
  display: inline-block;
  margin: auto;
}
.pfp {
  display: none;
}
.error {
  display: none;
  color: red;
}
#load_asset {
  width: 30%;
  display: inline-block;
  font-size: 14px;
}
.loader {
  color: #E9336E;
  background-color: #222;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.loader_ascii {
  font-family: monospace;
  letter-spacing: 0.4em;
  font-size: 1em;
  padding-top: 200px;
  padding-left: 50px;
}
.trans {
  color: transparent;
}
.select2-container .select2-selection--single {
  padding: 10px;
  height: auto;
}
.select2-results {
  color: black;
}
.primary_button, .select_button {
  display: inline-block;
  background: #174cd0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 10px;
  margin: 4px auto;
  width: 14vw;
}
.select_button {
  width: 10vw;
}
.primary_button:hover, .active_button {
  background: #fff;
  color: #174cd0;
}
.overlay_section {
  padding: 10px;
  border: 2px solid #177cd0;
  border-radius: 10px;
  margin: 4px auto;
  width: 90vw;
  height: 140px;
  max-height: 200px;
  overflow-y: scroll;
  display: none;
}
#chumpz_overlays {
  display: block;
}
#banner_preview {
  max-width: 600px;
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  position: relative;
}
#download_banner {
  max-width: 300px;
  width: 50%;
  left: 50%;
  margin: auto;
}
.banner_preview img {
  position: absolute;
  overflow: hidden;
}
.img1 {
  margin-top: -100px;
  height: 400px;
  right: -200px;
}
.img2 {
  right: 150px;
  height: 200px;
}
.img3 {
  right: 350px;
  height: 100px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1200px) {
  .main-cta {
    width: 80%;
  }
}
@media only screen and (max-width: 990px) {
  .nav-logo {
    width: 80vw;
  }
  #token_id {
    width: 100%;
  }
  .header-img {
    width: 60%;
  }
  .header-logo {
    display: none;
  }
  #copy-to-clipboard {
    font-size: 70%;
  }
  #howtobuy .step-2 {
    margin-top: 0px;
  }
  #howtobuy .step-3 {
    margin-top: 0px;
  }
  .meme-img img {
    height: 50vh;
    width: 80vw;
    object-fit: cover;
  }
  .dgaf {
    width: 220px;
  }
  .dexchart {
    display: none;
  }
  .card-image {
    width: 60%;
    top: 64px;
    position: static;
  }
  .primary_button {
    font-size: 18px;
  }
  .clear {
    display: block;
    height: 95vw;
  }
  .trait_selectors {
    width: 95vw;
  }
  .trait_selector {
    font-size: 24px;
    text-align: left;
  }
  .overlay_select img {
    width: 50px;
  }
  .overlay_section {
    width: 94vw;
  }
  .layer {
    width: 60vw;
    height: 60vw;
  }
}

/* loader */
.spinner {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #E9336E;
  border-radius: 100%;
  -webkit-animation: spinRight 800ms linear infinite;
          animation: spinRight 800ms linear infinite;
}
.spinner:before, .spinner:after {
  content: "";
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-right: 4px solid #E9336E;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
          animation: spinLeft 800ms linear infinite;
}
.spinner:after {
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 4px solid #E9336E;
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}
@-webkit-keyframes spinRight {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes spinRight {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
