

/* Sekcja 4  Typ sekcji Rejestracja LOT Widok Rejestracja LOT */

#section4 .hours-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  .row {
    justify-content: space-evenly;
    gap: .5rem;
  }
}

#section4 .hours-block {
  display: flex;
  flex-direction: column;
  border: 1px solid #C9CED6;
  border-radius: 8px;
  padding: 1rem 2rem;
  color: var(--lot-blue);
    cursor: pointer;

    &.not-available {
      color: gray; 
    }

  &:hover:not(.not-available) {
    opacity: 0.8;
  }

  &.selected {
    background: linear-gradient(90deg, #FFB23E, #FFEB82);
  }

  span {
    font-size: 14px;
    font-weight: 300;
  }

  .hours {
    font-size: 2rem;
    font-weight: 600;
  }
}

label {
  text-transform: uppercase;
  color: var(--lot-blue);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0;
    margin-left: 5px;

    .info {
      text-transform: initial;
    }
}

#section4 .info {
  font-weight: 300;
  font-size: 1rem;
  line-height: 24px;
  color: var(--lot-blue);
    }

input[type="text"], input[type="email"], input[type="number"] {
  border: 1px solid #CED4DA;
  border-radius: 4px;
  padding: 8px;
  height: 40px;

  &::placeholder {
    font-weight: 300;
    font-size: 1rem;
    line-height: 24px;
    color: #C5C2D0;
    margin-left: 5px;
  }
}

#section4 .form-group {
  margin-bottom: 2rem;
}

#btnSubmit, #spin-button {
  background-color: #C2131A;
  padding: 12px 24px;
  border-radius: 4px;
  height: 48px;
  color: white;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

input[type="radio"] {
  appearance: none; 
}

#registration_success > div {
  color: var(--lot-blue);
    font-weight: 300;
    font-size: 1.275rem;

    span{
      font-weight: 600;

      &:first-of-type {
        font-weight: 800;
        font-size: 2rem;
      }
    }
}


span.info small {
  font-size: 60%;
  line-height: 0;
}

