@font-face {
  font-family: "ITC Souvenir Std";
  src: url("SouvenirStd-Light.woff2") format("woff2"), url("SouvenirStd-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeScaleIn {
  from {
    opacity: 0;
    scale: 1.2;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fade-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes color-pulse {
  0% {
    background-color: #ff6b6b;
  }
  25% {
    background-color: #4ecdc4;
  }
  50% {
    background-color: #45b7d1;
  }
  75% {
    background-color: #96ceb4;
  }
  100% {
    background-color: #ff6b6b;
  }
}
@keyframes color-pulse-text {
  0% {
    background-color: #ff6b6b;
  }
  25% {
    background-color: #4ecdc4;
  }
  50% {
    background-color: #45b7d1;
  }
  75% {
    background-color: #96ceb4;
  }
  100% {
    background-color: #ff6b6b;
  }
}
@keyframes rainbow-pulse {
  0% {
    background-color: #ff0000;
  }
  16.66% {
    background-color: #ff8000;
  }
  33.33% {
    background-color: #ffff00;
  }
  50% {
    background-color: #00ff00;
  }
  66.66% {
    background-color: #0080ff;
  }
  83.33% {
    background-color: #8000ff;
  }
  100% {
    background-color: #ff0000;
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: "Mulish", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.bodywrapper {
  height: 100svh;
  width: 100dvw;
  overflow: hidden;
  min-width: 375px;
}

a, a:visited {
  color: #959595;
}

::selection {
  background-color: #C08888;
  color: white;
}

.mainwrapper {
  position: relative;
  height: calc(100dvh - 36px);
}

#message-thread {
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

#message-thread::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

#main__left {
  position: relative;
  transition: 0.4s ease-in-out all;
  width: 100%;
  height: calc(100vh - 89px);
  overflow-y: hidden;
}
.lookbook #main__left {
  overflow-y: scroll;
}
.about-page #main__left {
  overflow-y: scroll;
}
.explore-page #main__left {
  overflow-y: scroll;
}
@media (max-width: 600px) {
  #main__left {
    height: calc(100vh - 64px);
  }
}

.favorites-open #main__left,
.details-open #main__left {
  width: calc(100% - 480px);
}
@media (max-width: 1024px) {
  .favorites-open #main__left,
  .details-open #main__left {
    width: 100%;
    opacity: 0.4;
    filter: blur(5px);
  }
}

@media (max-width: 1024px) {
  .details-open #chat-header {
    opacity: 0.4;
    filter: blur(5px);
  }
}

#chat-header {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 12px;
  border-bottom: 1px solid #f4f4f4;
  transition: all 0.4s ease-in-out;
  width: 100%;
}
@media (min-width: 1024px) {
  .details-open #chat-header {
    width: calc(100% - 480px);
  }
}
#chat-header .btn {
  margin-right: 35px;
}
#chat-header .btn:last-child {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 600px) {
  #chat-header {
    height: 34px;
  }
  #chat-header .btn {
    font-size: 13px;
    background-size: 18px;
  }
  #chat-header .btn_chat {
    background-position: center left;
    padding-left: 24px;
  }
}

.btn {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 22px;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.6;
  text-decoration: none;
  color: #323232;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  transition: opacity 0.2s ease-in-out;
}
.btn:hover {
  opacity: 0.9;
}
.btn.btn_chat {
  background-image: url(/assets/feather/message-circle.svg);
  padding-left: 30px;
}
.btn.btn_new-chat {
  background-image: url(/assets/feather/new-chat.svg);
  padding-left: 30px;
}
.btn.btn_lookbook {
  padding-right: 27px;
  background-position: right center;
  position: relative;
}
.btn.btn_lookbook .fav-count {
  display: block;
  position: absolute;
  background: rgb(60, 60, 60);
  border-radius: 10px;
  width: 20px;
  height: 20px;
  text-align: center;
  color: white;
  font-size: 10px;
  line-height: 20px;
  top: 2px;
  right: 0;
}
.btn.btn_lookbook .fav-count.zero {
  background-image: url(/assets/feather/star.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 96%;
  background-position: center;
  border-radius: 0px;
}
.btn.btn_about {
  background-image: url(/assets/feather/help-circle.svg);
  padding-right: 30px;
  background-position: right top;
}

.max-favs-reached {
  padding: 10px;
  margin-top: 30px;
  text-align: center;
  border: 1px dashed rgb(218, 218, 218);
  color: rgb(218, 218, 218);
}

#lookbook-tiles .product-tile {
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
  filter: saturate(0);
}
#lookbook-tiles .product-tile.is_fav {
  opacity: 1;
  filter: none;
}
#lookbook-tiles .product-tile.is_fav .action.favorite {
  background-image: url(/assets/feather/x.svg);
  opacity: 0.2;
}

#lookbook-header .anni {
  display: flex;
  gap: 60px;
  padding: 30px 40px 30px 30px;
  border-bottom: 1px dashed rgb(203, 203, 203);
  border: 1px solid rgb(210, 210, 210);
  border-radius: 10px;
  background-color: #fdfdfd;
  justify-content: flex-start;
  margin-bottom: 20px;
}
#lookbook-header .anni.is-loading {
  padding: 20px;
}
#lookbook-header .anni .loading,
#lookbook-header .anni .need-more {
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  color: rgb(175, 175, 175);
}
@media (max-width: 600px) {
  #lookbook-header .anni {
    flex-direction: column-reverse;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
  }
  #lookbook-header .anni .annis-advice span,
  #lookbook-header .anni .annis-advice p,
  #lookbook-header .anni .annis-advice h3 {
    text-align: center;
  }
  #lookbook-header .anni .annis-advice p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
  }
  #lookbook-header .anni .annis-image {
    flex-direction: row;
  }
  #lookbook-header .anni .annis-image-placeholder {
    margin-top: 0px;
  }
}
#lookbook-header .show-btn {
  border: 1px solid #d1d1d1;
  padding: 0px;
  text-align: center;
  border-radius: 80px;
  text-decoration: none;
  font-size: 12px;
  color: #ababab;
  line-height: 16px;
  width: 65px;
}
#lookbook-header .annis-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#lookbook-header .annis-image-placeholder {
  background-image: url(/assets/icon.png);
  background-size: cover;
  width: 130px;
  height: 130px;
  padding-top: 10px;
  border-radius: 50% 50% 50% 50%;
}
#lookbook-header .annis-image-placeholder.thinking {
  background-image: url(/assets/anni-thinking.jpeg);
}
#lookbook-header .annis-image-placeholder.surprised {
  background-image: url(/assets/anni-surprised.jpeg);
}
#lookbook-header .annis-image-placeholder.smiling {
  background-image: url(/assets/anni-smiling.jpeg);
}
#lookbook-header .annis-image-placeholder.nonchalant {
  background-image: url(/assets/anni-nonchalant.jpeg);
}
#lookbook-header .annis-image-placeholder.laughing {
  background-image: url(/assets/anni-laughing.jpeg);
}
#lookbook-header .annis-image-placeholder.happy {
  background-image: url(/assets/anni-happy.jpeg);
}
#lookbook-header .annis-image-placeholder.disgusted {
  background-image: url(/assets/anni-disgusted.jpeg);
}
#lookbook-header .annis-image-placeholder.shocked {
  background-image: url(/assets/anni-shocked.jpeg);
}
#lookbook-header .annis-image-placeholder.yawning {
  background-image: url(/assets/anni-yawning.jpeg);
}
@media (max-width: 600px) {
  #lookbook-header .annis-image-placeholder {
    width: 90px;
    height: 90px;
  }
}
#lookbook-header .annis-advice {
  margin-bottom: 0px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
