/* ---------------------------------------------------------------------- */
/*  User Custom css
/* ---------------------------------------------------------------------- */
.step > li:nth-of-type(5)::before {
  content: "5";
}
.step > li:nth-of-type(6)::before {
  content: "6";
}
.step > li:nth-of-type(7)::before {
  content: "7";
}
.step > li:nth-of-type(8)::before {
  content: "8";
}
.cell-rowspan4 {
  grid-row: span 4;
}
.clickable-cell {
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}

.clickable-cell:hover {
  text-decoration: underline;
  color: #0d6efd; /* Bootstrap text-info와 유사한 색상 */
}

.autocomplete-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid #d4d4d4;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
}
.autocomplete-item {
  padding: 8px 12px;
  cursor: pointer;
}
.autocomplete-item:hover, .autocomplete-active {
  background-color: #e9e9e9;
}
.flex-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}
/* 선택된 업체 태그 스타일 */
.selected-company-tag {
  display: inline-flex;
  align-items: center;
  background-color: #e9ecef;
  border-radius: 16px;
  padding: 4px 12px;
  margin: 4px;
  font-size: 14px;
}

.selected-company-tag .remove-tag {
  margin-left: 8px;
  cursor: pointer;
  color: #6c757d;
}

.selected-company-tag .remove-tag:hover {
  color: #dc3545;
}

em:hover {
  cursor: pointer;
  color: #0056b3;
  text-decoration: underline;
}

.input-inner-group .form-control {
  padding-right: 2.5rem;
}
.input-inner-group .input-group-text {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0.5rem 0.75rem;
}
.input-inner-group .input-group-text [class^=ri-] {
  font-size: 1.25rem;
}
/* ---------------------------------------------------------------------- */
/*  Loading
/* ---------------------------------------------------------------------- */
.loading {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.loading.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-border {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  vertical-align: text-bottom;
  border: 0.25em solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
