html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: radial-gradient(ellipse at right bottom, #FFABE7 0%, #FF34FD 100%);
  font-family: "Agrandir Grand", sans-serif;
  color: white;
  font-size: 18px;
}

#container {
  z-index: 2;
  height: 400px;
  width: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -200px 0 0 -300px;
}

@font-face {
  font-family: "Agrandir Variable";
  src: url("../_font/Agrandir-Variable.ttf");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Agrandir Grand";
  src: url("../_font/Agrandir-Grand.ttf");
  font-style: bold;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Agrandir GrandLight";
  src: url("../_font/Agrandir-GrandLight.ttf");
  font-style: medium;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "MigraItalic Italic";
  src: url("../_font/MigraItalic-Italic.ttf");
  font-style: medium;
  font-weight: 500;
  font-display: swap;
}
#logo {
  background-image: url("../_img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  width: 100px;
  height: 100px;
  left: 20px;
  top: 20px;
}

#menu {
  position: absolute;
  top: 20px;
  right: 40px;
}
#menu a {
  color: white;
  text-decoration: none;
}
#menu a:hover {
  text-decoration: underline;
}

.dollbox {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -150px;
  width: 300px;
  transition: margin 0.3s linear;
}
.dollbox .box {
  height: 400px;
  width: 300px;
  border: 1px solid white;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  background: radial-gradient(ellipse at right bottom, #FD87EE 0%, #FD4CF5 100%);
}
.dollbox .box .reveal {
  background-image: url("../_img/reveal.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.dollbox .box .reveal2 {
  background-image: url("../_img/reveal2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
}
.dollbox h2 {
  position: absolute;
  text-align: center;
  border: 1px solid white;
  border-radius: 20px;
  background-color: #A33FF0;
  color: white;
  padding: 50px 0 5px 0;
  z-index: 1;
  left: 0;
  right: 0;
  top: 342px;
  font-weight: 100;
  font-size: 18px;
  transition: top 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.dollbox:hover {
  cursor: pointer;
}
.dollbox:hover h2 {
  top: 352px;
  background-color: #9761ff;
}
.dollbox.animating .box .reveal {
  animation: glow 8s infinite linear;
}
.dollbox.animating .box .reveal2 {
  animation: reveal 3s infinite ease-in-out;
}

.actionbox {
  margin-left: -150px;
  width: 300px;
  left: 50%;
  top: 50%;
  margin-top: -100px;
  min-height: 220px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, margin 0.2s ease-in-out;
}
.actionbox .box {
  border: 1px solid white;
  border-radius: 20px;
  background: radial-gradient(ellipse at right bottom, #E872EE 0%, #E851F2 100%);
  text-align: center;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
}
.actionbox .wallet {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  height: 100px;
  border: 1px solid white;
  border-radius: 20px;
  transition: opacity 0.2s ease-in-out, top 0.2s ease-in-out;
  text-align: center;
  opacity: 0;
}
.actionbox .wallet .account {
  line-height: 34px;
  font-size: 12px;
}
.actionbox .wallet .account:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #7BFC9B;
  border-radius: 8px;
  margin-right: 4px;
  vertical-align: text-bottom;
}
.actionbox h1 {
  color: white;
  font-weight: 100;
  font-family: "MigraItalic Italic", sans-serif;
  text-align: center;
  font-size: 30px;
  padding: 0;
  margin: 0 0 20px 0;
}
.actionbox button {
  background-color: white;
  border: none;
  color: #A33FF0;
  font-size: 20px;
  font-family: "Agrandir Grand", sans-serif;
  line-height: 40px;
  padding: 2px 14px 0 14px;
  border-radius: 8px;
  position: relative;
  transition: margin 0.2s ease-in-out;
}
.actionbox button:after {
  content: "";
  border: 1px solid white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  margin: 8px -6px -8px 8px;
  border-radius: 8px;
  transition: margin 0.2s ease-in-out;
  pointer-events: none;
}
.actionbox button:hover {
  cursor: pointer;
}
.actionbox button:hover:after {
  margin: 10px -8px -10px 10px;
}
.actionbox.waiting button {
  pointer-events: none;
  opacity: 0.5;
}
.actionbox.connected .wallet {
  top: -30px;
  opacity: 1;
}
.actionbox.connected .connectbutton {
  display: none;
}
.actionbox.connected .select {
  display: block;
}
.actionbox.connected.minting .connectbutton {
  display: none;
}
.actionbox.connected.minting .select {
  display: none;
}
.actionbox.connected.minting .process {
  display: block;
}
.actionbox.connected.done .connectbutton {
  display: none;
}
.actionbox.connected.done .select {
  display: none;
}
.actionbox.connected.done .process {
  display: none;
}
.actionbox.connected.done .thankyou {
  display: block;
}
.actionbox .select {
  display: none;
  text-align: center;
}
.actionbox .select .selectbox {
  display: inline-block;
  border: 1px solid white;
  padding: 10px;
  border-radius: 10px;
  padding-right: 40px;
  position: relative;
  margin-bottom: 14px;
}
.actionbox .select .selectbox:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 30px;
  border: 1px solid white;
  border-radius: 10px;
  background-image: url("../_img/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.8;
  transition: background-color 0.2s ease-in-out;
}
.actionbox .select .selectbox:hover {
  cursor: pointer;
}
.actionbox .select .selectbox:hover:after {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}
.actionbox .select .selectbox .list {
  border: 1px solid white;
  border-radius: 10px;
  position: absolute;
  left: -2px;
  right: -2px;
  top: -1px;
  z-index: 10;
  background-color: #E758F1;
  opacity: 0;
  pointer-events: none;
}
.actionbox .select .selectbox .list div {
  border-bottom: 1px solid white;
  line-height: 40px;
}
.actionbox .select .selectbox .list div:last-child {
  border-bottom: none;
}
.actionbox .select .selectbox .list div:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
}
.actionbox .select .selectbox.active .list {
  opacity: 1;
  pointer-events: all;
}
.actionbox .select .center {
  margin-top: 10px;
}
.actionbox .select button {
  display: inline-block;
}
.actionbox .process {
  display: none;
  font-size: 12px;
}
.actionbox .thankyou {
  display: none;
  font-size: 12px;
}

#container.mint .dollbox {
  margin-left: -320px;
  pointer-events: none;
}
#container.mint .dollbox h2 {
  background-color: transparent;
}

#container.connect .actionbox {
  margin-left: 20px;
  opacity: 1;
}

