.duration-picker__widget {
  position: relative;
  display: block;
  width: 100%;
}

.duration-picker__value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 0.08rem solid rgb(228 228 231);
  border-radius: 0.5rem;
  background: #fff;
  font: inherit;
  cursor: pointer;
  transition: border-color 120ms ease;
}

.duration-picker__value-row:hover {
  border-color: rgb(212 212 216);
}

.duration-picker__value {
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  color: rgb(82 82 91);
}

.duration-picker__value--empty {
  color: rgb(161 161 170);
  font-style: italic;
}

.duration-picker__pencil {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  color: rgb(24 24 27);
  opacity: 1;
}

.duration-picker__wheel {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 220px;
  padding: 0.75rem;
  background: #fff;
  border: 0.08rem solid rgb(228 228 231);
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.duration-picker__wheel--detached {
  position: fixed;
  top: auto;
  left: auto;
  z-index: 2147483000;
}

.duration-picker__wheel[hidden] {
  display: none;
}

.duration-picker__frame {
  position: relative;
  display: flex;
  height: 180px;
  border: 0.08rem solid rgb(228 228 231);
  border-radius: 0.5rem;
  background: #fff;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 28%, #000 72%, transparent 100%);
}

.duration-picker__highlight {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 36px;
  transform: translateY(-50%);
  border-top: 0.08rem solid rgb(245 158 11 / 0.4);
  border-bottom: 0.08rem solid rgb(245 158 11 / 0.4);
  background: rgb(245 158 11 / 0.08);
  pointer-events: none;
}

.duration-picker__cols {
  position: relative;
  display: flex;
  flex: 1;
}

.duration-picker__col {
  flex: 1;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-align: center;
  border-left: 0.08rem solid rgb(244 244 245);
  cursor: grab;
  touch-action: pan-y;
}

.duration-picker__col.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}

.duration-picker__col:first-child {
  border-left: none;
}

.duration-picker__col::-webkit-scrollbar {
  display: none;
}

.duration-picker__row {
  height: 36px;
  line-height: 36px;
  scroll-snap-align: center;
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  color: rgb(161 161 170);
  cursor: pointer;
  transition: color 120ms ease, font-weight 120ms ease;
}

.duration-picker__row.is-selected {
  color: rgb(24 24 27);
  font-weight: 600;
}

.duration-picker__labels {
  display: flex;
  justify-content: space-around;
  font-size: 0.7rem;
  color: rgb(161 161 170);
}

.duration-picker__confirm-btn {
  align-self: flex-end;
  border: none;
  cursor: pointer;
}


/*# sourceMappingURL=course_prognosis-435a1d5f.css.map*/