#lookbook-header .annis-advice span {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
#lookbook-header .annis-advice h3 {
  font-family: "ITC Souvenir Std", serif;
  font-size: 22px;
  font-weight: 300;
  margin: 0px 0 4px;
  color: rgb(141, 141, 141);
}
#lookbook-header .annis-advice p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  max-width: 500px;
  margin-bottom: 6px;
  color: #a2a2a2;
}
#lookbook-header .annis-advice .btn-more {
  width: 100px;
  padding: 2px 4px;
  line-height: 11px;
  display: block;
  border-radius: 40px;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid rgb(204, 204, 204);
  text-align: center;
}
#lookbook-header .anni.expanded p {
  display: block;
}
#lookbook-header .anni.expanded .btn-more {
  display: none;
}

.item-verdict {
  display: flex;
  font-size: 14px;
  gap: 12px;
  margin-bottom: 20px;
}
.item-verdict span {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}
.item-verdict div {
  flex: 1;
  border: 1px solid #dbdbdb;
  padding: 10px;
  border-radius: 10px;
  line-height: 20px;
  color: #a2a2a2;
  padding: 12px 20px;
}

#message-scroller {
  flex: 1;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 0 12px;
  width: 100%;
  height: calc(100dvh - 39px - 50px - 105px);
}
.start-screen #message-scroller {
  display: flex;
  height: 45dvh;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  #message-scroller {
    padding: 0 12px;
    height: calc(100dvh - 39px - 50px - 70px);
  }
}

@keyframes letterBounce_shrink {
  0% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
  40% {
    letter-spacing: 4px;
    transform: translateX(20px);
  }
  100% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
}
@keyframes letterBounce_grow {
  0% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
  40% {
    letter-spacing: 4px;
    transform: translateX(-20px);
  }
  100% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
}
#header {
  background-color: #f4f4f4;
  height: 39px;
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
  justify-content: space-between;
}
#header h1 {
  font-family: "ITC Souvenir Std", serif;
  display: inline-block;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 34px;
}
#header h1 a {
  text-decoration: none;
  color: #a19395;
}
#header h1 a:hover {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .details-open #header h1 {
    animation: letterBounce_shrink 0.5s ease-out forwards;
  }
  .details-closed #header h1 {
    animation: letterBounce_grow 0.5s ease-out forwards;
  }
}
#header .about {
  position: absolute;
  right: 10px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.45;
  font-size: 12px;
  text-decoration: underline;
  line-height: 26px;
  text-decoration: none;
  transition: 0.4s ease background-color;
  background-image: url(/assets/feather/info.svg);
  background-repeat: no-repeat;
  background-position: top 4px right 2px;
  background-size: 18px;
  width: 30px;
  height: 30px;
}
#header .about span {
  display: none;
}
#header .about:hover {
  color: black;
}
#header .inner {
  padding: 6px;
  text-align: center;
  width: 100%;
  transition: all 0.4s ease-in-out;
  position: relative;
}
@media (min-width: 1024px) {
  .details-open #header .inner {
    width: calc(100% - 480px);
  }
}
@media (max-width: 600px) {
  #header {
    height: 32px;
    line-height: 20px;
  }
  #header .inner {
    padding: 0 0 0 10px;
  }
  #header h1 {
    font-size: 16px;
  }
  #header .about {
    top: 4px;
    right: 10px;
  }
}

