.slick-carousel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.base--baseimage {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  top: 44px;
  bottom: 0;
  width: 232px;
  height: 380px;
}

.slick-carousel-container .slick-slider {
  flex: 1;
  min-height: 320px;
}

.slick-carousel-container .slick-track {
  height: 100%;
  display: flex;
  align-items: center;
}

.slick-carousel-container .slick-list {
  height: 100%;
  background: transparent;
  overflow: hidden;
  margin: 0 auto;
  width: 100% !important;
}

.slick-carousel-container .slick-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 232px !important;
  min-width: 232px !important;
  max-width: 232px !important;
}

.slick-carousel-container .carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin: 0;

  box-sizing: border-box;

  opacity: 0.7;

  height: 424px !important;
  min-height: 424px !important;
  max-height: 424px !important;

  transition:
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    min-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.slick-carousel-container .slick-active .carousel-item,
.slick-carousel-container .slick-center .carousel-item,
.slick-carousel-container .slick-current.slick-active .carousel-item {
  opacity: 1 !important;

  width: 232px !important;
  min-width: 232px !important;
  max-width: 232px !important;
}

.item-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 16px;
  visibility: hidden;
}

.carousel-item.selected .item-content {
  visibility: visible;
}

.item-content h3 {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

.item-content p {
  color: #8d8d8d;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 0;
}

.item-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: scale(0.5) translateY(-2rem);
}

.slick-current .item-image img {
  transform: scale(1) translateY(0);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.carousel-btn:hover {
  background: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn:disabled:hover {
  background: #ffffff;
  color: #6b7280;
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-item:focus,
.carousel-btn:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.slick-carousel-container .slick-prev,
.slick-carousel-container .slick-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #141415;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
  top: 60%;
  position: absolute;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 990px) {
  .slick-carousel-container .slick-prev,
  .slick-carousel-container .slick-next {
    display: none !important;
  }
}

.slick-carousel-container .slick-prev:before,
.slick-carousel-container .slick-next:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12' fill='none'%3E%3Cpath d='M4.6 6L0 1.4L1.4 0L7.4 6L1.4 12L0 10.6L4.6 6Z' fill='%23141415'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
}

.slick-carousel-container .slick-prev {
  left: 0px;
}

.slick-carousel-container .slick-prev:before {
  transform: scaleX(-1);
}

.slick-carousel-container .slick-next {
  right: 0px;
}

.slick-carousel-container .slick-next:before {
  transform: none;
}

.slick-carousel-container .slick-prev:hover,
.slick-carousel-container .slick-next:hover {
  background: #ffffff;
  border-color: #141415;
  opacity: 1;
}

.slick-carousel-container .slick-prev:focus,
.slick-carousel-container .slick-next:focus {
  outline: none;
}

.slick-carousel-container .slick-prev.slick-disabled,
.slick-carousel-container .slick-next.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.stepper-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-image: url('https://firebasestorage.googleapis.com/v0/b/kaotica-manager.appspot.com/o/shared-files%2F3bd278c7-3660-4703-bb33-ddef3fabc064-background.png?alt=media');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: calc(100vh - 70px);
  max-height: 754px;
  min-height: 424px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 990px) {
  .stepper-container {
    height: 100%;
  }
}

.stepper-step {
  display: none;
  animation: fadeIn 0.3s ease;
  padding: 0;
  margin: 0;
  height: 100%;
  flex-direction: column;
}

.stepper-step.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  text-align: center;
  margin: 38px 0 32px 0;
}

@media (min-width: 990px) {
  .step-header {
    margin-top: 64px;
  }
}

.step-header h2 {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 8px 0;
  padding: 0;
}

.step-header span {
  color: #8d8d8d;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}

.step-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
}

.ktc-stepper-btn-back {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #141415;
  background: #ffffff;
  color: #141415;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  padding: 0;
}

.ktc-stepper-btn-back:hover {
  background: #141415;
  color: #ffffff;
}

.ktc-stepper-btn-select {
  height: 60px;
  border-radius: 35px;
  border: 3px solid #141415;
  background: #ffffff;
  color: #141415;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  font-family: Manrope;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  min-width: auto;
  width: auto;
}

.ktc-stepper-btn-reverse {
  background: #141415;
  color: #ffffff;
}

.ktc-stepper-btn-select:hover {
  background: #141415;
  color: #ffffff;
}

.ktc-stepper-btn-reverse:hover {
  background: #ffffff;
  color: #141415;
}

.dropdown-container {
  position: relative;
  max-width: 280px;
  margin: 16px auto;
}

