/* 2025.06.30 */
.regulations-item {
  display: none;
  display: block;
  padding: 20px;
  width: fit-content;
  margin: 0 auto;

  label.item-label {
    font-size: 13px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    background-color: #ddd;
    border-radius: 30px;
    padding: 5px 15px;
  }

  input[type="checkbox"] {
    display: flex;
    align-items: center;
    justify-content: center;

    &::before {
      content: "";
      display: inline-block;
      width: 2.5rem;
      height: 2.5rem;
      background-color: transparent;
      border: 1px solid #ddd;
      border-radius: 5px;
      background-color: #fff;
    }

    &:checked::before {
      content: "";
      background-image: url(../img/check-icon.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      fill: #fff;
    }
  }

  a {
    text-decoration: underline;
  }
}

.contact .item-label__span::before,
.contact .item-label__span::after {
  border-radius: 5px;
}

.contact .item-label__span::after {
  content: "";
  background-image: url(../img/check-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  fill: #fff;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-color: #fff;
  border: none;
  margin-right: 1rem;
}

.contact .item-label {
  gap: 0.5rem;
}

.main-header {
  &.hidden {
    display: none;
  }
}