@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");

html,
*,
body {
    font-family: "Roboto", sans-serif;
    margin: 0;
}
body:not(.gcp-modal) {
    background: #f2f2f2;
}

h1 {
    margin-bottom: 20px;
    font-family: inherit;
    font-weight: bold;
    font-size: 28px;
    line-height: 20px;
    text-align: center;
    color: #062872;
}

h4 {
    margin-top: 10px;
}

input:focus-visible {
    /* Override Electron's -webkit-focus-ring-color orange for focused inputs */
    outline-color: black;
}

div.centered {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

.alert-danger {
    font-size: 12px;
    line-height: 12px;
    color: #ff4433;
    border-radius: 3px;
    margin-bottom: 10px;
}

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

.empty-space-filler {
    display: flex;
    flex-grow: 1;
}

.minPage {
    box-sizing: border-box;
    width: 340px;
    min-height: 230px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    z-index: 0;
    display: flex;
    flex-direction: column;
}

.page {
    box-sizing: border-box;
    width: 340px;
    min-height: 300px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    z-index: 0;
    display: flex;
    flex-direction: column;
}
body:not(.gcp-modal) .page {
    border-radius: 4px;
    box-shadow: 0px 5px 10px rgba(17, 17, 17, 0.1);
}

.form {
    display: flex;
    flex-direction: column;
}

.field-header {
    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    color: #333333;
    margin: 19px 0px 5px 0px;
}
form#user-settings .field-header {
    /* This form has a lot of fields, so benefits from less spacing between inputs */
    margin-top: 9px;
}

img.icon-button {
    position: absolute;
    left: 0px;
}

img.icon-button:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.create-account-title-container,
.logo-container {
    display: flex;
    justify-content: center;
}

.logo-container.stratasys {
    margin-top: 20px;
}

.logo-container.grabcad {
    margin-bottom: 20px;
}

.create-account-title-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page-header {
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.35em;
    color: #333333;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.signup-title {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    /* GC-64865: color: #003393; */
    color: #006ec2;
}

.signup-header {
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.35em;
    color: #666;
    margin: 10px 0;
    text-align: center;
}

.phone-number-fields {
    display: flex;
}

.phone-number-fields select {
    margin-right: 10px;
    width: 50px;
}

.form-select {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 2px;
    height: 32px;
    width: 100%;
    font-family: inherit;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
}

.form-select {
    font-style: normal;
}

.form-select-placeholder {
    font-style: italic;
    color: #999;
}

select.form-select > option {
    -webkit-appearance: none;
    font-size: 16px;
    font-style: normal;
    color: #000;
}

.flexible-form-input,
.form-input {
    background: #ffffff;
    border: 1px solid #dddddd;
    box-sizing: border-box;
    border-radius: 2px;
    height: 32px;
    margin: 0;
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    text-indent: 3px;
}

.flexible-form-input {
    flex-grow: 1;
}

.form-input {
    width: 100%;
}

.flexible-form-input::placeholder,
.form-input::placeholder {
    font-family: inherit;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 2.3;
    /* identical to box height, or 100% */
    color: #999999;
}

.email-input {
    text-indent: 30px;
    background-image: url("/images/email-background.svg");
    background-repeat: no-repeat;
    background-position-x: 8px;
    background-position-y: 9px;
}

.password {
    text-indent: 30px;
    background-image: url("/images/password-background.svg");
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: 9px;
}

/* Main login form has no field labels, so needs margin directly applied input */
#form-login .email-input {
    margin: 10px 0;
}

/* BUTTONS */

.bottom-button {
    width: 100%;
    min-height: 32px; /* Button text can wrap to 2 lines if needed */
    padding: 8px;
    margin: 20px 0 0;
    background: #ffffff;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    font-family: inherit;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #333333;
    cursor: pointer;
}

.bottom-button.blue {
    color: #ffffff;
    background: #006ec2;
    border: 0;
}

.bottom-button:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.bottom-button-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.bottom-button-row .bottom-button {
    /* Max 2 buttons per row so we can get a 20px gap with calc() */
    width: calc(50% - 10px);
    margin-top: 0;
}

