.item-page h1 {
    display: none;
}

.lro-test {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

div.step[data-step="5"] .form-group  {
    margin-bottom:20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.options label {
    display: block;
    margin: 5px 0;
    font-weight: normal;
}

.next-btn, .finish-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    margin-left: 10px;
}

.next-btn:hover, .finish-btn:hover {
    background-color: #0056b3;
}

.points {
    font-size: 0.8em;
    color: #666;
}

.required {
    color: red;
}

.next-btn:disabled, .finish-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.feedback.incorrect {
    margin-top: 10px;
    color: red;
}   
.feedback.correct {
    margin-top: 10px;
    color: green;
}

.loader-container {
    /* display: none; */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
    position: fixed; /* Fixed position to overlay */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    background: rgba(255, 255, 255, 0.8); /* Optional: Semi-transparent background */
    z-index: 1000; /* Ensure it appears above other content */
}

#video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

#video-container iframe,
#video-container video {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 480px) {
    div.step[data-step="3"] input[type="checkbox"] {
      display: inline;
      margin: inherit;
    }
  }

  @media (max-width: 767px) {
    div.step[data-step="3"] input[type="checkbox"] {
      display: inline;
      margin: inherit;
    }
  }