.messageblock.title {
  text-align: center;
  padding: 0 60px;
  font-family: "ITC Souvenir Std", serif;
  max-width: 760px;
}
.messageblock.title h3 {
  font-size: 36px;
  line-height: 30px;
  margin-top: 12px;
  margin-bottom: 20px;
  color: #514a4a;
  font-weight: 300;
  letter-spacing: -2px;
}
.messageblock.title p {
  font-size: 18px;
  line-height: 26px;
  padding: 0 0px;
  margin: 0;
}
@media (max-width: 1024px) {
  .messageblock.title {
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .messageblock.title {
    font-size: 30px;
    line-height: 36px;
  }
  .messageblock.title h3 {
    font-size: 32px;
    line-height: 30px;
    padding-top: 6px;
    margin-bottom: 10px;
    margin-top: 15px;
  }
  .messageblock.title h3 span {
    display: block;
  }
}

.chat-screen .messageblock.title {
  display: none;
}

.fashionistai-photo {
  margin-bottom: 20px;
}
.fashionistai-photo img {
  border-radius: 50%;
  width: 160px;
  height: 160px;
}

.messageblock {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.messageblock .predefined_answers {
  display: none;
  padding-top: 24px;
  text-align: right;
  padding-left: 80px;
}
.messageblock .predefined_answers .predefined {
  font-family: "Mulish", serif;
  opacity: 0.8;
  max-width: inherit;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
}
@media (max-width: 600px) {
  .messageblock .predefined_answers {
    padding-left: 10px;
    padding-left: 0;
    padding-top: 32px;
  }
  .messageblock .predefined_answers .predefined {
    font-size: 13px;
    line-height: 14px;
    text-align: center;
    padding: 4px 2px 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .messageblock .predefined_answers .emoji {
    display: block;
  }
}
.messageblock:last-child .predefined_answers {
  display: inherit;
}
@media (max-width: 600px) {
  .messageblock:last-child .predefined_answers {
    display: flex;
  }
}
.messageblock.assistant {
  font-family: "ITC Souvenir Std", serif;
}
.messageblock.user {
  text-align: right;
  font-family: "Mulish", serif;
}
.messageblock.user:last-child {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .messageblock.user:last-child {
    margin-bottom: 120px;
  }
}
@media (max-width: 600px) {
  .messageblock.assistant:last-child {
    margin-bottom: 0px;
  }
}

.message {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  color: #4f4c4c;
  line-height: 28px;
  background-color: white;
}
.message p {
  margin: 0;
  white-space: pre-line;
}
.message.user {
  border-radius: 15px 0 15px 15px;
  background-color: #f3f3f3;
  padding: 14px 20px;
  text-align: left;
  margin-left: 200px;
  font-size: 17px;
}
.message.assistant {
  margin-right: 80px;
  margin-left: 80px;
}
.message.assistant:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(photo.jpg);
  background-position: center;
  background-size: 100% auto;
  border-radius: 50% 50% 50% 2px;
  left: -76px;
  bottom: 0px;
  top: 4px;
  opacity: 0;
  animation: fadeSlideIn 0.4s ease-out forwards;
}
.message.loader {
  padding-top: 16px;
  margin-right: 80px;
  margin-left: 80px;
  color: #777;
}
.message.loader:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(photo.jpg);
  background-position: center;
  background-size: 100% auto;
  border-radius: 50% 50% 50% 2px;
  left: -76px;
  bottom: 0px;
  top: 4px;
}

#input-field {
  flex-shrink: 0;
  background: white;
  width: 100%;
  height: 60px;
}
#input-field form {
  border: 1px solid rgb(206, 206, 206);
  border-radius: 60px;
  margin: 0;
}
#input-field fieldset {
  border: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
#input-field input[type=text] {
  color: #737373;
  height: 58px;
  padding: 4px 10px 4px 20px;
  width: 100%;
  font-family: "Mulish", serif;
  background: none;
  border: 0;
  outline: none;
  font-size: 20px;
  padding-bottom: 4px;
}
#input-field input[type=text]::placeholder {
  color: #b1b1b1;
  content: "Short text" !important;
}
#input-field input[type=text] input[placeholder]:before {
  content: "Short text";
  text-indent: 10px;
}
#input-field button {
  background-image: url(/assets/feather/arrow-up.svg);
  background-color: rgb(240, 240, 240);
  background-size: 65% auto;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  font-size: 42px;
  border: 0px;
  align-self: center;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 48px;
  height: 48px;
  margin: 0;
  margin-right: 3px;
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
#input-field button:hover {
  opacity: 0.8;
}
#input-field button:active {
  background-color: rgb(205, 205, 205);
}
#input-field .input_wrapper {
  background: white;
  border-radius: 15px;
  max-width: 760px;
  margin: 12px auto;
  height: 60px;
  display: flex;
  gap: 12px;
}
#input-field .input_wrapper form {
  width: 100%;
}
#input-field .input_wrapper .btn_new-chat {
  display: block;
  border: 1px solid rgb(205, 205, 205);
  border-radius: 50%;
}
#input-field .input_wrapper .btn_new-chat span {
  background-image: url(/assets/feather/new-chat.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 60px;
  width: 60px;
  transform: scaleX(-1);
  opacity: 0.6;
}
@media (max-width: 600px) {
  #input-field {
    padding: 0 20px;
    height: 50px;
  }
}
.start-screen #input-field #new-chat {
  display: none;
}
.start-screen #input-field .input_wrapper {
  max-width: 600px;
}

@media (max-width: 600px) {
  .chat-screen #input-field {
    padding: 0 10px;
  }
  .chat-screen #input-field input[type=text] {
    height: 36px;
    font-size: 16px;
    height: 50px;
    line-height: 36px;
    padding: 4px 5px 4px 15px;
  }
  .chat-screen #input-field .input_wrapper {
    height: 50px;
    gap: 6px;
    margin: 10px auto 0;
  }
  .chat-screen #input-field .input_wrapper .btn_new-chat span {
    height: 50px;
    width: 50px;
  }
  .chat-screen #input-field button {
    margin-right: 3px;
    width: 35px;
    height: 35px;
    background-size: 80%;
  }
}
.chat-footer {
  padding: 10px 20px 0px;
}
.chat-footer .inner {
  text-align: left;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  color: #9d9d9d;
  max-width: 700px;
  margin: 0 auto;
}

.fade-pulse {
  animation: fade-pulse 2s ease-in-out infinite;
}

.color-pulse {
  animation: color-pulse 3s ease-in-out infinite;
}

.color-pulse-text {
  animation: color-pulse-text 3s ease-in-out infinite;
}

