.color-popup {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.picker-image-container {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  cursor: default;
}

.picker-image-container img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.spotlight {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid white;
  cursor: move;
  z-index: 10;
  transform: translate(-50%, -50%);
  pointer-events: all;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  transform: translate(-50%, -50%);
}

.spotlight::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background-image: url('/static/images/spoit.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media (max-width: 576px) {
  .picker-image-container {
    width: 100%;
  }
  .spotlight {
    width: 40px;
    height: 40px;
  }
  .spotlight::before {
    width: 10px;
    height: 10px;
  }
  .spotlight::after {
    width: 16px;
    height: 16px;
    top: 2px;
    right: 2px;
  }
}

.selected-colored-bg-title {
  font-family: 'Times New Roman';
  font-size: 14px;
  color: #343b41;
  text-align: center;
  margin-bottom: 5px;
}

.selected-colored-bg-subtitle {
  font-weight: 500;
  font-size: 14px;
  color: var(--Neutral-Black);
  text-align: center;
  margin-bottom: 10px;
}

.selected-colored-bg {
  height: 48px;
  width: 100%;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}

.selected-colored-bg-1 {
  background-image: url('../images/selected-colored-bg-1.png');
}
.selected-colored-bg-2 {
  background-image: url('../images/selected-colored-bg-2.png');
}
.selected-colored-bg-3 {
  background-image: url('../images/selected-colored-bg-3.png');
}

.selected-colored-backgrounds-title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

.selected-colored-background {
  height: 128px;
  width: 100%;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
}

.selected-colored-background-1 {
  background-image: url('/static/images/selected-colored-background-1.png');
}
.selected-colored-background-2 {
  background-image: url('/static/images/selected-colored-background-2.png');
}
.selected-colored-background-3 {
  background-image: url('/static/images/selected-colored-background-3.png');
}

.selected-colored-background.recommended {
  position: relative;
}

.selected-colored-background.recommended::after {
  position: absolute;
  content: '';
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 10px;
  display: block;
  top: -10px;
  left: -10px;
  border: 2px solid #8898a3;
}

.circle-down {
  position: absolute;
  left: 50%;
  top: calc(100% + 15px);
  transform: translateX(-50%);
}

.recipie {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
}

.recipie-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--Neutral-Black);
  text-align: center;
}

.combination-title {
  font-weight: 500;
  font-size: 16px;
}

.combination-sub {
  font-weight: 500;
  font-size: 12px;
  color: #ca6d69;
  margin-left: 10px;
}

.color-box {
  font-weight: 700;
  font-size: 16px;
}

.recipie-note {
  font-weight: 500;
  font-size: 11px;
  color: #963a3c;
  padding: 15px;
  background: #f2f2f2;
}

.ox-section-title {
  font-weight: 400;
  font-size: 20px;
  font-family: 'Times New Roman';
  text-align: center;
  color: #7f7f7f;
}

.ox-section-title-jps {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: var(--Neutral-Black);
}

.ox-section-sub {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--Neutral-Black);
}

.ox-table {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.ox-th {
  background: #d3dcdf;
  width: 50%;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.ox-th:first-child {
  border-right: 1px solid #fff;
}

.ox-td {
  width: 50%;
  background-color: white;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.ox-td:nth-child(2n + 1) {
  border-right: 1px solid #d3dcdf;
}

@media (max-width: 576px) {
  .selected-colored-background {
    height: 100px;
  }
  .selected-colored-bg {
    width: 48px;
    margin: 0 auto;
  }
}
.color-level-input-container {
  width: 80%;
  margin: 0 auto;
}

.color-level-input {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: white;
  margin: 0 auto;
  padding: 0 15px;
}

.color-level-input input {
  border: none;
  outline: 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--Neutral-Black);
}

.color-level-dropdown {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  left: 15px;
  top: 100%;
  width: 240px;
  display: none;
}

.color-level-drodown-item {
  padding: 5px 15px;
  border-bottom: 1px solid var(--Grey-100);
  cursor: pointer;
}

.color-level-drodown-item:last-child {
  border-bottom: none;
}

.pallet-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.palette {
  display: grid;
  grid-template-columns: repeat(8, calc(100% / 8));
  gap: 12px;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.color-name {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--Neutral-Black);
}

.color {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
}

.color-chart {
  font-size: 1.6rem;
}

.color-chart table {
  width: 96%;
  border-collapse: collapse;
  margin: 2%;
}

.color-chart th,
.color-chart td {
  margin: 4px auto;
  text-align: center;
  vertical-align: middle;
  height: 70px;
  font-weight: 700;
  width: 12.5%;
  box-sizing: border-box;
}

.color-chart th {
  font-size: 16px;
  height: 40px !important;
}

@media (min-width: 576px) {
  .color-chart th,
  .color-chart td {
    height: 50px;
  }
}

.color-chart .color-background {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 0;
}

.color-cell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 4px;
}

.overlay-image {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 12px;
  background-image: url(/static/images/overlay.png);
  background-size: contain;
  pointer-events: none;
}

.level-select {
  max-width: 500px;
  margin: 0 auto;
}

.form-select {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  background-color: white;
  font-size: 16px;
  border: 1px solid #fff;
}

@media (max-width: 400px) {
  .palette {
    width: 70%;
    gap: 10px;
  }
}
.step-title {
  font-family: 'Times New Roman';
  font-weight: 400;
  font-size: 20px;
  color: #7f7f7f;
  text-align: center;
}

.step-subtitle {
  font-family: 'Zen Kaku Gothic New';
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}

.step-desc {
  font-weight: 500;
  font-size: 16px;
  color: #4d4d4d;
  text-align: center;
}

.step-button {
  display: flex;
  align-items: center;
  padding: 0 15px;
  width: 80%;
  margin: 10px auto;
  height: 60px;
  background: #343b41;
  border-radius: 12px;
  color: white;
}

.step-button img {
  margin-right: 10px;
}

.step-button:hover {
  color: white;
}

@media (max-width: 576px) {
  .step-button {
    width: 100%;
  }
}
.selector-title {
  font-family: 'Times New Roman';
  font-weight: 400;
  font-size: 28px;
  color: var(--Neutral-Black);
  text-align: center;
}

.selector-subtitle {
  font-family: 'Times New Roman';
  color: var(--Neutral-Black);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.selector-btn {
  font-family: 'Times New Roman';
  font-weight: 400;
  font-size: 14px;
  width: 70%;
}

.color-display {
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-display-text {
  margin-right: 10px;
}

.color-display-box {
  width: 100px;
  height: 14px;
  border-radius: 12px;
}
.tone-frame-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 12px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0px 16px 16px 16px;
}
.tone-frame-active {
  color: #1a1a1a;
  background-color: var(--Grey-100);
  border-bottom: 2px solid #1a1a1a;
}
.tone-frame {
  display: flex;
  font-weight: 700;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  font-size: 14px;
  gap: 12px;
  position: relative;
  padding: 12px 0 12px 0;
  border-bottom: 2px solid #d3dcdf;
  z-index: 3;
  border-radius: 8px 8px 0 0;
}