/* `form-submit` from handlebars-form-helper package seems to add an extra empty div before submit <button>s,
    (perhaps for some unused error UI?) which messes up horizontal spacing of buttons sharing a row, specifically
    on /create_account which has a half-width submit button sharing a row with "Cancel" on the last page.
    This CSS hides the empty div. */
.bottom-button-row > div {
    display: none;
}

.bottom-button.with-icon {
    padding: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bottom-button.with-icon::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("/images/email-sso.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px; /* Adds space between text and icon */
}

.bottom-button.without-top-margin {
    margin-top: 0px;
}

/* PASSWORDS INPUTS */

div.password-container:not([hidden="true"]) {
    position: relative;
}
div.password-container.success:before {
    position: absolute;
    display: block;
    content: "";
    width: 32px;
    height: 32px;
    right: 0px;
    top: 0px;
    z-index: 200;
    background-image: url("/images/check.svg");
    background-repeat: no-repeat;
    background-position: center;
}

div.password-container.success input {
    border: 1px solid #75b67b;
}

div.password-container.success input:focus-visible {
    outline-color: #75b67b;
}

/* Hide password eyeball & X in Edge */
input::-ms-reveal,
input::-ms-clear {
    display: none;
}

div.toggle-password {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 210;
    background-image: url("/images/eye.svg");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

div.toggle-password.off {
    background-image: url("/images/no-eye.svg");
}

/* Bump eye-icon left when password requirements checkbox is shown to prevent overlap */
div.password-container.success div.toggle-password {
    right: 26px;
}

div.errors-container {
    max-height: 40px;
    display: flex;
    flex-direction: column;
}

div.progress-dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: -15px;
}

.progress-dot-on,
.progress-dot-off {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 3px;
    display: inline-block;
}

.progress-dot-on {
    /* GC-64865: background: #003393; */
    background: #006ec2;
}

.progress-dot-off {
    background: #cccccc;
}

.flexible-form-input.error,
.form-input.error {
    outline: 1px solid #ff4433;
}

.success-message {
    mix-blend-mode: normal;
    /* green */

    border: 1px solid #75b67b;
    box-sizing: border-box;
    border-radius: 3px;
    margin: 10px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #006409;

    background: rgba(117, 182, 123, 0.2);
    display: flex;
    flex-direction: row;
}

.success-check {
    min-width: 30px;
    background-image: url("/images/check.svg");
    background-repeat: no-repeat;
    background-position-x: 9px;
    background-position-y: center;
}

.success-text {
    padding: 20px 10px;
    white-space: pre-line;
}

.help-text {
    margin: 10px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 19px;
    color: #000000;
}

input::-webkit-input-placeholder {
    line-height: normal !important;
}

div.profile-row-company-name,
.profile-row-company-link {
    width: 100%;
    height: 43px;
    background: #fff;
    border: 1px solid #cbcbcb;
    border-top: 0;
    box-sizing: border-box;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
}

.profile-row-company-name:first-child {
    border: 1px solid #cbcbcb;
    border-radius: 4px 4px 0 0;
}
.profile-row-company-name:last-child {
    border-radius: 0 0 4px 4px;
}

/* Will always be the only option, round all corners, override psudoselectors */
.shop,
.global {
    border-radius: 4px !important;
    border: 1px solid #cbcbcb !important;
}

/* These two will always be together, so round corners appropriately */
.admin-console {
    border-radius: 4px 4px 0 0;
    border: 1px solid #cbcbcb;
}
.shop-admin {
    border-radius: 0 0 4px 4px;
    border: 1px solid #cbcbcb;
    border-top: 0;
}

div.profile-row-content {
    margin-left: 10px;
    color: #444;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.profile-row-company-name:hover i,
.profile-row-company-link:hover i {
    border: solid black;
    opacity: 0.5;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-right: 9px;
}

.profile-row-company-name span {
    border-width: 0 3px 3px 0;
    padding: 3px;
    margin-right: 9px;
    display: inline-block;
    color: blue;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.profile-row-company-name:hover,
.profile-row-company-link:hover {
    background: #d6eef8;
    cursor: pointer;
}

.profile-link {
    text-decoration: none;
    color: inherit;
}

.rows-container {
    margin: 10px 0 10px 0;
}

.paragraph-text {
    font-family: inherit;
    font-style: normal;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;

    /* Mostly for QA putting in ridiculously long company names or emails */
    word-break: break-word;
}

.form hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.form label[disabled] {
    opacity: 0.5;
}

.form input[disabled] {
    pointer-events: none;
}

.form .input-group label {
    font-size: 14px;
}

.form .input-group {
    margin-bottom: 1px;
}

.form div.input-group {
    display: flex;
    flex-direction: column;
}

.form input[type="checkbox"],
.form input[type="radio"] {
    margin-right: 10px;
}

#password-requirements {
    color: #414141;
    font-size: 11px;
    line-height: 1.65em;
    margin: 2px 0 8px;
}

#password-requirements ul {
    margin-left: -20px;
    list-style-type: none;
}

#password-requirements ul li {
    position: relative;
}

