/*** Common Styles Start ***/

/* =========================
   FONT SIZE CLASSES
========================= */

.fs-1 {
    font-size: 2.5rem !important;
}

.fs-2 {
    font-size: 2rem !important;
}

.fs-3 {
    font-size: 1.75rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.font-xs {
    font-size: 0.75rem !important;
}

.font-sm {
    font-size: 0.875rem !important;
}

.font-md {
    font-size: 1rem !important;
}

.font-lg {
    font-size: 1.25rem !important;
}

.font-xl {
    font-size: 1.5rem !important;
}

.font-xxl {
    font-size: 2rem !important;
}

/* =========================
   FONT WEIGHT CLASSES
========================= */

.fw-light {
    font-weight: 300 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: 800 !important;
}

/* =========================
   TEXT ALIGNMENT
========================= */

.text-start {
    text-align: left !important;
}

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

.text-end {
    text-align: right !important;
}

/* =========================
   TEXT TRANSFORM
========================= */

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

/* =========================
   TEXT DECORATION
========================= */

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

/* =========================
   WIDTH CLASSES
========================= */

.w-auto {
    width: auto !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

/* Fixed Width */

.width-xs {
    width: 100px !important;
}

.width-sm {
    width: 200px !important;
}

.width-md {
    width: 300px !important;
}

.width-lg {
    width: 400px !important;
}

.width-xl {
    width: 500px !important;
}

/* Max Width */

.max-w-100 {
    max-width: 100% !important;
}

.max-w-screen {
    max-width: 100vw !important;
}

/* Min Width */

.min-w-100 {
    min-width: 100% !important;
}

/* =========================
   HEIGHT CLASSES
========================= */

.h-auto {
    height: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

/* Fixed Height */

.height-xs {
    height: 100px !important;
}

.height-sm {
    height: 200px !important;
}

.height-md {
    height: 300px !important;
}

.height-lg {
    height: 400px !important;
}

.height-xl {
    height: 500px !important;
}

/* Max Height */

.max-h-100 {
    max-height: 100% !important;
}

.max-h-screen {
    max-height: 100vh !important;
}

/* Min Height */

.min-h-100 {
    min-height: 100% !important;
}

/* =========================
   SIZE CLASSES
========================= */

.size-25 {
    width: 25% !important;
    height: 25% !important;
}

.size-50 {
    width: 50% !important;
    height: 50% !important;
}

.size-75 {
    width: 75% !important;
    height: 75% !important;
}

.size-100 {
    width: 100% !important;
    height: 100% !important;
}

/* Fixed Square Sizes */

.square-sm {
    width: 100px !important;
    height: 100px !important;
}

.square-md {
    width: 200px !important;
    height: 200px !important;
}

.square-lg {
    width: 300px !important;
    height: 300px !important;
}

/* =========================
   MARGIN UTILITIES
========================= */

/* All sides */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

/* Top */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* Bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Left */
.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.ml-5 {
    margin-left: 3rem !important;
}

/* Right */
.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.mr-5 {
    margin-right: 3rem !important;
}

/* Left & Right */
.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

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

/* Top & Bottom */
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* =========================
   PADDING UTILITIES
========================= */

/* All sides */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

/* Top */
.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

/* Bottom */
.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

/* Left */
.pl-0 {
    padding-left: 0 !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.pl-4 {
    padding-left: 1.5rem !important;
}

.pl-5 {
    padding-left: 3rem !important;
}

/* Right */
.pr-0 {
    padding-right: 0 !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

.pr-4 {
    padding-right: 1.5rem !important;
}

.pr-5 {
    padding-right: 3rem !important;
}

/* Left & Right */
.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

/* Top & Bottom */
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* =========================
   TEXT COLOR CLASSES
========================= */

.text-blue {
    color: #007bff !important;
}

.text-indigo {
    color: #6610f2 !important;
}

.text-purple {
    color: #6f42c1 !important;
}

.text-pink {
    color: #e83e8c !important;
}

.text-red {
    color: #dc3545 !important;
}

.text-orange {
    color: #fd7e14 !important;
}

.text-yellow {
    color: #ffc107 !important;
}

.text-green {
    color: #28a745 !important;
}

.text-teal {
    color: #20c997 !important;
}

.text-cyan {
    color: #17a2b8 !important;
}

.text-white {
    color: #fff !important;
}

.text-gray {
    color: #6c757d !important;
}

.text-gray-dark {
    color: #343a40 !important;
}

.text-primary {
    color: #007bff !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-success {
    color: #28a745 !important;
}

.text-info {
    color: #17a2b8 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-light {
    color: #f8f9fa !important;
}

.text-dark {
    color: #343a40 !important;
}

/* =========================
   BACKGROUND COLOR CLASSES
========================= */

.bg-blue {
    background-color: #007bff !important;
}

.bg-indigo {
    background-color: #6610f2 !important;
}

.bg-purple {
    background-color: #6f42c1 !important;
}

.bg-pink {
    background-color: #e83e8c !important;
}

.bg-red {
    background-color: #dc3545 !important;
}

.bg-orange {
    background-color: #fd7e14 !important;
}

.bg-yellow {
    background-color: #ffc107 !important;
}

.bg-green {
    background-color: #28a745 !important;
}

.bg-teal {
    background-color: #20c997 !important;
}

.bg-cyan {
    background-color: #17a2b8 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-gray {
    background-color: #6c757d !important;
}

.bg-gray-dark {
    background-color: #343a40 !important;
}

.bg-primary {
    background-color: #007bff !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

.bg-transparent {
    background: transparent !important;
}

/* =========================
   BORDER COLOR CLASSES
========================= */

.border-blue {
    border-color: #007bff !important;
}

.border-indigo {
    border-color: #6610f2 !important;
}

.border-purple {
    border-color: #6f42c1 !important;
}

.border-pink {
    border-color: #e83e8c !important;
}

.border-red {
    border-color: #dc3545 !important;
}

.border-orange {
    border-color: #fd7e14 !important;
}

.border-yellow {
    border-color: #ffc107 !important;
}

.border-green {
    border-color: #28a745 !important;
}

.border-teal {
    border-color: #20c997 !important;
}

.border-cyan {
    border-color: #17a2b8 !important;
}

.border-white {
    border-color: #fff !important;
}

.border-gray {
    border-color: #6c757d !important;
}

.border-gray-dark {
    border-color: #343a40 !important;
}

.border-primary {
    border-color: #007bff !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-success {
    border-color: #28a745 !important;
}

.border-info {
    border-color: #17a2b8 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #343a40 !important;
}

/* =========================
   BORDER WIDTH & SIDES
========================= */

.border {
    border: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-start {
    border-left: 1px solid #dee2e6 !important;
}

.border-end {
    border-right: 1px solid #dee2e6 !important;
}

/* =========================
   BORDER COLORS
========================= */

.border-blue {
    border-color: #007bff !important;
}

.border-indigo {
    border-color: #6610f2 !important;
}

.border-purple {
    border-color: #6f42c1 !important;
}

.border-pink {
    border-color: #e83e8c !important;
}

.border-red,
.border-danger {
    border-color: #dc3545 !important;
}

.border-orange {
    border-color: #fd7e14 !important;
}

.border-yellow,
.border-warning {
    border-color: #ffc107 !important;
}

.border-green,
.border-success {
    border-color: #28a745 !important;
}

.border-teal {
    border-color: #20c997 !important;
}

.border-cyan,
.border-info {
    border-color: #17a2b8 !important;
}

.border-white {
    border-color: #fff !important;
}

.border-gray,
.border-secondary {
    border-color: #6c757d !important;
}

.border-gray-dark,
.border-dark {
    border-color: #343a40 !important;
}

.border-primary {
    border-color: #007bff !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

/* =========================
   BORDER RADIUS
========================= */

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-sm {
    border-radius: 0.2rem !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

/* =========================
   DISPLAY CLASSES
========================= */

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

/* =========================
   FLEX DIRECTION
========================= */

.flex-row {
    flex-direction: row !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

/* =========================
   FLEX WRAP
========================= */

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

/* =========================
   JUSTIFY CONTENT
========================= */

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

/* =========================
   ALIGN ITEMS
========================= */

.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

/* =========================
   ALIGN SELF
========================= */

.align-self-start {
    align-self: flex-start !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

/* =========================
   FLEX GROW & SHRINK
========================= */

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

/* =========================
   ORDER CLASSES
========================= */

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-last {
    order: 999 !important;
}

/* =========================
   POSITION CLASSES
========================= */

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

/* =========================
   OVERFLOW CLASSES
========================= */

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

/* =========================
   VISIBILITY CLASSES
========================= */

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*** Common Styles End ***/

body .jupiterx-site {
    font-family: unset !important;
}

h2.page-title {
    color: #000000;
}

h3.form-title {
    color: #000000;
    font-family: unset !important;
    border-bottom: 2px solid;
    width: max-content;
    margin-bottom: 1rem;
}

p.form-text {
    font-family: "Georgia", Sans-serif;
    font-size: 1.15rem;
    color: #000000;
    text-align: left;
    margin: 0;
}

p.page-text {
    font-family: "Georgia", Sans-serif;
    font-size: 1.15rem;
    color: #000000;
    text-align: left;
}

label.col-form-label {
    color: #003a59;
}

.success-message, .error-message {
    display: none;
}

.success-message {
    color: #28a745;
}

.error-message {
    color: #dc3545;
}

form#forgot_password_form, form#password_reset_form, form#email_verification_form, form#login_credentials_form {
    display: none;
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after, .input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

span.input-group-text .spinner {
    width: 15px;
    height: 15px;
    border-width: 2px;
}

ul.list-style-none {
    list-style: none !important;
}

button#btn_toggle_password {
    background: transparent;
    position: absolute;
    top: 0;
    right: 0;
}

button#btn_toggle_password:focus {
    outline: none;
    box-shadow: none;
}

select.form-control {
    height: auto !important;
    padding: 0.5rem 0.50rem !important;
}

/*** Form Wizard Styles START ****/
/* =========================
       PROGRESS BAR
    ========================== */

.progress-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px 0;
}

/* base line */
.line {
    position: absolute;
    top: 8px;
    left: 10px;
    right: 10px;
    height: 4px;
    background: #ddd;
    display: flex;
    z-index: 0;
    border-radius: 10px;
}

/* segments */
/*.segment {
  flex: 1;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
  margin: 0 2px;
}

.segment.active {
  background: #4ea72e;
}*/

/* step item */
.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 4px;
}

.circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #bbb;
    margin: 0 auto 8px auto;
    transition: 0.3s;
}

.label {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

.step-item.completed .circle {
    background: #4ea72e;
}

.step-item.active .circle {
    background: #156082;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.15);
}

.step-item.completed .label {
    color: #4ea72e;
    font-weight: 600;
}

.step-item.active .label {
    color: #156082;
    font-weight: 600;
}

/* =========================
   CONTENT
========================== */

.step {
    display: none;
    min-height: 120px;
    animation: fade 0.25s ease;
}

.step.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================
   BUTTONS
========================== */

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.button.prev, .button.next {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

/*** Form Wizard Styles END ****/
