﻿:root {
    --input-padding-x: 27px;
    --input-padding-y: .60rem;
    --color-white: #FFFFFF;
    --color-light: #E1F0E1;
    --color-medium: #64E17D;
    --color-dark: #003C14;
    --color-disabled: #E1E1F0;
    --color-danger: #AE1800;
    --color-background: #f2f4f7;
}

/*#region Header */

header {
    background-color: var(--color-light);
    color: var(--color-dark);
}

header .main-nav {
    padding: 97px 0 36px 0;
}

header .top-bar {
    margin: 10px 0px 0px 20px;
    padding: 0px;
    position: absolute;
    z-index: 1;
}

/*#endregion */

/*#region Footer */

footer {
    background-color: var(--color-dark);
    color: var(--color-light);
}

footer .container {
    padding-top: 55px;
    padding-bottom: 20px;
}

footer .footer-contact {
    padding-top: 50px;
    padding-bottom: 55px;
}

/*#endregion */

/*#region Link */

.link-hidden:hover {
    text-decoration: none;
}

.link-dark {
    color: var(--color-dark);
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--color-dark);
}

.link-medium {
    color: var(--color-medium);
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--color-medium);
}

/*#endregion */

/*#region Button */

button, a.button {
    background-color: var(--color-dark);
    color: var(--color-light);
    font-size: 18px;
    font-weight: 550;
    font-family: "General Grotesque", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
    border: 2px solid var(--color-dark);
    border-radius: 5px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 9px;
    padding-right: 9px;
}

button:hover, a.button:hover {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-medium);
    text-decoration: none;
}

button:disabled, a.button:disabled {
    background-color: rgba(0, 60, 20, 0.2);
    color: rgba(0, 60, 20, 0.5);
    border: 2px solid rgba(0, 60, 20, 0.2);
    text-decoration: none;
}

/*#endregion */

/*#region Text */

h1 {
    font-size: 50px;
    font-weight: 700;
    font-family: "GeneralGrotesque-Bold";
}

h1.h1-alt {
    font-size: 40px;
    font-weight: 700;
    font-family: "GeneralGrotesque-Bold";
}