.rainbow-pulse {
  animation: rainbow-pulse 4s ease-in-out infinite;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-scale-in {
  opacity: 0;
  animation: fadeScaleIn 0.5s ease-in-out forwards;
}

.fade-slide-in {
  opacity: 0;
  animation: fadeSlideIn 0.6s ease-out forwards;
}

@media (min-width: 600px) {
  .fade-scale-in-ipad {
    opacity: 0;
    animation: fadeScaleIn 0.5s ease-in-out forwards;
  }
  .fade-slide-in-ipad {
    opacity: 0;
    animation: fadeSlideIn 0.4s ease-out forwards;
  }
}
.delay-0 {
  animation-delay: 0.15s;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.45s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.75s;
}

.delay-5 {
  animation-delay: 0.9s;
}

.delay-6 {
  animation-delay: 1.05s;
}

.delay-7 {
  animation-delay: 1.2s;
}

.delay-8 {
  animation-delay: 1.35s;
}

.delay-9 {
  animation-delay: 1.5s;
}

.delay-10 {
  animation-delay: 1.65s;
}

.delay-11 {
  animation-delay: 1.8s;
}

.delay-12 {
  animation-delay: 1.95s;
}

.delay-13 {
  animation-delay: 2.1s;
}

.delay-14 {
  animation-delay: 2.25s;
}

.delay-15 {
  animation-delay: 2.4s;
}

.delay-16 {
  animation-delay: 2.55s;
}

.delay-17 {
  animation-delay: 2.7s;
}

.delay-18 {
  animation-delay: 2.85s;
}

.delay-19 {
  animation-delay: 3s;
}

.delay-20 {
  animation-delay: 3.15s;
}

.hidden {
  display: none;
}

.start-screen .hide-on-start {
  display: none !important;
}

.chat-screen .hide-on-chat {
  display: none !important;
}

.predefined {
  display: inline-block;
  border: 1px solid rgb(223, 223, 223);
  text-decoration: none;
  padding: 4px 8px;
  font-size: 14px;
  margin: 0 4px 4px;
  transition: 0.2s ease all;
  text-align: left;
  line-height: 16px;
}

.block_toggle {
  z-index: 3000;
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  padding-top: 5px;
  text-align: right;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.chat-screen .block_toggle {
  display: none;
}

.block_predefined {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  transition: opacity 0.6s ease-in;
  padding-top: 0px;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
  line-height: 30px;
  cursor: pointer;
}
.block_predefined .predefined {
  display: block;
  border: none;
  text-decoration: none;
  opacity: 0;
  margin: 0;
  transition: padding 0.4s ease-out, opacity 0.4s ease-out;
  text-align: left;
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: left center;
  line-height: 16px;
  border-bottom: 1px solid #eaeaea;
  font-size: 15px;
  background-image: url(/assets/feather/chevron-right.svg);
  background-repeat: no-repeat;
  padding: 14px 0px;
  background-position: right 20px center;
  cursor: pointer;
}
.block_predefined .predefined:nth-child(1) {
  transition-delay: 0.1s;
}
.block_predefined .predefined:nth-child(2) {
  transition-delay: 0.2s;
}
.block_predefined .predefined:nth-child(3) {
  transition-delay: 0.3s;
}
.block_predefined .predefined:nth-child(4) {
  transition-delay: 0.4s;
}
.block_predefined .predefined:nth-child(5) {
  transition-delay: 0.5s;
}
.block_predefined .predefined:nth-child(6) {
  transition-delay: 0.6s;
}
.block_predefined .predefined:nth-child(7) {
  transition-delay: 0.7s;
}
.block_predefined .predefined:nth-child(8) {
  transition-delay: 0.8s;
}
.block_predefined .predefined:nth-child(9) {
  transition-delay: 0.9s;
}
.block_predefined .predefined:nth-child(10) {
  transition-delay: 1s;
}
.block_predefined .predefined:nth-child(11) {
  transition-delay: 1.1s;
}
.block_predefined .predefined:nth-child(12) {
  transition-delay: 1.2s;
}
.block_predefined .predefined:nth-child(13) {
  transition-delay: 1.3s;
}
.block_predefined .predefined:nth-child(14) {
  transition-delay: 1.4s;
}
.block_predefined .predefined:nth-child(15) {
  transition-delay: 1.5s;
}
.block_predefined .predefined:nth-child(16) {
  transition-delay: 1.6s;
}
.block_predefined .predefined:nth-child(n+5) {
  display: none;
}
.block_predefined .predefined:hover {
  color: inherit;
}
.input_selected .block_predefined {
  pointer-events: all;
  height: auto;
  opacity: 1;
  background: white;
  box-shadow: 0 8px 16px rgb(255, 255, 255);
}
.input_selected .block_predefined .predefined {
  padding-left: 20px;
  opacity: 0.6;
}
.chat-screen .block_predefined {
  display: none;
}
.block_predefined h4 {
  font-family: "Mulish", serif;
  color: rgb(122, 122, 122);
  font-size: 14px;
  margin: 0;
  padding: 6px 20px;
  display: block;
  border-bottom: 1px solid #eaeaea;
}
@media (max-width: 600px) {
  .block_predefined {
    margin: 0 20px;
    padding-top: 8px;
  }
  .block_predefined .predefined {
    padding-left: 0;
  }
  .block_predefined .predefined:nth-child(n+5) {
    display: inherit;
  }
}

@media (max-width: 600px) {
  .start-screen.input_selected #header_wrapper {
    display: none;
  }
  .start-screen.input_selected #chat-header {
    display: none;
  }
  .start-screen.input_selected .block_predefined {
    margin: 0;
  }
  .start-screen.input_selected #message-scroller {
    display: none;
  }
  .start-screen.input_selected .main__left {
    height: auto;
  }
  .start-screen.input_selected .predefined {
    padding-left: 20px;
    padding-right: 30px;
    opacity: 0.6;
    background-position: right 20px center;
  }
  .start-screen.input_selected #input-field {
    margin: 0;
    padding: 0;
  }
  .start-screen.input_selected #input-field .input_wrapper {
    margin: 0 !important;
    max-width: auto;
  }
  .start-screen.input_selected #input-field form {
    border: 0px;
    border-bottom: 1px solid grey;
    border-radius: 0;
  }
  .start-screen.input_selected #sticky-footer {
    display: none;
  }
}
#favorites {
  right: -340px;
  width: 340px;
}
#favorites .styles-header {
  height: 50px;
  padding: 12px 0;
  display: flex;
  justify-content: left;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 12px;
  margin-top: 39px;
  transform: translateX(0px);
  margin-left: -100px;
  transition: margin-left 0.4s ease-in-out;
}
@media (max-width: 600px) {
  #favorites .styles-header {
    margin-left: 0;
  }
}
.favorites-open #favorites .styles-header {
  margin-left: 0;
}
.details-open #favorites .styles-header {
  margin-left: 0;
}

