    :root {
  --brandColor: #007bff;
  --brandColor2: #2d9bff;
  --vh: 1vh;
}


.inner {
  width: 100%;
  padding: 0 1.6rem;
  margin: 0 auto;
}
.margin_top {
  margin-top: 5.6rem;
}

/* 회색바탕 체크박스 */
.checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.checkbox input[type="checkbox"] {
  width: 1.6rem;
  aspect-ratio: 1/1;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.checkbox i {
  display: block;
  width: 1.6rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: relative;
  background-color: #c1c1c1;
}

.checkbox label {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.042rem;
}

.checkbox input[type="checkbox"] + i::before {
    content: "";
    position: absolute;
    top: 0.25rem;
    left: 0.55rem;
    width: 0.45rem;
    height: 0.8rem;
    border: 0.14rem solid #fff;
    border-width: 0 0.14rem 0.14rem 0;
    transform: rotate(45deg);
}

.checkbox input[type="checkbox"]:checked + i {
  background: var(--brandColor);
}

/* 흰색바탕 체크박스 */
.checkbox_2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.checkbox_2 input[type="checkbox"] {
  width: 1.6rem;
  height: 1.6rem;
  aspect-ratio: 1/1;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.checkbox_2 i {
  display: block;
  width: 1.6rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: relative;
  background-color: #FFF;
  border: 1px solid #d5d5d5;
}

.checkbox_2 label {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.042rem;
}

.checkbox_2 input[type="checkbox"] + i::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.5rem;
    width: 0.5rem;
    height: 0.8rem;
    border: 0.14rem solid #d5d5d5;
    border-width: 0 0.14rem 0.14rem 0;
    transform: rotate(45deg);
}

.checkbox_2 input[type="checkbox"]:checked + i {
  background: var(--brandColor);
  border: 1px solid var(--brandColor);
}
/* 커스텀 셀렉트 */
.custom-select .select_text {
  cursor: default ;
  border: 0 !important;
  font-size: 1.4rem;
  letter-spacing: -0.054rem;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
}
.custom-select .selected .arrow {
  width: 1rem;
  transition: transform 0.3s;
  cursor: pointer;
}
.custom-select.active .selected {
  border: 1px solid var(--brandColor2);
}
.custom-select .selected.on {
  border: 1px solid var(--brandColor2) !important;
}
.custom-select .focus {
  border: 1px solid #df222c !important;
}
.custom-select.active .selected .arrow {
  transform: rotate(180deg);
}
.custom-select {
  width: 100%;
  position: relative;
  background: #fff;
}
.custom-select .selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  letter-spacing: -0.54px;
  border-radius: 0.5rem;
  border: solid 1px #d5d5d5;
  height: 5rem;
  cursor: pointer;
}
.custom-select .selected button {
  display: block;
  height: 100%;
  padding-right: 2rem;
}

.none_event {
  pointer-events: none;
  background: #fafafa;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.background_fff {
  background: #fff !important;
}
input[type="number"] {
  -moz-appearance: textfield;
}



.form-group p.impossible {
    color: var(--brandColor);
}

.form-group input.on {
  border: solid 1px var(--brandColor) !important;
}

.form-group input.focus {
  border: solid 1px #df222c !important;
}

.form-group p {
    color: #df222c;
    margin-top: 0.8rem;
    margin-left: 1.8rem;
    font-size: 1.2rem;
    letter-spacing: -0.048rem;
}
@keyframes blinkBadge {
  0%, 100% {
    background-color: #f2f7fc;
    color: var(--brandColor);
  }
  50% {
    background-color: var(--brandColor);
    color: #fff;
  }
}