.spinner {
  height: 30px;
}
.spinner:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  animation: rotate 1.1s infinite linear;
  left: 50%;
  margin-left: -10px;
}

.dolls {
  position: absolute;
  height: 400px;
  left: 5%;
  right: 5%;
  top: 50%;
  margin: -200px 0 0 0;
  z-index: 1;
  transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
}
.dolls b {
  display: block;
  position: absolute;
  width: 200px;
  height: 400px;
  background-image: url("../_img/angel.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}
.dolls b:nth-child(1) {
  left: 20%;
  background-image: url("../_img/moulinrouge.png");
  width: 250px;
  z-index: 2;
}
.dolls b:nth-child(2) {
  right: 20%;
  background-image: url("../_img/punk.png");
  width: 250px;
  z-index: 2;
}
.dolls b:nth-child(3) {
  right: 0;
  background-image: url("../_img/bath.png");
  width: 200px;
  z-index: 1;
}
.dolls.hide {
  left: 20%;
  right: 20%;
}
.dolls.hide b {
  opacity: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes reveal {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(0px) hue-rotate(-43deg) saturate(2.5);
  }
  70% {
    opacity: 1;
    transform: scale(1.5);
    filter: blur(0px) hue-rotate(43deg) saturate(2.5);
  }
  100% {
    filter: blur(5px) hue-rotate(43deg) saturate(2.5);
    opacity: 0;
    transform: scale(1.6);
  }
}
@keyframes glow {
  0% {
    filter: blur(0px);
  }
  50% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0px);
  }
}

/*# sourceMappingURL=main.css.map */