#product-details {
  right: -490px;
  padding-top: 39px;
  max-width: 480px;
  z-index: 2;
}
#product-details .product-details__inner {
  padding: 20px 20px 0 40px;
  overflow: scroll;
  height: calc(100dvh - 50px - 39px);
}
#product-details .product-details__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  opacity: 0.4;
  padding: 12px 3px 8px;
}
#product-details .product-details__meta a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid grey;
  border-radius: 20px;
  padding: 4px 24px;
  background-image: url(/assets/feather/chevron-right.svg);
  background-repeat: no-repeat;
  background-position: center right 4px;
  background-size: 16px;
  width: 100%;
  text-align: center;
  display: block;
}
#product-details .product-details__meta a:hover {
  text-decoration: underline;
}
#product-details .main-image .action.store-link {
  display: inherit;
}
#product-details .main-image .action.open {
  display: none;
}
#product-details img {
  width: 100%;
}
#product-details .related {
  border-top: 1px solid #e2e2e2;
  padding-bottom: 100px;
}
#product-details .related h3 {
  font-size: 12px;
  text-transform: uppercase;
  color: #b1b1b1;
  font-weight: 300;
  letter-spacing: 2px;
  padding-left: 3px;
}
#product-details .related img {
  object-fit: cover;
}
#product-details .related .buttons {
  display: none;
}
#product-details .related__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
#product-details .btn-shop {
  display: block;
  padding: 2px 30px 2px 8px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 13px;
  background-image: url("/assets/feather/external-link.svg");
  background-repeat: no-repeat;
  background-position: center right 6px;
  background-size: 18px;
  border: 1px solid black;
  opacity: 0.3;
}
@media (max-width: 1024px) {
  #product-details {
    padding-top: 0;
    top: -40px;
  }
  #product-details .product-details__inner {
    padding: 20px 20px 0 20px;
    overflow: scroll;
    height: calc(100dvh - 50px);
  }
  #product-details .btn-shop {
    top: 11px;
  }
}
@media (max-width: 600px) {
  #product-details {
    top: -32px;
  }
}

.click-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  display: none;
}
@media (max-width: 1024px) {
  .favorites-open .click-overlay {
    display: inherit;
  }
  .details-open .click-overlay {
    display: inherit;
  }
}

.page-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #736767;
}
.page-content.center {
  text-align: center;
}
.page-content h1 {
  font-family: "ITC Souvenir Std", serif;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 42px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgb(203, 203, 203);
  text-align: center;
  margin-bottom: 30px;
  line-height: 48px;
  letter-spacing: -1px;
}
@media (max-width: 600px) {
  .page-content {
    padding: 20px 20px;
  }
  .page-content h1 {
    font-size: 28px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 10px;
  }
}
.page-content h2 {
  font-family: "ITC Souvenir Std", serif;
  font-weight: 300;
  margin-bottom: 6px;
}
.page-content h3 {
  font-family: "ITC Souvenir Std", serif;
  font-weight: 300;
  margin-bottom: 6px;
}
.page-content ul, .page-content ol {
  margin: 0;
  line-height: 32px;
}
.page-content p {
  line-height: 32px;
}

@keyframes tileBounce_shrink {
  0% {
    gap: 12px 12px;
    width: 100%;
    transform: translateX(0px);
  }
  40% {
    gap: 12px 35px;
    width: 105%;
    transform: translateX(-25px);
  }
  100% {
    gap: 12px 12px;
    width: 100%;
    transform: translateX(0px);
  }
}
@keyframes tileBounce_grow {
  0% {
    gap: 12px 12px;
    width: 100%;
    transform: translateX(0px);
  }
  40% {
    gap: 12px 35px;
    width: 105%;
    transform: translateX(-35px);
  }
  100% {
    gap: 12px 12px;
    width: 100%;
    transform: translateX(0px);
  }
}
.tile-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 12px;
}
@media (max-width: 600px) {
  .tile-overview {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 12px;
    margin: 0 12px;
  }
}
@media (min-width: 1024px) {
  .details-open .tile-overview {
    animation: tileBounce_shrink 0.5s ease-out forwards;
  }
  .details-closed .tile-overview {
    animation: tileBounce_grow 0.5s ease-out forwards;
  }
}
.tile-overview > * {
  min-width: 0;
  box-sizing: border-box;
}

