@charset "UTF-8";
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
}

input[type=number]::-webkit-outer-spin-button,
    input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
}

.text-center {
  text-align: center;
}

.w-50 {
  width: 50%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

#app-processing-container {
  margin: 150px auto;
  width: 350px;
  height: auto;
  padding: 35px 20px;
  text-align: center;
  color: #000000;
  background-color: #F9F9F9;
  border-radius: 8px;
  opacity: 1;
  transition: opacity 1s ease-out;
}
#app-processing-container h1 {
  font-size: 24.5px;
  color: #000000;
  margin-bottom: 20px;
}
#app-processing-container #app-loading-checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
#app-processing-container #app-loading-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  position: relative;
}
#app-processing-container #app-loading-checklist li:last-child {
  margin-bottom: 0;
}
#app-processing-container .app-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 2px solid #e1e1e1; /* Initial grey border */
  border-radius: 6px;
  background-color: #ffffff; /* Initial white background */
  cursor: not-allowed;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
  /* Greyed-out tick when unchecked */
  /* When the checkbox is checked */
  /* Animation for transitioning the checkmark */
}
#app-processing-container .app-checkbox::before {
  content: "✓";
  font-size: 16px;
  color: rgba(0, 0, 0, 0.2); /* Greyed-out checkmark */
  position: absolute;
  left: 2.5px;
  bottom: -2px;
  opacity: 1; /* Make the faded check visible */
}
#app-processing-container .app-checkbox:checked {
  background-color: #0a31bb; /* Blue fill when checked */
  border-color: #0a31bb;
}
#app-processing-container .app-checkbox:checked::before {
  color: #F9f9f9; /* White checkmark when checked */
  opacity: 1;
}
#app-processing-container .app-checkbox:checked::before {
  animation: fillCheck 0.5s forwards;
}
#app-processing-container label {
  font-size: 16px;
  color: #000000;
  position: relative;
  padding-left: 3.1px;
}

/* Keyframes for filling the checkmark */
@keyframes fillCheck {
  from {
    color: rgba(0, 0, 0, 0.2); /* Start greyed out */
  }
  to {
    color: #f9f9f9; /* Fill with white */
  }
}
#vehicle-question {
  margin: 150px auto;
  width: 350px;
  padding: 35px 20px;
  text-align: center;
  color: #000000;
  background-color: #F9F9F9;
  border-radius: 8px;
  opacity: 1;
  transition: opacity 1s ease-out;
}
#vehicle-question h1 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 10px;
}
#vehicle-question h6 {
  font-size: 16px;
  margin-bottom: 30px;
}
#vehicle-question button {
  width: 100px;
  height: 35px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-right: 10px;
  background-color: #F9F9F9;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#vehicle-question button.btn-success {
  background-color: #f9f9f9;
}
#vehicle-question button.btn-danger {
  background-color: #f9f9f9;
}
#vehicle-question button:hover {
  background-color: #0a31bb;
  color: #FFFFFF;
  border-color: #e1e1e1;
}

:root {
  --box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32), 0px 0px 2px rgba(0, 0, 0, 0.08),
    0px 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 0 1px rgba(0, 0, 0, 0.32), 0 0 3px rgba(0, 0, 0, 0.11),
    0 1px 4px rgba(0, 0, 0, 0.12);
  --primary-font-size: 16px;
  --secondary-font-size: 10px;
  --primary-color: #000000;
  --primary-radius: 6px;
  --button-bg: rgb(65, 67, 71);
  --button-text-color: #ffffff;
  --light-gray: #e1e1e1;
  --remove-btn-color: #8b8f93;
  --remove-btn-hover: #166ee1;
  --desktop-font-size: 18px;
  --large-font-size: 20px;
}

