@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlak-UltraLight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlak-Thin.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlak-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlakText-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlak-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlak-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlak-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlak-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/fonts/NeuePlak-ExtraBlack.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
h1 {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "NeuePlak", sans-serif;
  color: #2d2d2d;
  background-color: #f6f6f6;
}

img {
  display: block;
  max-width: 100%;
}

#site_wrapper {
  min-height: 100vh;
}

.page_container {
  padding: 0 1.2rem;
  margin: 0 auto;
}

/* --- Main container (Mobile First) --- */
.main-container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* --- Medium devices--- */
@media (min-width: 768px) {
  .main-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .main-container {
    max-width: 960px;
  }
}
#header_wrapper {
  padding: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #f6f6f6;
  margin-bottom: 30px;
}
#header_wrapper .header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-menu-icon {
  padding: 10px;
  border: unset;
  border-radius: 50%;
  color: #212121;
  z-index: 1;
  background: #e8e8e8;
  position: relative;
  font-weight: 1000;
  font-size: 17px;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  overflow: hidden;
}
.header-menu-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 15px;
  background-color: #ed2282;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}
.header-menu-icon:hover {
  color: #e8e8e8;
}
.header-menu-icon:hover svg {
  fill: #ffffff;
}
.header-menu-icon:hover::before {
  width: 100%;
}
.header-menu-icon svg {
  fill: #242424;
  width: 20px;
  height: 20px;
  transition: fill 250ms;
}

.header-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 6px 0 0 0;
}

.header-placeholder {
  width: 35px;
  height: 35px;
}

form {
  display: flex;
  flex-direction: column;
  width: 70%;
}
form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
form .form-group input {
  padding: 0.5rem;
  border-style: ridge;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #969696;
  transition: all 0.3s ease;
  font-size: 1em;
  font-weight: 400;
}
form .form-group input::placeholder {
  color: #969696;
  font-size: 1em;
}
form .form-group input:focus {
  border-color: #ed2282;
  outline: none;
}
form button {
  margin: 0 auto;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  background-color: #ed2282;
  color: #ffffff;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 50%;
  font-weight: 600;
}
form button:hover {
  background-color: #2D1345;
}

.action-btn {
  background-color: #2D1345;
  color: #fedae8;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.action-btn svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.action-btn:hover {
  background-color: #ed2282;
}
.action-btn:disabled {
  background-color: #9f9f9f;
  opacity: 0.6;
  cursor: not-allowed;
  color: #ffffff;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn--primary {
  background-color: #ed2282;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #2D1345;
  color: #ffffff;
}

.btn--secondary {
  background-color: #6c757d;
  color: #ffffff;
}
.btn--secondary:hover {
  background-color: #51585e;
}

.box-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2rem;
  background-color: #ffffff;
  gap: 5px;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0px 0px 11px -2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 11px -2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 11px -2px rgba(0, 0, 0, 0.1);
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  background-color: #ffffff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.side-menu.is-open {
  transform: translateX(0);
}

.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

body.menu-is-open {
  overflow: hidden;
}

.side-menu-list {
  list-style: none;
  padding: 2rem 0;
  margin: 0;
}
.side-menu-list li a {
  display: block;
  padding: 1rem 1.5rem;
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}
.side-menu-list li a:hover {
  background-color: #f0f0f0;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 20px;
  max-width: 600px;
  margin: auto;
}
.login-container img {
  max-width: 80px;
}

form .form-group input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 100px;
}

#index_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#index_wrapper h1 {
  font-size: 2em;
  font-weight: 600;
  color: #2d2d2d;
}

section h2 {
  font-size: 1.4em;
  font-weight: 600;
  color: #2D1345;
}
section p {
  font-size: 1em;
  font-weight: 400;
}
section .form-select {
  width: 100%;
  border-radius: 100px;
  background-color: #f6f6f6;
  border: none;
  height: 40px;
}
section .action-box {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.training {
  background-color: #d8d0e6;
}

.exam {
  background-color: #e9d7e7;
}

#exam_wrapper {
  max-width: 800px;
  margin: 0 auto;
}
#exam_wrapper .exam-header {
  background-color: #ffffff;
  margin: 2em auto;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background-color: #f6f6f6;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.progress-bar-container .progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #ed2282;
  transition: width 0.3s ease-in-out;
  border-radius: 4px;
}