.sidepanel {
  position: absolute;
  overflow: hidden;
  top: -39px;
  background: #f4f4f4;
  height: calc(100% + 39px);
  transition: right 0.4s ease-in-out;
}
.sidepanel .sidepanel__header {
  height: 50px;
}
.sidepanel .sidepanel__header .details-logo {
  z-index: 1000;
  text-align: right;
}
.sidepanel .sidepanel__header .details-logo a {
  display: block;
  width: 100px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  right: 20px;
  opacity: 0.5;
  margin-top: 16px;
  transition: all 0.4s ease;
}
.sidepanel .sidepanel__header .details-logo a span {
  display: none;
}
.sidepanel .sidepanel__header .details-logo a:hover {
  opacity: 0.7;
}
.sidepanel .sidepanel__header .details-logo a.asos {
  background-image: url(/assets/logo_asos.png);
}
.sidepanel .sidepanel__header .details-logo a.wehkamp {
  background-image: url(/assets/wehkamp.svg);
}
.sidepanel .sidepanel__header .details-logo a.zalando {
  background-image: url(/assets/logo_zalando.png);
}
.sidepanel .sidepanel__header .details-logo a.omoda {
  background-image: url(/assets/logo_omoda.png);
}
.sidepanel .sidepanel__header__inner {
  margin: 0 20px 0 40px;
  border-bottom: 1px solid #e2e2e2;
}
.sidepanel .sidepanel__header .btn-close {
  margin: 0;
  background-image: url("/assets/feather/x.svg");
  background-repeat: no-repeat;
  padding-left: 30px;
  line-height: 50px;
  opacity: 0.2;
}
.sidepanel .sidepanel__header .btn-close span {
  display: none;
}
@media (max-width: 1024px) {
  .sidepanel .sidepanel__header__inner {
    margin: 0 20px;
  }
}
.sidepanel:before {
  content: " ";
  position: absolute;
  height: 100%;
  width: 40px;
  background: #ffffff;
  left: -24px;
  top: 38px;
  border-top: 1px solid #ebebeb;
  border-radius: 0 20px 0 0;
  box-shadow: 10px 0 15px -10px rgba(124, 124, 124, 0.3);
}
.sidepanel .scroller {
  overflow-y: scroll;
  height: 100dvh;
  scroll-behavior: smooth;
  padding: 0px 20px 0px 40px;
}
@media (max-width: 1024px) {
  .sidepanel .scroller {
    padding: 0px 20px;
  }
}
.favorites-open .sidepanel {
  right: 0 !important;
}
.favorites-open .sidepanel .fav-item {
  transform: translateX(0px);
  opacity: 1;
}
.details-open .sidepanel {
  right: 0 !important;
}
.details-open .sidepanel .fav-item {
  transform: translateX(0px);
  opacity: 1;
}
@media (max-width: 1024px) {
  .sidepanel {
    top: 39px;
    width: 90%;
    right: -100%;
    box-shadow: 0px 9px 16px 0px rgba(0, 0, 0, 0.3);
    background: white;
  }
  .sidepanel .styles-header {
    margin-top: 6px;
  }
  .sidepanel:before {
    display: none;
  }
  .sidepanel .favorites_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-bottom: 100px;
  }
  .sidepanel .product-tile .inner img {
    object-fit: cover;
  }
}
@media (max-width: 1024px) {
  .sidepanel .favorites_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .sidepanel .favorites_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.details-open .main-image {
  transform: translateY(-8px);
  animation: fadeSlideIn 0.4s ease-out forwards;
}

.product-tile {
  font-size: 13px;
  color: #a5a5a5;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.product-tile a {
  text-decoration: none;
  color: #959595;
  transition: all 0.4s ease;
}
.product-tile a:hover {
  text-decoration: underline;
  color: #414141;
}
.product-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-tile .inner {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease;
  height: 85%;
}
.product-tile .buttons {
  display: flex;
  padding: 8px 4px 0 4px;
  justify-content: space-between;
  line-height: 12px;
}
.sidepanel .product-tile .buttons {
  display: none;
}
.sidepanel .product-tile .inner {
  height: 100%;
}

@media (max-width: 600px) {
  .product-tile .buttons {
    display: inherit;
    font-size: 12px;
  }
  .product-tile .buttons a {
    display: block;
    text-align: left;
    padding-right: 12px;
    white-space: nowrap;
  }
  .product-tile .buttons a:first-child {
    max-width: 28vw;
    overflow: hidden;
  }
}
@media (min-width: 600px) {
  .gallery .product-tile.rand_1 {
    transform: rotate(0.3deg);
  }
  .gallery .product-tile.rand_2 {
    transform: rotate(-1.1deg);
  }
  .gallery .product-tile.rand_3 {
    transform: rotate(0.7deg);
  }
  .gallery .product-tile.rand_4 {
    transform: rotate(-1.5deg);
  }
  .gallery .product-tile.rand_5 {
    transform: rotate(1.2deg);
  }
  .gallery .product-tile.rand_6 {
    transform: rotate(-0.5deg);
  }
  .gallery .product-tile.rand_7 {
    transform: rotate(1.4deg);
  }
  .gallery .product-tile.rand_8 {
    transform: rotate(-0.9deg);
  }
  .gallery .product-tile.rand_9 {
    transform: rotate(0.8deg);
  }
  .gallery .product-tile.rand_10 {
    transform: rotate(-1.3deg);
  }
}
.action {
  position: absolute;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.action.store-link {
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}
.action.remove {
  top: 4px;
  right: 4px;
}
.action.favorite {
  background-image: url("/assets/feather/star.svg");
  bottom: 8px;
  left: 6px;
  width: 30px;
  height: 30px;
  background-position: left 0px bottom 0px;
  z-index: 100;
  background-size: 75%;
}
.action.open {
  background-image: url("/assets/feather/plus-magnify.svg");
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right 8px bottom 8px;
}
.action:hover {
  opacity: 0.5;
}
.action span {
  display: none;
}

.is_fav .action.favorite {
  background-image: url("/assets/feather/star-full.svg");
  opacity: 0.5;
}

#favorites .favorite {
  display: none;
}

.gallery .remove {
  display: none;
}

.no_favs {
  color: #a7a7a7;
  font-size: 16px;
  line-height: 28px;
  display: none;
}
.no_favs:last-child {
  display: inherit;
}

.messageblock:nth-child(n+16) .gallery {
  background-image: none !important;
  padding-bottom: 0px;
}
@media (max-width: 600px) {
  .messageblock:nth-child(n+16) images {
    margin: 16px 0;
  }
}

.gallery {
  background-repeat: no-repeat;
  background-position: bottom 4px right 5%;
  position: relative;
  height: 250px;
  scroll-behavior: smooth;
}
.gallery .gallery-nav {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
}
.gallery .gallery-nav a {
  background: pink;
  height: 100%;
  width: 20px;
  display: block;
  opacity: 0.3;
  transition: all 0.2s ease;
}
.gallery .gallery-nav a:hover {
  opacity: 0.7;
}
.gallery .gallery-nav a span {
  display: none;
}
.gallery .gallery-nav a.prev {
  margin-left: -30px;
  background: url(/assets/feather/chevron-left.svg) no-repeat center;
  height: 80%;
}
.gallery .gallery-nav a.next {
  margin-right: -30px;
  background: url(/assets/feather/chevron-right.svg) no-repeat center;
  height: 80%;
}
.gallery.offset-0 a.prev {
  opacity: 0;
  cursor: none;
}
.gallery.offset-0 .images .product-tile:nth-child(n+1):nth-child(-n+5) {
  display: block;
}
.gallery.offset-0 .images .product-tile:nth-child(n+6) {
  display: none;
}
.gallery.offset-1 a.next {
  opacity: 0;
  cursor: none;
}
.gallery.offset-1 .images .product-tile:nth-child(-n+5) {
  display: none;
}
.gallery.offset-1 .images .product-tile:nth-child(n+6):nth-child(-n+10) {
  display: block;
}
.gallery.offset-1 .images .product-tile:nth-child(n+11) {
  display: none;
}
.gallery.offset-2 a.next {
  opacity: 0;
  cursor: none;
}
.gallery.offset-2 .images .product-tile:nth-child(-n+10) {
  display: none;
}
.gallery.offset-2 .images .product-tile:nth-child(n+11):nth-child(-n+15) {
  display: block;
}
.gallery.offset-2 .images .product-tile:nth-child(n+16) {
  display: none;
}
.gallery .images {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 32px 0 -10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.gallery .images .product-tile {
  flex: 1;
}
@media (max-width: 600px) {
  .gallery .images {
    margin: 16px 0 8px;
  }
}
.gallery .images img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  min-height: 190px;
}
@media (min-width: 1024px) {
  .details-open .gallery .images {
    animation: tileBounce_shrink 0.5s ease-out forwards;
  }
  .details-closed .gallery .images {
    animation: tileBounce_grow 0.5s ease-out forwards;
  }
}
.gallery .buttons {
  padding: 6px 0 0 5px;
  line-height: 14px;
  margin-top: 2px;
}
.gallery .buttons .price {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .gallery {
    height: auto;
    margin: 0;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    background-size: auto 32px !important;
    background-position: bottom 0px right 25% !important;
    scroll-behavior: smooth;
  }
  .gallery product-tile {
    flex: 1;
  }
  .gallery .gallery-nav {
    display: none;
  }
  .gallery.offset-0 .images .product-tile:nth-child(-n+5), .gallery.offset-1 .images .product-tile:nth-child(-n+5), .gallery.offset-2 .images .product-tile:nth-child(-n+5) {
    display: block;
  }
  .gallery.offset-0 .images .product-tile:nth-child(n+6):nth-child(-n+10), .gallery.offset-1 .images .product-tile:nth-child(n+6):nth-child(-n+10), .gallery.offset-2 .images .product-tile:nth-child(n+6):nth-child(-n+10) {
    display: block;
  }
  .gallery.offset-0 .images .product-tile:nth-child(n+11), .gallery.offset-1 .images .product-tile:nth-child(n+11), .gallery.offset-2 .images .product-tile:nth-child(n+11) {
    display: block;
  }
  .gallery .images {
    gap: 10px;
    width: 230%;
    padding: 16px 0;
  }
  .gallery .images .product-tile {
    min-width: 110px;
  }
  .gallery .images img {
    object-position: top;
    object-fit: cover;
  }
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}

.delay-9 {
  transition-delay: 0.9s;
}

.delay-10 {
  transition-delay: 1s;
}

.delay-11 {
  transition-delay: 1.1s;
}

.delay-12 {
  transition-delay: 1.2s;
}

.delay-13 {
  transition-delay: 1.3s;
}

.delay-14 {
  transition-delay: 1.4s;
}

.delay-15 {
  transition-delay: 1.5s;
}

.delay-16 {
  transition-delay: 1.6s;
}

.delay-17 {
  transition-delay: 1.7s;
}

.delay-18 {
  transition-delay: 1.8s;
}

.delay-19 {
  transition-delay: 1.9s;
}

.delay-20 {
  transition-delay: 2s;
}

@media (max-width: 1024px) {
  .hide-on-ipad {
    display: none;
  }
}
.chat-screen #message-thread {
  padding-bottom: 40px;
}

