.info-text {
  color: #512972;
}

select option[value=""][disabled] {
  display: none;
}

.component-title {
  font-size: 13px;
  margin-bottom: 5px;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 105%;
  max-height: 250px;
  object-fit: contain;
}

.image-container div {
  font-weight: bold;
  color: white;
  position: absolute;
  font-size: 28px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
#wrapper {
  flex: 1;
  max-width: 640px;
}
.step {
  display: none;
  padding: 30px 30px 60px;
}
.step.active {
  display: block;
}
.step-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  /* sticky button 을 위한 스타일 */
  position: sticky;
  left: 0;
  bottom: 0;
  padding: 10px 0;
  backdrop-filter: blur(10px);
  /* sticky button 을 위한 스타일 */
}
.step-buttons button {
  flex: 1;
}
.image-container {
  overflow: hidden;
}
.btn-select {
  background-color: white;
  color: #222222;
  border: 1px solid #dddddd;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 7px;
  position: relative;
}
.btn-select.active {
  border-color: #512772;
}
.btn-select.active:before {
  content: "✔";
  color: #512772;
  left: 20px;
  position: absolute;
}
.btn-select > #price {
  display: none;
  font-size: 12px;
  color: #888888;
  padding: 5px 20px 0 40px;
  text-align: left;
}
.btn-select.active > #price {
  display: block;
}
.btn-select > #price > div:not(:first-child) {
  margin-top: 5px;
}
.info-text {
  white-space: pre-line;
  line-height: 1.5;
}
.hr {
  height: 7px;
  background-color: #efefef;
  margin-left: -20px;
  margin-right: -20px;
}
.hr-thin {
  height: 2px;
  background-color: #efefef;
  margin-left: -10px;
  margin-right: -10px;
}
.step-title-icon {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}
.step-title {
  font-weight: bold;
  font-size: 15px;
}
.step-icon {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
.step-subtitle {
  font-weight: 600;
}