@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  font-family: "Outfit", sans-serif;
}

body {
  background: #0f0f0f;
  height: 100vh;
  color: #fff;
}

header {
  height: 46px;
  width: 100%;
  padding-top: 10px;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

header.anim {
  transform: scale(0.8);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  position: relative;
}
.nav-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #d9d9d9;
  height: 38px;
  padding: 0 15px;
  box-sizing: border-box;
  font-weight: 600;
  transition: 0.3s ease-in;
  border-radius: 30px;
}
.nav-btn:hover {
  background: #2c2c2c;
}

.nav-btn.active {
  background: #2c2c2c;
}

.reg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  background: #d9d9d9;
  border-radius: 30px;
  color: #0f0f0f;
  padding: 0 15px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 726px;
  width: 100%;
  margin: auto;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.container.anim {
  transform: scale(0.8);
}

h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 30px 0 0 0;
}

.small-p {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 40px;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0 20px 0;
}

.options {
  display: flex;
  gap: 10px;
}

.eyes .option {
  width: 180px;
  height: 180px;
}

.btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px;
  font-size: 16px;
  background: transparent;
  box-sizing: border-box;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s ease-in-out;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn.selected {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.option {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.option p {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 0;
}
.option:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.6) 100%);
}

.option.selected {
  border: 2px solid #fff;
}
.option.selected:after {
  position: absolute;
  top: 10px;
  right: 10px;
  content: "";
  background: url("../img/check.svg") no-repeat center/cover;
  width: 20px;
  height: 20px;
}

.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: #f1f1f1;
  max-width: 350px;
  width: 100%;
  height: 44px;
  border: none;
  font-weight: 500;
  border-radius: 30px;
  margin: 100px auto auto auto;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.next-btn:hover {
  opacity: 0.8;
}

.progress-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 30px;
  margin-top: 15px;
}

.progress-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
}
.progress-dot .dot {
  height: 3px;
  width: 48px;
  background: #fff;
  border-radius: 5px;
  opacity: 0.2;
}

.progress-dot.current .dot {
  opacity: 1;
}

.progress-dot.completed {
  cursor: pointer;
}
.progress-dot.completed .dot {
  opacity: 1;
  transition: 0.2s ease-in-out;
}
.progress-dot.completed:hover .dot {
  height: 20px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid3 {
  display: grid;
  max-width: 610px;
  margin: auto;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.grid3 .option {
  height: 200px;
}

.color-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  box-sizing: border-box;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.color-swatch .color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hair-colors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.color-swatch.selected {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
}

.personality-card {
  position: relative;
  height: 420px;
  width: 280px;
  cursor: pointer;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 20px;
}
.personality-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.6) 100%);
}
.personality-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.personality-card p {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 0;
}

.personality-card.selected {
  border: 2px solid #fff;
}
.personality-card.selected:after {
  position: absolute;
  top: 10px;
  right: 10px;
  content: "";
  background: url("../img/check.svg") no-repeat center/cover;
  width: 20px;
  height: 20px;
}

.range-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.range-input input {
  max-width: 250px;
  width: 100%;
  height: 5px;
  accent-color: #fff;
}
.range-input input::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
}

.range-label {
  font-size: 10px;
  max-width: 50px;
  width: 100%;
}

.input-wrapper {
  max-width: 300px;
  width: 100%;
  margin: auto;
}
.input-wrapper input {
  box-sizing: border-box;
  width: 100%;
}

.small-opt {
  justify-content: center;
}
.small-opt .option {
  width: 150px;
  height: 150px;
}
.small-opt .option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example {
  max-width: 440px;
  width: 100%;
  margin: 20px auto auto auto;
  padding: 16px;
  border: 1px solid #222;
  border-radius: 18px;
  box-sizing: border-box;
}

.ex-title {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
  color: #858585;
}

.ex-first {
  max-width: 285px;
  margin-left: auto;
  background: #222;
  border-radius: 12px 12px 0 12px;
  font-size: 14px;
  color: #fff;
  padding: 10px 12px;
}

.ex-second {
  max-width: 285px;
  margin-right: auto;
  margin-top: 10px;
  background: #222;
  border-radius: 12px 12px 12px 0;
  font-size: 14px;
  color: #fff;
  padding: 10px 12px;
}

.image {
  max-width: 197px;
  width: 100%;
  margin: auto auto 20px auto;
}
.image img {
  width: 100%;
}