@media (max-width: 600px) {
  .hide-on-mobile {
    display: none;
  }
  .message {
    font-size: 16px;
    line-height: 22px;
  }
  .message.user {
    font-size: 15px;
    margin-left: 60px;
    padding: 10px 16px;
  }
  .message.assistant {
    margin-right: 25px;
    margin-left: 45px;
  }
  .message.assistant:after {
    width: 34px;
    height: 34px;
    left: -45px;
    bottom: 0px;
    top: -4px;
  }
  .chat-footer {
    font-size: 10px;
    line-height: 10px;
    padding: 5px 10px;
  }
  .favorites-open #message-scroller, .favorites-open #input-field,
  .details-open #message-scroller,
  .details-open #input-field {
    width: 100%;
    transition: none;
  }
}
#wizard .wizard-step {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  background: url(/assets/anni-2.png);
  background-repeat: no-repeat;
  padding-left: 460px;
}
#wizard.show-step-0 .wizard-step:nth-child(1) {
  display: inherit;
}
#wizard.show-step-1 .wizard-step:nth-child(2) {
  display: inherit;
}
#wizard.show-step-2 .wizard-step:nth-child(3) {
  display: inherit;
}
#wizard.show-step-3 .wizard-step:nth-child(4) {
  display: inherit;
}
#wizard.show-step-4 .wizard-step:nth-child(5) {
  display: inherit;
}
#wizard.show-step-5 .wizard-step:nth-child(6) {
  display: inherit;
}
#wizard.show-step-6 .wizard-step:nth-child(7) {
  display: inherit;
}
#wizard.show-step-7 .wizard-step:nth-child(8) {
  display: inherit;
}
#wizard.show-step-8 .wizard-step:nth-child(9) {
  display: inherit;
}
#wizard.show-step-9 .wizard-step:nth-child(10) {
  display: inherit;
}
#wizard.show-step-10 .wizard-step:nth-child(11) {
  display: inherit;
}
#wizard.show-step-11 .wizard-step:nth-child(12) {
  display: inherit;
}
#wizard.show-step-12 .wizard-step:nth-child(13) {
  display: inherit;
}
#wizard.show-step-13 .wizard-step:nth-child(14) {
  display: inherit;
}
#wizard.show-step-14 .wizard-step:nth-child(15) {
  display: inherit;
}
#wizard.show-step-15 .wizard-step:nth-child(16) {
  display: inherit;
}
#wizard.show-step-16 .wizard-step:nth-child(17) {
  display: inherit;
}
#wizard.show-step-17 .wizard-step:nth-child(18) {
  display: inherit;
}
#wizard.show-step-18 .wizard-step:nth-child(19) {
  display: inherit;
}
#wizard.show-step-19 .wizard-step:nth-child(20) {
  display: inherit;
}
#wizard.show-step-20 .wizard-step:nth-child(21) {
  display: inherit;
}

#tips {
  display: none;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  font-size: 13px;
  color: rgb(165, 165, 165);
  opacity: 0.7;
  padding-top: 3px;
  padding-left: 80px;
  padding-right: 20px;
}
#tips a.link-wardrobe {
  display: none;
  background-image: url(/assets/feather/chevron-right.svg);
  background-repeat: no-repeat;
  background-position: center right 2px;
  padding-right: 15px;
  background-size: 13px;
}
#tips a.link-wardrobe span {
  background-image: url(/assets/feather/star.svg);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-left: 24px;
}
@media (max-width: 600px) {
  #tips {
    font-size: 13px;
    border-top: 1px solid #d1d1d1;
    margin-top: 7px;
    padding-top: 0px;
    background: #f6f6f6;
    padding-left: 10px;
  }
  #tips a {
    border: 0px;
  }
}

.logo a, .logo a:visited {
  color: black;
}

@keyframes boxShadowBreath {
  0% {
    box-shadow: #adadae 0px 0px 21px 4px;
    background-color: inherit;
  }
  50% {
    box-shadow: #888888 0px 0px 28px 8px;
    background-color: #f0f0f0;
  }
  100% {
    box-shadow: #adadae 0px 0px 21px 4px;
    background-color: inherit;
  }
}
.video-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50% 50% 50% 50%;
  overflow: hidden;
  margin: 40px auto 42px;
  background-image: url(/assets/photo.jpg);
  background-size: cover;
  box-shadow: #adadae 0px 0px 21px 4px;
  animation: boxShadowBreath 2.5s ease-in-out infinite;
}
@media (max-width: 600px) {
  .video-wrapper {
    width: 120px;
    height: 120px;
    margin: 40px auto 20px;
  }
}