h2 {
    font-size: 30px;
    font-weight: 700;
    font-family: "GeneralGrotesque-Bold";
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

h3.h3-alt {
    font-size: 23px;
    font-weight: 600;
    font-family: "GeneralGrotesque-Bold";
}

h4.subtitle {
    font-size: 16px;
    font-weight: 700;
    font-family: "GeneralGrotesque-Bold";
}

p.intro, a.intro, span.intro {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 0;
}

p.body1, a.body1, span.body1 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

p.body2, a.body2, span.body2 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.text-bold {
    font-weight: 700;
    font-family: "GeneralGrotesque-Bold";
}

.text-color-darkgreen {
    color: var(--color-dark) !important;
}

.text-color-white {
    color: var(--color-white) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

/*#endregion */

/*#region ProgressBar */

.wizard-prograss .oi {
    top: 7px;
    display: inline-block;
}

.wizard-prograss {
    margin: 5px 0;
}

.wizard-prograss div {
    margin: 0 -4px;
    height: 2px;
    display: inline-block;
}

.wizard-prograss .disabled {
    opacity: .5;
}

.wizard-prograss .oi {
    top: 7px;
    display: inline-block;
}

.wizard-prograss {
    margin: 5px 0;
}

.wizard-prograss div {
    margin: 0 -4px;
    height: 2px;
    display: inline-block;
}

.wizard-prograss .disabled {
    opacity: .5;
}

/*wizard progress bar  */
.wizar-progressbar {
    margin: 0;
    padding: 0;
    counter-reset: step;
}

.wizar-progressbar li {
    list-style-type: none;
    width: 100%;
    float: left;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 700;
    font-family: "GeneralGrotesque-Bold";
}

.wizar-progressbar.steps-1 li {
    width: 100%;
}

.wizar-progressbar.steps-2 li {
    width: 50%;
}

.wizar-progressbar.steps-3 li {
    width: 33.33%;
}

.wizar-progressbar.steps-4 li {
    width: 25%;
}

.wizar-progressbar li:before {
    width: 20px;
    height: 20px;
    content: '';
    line-height: 30px;
    border: 2px solid var(--color-medium);
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: var(--color-medium);
}

.wizar-progressbar li:after { /*RZA*/
    width: 100%;
    height: 3px;
    content: '';
    position: absolute;
    background-color: #B4CCB8;
    top: 10px;
    left: -50%;
    z-index: -1;
}

.wizar-progressbar li:first-child:after {
    content: none;
}

/*this styles the nodes*/
.wizar-progressbar li.active:before {
    border-color: var(--color-medium);
    background-color: var(--color-medium);
}

.wizar-progressbar li.selected:before {
    border-color: var(--color-dark);
    background-color: var(--color-dark);
}

.wizar-progressbar li.disabled:before {
    border-color: #B4CCB8;
    background-color: #B4CCB8;
}

/*this styles the wizard connector line to the next node*/
.wizar-progressbar li.active + li:after {
    background-color: var(--color-medium);
    opacity: 1;
}

.wizar-progressbar li.disabled + li:after {
    opacity: .5;
}

/*#endregion */

/*#region Floating-Label-Select */
.ui-select-match {
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    height: 100%; /* Ensures it takes the full height of the container */
    text-align: center; /* Centers the text */
}

.ui-select-placeholder {
    color: #6c757d; /* Placeholder color */
    font-style: italic; /* Optional: Makes the placeholder text italic */
    width: 100%; /* Ensures the placeholder spans the full width */
    text-align: center; /* Centers the placeholder text */
    position: relative;
    top: -10px; /* Moves the text upwards */
}

.form-floating > select {
    padding: var(--input-padding-y) var(--input-padding-x);
    height: 45px;
}

.form-floating select:valid {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
    padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-floating select:valid ~ label {
    padding-top: calc(var(--input-padding-y) / 3);
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    color: var(--color-dark);
}

.form-floating select ~ label {
    z-index: -1;
    background-color: #ffffff !important;
}

.form-floating label {
    pointer-events: none;
}

select {
    background-color: var(--color-white) !important;
}

select.form-control {
    background-color: transparent !important;
}

/*#endregion */

/*#region FloatingLabel */

.input-group > .form-floating {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

label {
    font-weight: 400;
    font-size: 16px;
    font-family: "GeneralGrotesque-Regular";
}

.form-control {
    background-color: #ffffff !important;
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating > input,
.form-floating > label {
    padding: var(--input-padding-y) var(--input-padding-x);
    height: 45px;
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0; /* Override default `<label>` margin */
    line-height: 1.5;
    color: var(--color-dark);
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
}

.form-control:focus {
    border-color: var(--color-medium);
}

input.form-control:read-only {
    background-color: var(--color-disabled) !important;
}

input.form-control:read-only ~ label {
    border-color: var(--color-disabled);
    border-radius: 0;
}

.form-floating input::-webkit-input-placeholder {
    color: transparent;
}

.form-floating input:-ms-input-placeholder {
    color: transparent;
}

.form-floating input::-ms-input-placeholder {
    color: transparent;
}

.form-floating input::-moz-placeholder {
    color: transparent;
}

.form-floating input::placeholder {
    color: transparent;
}

.form-floating input:not(:placeholder-shown) {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
    padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-floating input:not(:placeholder-shown) ~ label {
    padding-top: calc(var(--input-padding-y) / 3);
    padding-bottom: calc(var(--input-padding-y) / 3);
    font-size: 12px;
    color: var(--color-dark);
}

/*#endregion */

@font-face {
    font-family: GeneralGrotesque-Regular;
    src: url(font/GeneralGrotesque-Regular.woff);
}

@font-face {
    font-family: GeneralGrotesque-Bold;
    src: url(font/GeneralGrotesque-Bold.woff);
}

body {
    font-family: "General Grotesque", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.04em;
    color: #000000;
    background-color: var(--color-light);
}

.register-container {
    margin-bottom: 90px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
}


.form-row {
    margin-bottom: 10px;
}

.form-label {
    font-weight: bold;
    margin-bottom: .2rem;
}


body {
}

/* Set padding to keep content from hitting the edges */
.body-content {
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*max-width: 280px;*/
}

.form-row {
    margin-bottom: 10px;
}

.form-label {
    font-weight: bold;
    margin-bottom: .2rem;
}

/*radio button overrides*/

.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 10px;
    cursor: pointer;
    font-size: 13pt;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #c4c2be;
    border-radius: 100%;
}

/* On mouse-over, add the hover color */
.radio-container:hover input ~ .checkmark {
    /* background-color: #ccc;*/
    border: 2px solid #00bcd4;
}

.radio-container:hover .checkmark:after {
    background: #00bcd4;
}


/* On mouse-clicked, add the clicked  */
.radio-container:active input ~ .checkmark {
    /* background-color: #ccc;*/
    border: 2px solid #0097a7;
}

/*When the radio button is checked, Show the indicator (dot/circle) when checked*/

.radio-container input:checked ~ .checkmark {
    border: 2px solid #96948e;
}

.radio-container input:checked ~ .checkmark:after {
    display: block;
    background: #96948e;
}

/* disabled*/
.radio-container input:disabled ~ .checkmark {
    /*display: block;*/
    border: 2px solid #F5F5F5;
}

.radio-container input:disabled ~ .checkmark:after {
    /*display: block;*/
    background: #F5F5F5;
}


/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #96948e;
}

@-moz-document url-prefix() {
    .radio-container .checkmark:after {
        top: 2px;
        left: 2px;
        width: 12px;
        height: 12px;
        border-radius: 100%;
        background: #96948e;
    }
}

.ng-dirty.ng-invalid {
    border-color: #c62828;
    /*padding-right: calc(1.25em + .75rem);*/
    background-repeat: no-repeat;
    background-position: center right calc(.3125em + .1875rem);
    background-size: calc(.625em + .375rem) calc(.625em + .375rem);
}

.required .form-label:after {
    content: " *";
}

.alert {
    word-wrap: anywhere;
    overflow-wrap: anywhere;
    width: 100%;
}

.alert-danger {
    background-color: var(--color-danger) !important;
}

.integration-logo {
    padding: 0 5px;
}

.integration-logo img {
    max-width: 100%;
}

a:hover img {
    transform: scale(1.05); /* Slight zoom effect */
    transition: transform 0.3s ease; /* Smooth transition */
}

.sub-header {
    font-family: "GeneralGrotesque-Bold";
    color: #00778B;
    font-size: 15pt;
    font-weight: bold;
    letter-spacing: -1px;
}

.open > .dropdown-menu, .ui-select-match, .ui-select-match-text {
    display: block !important;
    max-height: 500px !important;
}

.ui-select-match, .ui-select-match-text {
    line-height: 1.25 !important;
}

.form-floating-select {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating-select > label {
    color: var(--color-dark) !important;
    display: block;
    font-size: 12px;
    position: absolute;
    top: 0px;
    padding-left: 27px;
    margin-top: 3.2px;
    line-height: 1.25 !important;
}

.form-floating-select > .ui-select-container > input {
    color: var(--color-dark) !important;
    height: 45px;
    padding-top: 20px;
    padding-left: 27px;
}

.form-floating-select > .ui-select-container > .ui-select-match > .ui-select-toggle {
    color: var(--color-dark) !important;
    height: 45px;
    padding-top: 20px;
    padding-left: 27px;
}