.input-search-wrapper {
  max-width: 300px;
  margin: auto auto 80px auto;
}

input[type=text], input[type=email], input[type=password], input[type=number] {
  border: 1px solid #303030;
  border-radius: 12px;
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  padding: 12px;
  background: #313131;
  outline-color: #fff;
  color: #fff;
  font-size: 16px;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder {
  color: #a3a3a3;
  font-weight: 600;
  font-size: 16px;
}

input[type=email], input[type=password] {
  height: 38px;
  background: #121212;
  padding-left: 30px;
}

.form-input-wrapper {
  position: relative;
  margin-bottom: 10px;
}
.form-input-wrapper:last-child {
  margin-bottom: 0;
}
.form-input-wrapper svg {
  position: absolute;
  top: 11px;
  left: 11px;
}

.show-more {
  text-align: center;
  margin-top: 30px;
  color: #a3a3a3;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.bio-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.bio-wrapper .img {
  position: relative;
  width: 316px;
  height: 316px;
  border-radius: 20px;
  overflow: hidden;
}
.bio-wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-wrapper .img p {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 0;
  font-weight: 500;
  font-size: 16px;
}
.bio-wrapper .img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.6) 100%);
}
.bio-wrapper .desk {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bio-wrapper .desk .title {
  font-size: 14px;
  font-weight: 700;
}
.bio-wrapper .desk p {
  font-size: 14px;
  font-weight: 400;
  margin: 8px 0 0 0;
}
.bio-wrapper .desk .bg {
  background: #1a1a1a;
  padding: 16px;
  border-radius: 20px;
}

.selected-kinks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: -45px 0 40px 0;
  gap: 10px;
}

.selected-kink-tag {
  height: 38px;
  padding: 0 13px;
  gap: 10px;
  box-sizing: border-box;
  background: #1a1a1a;
  border: 1px solid #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-kink {
  font-size: 20px;
}

.modal-backdrop {
  display: flex;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.modal-content {
  max-width: 370px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 40px;
  background: #1a1a1a;
  padding: 40px;
  transform: translateY(200%) scale(0.8);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
.modal-content h3 {
  margin-bottom: 16px;
  font-size: 24px;
  text-align: center;
  font-weight: 500;
  margin-top: 0;
}
.modal-content button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  height: 44px;
  width: 100%;
  border-radius: 40px;
  background: #f1f1f1;
  font-size: 16px;
  color: #0f0f0f;
  font-weight: 500;
  margin-top: 16px;
}

.modal-backdrop.active {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}
.modal-backdrop.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

button {
  cursor: pointer;
}

.name-input {
  position: relative;
}
.name-input input {
  padding-left: 36px;
}
.name-input svg {
  position: absolute;
  top: 13px;
  left: 12px;
}

.sb {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  border-radius: 50px;
  height: 38px;
  width: 38px;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
  z-index: 100;
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.sb:hover {
  background: rgba(255, 255, 255, 0.6);
}
.sb svg {
  width: 70%;
}

.button-next {
  right: 20px;
  transform: rotate(180deg);
}

.button-prev {
  left: 20px;
}

@media screen and (max-width: 745px) {
  nav {
    display: none;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
  }
  .header-wrapper {
    padding: 0 20px;
  }
  .btns {
    flex-wrap: wrap;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .next-btn {
    margin-top: 40px;
    max-width: 80%;
  }
  main {
    padding-top: 50px;
  }
  .progress-dot {
    max-width: 20px;
  }
  .step {
    width: 100%;
    overflow-x: clip;
  }
  .mobile-slider .options {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .mobile-slider .option {
    width: 150px;
    min-width: 150px;
    height: 150px;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .grid2 {
    grid-template-columns: 1fr 1fr;
  }
  .hair-colors {
    flex-wrap: wrap;
  }
  .options.eyes {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
  }
  .options.eyes .option {
    width: 180px;
    min-width: 180px;
    height: 180px;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .small-opt {
    flex-wrap: wrap;
  }
  .example {
    max-width: 95%;
  }
  .mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .bio-wrapper {
    flex-direction: column;
  }
  .bio-wrapper .img {
    width: 100%;
  }
}
@media screen and (max-height: 1079px) {
  body {
    padding-bottom: 50px;
    height: auto;
  }
}

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