.dropdown-clear-btn {
  position: absolute;
  right: 10px;
  top: 18px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.microphone-dropdown {
  width: 100%;
  height: 60px;
  padding: 0 24px;
  border: 3px solid #141415;
  border-radius: 35px;
  font-family: Manrope;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease;
  color: #141415;
  text-align: center;
}

.microphone-dropdown:focus {
  outline: none;
  border-color: #141415;
}

.microphone-dropdown.dropdown-open {
  border-radius: 35px 35px 0 0;
}

.microphone-dropdown::placeholder {
  color: #8d8d8d;
  font-weight: 600;
}

.microphone-dropdown-list {
  position: absolute;
  top: calc(100% - 3px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 3px solid #141415;
  border-top: none;
  border-radius: 0 0 35px 35px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.microphone-dropdown-item {
  padding: 4px;
  font-family: Manrope;
  font-size: 16px;
  line-height: 20px;
  color: #141415;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f3f4f6;
}

.microphone-dropdown-item:hover {
  background-color: #141415;
  color: #ffffff;
}

.microphone-dropdown-item:last-child {
  border-bottom: none;
}
.step-thermometer {
  position: absolute;
  left: 0;
  top: 2.5rem;
  z-index: 10;
  width: 3rem;
  pointer-events: none;
  --thermometer-mobile-offset: 0px;
  transition: transform 0.4s ease-in-out;
  transform: translateY(var(--thermometer-mobile-offset, 0px));
}

.thermometer-step {
  position: relative;
  margin-bottom: 12px;
  height: 28px;
}

.thermometer-step::before {
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  top: 14px;
}

.thermometer-step.thermometer-step--middle::before {
  width: 4px;
}

.thermometer-step.active::before {
  background: #000000;
  width: 9px;
}

.thermometer-step::after {
  content: '';
  position: absolute;
  left: 38px;
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, #000000 0%, #ffffff 100%);
  top: 14px;
  display: none;
}

.thermometer-step.active::after {
  display: block;
}

.thermometer-step .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.thermometer-step.active .step-number {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 61.875rem) {
  .step-thermometer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    margin: 0;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateX(calc(-50% + var(--thermometer-desktop-offset, 0px)));
    pointer-events: none;
    width: 30rem;
  }

  .thermometer-step {
    flex: 1;
    margin: 0;
    text-align: center;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .thermometer-step::before {
    content: '';
    display: block;
    width: 2px;
    height: 12px;
    background: rgba(0, 0, 0, 0.5);
    transition:
      height 0.2s ease,
      background 0.2s ease;
    top: -16px;
    left: calc(50% - 1px);
  }

  .thermometer-step.active::before {
    height: 18px;
    width: 2px;
    background: #000000;
  }

  .thermometer-step.thermometer-step--middle::before {
    width: 2px;
    height: 8px;
  }

  .thermometer-step::after {
    content: none;
  }

  .thermometer-step .step-number {
    font-size: 20px;
    font-weight: 500;
    color: #00000080;
    line-height: 1;
  }

  .thermometer-step.active .step-number {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
  }

  .thermometer-step.active::after {
    content: '';
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.01) 100%);
    flex-shrink: 0;
    left: calc(50% - 1px);
    top: 24px;
  }
}

#loader-wrapper {
  background: #ffffff none no-repeat scroll center center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: auto;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  left: 50%;
  margin-left: -40px;
  top: 50%;
  margin-top: -40px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.step3-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 1rem;
}

.step3-tab-btn {
  width: 5.0625rem;
  height: 4.125rem;
  border: 0.1875rem solid #141415;
  border-radius: 35px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.step3-tab-btn:hover,
.step3-tab-btn.active {
  background: #141415;
  border-color: #141415;
}

.step3-tab-btn:hover *,
.step3-tab-btn.active * {
  fill: #ffffff;
}

.step3-tab-content {
  display: none;
  min-height: 20rem;
}

.step3-tab-content.active {
  display: block;
}

.stepper-step[data-step="3"] .step-content {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  height: 100%;
}

.stepper-step[data-step="3"] .step3-tab-content {
  flex: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  min-height: 20rem;
}

.stepper-step[data-step="3"] .step3-tab-content.active {
  display: flex;
}

.stepper-step[data-step="3"] .step-actions.step-actions--hidden {
  display: none;
}

.send-photo-content {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

.send-photo-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #141415;
}

.send-photo-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: #141415;
}

.ktc-stepper-btn-send-photo {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: #141415;
  color: #ffffff;
  border: 0.1875rem solid #141415;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ktc-stepper-btn-send-photo:hover {
  background: #ffffff;
  color: #141415;
}