.size-measure {
  font-size: 16px;
  color: #6a6c6f;
  cursor: pointer;
}

.size-selected-measure {
  font-size: 16px;
  text-decoration: underline;
  color: #0081B9;
}

.calc-title {
  text-align: center;
  font-size: 54px;
  line-height: 60px;
  margin-bottom: 48px;
}

.calc-warning-box {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 8px;
  background: #ffe6ec;
}

.calc-warning-title {
  color: #0081B9;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
}

.calc-warning-body {
  color: #0081B9;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.accordion-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-collapse-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#base-container {
  display: flex;
  flex-direction: column-reverse;
}

.image-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.step-container {
}

.calc-step-index {
  font-size: 12px;
  font-weight: 500;
  color: #0081B9;
  letter-spacing: 1px;
}

.calc-step-title {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
}

.calc-step-subtitle {
  font-size: 14px;
  margin-top: 18px;
}

.calc-radio {
  padding: 12px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #d1d2d3;
  margin-top: 12px;
  display: flex;
  align-items: center;
}

.calc-radio span {
  margin-left: 4px;
  font-size: 14px;
}

.calc-radio input {
  accent-color: #0081B9;
}

.calc-btn-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 32px;
}

.calc-back-button {
  padding: 16px;
  flex-shrink: 0;
  color: #6A6C6F;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}

.calc-back-button:disabled {
  opacity: 50%;
}

.calc-back-button[disabled]:hover {
  cursor: not-allowed;
}

.calc-back-button svg {
  transform: rotate(180deg);
}

.calc-main-button {
  flex-grow: 1;
  padding: 16px;
  border-radius: 8px;
  color: white;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  background-color: #0081B9;
  flex-grow: 1;
  font-size: 15px;
  font-weight: 500;
}

.calc-main-button:hover {
  background-color: #0081B9;
}

.calc-main-button[disabled]:hover {
  cursor: not-allowed;
}

.calc-main-button:disabled {
  background-color: #AFB0B1;
  color: #6A6C6F;
}

.silhouettes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.person-container {
  height: 200px;
  margin-bottom: 10px;
}

.custom-accordion {
  border-radius: 8px;
  background-color: #F4F4F4;
  padding: 0 16px;
}

.calc-result-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.calc-result-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  flex-grow: 1;
  gap: 8px;
}

.calc-result-item {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  background: #f4f4f4;
  overflow: hidden;
}

.calc-result-item image {
  width: 100%;
  aspect-ratio: auto;
}

.result-item-size {
  display: flex;
  padding: 40px 24px 48px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.result-title {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.result-size {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #0081B9;
}

.result-info {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.44px;
  color: #6a6c6f;
}

.calc-sm-reverse {
  grid-row-start: 1;
}

@media only screen and (min-width: 768px) {
  #base-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }

  .calc-result-container {
    flex-direction: row;
  }

  .image-container {
    width: 309px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-container {
    flex-grow: 1;
  }

  .person-container {
    height: 370px;
    margin-bottom: 0px;
  }

  .calc-main-button {
    flex-grow: 0;
  }

  .calc-sm-reverse {
    grid-row-start: auto;
  }
}

.hidden {
  display: none !important;
}