.question-container h3 {
  font-size: 1.2em;
  font-weight: 500;
  margin: 0;
}

.options-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.option-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.option-card:hover {
  border-color: #ed2282;
}
.option-card.selected {
  border-color: #ed2282;
  background-color: #d8d0e6;
}
.option-card.selected .option-letter {
  border: 2px solid #ffffff;
  color: #2d2d2d;
}
.option-card.selected .option-text {
  color: #2d2d2d;
}

.option-letter {
  font-weight: 400;
  font-size: 0.9em;
  border: 2px solid #f6f6f6;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  color: #696969;
  background-color: #f6f6f6;
  transition: border-color 0.2s, color 0.2s;
  padding-top: 2px;
}
.option-letter.selected {
  border-color: #ed2282;
  color: #ed2282;
}

.option-text {
  margin: 0;
  margin-bottom: -2px;
  flex: 1;
  color: #696969;
  font-weight: 400;
}

.navigation-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
}
.navigation-container #prev-btn,
.navigation-container #next-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-weight: 400;
  font-size: 1em;
  border: none;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.navigation-container #prev-btn:hover,
.navigation-container #next-btn:hover {
  background: #2D1345;
}
.navigation-container #prev-btn {
  background-color: #242424;
  color: #ffffff;
}
.navigation-container #question-counter {
  font-weight: 500;
  color: #696969;
}
.navigation-container #next-btn {
  background-color: #ed2282;
}

#results_wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.results--pass {
  color: #1e8436;
}

.results--fail {
  color: #ae1625;
}

.score-text {
  font-size: 1.2rem;
  color: #2d2d2d;
}

.score-display {
  font-size: 3rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0;
}

.incorrect-answers-section {
  margin-bottom: 40px;
  text-align: left;
}
.incorrect-answers-section h3 {
  font-size: 1.2em;
  font-weight: 600;
}
.incorrect-answers-section .incorrect-answer-card {
  padding: 20px 0;
  border-bottom: 2px solid #dfdfdf;
}
.incorrect-answers-section .incorrect-answer-card .question-title {
  font-weight: 500;
  font-size: 1em;
  margin: 0;
}
.incorrect-answers-section .incorrect-answer-card .answer-line {
  margin: 8px 0;
  color: #969696;
}
.incorrect-answers-section .incorrect-answer-card .correct-answer {
  color: #1e8436;
}
.incorrect-answers-section a {
  margin-top: 30px;
}

#badges_wrapper {
  padding-bottom: 40px;
}
#badges_wrapper p {
  text-align: center;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.badge-card {
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0px 0px 11px -2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 11px -2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 11px -2px rgba(0, 0, 0, 0.1);
}
.badge-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 15px 10px 5px;
}
.badge-card .badge-card-content {
  padding: 8px 8px 10px;
  flex-grow: 1;
}
.badge-card .badge-card-content h5 {
  margin-top: 0;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
}
.badge-card .badge-card-content p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
}

.box-container.text-center.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5em;
}
.box-container.text-center.icon svg {
  width: 40px;
  height: 40px;
  border-radius: 20%;
}
.box-container.text-center.icon p {
  margin-bottom: 0.5rem;
}

#add-record_wrapper .box-container {
  text-align: center;
  margin-bottom: 40px;
}

#add-record-form {
  width: 100%;
  margin-top: 20px;
}
#add-record-form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
#add-record-form .form-group input, #add-record-form .form-group select, #add-record-form .form-group textarea {
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  font-size: 16px;
}
#add-record-form .form-group input:focus, #add-record-form .form-group select:focus, #add-record-form .form-group textarea:focus {
  border-color: #ed2282;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#add-record-form button {
  width: 70%;
}

#completionDate {
  margin: 0;
}

/*# sourceMappingURL=main.css.map */
