body {
  font-family: "Roboto", serif;
  background: #111;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00011c;
}

p {
  margin-bottom: 24px;
  line-height: 1.9;
}

label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #00011c;
}

/* TITLE */
#title-container {
  min-height: 460px;
  height: 100%;
  color: #fff;
  background-color: black;
  text-align: center;
  padding: 105px 28px 28px 28px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -webkit-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -moz-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
}

#title-container h2 {
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  padding: 0;
  margin-bottom: 0px;
}

#title-container h3 {
  font-size: 25px;
  font-weight: 600;
  color: #1d1d1d;
  padding: 0;
}

#title-container p {
  font-size: 13px;
  padding: 0 25px;
  line-height: 20px;
}

.logo-image {
  width: 214px;
  margin-bottom: 15px;
}

/* FORMS */
#qbox-container {
  background-color: white;
  overflow: hidden;
  position: relative;
  min-width: 370px;
  padding: 20px; /* New */
  border-radius: 10px; /* New */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* New */
  gap: 20px;
}
#qbox-container .logo-wrapper {
  background: #111;
  padding: 20px;
}

.step {
  display: none;
}
.step h4 {
  margin: 0 0 26px 0;
  padding: 0;
  position: relative;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

button.btn {
  width: 130px;
  color: white;
  background-color: #B07F2C;
  border-radius: 5px; /* New */
  padding: 12px 20px; /* New */
  font-size: 1rem; /* New */
  font-weight: bold; /* New */
  transition: background-color 0.3s, transform 0.2s; /* New */
}
button.btn:hover {
  background-color: #876222; /* New */
  transform: translateY(-2px); /* New */
  color: white;
}

.progress {
  border-radius: 0px !important;
}

.q__question {
  position: relative;
  padding: 20px; /* New */
  border-radius: 10px; /* New */
  background-color: #f9f9f9; /* New */
  margin-bottom: 20px; /* New */
}
.q__question :not(:last-child) {
  margin-bottom: 10px;
}

.radio-question {
  display: flex;
  align-items: center;
}

.question-input {
  display: none;
}
.question-input:checked + .question-label {
  background-color: #f0f0f0;
}

.question-label {
  position: relative;
  display: block;
  line-height: 25px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  background-color: #fff;
  padding: 10px 20px 10px 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.question-label:hover {
  border-color: #d9b069;
  background-color: #f0f0f0;
}
.question-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #ced4da;
  transition: all 0.3s ease-in-out;
}
.question-input:checked + .question-label:before {
  background-color: #B07F2C;
  box-shadow: 0 0 0 0;
}
.question-input:checked + .question-label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 10px;
  height: 5px;
  transform: translateY(-50%) rotate(-45deg);
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

input:focus {
  outline: none;
}

label.form-check-label.radio-lb {
  margin-right: 15px;
}

.form-check-input:focus,
input[type=radio]:hover {
  box-shadow: none;
  cursor: pointer !important;
}

#success {
  display: none;
}
#success h4 {
  color: #DC3545;
}

.back-link {
  font-weight: 700;
  color: #DC3545;
  text-decoration: none;
  font-size: 18px;
}
.back-link:hover {
  color: #82000a;
}

/*
Here starts the animation for sliding the questions left/right
 */
/* Define the animation for sliding left */
@keyframes slideLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Define the animation for sliding right */
@keyframes slideRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Apply the slideLeft animation */
.slide-left-enter {
  animation: slideLeft 0.5s forwards;
  position: absolute;
  width: 100%;
}

/* Apply the slideRight animation */
.slide-right-enter {
  animation: slideRight 0.5s forwards;
  position: absolute;
  width: 100%;
}

/* Hide elements for animation purposes */
.step {
  display: none;
}
.step.d-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.step .step-info {
  color: #8D8D8D;
  font-size: 12px;
  text-align: center;
  font-style: italic;
}

.drag-area {
  height: 400px;
  border: 3px dashed #e0eafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 10px auto;
  transition: border-color 0.3s, background-color 0.3s;
}
.drag-area .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.drag-area .text-container .info-text {
  text-align: center;
}
.drag-area .text-container .icon {
  font-size: 50px;
  color: #1683ff;
  transition: color 0.3s;
}
.drag-area .image-container {
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.drag-area .image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Maintain aspect ratio and fit within the container */
}
.drag-area .header {
  font-size: 20px;
  font-weight: 500;
  color: #34495e;
  transition: color 0.3s;
}
.drag-area:hover {
  border-color: #1683ff;
  background-color: #f0f8ff;
}
.drag-area:hover .icon {
  color: #0d6efd;
}
.drag-area:hover .header {
  color: #0d6efd;
}
.drag-area.drag-over {
  border-color: #0d6efd;
  background-color: #e0f7ff;
}
.drag-area.drag-over .icon {
  color: #0a58ca;
}
.drag-area.drag-over .header {
  color: #0a58ca;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  z-index: 1000; /* Ensure it's above other content */
  display: flex; /* Enable flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Spinner styling */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #B07F2C;
  animation: spin 1s ease infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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