#applicationForm {
  height: 100%;
}
#applicationForm .create-container {
  height: 100%;
  padding: 20px 80px !important;
}
#applicationForm .create-container .details-header {
  width: 100%;
  margin-bottom: 0px;
  margin-top: 30px;
}
#applicationForm .create-container .account-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
#applicationForm .create-container .account-content .personal-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#applicationForm .create-container .account-content .personal-info h4 {
  margin-bottom: 6px;
}
#applicationForm .create-container .account-content .personal-info h4 .star {
  color: red;
  padding-left: 4px;
}
#applicationForm .create-container .account-content .personal-info #auto_account {
  display: none;
  top: 100%;
  width: 98%;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 8px 4px;
  border: none;
  box-shadow: var(--box-shadow);
  font-size: var(--primary-font-size);
}
#applicationForm .create-container .account-content .personal-info input,
#applicationForm .create-container .account-content .personal-info select {
  padding: 8px 4px;
  border-radius: var(--primary-radius);
  border: none;
  box-shadow: var(--box-shadow);
  font-size: var(--primary-font-size);
}
#applicationForm .create-container .account-content .personal-info input:hover,
#applicationForm .create-container .account-content .personal-info select:hover {
  box-shadow: var(--shadow-hover);
}
#applicationForm .create-container .info-content {
  margin: 35px 0px;
}
#applicationForm .create-container .info-content h1 {
  margin-bottom: 0px;
  margin-top: 30px;
}
#applicationForm .create-container .info-content h2 {
  margin-bottom: 0px;
}
#applicationForm .create-container .info-content .customer-description {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
#applicationForm .create-container .info-content .customer-description .personal-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#applicationForm .create-container .info-content .customer-description .personal-info h4 {
  margin-bottom: 6px;
}
#applicationForm .create-container .info-content .customer-description .personal-info h4 .star {
  color: red;
  padding-left: 4px;
}
#applicationForm .create-container .info-content .customer-description .personal-info input,
#applicationForm .create-container .info-content .customer-description .personal-info select {
  padding: 8px 4px;
  border-radius: var(--primary-radius);
  border: none;
  box-shadow: var(--box-shadow);
  font-size: var(--primary-font-size);
}
#applicationForm .create-container .info-content .customer-description .personal-info input:hover,
#applicationForm .create-container .info-content .customer-description .personal-info select:hover {
  box-shadow: var(--shadow-hover);
}
#applicationForm .create-container .info-content .customer-description .empty-field {
  visibility: hidden;
}
#applicationForm .create-container .info-content .customer-contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
#applicationForm .create-container .info-content .customer-contact .contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#applicationForm .create-container .info-content .customer-contact .contact-info h4 {
  margin-bottom: 6px;
}
#applicationForm .create-container .info-content .customer-contact .contact-info h4 .star {
  color: red;
  padding-left: 4px;
}
#applicationForm .create-container .info-content .customer-contact .contact-info input,
#applicationForm .create-container .info-content .customer-contact .contact-info select {
  padding: 8px 4px;
  border-radius: var(--primary-radius);
  border: none;
  box-shadow: var(--box-shadow);
  font-size: var(--primary-font-size);
}
#applicationForm .create-container .info-content .customer-contact .contact-info input:hover,
#applicationForm .create-container .info-content .customer-contact .contact-info select:hover {
  box-shadow: var(--shadow-hover);
}
#applicationForm .create-container .submit-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  padding: 20px 0px;
}
#applicationForm .create-container .submit-container .removeBtn button {
  font-size: var(--primary-font-size);
  border-radius: var(--primary-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 8px;
  color: var(--remove-btn-color);
  background-color: transparent;
  font-weight: 500;
  cursor: pointer;
}
#applicationForm .create-container .submit-container .removeBtn button:hover {
  box-shadow: var(--shadow-hover);
}
#applicationForm .create-container .submit-container .removeBtn button .ph.ph-arrow-counter-clockwise {
  color: var(--remove-btn-hover);
  font-size: var(--primary-font-size);
  padding-right: 10px;
}
#applicationForm .create-container .submit-container .subBtn button {
  font-size: var(--primary-font-size);
  border-radius: var(--primary-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 8px;
  color: #ffffff;
  background-color: #414347;
  font-weight: 500;
  cursor: pointer;
}
#applicationForm .create-container .submit-container .subBtn button:hover {
  box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
  #vehicle-question {
    width: 90%;
    padding: 25px;
  }
  #vehicle-question h1 {
    font-size: 20px;
  }
  #vehicle-question h6 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  #vehicle-question button {
    width: 80px;
    height: 30px;
    font-size: 14px;
  }
  #processing-message {
    height: auto;
    padding: 15px;
    margin: 150px 0px 0px 0px;
  }
  #processing-message h1 {
    font-size: 20px;
  }
  #processing-message h6 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #vehicle-question {
    margin: 100px auto;
    padding: 15px;
  }
  #vehicle-question h1 {
    font-size: 18px;
  }
  #vehicle-question h6 {
    font-size: 12px;
    margin-bottom: 15px;
  }
  #vehicle-question button {
    width: 70px;
    height: 28px;
    font-size: 12px;
  }
  #app-processing-container {
    width: 90%;
    padding: 20px;
  }
  #app-processing-container h1 {
    font-size: 20px;
  }
  #app-processing-container #app-loading-checklist li {
    margin-bottom: 15px;
    font-size: 14px;
  }
  #app-processing-container .app-checkbox {
    width: 18px;
    height: 18px;
  }
  #app-processing-container label {
    font-size: 14px;
  }
  #applicationForm .create-container {
    padding: 0 80px !important;
  }
}
@media (max-width: 480px) {
  #app-processing-container {
    margin: 100px auto;
    padding: 15px;
  }
  #app-processing-container h1 {
    font-size: 18px;
  }
  #app-processing-container #app-loading-checklist li {
    margin-bottom: 10px;
    font-size: 12px;
  }
  #app-processing-container .app-checkbox {
    width: 16px;
    height: 16px;
  }
  #app-processing-container label {
    font-size: 12px;
  }
  #applicationForm .create-container {
    padding: 10px 20px !important;
  }
  #applicationForm .create-container .details-header h1 {
    font-size: 30px;
  }
  #applicationForm .create-container .account-content {
    gap: 10px !important;
  }
  #applicationForm .create-container .account-content .personal-info {
    font-size: var(--secondary-font-size);
  }
  #applicationForm .create-container .account-content .personal-info #auto_account {
    font-size: var(--secondary-font-size);
  }
  #applicationForm .create-container .account-content .personal-info input,
  #applicationForm .create-container .account-content .personal-info select {
    width: 100%;
    height: 100%;
    font-size: var(--secondary-font-size);
    padding: 4px 1px;
  }
  #applicationForm .create-container .info-content {
    text-wrap: nowrap;
    margin: 20px 0px;
  }
  #applicationForm .create-container .info-content h2 {
    font-size: var(--desktop-font-size);
  }
  #applicationForm .create-container .info-content .customer-description {
    gap: 10px !important;
  }
  #applicationForm .create-container .info-content .customer-description .personal-info {
    font-size: var(--secondary-font-size);
  }
  #applicationForm .create-container .info-content .customer-description .personal-info input,
  #applicationForm .create-container .info-content .customer-description .personal-info select {
    width: 100%;
    height: 100%;
    font-size: var(--secondary-font-size);
    padding: 4px 1px;
  }
  #applicationForm .create-container .info-content .customer-contact {
    gap: 10px !important;
  }
  #applicationForm .create-container .info-content .customer-contact .contact-info {
    font-size: var(--secondary-font-size);
  }
  #applicationForm .create-container .info-content .customer-contact .contact-info input,
  #applicationForm .create-container .info-content .customer-contact .contact-info select {
    width: 100%;
    height: 100%;
    font-size: var(--secondary-font-size);
    padding: 4px 1px;
  }
  #applicationForm .create-container .submit-container {
    margin: 15px 0px;
    padding: 20px 8px;
  }
  #applicationForm .create-container .submit-container .removeBtn button {
    height: 26px;
    font-size: var(--secondary-font-size);
  }
  #applicationForm .create-container .submit-container .removeBtn button .ph.ph-arrow-counter-clockwise {
    font-size: var(--secondary-font-size);
  }
  #applicationForm .create-container .submit-container .subBtn button {
    height: 26px;
    font-size: var(--secondary-font-size);
  }
}
#applicationForm .create-container {
  height: 100%;
  padding: 20px 80px;
}

#applicationForm .create-container .info-content .customer-description {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 8px;
}

#applicationForm .create-container .account-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 8px;
}

#applicationForm .create-container .info-content .customer-description .personal-info h4 {
  margin-top: 16px;
  margin-bottom: 6px;
}

#applicationForm .create-container .info-content .customer-contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 8px;
}

#applicationForm .create-container .info-content .customer-contact .contact-info h4 {
  margin-top: 16px;
  margin-bottom: 6px;
}
/*# sourceMappingURL=style.css.map */