#password-requirements ul li .check {
    color: white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: -20px;
    text-align: center;
    font-size: 0.8em;
    line-height: 1.5em;
    background-color: #006ec2;
    opacity: 0.25;
}
#password-requirements ul li .check.checked {
    background-color: white;
    background-image: url("/images/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
}

.tos-text {
    font-size: 0.7em;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #5c5c5c;
    line-height: 1.4em;
    font-style: italic;
}

.tabheader button {
    float: left;
    margin-right: 4px;
    padding: 5px 10px 3px;
    background-color: inherit;
    border: 1px solid #555;
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    display: block;
    position: relative;
    cursor: pointer;
}

.tabheader button:not(.active) {
    border: 1px solid #aaa;
    border-bottom: 0;
    color: #aaa;
}

.tabheader button:not(.active):hover {
    border-color: #000;
    color: #000;
    transition: all 0.3s;
}

.tabheader button.active {
    cursor: default;
}

/*
 * This is a white box that covers the tab body border, only beneath the active tab header - 
 * so that the tab header looks like it's "connected" to the content
 */
.tabheader button.active::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    z-index: 100;
    width: 100%;
    height: 2px;
}

.tabbody {
    border-top: 1px solid black;
    padding-top: 10px;

    /* flexbox row used to overlap .tabcontents while allowing parent to assume height of tallest tab.
     * The horizontal offset is overridden with position: relative & left: calc(...) below.
     * This prevents the tabbed modal from shifting up and down when switching between tabs,
     * and the BrowserWindow in GCP can remain a fixed height.
     */
    display: flex;
}

.tabcontent:not(.active) {
    opacity: 0; /* Hide visually, but maintain space (see comment above) */
    pointer-events: none;
}

.tabcontent {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

.tabcontent:nth-child(2) {
    left: calc(-300px * 1);
}
/* 3rd tab just for example: */
.tabcontent:nth-child(3) {
    left: calc(-300px * 2);
}
/* Continue pattern if adding 4th tab */

.hidden {
    display: none !important;
}

/* State dropdown is optional. Disabling is cleaner than hiding since form height can remain fixed. */
.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.warning {
    margin: 10px 0;
    padding: 5px 10px;
    background: #ff820066;
    border: 4px solid #ff820080;
    border-radius: 5px;
    font-size: 14px;
}

/* Shared by /products and /unauthorized pages */
#products a {
    display: flex;
    text-decoration: none;
    color: #000;
    padding: 6px;
    border-radius: 10px;
}
#products a:hover {
    background-color: rgb(226, 234, 255);
}
#products img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}
#products h2 {
    font-size: 15px;
    margin: 5px 0 -1px;
}
#products label {
    font-size: 12px;
    pointer-events: none;
}

.support-text h6 {
    font-weight: normal;
}

.bottom-cta-row {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.common-container {
    display: contents;
}

.divider-container {
    align-self: stretch;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    margin: 10px 0;
}

.divider-line {
    flex: 1 1 0;
    height: 0px;
    border: 1px solid #adadad;
}

.divider-text {
    color: #333333;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.back-button {
    background: none;
    border: none;
    color: #0076a8;
    font-size: 14px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 16px;
    letter-spacing: 1.25px;
    cursor: pointer;
    padding: 0;
    position: absolute;
    left: 0px;
}

.back-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute; /* To allow absolute positioning of the back button */
    min-height: 30px; /* Ensure the header has a minimum height */
}

.clickable-link {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
}