.explore-gender-toggle {
  text-align: right;
  padding: 10px 10px 40px;
}

.gender-toggle-holder {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.gender-toggle-holder .btn-back {
  text-decoration: none;
  opacity: 0.5;
  letter-spacing: 0.5px;
  background-image: url(/assets/feather/chevron-left.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 16px;
  padding-left: 20px;
  line-height: 30px;
}

.gender-toggle {
  position: relative;
  display: inline-block;
  padding: 2px 12px 2px 0;
  font-size: 12px;
  user-select: none;
}

.gender-toggle input[type=radio] {
  display: none; /* Hide the default radio buttons */
}

.gender-toggle label {
  display: inline-block;
  padding: 1px 4px 2px 14px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #959595;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 72px;
  height: calc(100% - 8px);
  background: rgb(159, 159, 159);
  border-radius: 20px;
  transition: all 0.3s ease;
  z-index: 1;
}

.gender-toggle input[value=men]:checked ~ .toggle-slider {
  transform: translateX(70px);
  width: 50px;
}

/* Style active label */
.gender-toggle input:checked + label {
  color: white;
}

.link-about {
  text-transform: uppercase;
  padding: 3px 0 0 15px;
  opacity: 1;
  transition: opacity 0.4s ease;
  transition-delay: 0.6s;
}
.link-about a {
  text-decoration: none;
  opacity: 0.5;
  letter-spacing: 0.5px;
  background-repeat: no-repeat;
  background-position: center right 2px;
  background-size: 16px;
  padding-right: 20px;
}
.link-about a:hover {
  text-decoration: underline;
}
.input_selected .link-about {
  opacity: 0;
  height: 1px;
  overflow: hidden;
}

#sticky-footer {
  color: black;
  position: fixed;
  bottom: 16px;
  width: 100%;
  text-align: center;
  padding-bottom: 38px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
  background: url(/assets/logos.svg);
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: center bottom;
  opacity: 0.4;
  user-select: none;
  z-index: -100;
}
@media (max-width: 600px) {
  #sticky-footer {
    background-size: 280px;
    padding-bottom: 24px;
  }
}
.chat-screen #sticky-footer {
  display: none;
}

#annas_critique {
  border: 1px solid grey;
  background: url(/assets/anni-1.png) no-repeat center;
  background-size: cover;
  border-radius: 100%;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 140px;
  height: 140px;
  max-width: 700px;
  padding: 10px;
}

.about-page .page-content .intro {
  margin-bottom: 60px;
}
.about-page .page-content h2 {
  margin-top: 60px;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgb(200, 200, 200);
  padding: 0 0 20px 0;
}
.about-page .page-content h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.about-page .page-content p {
  margin-top: 0px;
  line-height: 28px;
  color: #a4a4a4;
}
.about-page .page-content .feature-block {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}
.about-page .page-content .feature-block h3 {
  margin-top: 20px;
}
.about-page .page-content .feature-block.inverse {
  flex-direction: row-reverse;
}
.about-page .page-content .feature-block .img {
  border-radius: 20px;
  border: 1px solid rgb(215, 215, 215);
  padding: 4px;
}
.about-page .page-content .feature-block .img img {
  width: 380px;
  border-radius: 15px;
}
@media (max-width: 600px) {
  .about-page .page-content .feature-block {
    flex-direction: column-reverse;
    margin-bottom: 40px;
    text-align: center;
  }
  .about-page .page-content .feature-block.inverse {
    flex-direction: column-reverse;
  }
  .about-page .page-content .feature-block h2, .about-page .page-content .feature-block h3 {
    text-align: center;
  }
  .about-page .page-content .feature-block .img {
    border: none;
    text-align: center;
  }
  .about-page .page-content .feature-block .img img {
    width: 100%;
    max-width: 360px;
    border: 1px solid rgb(215, 215, 215);
  }
}

.page404 {
  text-align: center;
  padding-top: 60px;
  font-family: "ITC Souvenir Std", serif;
}
.page404 img {
  width: 100%;
  max-width: 400px;
}

.explore-page .explore-head {
  display: flex;
  gap: 60px;
  padding: 30px 40px 30px 30px;
  border-bottom: 1px dashed rgb(203, 203, 203);
  border: 1px solid rgb(210, 210, 210);
  border-radius: 10px;
  background-color: #fdfdfd;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.explore-page .look-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .details-open .explore-page .look-grid {
    animation: tileBounce_shrink 0.5s ease-out forwards;
  }
  .details-closed .explore-page .look-grid {
    animation: tileBounce_grow 0.5s ease-out forwards;
  }
}
@media (max-width: 600px) {
  .explore-page .look-grid {
    display: grid;
    grid-template-columns: repeat(3, calc(33.33% - 7px));
    gap: 10px;
  }
}

.explore-link {
  font-size: 16px;
  border: 1px solid grey;
  border-radius: 20px;
  padding: 4px 10px;
  display: inline-block;
  margin: 5px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.explore-link:hover {
  background: grey;
  color: white;
}
@media (max-width: 600px) {
  .explore-link {
    font-size: 14px;
    padding: 3px 6px;
  }
}

.more-like-this {
  text-align: right;
  margin-bottom: 16px;
  margin-top: 20px;
  border-top: 1px dashed #efefef;
}
.more-like-this a {
  text-decoration: none;
  border-radius: 20px;
  padding: 0px 25px 0px 15px;
  font-family: "Mulish", serif;
  font-size: 13px;
  background-image: url(/assets/feather/chevron-right.svg);
  background-repeat: no-repeat;
  background-position: center right 4px;
  background-size: 16px;
  opacity: 0.8;
  background-color: rgb(255, 255, 255);
  transition: all 0.4s ease;
  margin-top: -13px;
  display: block;
  width: 140px;
  right: 20px;
  position: absolute;
  border: 1px solid #e7e7e7;
  color: black;
  text-transform: uppercase;
}
.more-like-this a:hover {
  opacity: 1;
  background-color: #efefef;
}

#sidepanel-looks .look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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