@charset "UTF-8";

:root {
  /* -- Font family ----------- */
  --font-family:"Segoe UI", "Open Sans", "Helvetica Neue", Verdana, Arial, "Microsoft YaHei", 微软雅黑, STXihei, 华文细黑, sans-serif;
  /* -- Layer 1: Primitives (siemens-brand.json) --------------------------- */
  --color-deep-blue:             #000028;   /* color.deep-blue */
  --color-deep-blue-red-25:      #400a2e;   /* color.deep-blue-red-25 */
  --color-deep-blue-orange-25:   #40312b;   /* color.deep-blue-orange-25 */
  --color-deep-blue-green-25:    #003635;   /* color.deep-blue-green-25 */
  --color-deep-blue-blue-25:     #003055;   /* color.deep-blue-blue-25 */
  --color-cool-gray-950:         #23233c;   /* color.cool-gray.950 — panel bg */
  --color-cool-gray-750:         #37374D;   /* color.cool-gray.750 — version bg, header bg  */
  --color-cool-gray-500:         #7d8099;   /* color.cool-gray.500 — divider / placeholder */
  --color-cool-gray-300:         #b3b3be;   /* color.cool-gray.300 — input border */
  --color-bold-green-300:        #66ffd5;   /* color.bold-green.300 — CTA hover */
  --color-bold-green-400:        #00ffb9;   /* color.bold-green.400 — CTA / link hover */
  --color-bold-green-500:        #00e5aa;   /* color.bold-green.500 — CTA active */
  --color-bold-green-940:        #001f39;   /* color.bold-green.940 — checkbox / input bg */
  --color-coral-400:             #00cccc;   /* color.coral.400 — links (teal, despite name) */
  --color-coral-940:             #00183b;   /* color.coral.940 — dropdown bg */
  --color-cyan-blue-500:         #1491eb;   /* color.cyan-blue.500 — input focus border */
  --color-green-400:             #01d65a;   /* color.green.400 — success status */
  --color-red-300:               #ff7687;   /* color.red.300 — error status */
  --color-yellow-400:            #ffd732;   /* color.yellow.400 — warning status */
  --color-blue-400:              #4dd1e7;   /* color.blue.400 — general status */
  --color-white:                 #ffffff;   /* color.white */
  --color-cool-gray-200:         #dcdcdc;   /* closest cool-gray primitive — subtle text */
  --color-near-black:            #1e1e1e;   /* dark text on light surfaces */
  --color-sand-50:               #f2f2f2;   /* light surface / info tag BG (cf. sand.50 #f3f3f0) */

  /* -- Layer 2: Semantic aliases (disw-siemens-brand-dark.json) ----------- */
  --bg-page:                var(--color-deep-blue);
  --bg-panel:               var(--color-cool-gray-950);
  --bg-header:              var(--color-cool-gray-750);
  --bg-input:               var(--color-coral-940);
  --bg-hover:               var(--color-bold-green-940);
  --bg-checkbox-checked:    var(--color-bold-green-400);

  --text-body:              var(--color-white);
  --text-muted:             var(--color-cool-gray-500);
  --text-placeholder:       var(--color-cool-gray-300);
  --text-link:              var(--color-coral-400);
  --text-link-hover:        var(--color-bold-green-400);

  --border-input:           var(--color-cool-gray-300);
  --border-highlight:       var(--color-coral-400);
  --border-focus:           var(--color-cyan-blue-500);

  --cta-bg:                 var(--color-bold-green-400);
  --cta-bg-hover:           var(--color-bold-green-300);
  --cta-bg-active:          var(--color-bold-green-500);
  --cta-bg-secondary:       var(--color-coral-400);
  --cta-text:               var(--color-deep-blue);

  --panel-appname-bg:       var(--color-cool-gray-950);
  --panel-appname-text:     var(--color-white);
  --panel-version-bg:       var(--color-cool-gray-750);
  --panel-version-text:     var(--color-white);

  --status-error-border:    var(--color-red-300);
  --status-warn-border:     var(--color-yellow-400);
  --status-ok-border:       var(--color-green-400);
  --status-general-border:  var(--color-blue-400);

  --status-error-bg:        var(--color-deep-blue-red-25);   /* dark-mode error bg */
  --status-warn-bg:         var(--color-deep-blue-orange-25);   /* dark-mode warning bg */
  --status-ok-bg:           var(--color-deep-blue-green-25);   /* dark-mode success bg */
  --status-general-bg:      var(--color-deep-blue-blue-25);   /* dark-mode general bg */

  --text-subtle:            var(--color-cool-gray-200);
  --text-on-light:          var(--color-near-black);
  --bg-light-surface:       var(--color-sand-50);
  --text-hint:              rgba(255, 255, 255, 0.6);  /* de-emphasised hint text */
  --border-ghost:           rgba(255, 255, 255, 0.45); /* ghost button border */
  --bg-disabled:            rgba(255, 255, 255, 0.45); /* disabled button surface */
  --bg-overlay:             rgba(14, 14, 14, 0.5);     /* dark hover scrim */
  --shadow-button:          0 3px 6px 0 rgba(0, 0, 0, 0.3); /* elevated button shadow */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    font-family: var(--font-family);
    background-color: var(--bg-page);
    background-image: none;
}

div,
span {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}

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

.login-view {
    height: 100%;
    width: 100%;
    overflow: none;
    display: flex;
    flex-direction: column;
}

.login-view .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.login-top {
    justify-content: space-evenly;
}

.login-view .login-top,
.login-view .login-copyright {
    display: flex;
}

.login-view .login-top {
    flex: 1 1 auto;
    background-color: var(--bg-page);
}

.login-view .login-top .left,
.login-view .login-top .right {
    flex: auto;
}

.login-view .login-top .login {
    margin: auto 0;
    width: 428px;
    align-items: flex-end;
    background-color: var(--bg-panel);
    background-image: none;
    border-radius: 3px 3px 3px 3px;
    z-index: 100;
}

.login-view .login-top .login .siemens-logo {
    flex: 0 0 auto;
    background-image: url("/polarion/ria/images/siemens-logo-layer-claim-white-rgb.svg");
    background-repeat: no-repeat;
    background-size: 234px 100%;
    background-position-x: center;
    margin-bottom: 10px;
    /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
    position: fixed;
    top: 64px;
    left: 64px;
    width: 235px;
}

.logo {
    height: 100px;
    align-self: center;
    width: 55%;
}

.customCompanyLogo {
    max-height: 235px;
    max-width: 235px;
    align-self: center;
}

.login-view .login-top .login .info-container {
    font-family: var(--font-family);
    flex: 0 0 auto;
    width: 100%;
    margin: 48px 0 12px;
    padding: 16px;
    display: none;
}

.login-view .login-top .login .info-container .info-version {
    height: 48px;
    padding: 12px 24px;
    background: var(--panel-version-bg);
    color: var(--panel-version-text);
    font-size: 24px;
    font-weight: 600;
}

.login-view .login-top .login .info-container .info-appName {
    padding: 24px;
    background: var(--panel-appname-bg);
}

.login-view .login-top .login .info-container .info-appName h1 {
    color: var(--panel-appname-text);
    font-size: calc($h1-font-size * 75%);
    margin-bottom: 16px;
}

.login-view .login-top .login .info-container .info-appName h2 {
    color: var(--panel-appname-text);
    font-size: 24px;
    font-weight: 600;
}

.login-view .login-top .login .info-container .tag {
    background: var(--panel-version-bg);
    color: var(--panel-version-text);      
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    text-align: right;
    padding: 6px;
}

.login-view .login-top .login .login-dialog {
    flex: 200 1 auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 24px;
    width: 100%;
}

.login-view .login-top .login .panel-dialog {
    flex: 1 1 auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 16px;
    width: 100%;
}

.login-form {
    flex: 1 1 auto;
    justify-content: center;
    flex-direction: column;
    display: flex;
    width: 100%;
}

.login-dialog-multi {
    flex: 0 1 auto;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    width: 100%;
}

.only-sso {
    height: 0;
    visibility: hidden;
    opacity: 0;
    flex: 0 0 auto;
}

.app-logo {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 64px;
    width: 100%;
    margin-bottom: 24px;
}

.app-logo .logInto,
.app-logo-center .logInto {
    font-size: 28px;
    font-size: 35.83px;
    font-weight: 700;
}

.app-logo-center {
    display: flex;
    margin: 0 auto;
    align-items: center;
    height: 64px;
}

.app-icon img {
    width: 64px;
    height: 64px;
}

.app-text {
    margin-left: 16px;
    color: var(--text-body);
    font-size: 12px;
}

.app-text .server-name {
    margin-top: 5px;
    display: inline-block;
}

.login-dialog .header,
.panel-dialog .header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.login-dialog .header h2,
.panel-dialog .header h2 {
    font-size: 21px;
    color: var(--text-body);
}

.login-dialog .header2,
.panel-dialog .header2 {
    text-align: center;
    margin-bottom: 24px;
}

.login-dialog .header2 h2,
.panel-dialog .header2 h2 {
    font-size: 21px;
    color: var(--text-body);
}

.login-dialog .new-account-header1,
.panel-dialog .new-account-header1 {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.login-dialog .new-account-header1 span,
.panel-dialog .new-account-header1 span {
    font-size: 21px;
    color: var(--text-body);
}

.login-dialog .new-account-header2,
.panel-dialog .new-account-header2 {
    display: flex;
    align-items: center;
    height: 32px;
    background-color: var(--bg-header);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.login-dialog .new-account-header2 span,
.panel-dialog .new-account-header2 span {
    font-size: 12px;
    color: var(--text-body);
    margin-left: 15px;
    font-weight: 600;
}

.login-dialog .required,
.panel-dialog label {
    color: var(--text-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.32;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.panel-dialog label a {
    color: var(--text-body);
}

.login-dialog .required::before,
.panel-dialog label::before {
    position: absolute;
    content: "*";
    font-size: 24px;
    font-weight: bold;
    color: var(--text-link);
    left: 0;
    top: -4px;
}

.required, .required-label {
    color: var(--text-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.32;
    margin-bottom: 4px;
    position: relative;
    padding-left:0px;
}

.login-dialog .required::before,
.panel-dialog label::before {
    position: absolute;
    content: "*";
    font-size: 24px;
    font-weight: bold;
    color: var(--text-link);
    left: 0;
    top: -4px;
}

.j_username,
.j_password {
    background: var(--bg-input);
    border: solid 1px var(--border-input);
    border-radius: 2px;
    color: var(--text-body);
    font-size: 12px;
    font-weight: normal;
    padding: 4px 8px;
    box-sizing: border-box;
    height: 32px;
    margin-bottom: 8px;
}

.login-dialog .j_username:hover,
.login-dialog .j_password:hover {
    border: solid 2px var(--cta-bg);
}

.login-dialog .j_username:focus,
.login-dialog .j_password:focus,
.login-dialog .j_password:active,
.panel-dialog .j_username:focus,
.panel-dialog .j_password:focus,
.panel-dialog .j_password:active {
    border: solid 2px var(--border-focus);
}

.login-dialog .hint,
.panel-dialog .hint {
    font-size: 12px;
    font-style: italic;
    color: var(--text-hint);
    margin: 4px 0 16px 16px;
    line-height: 1.5;
}

.login-dialog .hint2,
.panel-dialog .hint2 {
    font-size: 12px;
    font-style: italic;
    color: var(--text-hint);
    margin: 4px 0 16px 16px;
    text-align: center;
    line-height: 1.5;
}

.hint2 a {
    color: var(--text-link);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.32;
    text-decoration: none;
    cursor: pointer;
}

.login-dialog input.margin-bottom-gap,
.panel-dialog input.margin-bottom-gap {
    margin-bottom: 24px;
}

.login-dialog div.margin-bottom-gap {
    margin-bottom: 24px;
}

.login-dialog .button-container {
    text-align: right;
}

.panel-dialog .button-container {
    text-align: center;
    margin-top: 20px;
}

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

.button {
    height: 32px;
    width: auto;
    min-width: 92px;
    padding: 4px 16px;
    color: var(--cta-text);
    border-radius: 2px;
    border: solid 1px var(--cta-text);
    background: var(--cta-bg);
    text-shadow: none;
    font-size: 14.4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.button:hover {
    background: var(--cta-bg-hover);
    transition: all 0.1s ease-in-out;
}

.button:active {
    background: var(--cta-bg-active);
}

.button:disabled {
    background: var(--bg-disabled);
    color: var(--cta-text);
    border: solid 1px transparent;
    text-shadow: none;
    cursor: default;
}

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

.loginContainer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.login-label {
    margin-left: 30px;
    margin-top: 10px;
    cursor: pointer;
    margin-right: 10px;
}

.checkbox-row-container {
    display: flex;
    vertical-align: middle;
    font-size: 12px;
    color: var(--text-body);
    margin-right: 10px;
}

.panel-dialog p {
    font-size: 12px;
    color: var(--text-subtle);  
    line-height: 1.5;
    margin: 2px 10px 15px 10px;
}

.panel-dialog p strong {
    font-weight: bold;
    color: var(--text-body);
}

.panel-dialog p a {
	color: var(--text-link);
}

.panel-dialog p a:hover {
    color: var(--text-link-hover);
}

/**messages**/

.errormessage {
    width: 396px;
    height: min-content;
    border: 1px solid var(--status-error-border);
    border-radius: 3px;
    background: url("/polarion/ria/images/icon-indicatorError16.png") no-repeat 10px 9px;
    background-color: var(--status-error-bg);
    color: var(--status-error-border);
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 8px 10px;
    line-height: 1.4;
}

.warningmessage {
    width: 396px;
    height: min-content;
    border: 1px solid var(--status-warn-border);
    border-radius: 3px;
    background: url("/polarion/ria/images/icon-indicatorWarning16.png") no-repeat 10px 9px;
    background-color: var(--status-warn-bg);   
    color: var(--status-warn-border);
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 8px 10px;
    line-height: 1.4;
}

#moreInfo,
#lessInfo {
    margin-left: 3px;
    color: var(--text-link);
    font-weight: normal;
    cursor: pointer;
    text-decoration: none;
}

#moreInfo:hover,
#lessInfo:hover {
    color: var(--text-link-hover);
}

.successmessage {
    width: 396px;
    height: min-content;
    border: 1px solid var(--status-ok-border);
    border-radius: 3px;
    background: url("/polarion/ria/images/icon-indicatorCompleted16.png") no-repeat 10px 9px;
    background-color: var(--status-ok-bg);     
    color: var(--status-ok-border);
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 8px 10px;
    line-height: 1.4;
}

.successmessage span, .successmessage p, .successmessage div {
    display: block;
    margin-left: 20px;
}

.infomessage {
    width: 396px;
    height: min-content;
    border: 1px solid var(--status-general-border);
    border-radius: 3px;
    background: url("/polarion/ria/images/icon-indicatorInfo16.png") no-repeat 10px 9px;
    background-color: var(--status-general-bg);     
    color: var(--status-general-border);
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 8px 10px;
    line-height: 1.4;
}

.infomessage span, .infomessage p, .infomessage div {
    display: block;
    margin-left: 20px;
}

.errormessage a, .warningmessage a, .successmessage a, .infomessage a {
    color: var(--text-link);
}

.errormessage a:hover, .warningmessage a:hover, .successmessage a:hover, .infomessage a:hover {
    color: var(--text-link-hover);
}

.warning-text {
    color: var(--text-body);
    font-size: 12px;
    margin: -8px 0 16px 16px;
    line-height: 1.4;
    text-align: center;
}

.errormessage span, .warningmessage span, .successmessage span, .infomessage span,
.errormessage div, .warningmessage div, .successmessage div, .infomessage div,
.errormessage p, .warningmessage p, .successmessage p, .infomessage p {
    display: block;
    margin-left: 20px;
    margin-bottom: 5px;
}

.errormessage span:last-child, .warningmessage span:last-child, .successmessage span:last-child, .infomessage span:last-child,
.errormessage div:last-child, .warningmessage div:last-child, .successmessage div:last-child, .infomessage div:last-child,
.errormessage p:last-child, .warningmessage p:last-child, .successmessage p:last-child, .infomessage p:last-child {
    margin-bottom: 0px;
}

.errormessage a, .warningmessage a, .successmessage a, .successmessage a, .infomessage a:hover {
    word-wrap: break-word;
    text-decoration: none;
}

.errormessage a:hover, .warningmessage a:hover, .infomessage a:hover {
    text-decoration: underline;
}

/** <HR> Multilogin line **/

.line {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.line:before,
.line:after {
    color: var(--text-muted);
    content: '';
    flex: 1;
    border-bottom: solid 1px;
    margin: 20px 0;
}

.line span {
    color: var(--text-muted);
    font-size: 13px;
}

/** Login with text **/

.loginWith {
    display: flex;
    height: 14px;
    align-items: center;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-body);
}


/** Multilogin buttons **/

.external-login {
    text-align: center;
    margin: 5px 0px 5px 0px;
}

.external-login img {
    width: 24px;
    margin-top: -1px;
}

.external-login.more button span {
    margin-right: -8px;
}

.login-button {
    background: transparent;
    border: solid 1px var(--border-ghost);
    border-radius: 2px;
    color: var(--text-body);
    padding: 4px 8px;
    box-sizing: border-box;
    height: 32px;
    width: 196px;
    text-align: center;
    cursor: pointer;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
}

.login-button span {
    line-height: 1.4;
    margin: 0 8px;
    font-family: var(--font-family);
    font-size: 14.4px;
}

.login-button img {
    float: left;
}

.login-button:hover {
    background: var(--bg-hover);
    box-shadow: var(--shadow-button);
    transition: all 0.1s ease-in-out;
}


/** Checkbox **/

.checkboxContainer {
    display: block;
    position: relative;
    margin-top: 6px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px var(--border-input) solid;
    border-radius: 2px;
}

.checkboxContainer:hover input ~ .checkmark {
    box-shadow: 0px 0px 0px 2px var(--cta-bg) inset;
    border: 1px var(--border-highlight) solid;
}

.checkboxContainer input:focus ~ .checkmark {
    background-color: transparent;
    box-shadow: 0px 0px 0px 2px var(--cta-bg) inset;
    border: 1px var(--border-highlight) solid;
}

.checkboxContainer input:checked ~ .checkmark {
    background-color: var(--bg-checkbox-checked);
    border: 1px var(--border-highlight) solid;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}

.checkboxContainer .checkmark:after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--cta-text);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/** Change Server elements **/

.server-dialog {
    flex: 1 1 auto;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
}

.server-dialog a {
    margin-bottom: 10px;
    text-decoration: none;
}

.server-dialog .header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.server-dialog .header h2 {
    font-size: 21px;
    color: var(--text-body);
    margin-left: 24px;
}

.server {
    display: flex;
    flex-direction: row;
    height: auto;
    width: 100%;
    cursor: pointer;
    padding: 10px 0;
    line-height: 1.3;
    font-family: var(--font-family);
}

.server:hover {
    background-color: var(--bg-header);
}

.server-icon {
    width: 64px;
    height: 64px;
    margin-left: 24px;
}

.server-text {
    margin: auto;
    margin-left: 16px;
    color: var(--text-body);
    font-size: 14px;
    white-space: normal;
}

.server-text h3 {
    font-weight: bold;
    font-size: initial;
    margin-top: 0px;
    margin-bottom: 4px;
}

.server.monitoring {
    align-items: center;
    cursor: default;
}

.server.monitoring.node {
    padding-left: 40px;
    padding-bottom: 10px;
}

.server.monitoring.cluster {
    padding: 10px;
    padding-left: 0;
}

.server.monitoring .server-text p {
    margin: 0;
}

.server.monitoring .server-text {
    height: auto;
    margin-top: 0;
}

.balancer-link {
    padding-top: 5px;
}

.server.monitoring:hover {
    background-color: inherit;
}

.server.monitoring .balancer-link a {
    display: inline-block;
    color: var(--text-link);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.32;
    text-decoration: none;
    cursor: pointer;
}

.server.monitoring .balancer-link a:hover {
    color: var(--text-link-hover);
    transition: all 0.1s ease-in-out;
}

/** Bottom Links **/

.login-links {
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
}

.login-links div {
    display: inline-block;
    min-height: 24px;
    border-radius: 2px;
    padding: 4px 8px;
}

.login-links div a {
    text-align: center;
    color: var(--text-link);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.32;
    text-decoration: none;
    cursor: pointer;
}

.login-links div:hover {
    background-color: var(--bg-hover);
    transition: all 0.1s ease-in-out;
}


/** bottom Links end **/

.login-view .login-top .login .login-apps {
    display: none;
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-end;
    height: auto;
}

.login-view .login-top .login .login-copyright {
    display: none;
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-end;
    height: auto;
    color: var(--text-body);
    font-size: 12px;
    padding: 16px;
}

.login-view .login-top .spacer {
    flex: auto;
    max-width: 28.125rem;
}

.login-view .login-top .info {
    width: 525px;
    justify-content: flex-end;
    /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
    position: absolute; 
    left: 0px;
    bottom: 0px;
}

.login-view .login-top .info .info-container {
    position: relative;
    font-family: var(--font-family);
}

.login-view .login-top .info .info-container .info-version {
    height: 96px;
    width: 260px;
    padding: 12px 24px;  
    z-index: 1;
    /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
    position: fixed;
    bottom: 88px;
    left: 48px;
    background-color: transparent;   
    color: var(--panel-version-text);      
    opacity: 0.6;
    font-size: 30px;
    font-weight: 400;
}

.login-view .login-top .info .info-container .info-appName {
    padding: 24px;
    width: 525px;
    background: var(--panel-appname-bg);
    position: relative;
    z-index: 2;
    display: none; /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
}

.login-view .login-top .info .info-container .info-appName h1 {
    color: var(--panel-appname-text);
    font-size: 50px;
    margin-bottom: 16px;
}

.login-view .login-top .info .info-container .info-appName h2 {
    color: var(--panel-appname-text);
    font-size: 24px;
    font-weight: 600;
}

.login-view .login-top .info .info-container .tag {
    background: var(--panel-version-bg);
    color: var(--panel-version-text);
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    width: 525px;
    text-align: right;
    padding: 6px;
    display: none; /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
}

.login-view .xcelerator-brand {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34.5vw;
    height: 66.4vh;
    z-index: -1;
    pointer-events: none;
}

.login-view .login-apps {
    flex: 1 0 auto;
    max-height: 96px;
    background-color: var(--bg-page);
}

.login-view .login-copyright {
    display: flex;
    flex: 0 0 auto;
    height: auto;
    color: var(--text-body);
    font-size: 14px;
    margin: 0;
    padding: 24px;
    /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
    position: fixed;
    bottom: 64px;
    left: 48px;
    opacity: 0.6;
    justify-content: left;
    z-index: 2;
    flex-direction: column;
    min-height: 85px;
}

.login-copyright a {
    color: var(--text-link);
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    margin-left: -4px;
}

.login-copyright a:hover {
    color: var(--text-link-hover);
}

#chooseFileButton {
	margin:10px;
	margin-bottom: 0;
    color: var(--text-body);
    cursor: pointer;
}

#chooseFileButton::file-selector-button {
    background: transparent;
    border: solid 1px var(--text-body);
    border-radius: 2px;
    color: var(--text-body);
    font-size: 12px;
    font-weight: normal;
    padding: 4px 8px;
    box-sizing: border-box;
    height: 32px;
    margin-bottom: 8px;
}


/* Hiding prefetch window */

#prefetch {
    display: none;
    width: 1px;
    height: 1px;
}

.fade-in {
    animation: fadeIn ease-in-out 0.25s;
    animation-fill-mode: forwards;
    -webkit-animation: fadeIn ease-in-out 0.25s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation: fadeIn ease-in-out 0.25s;
    -moz-animation-fill-mode: forwards;
    -o-animation: fadeIn ease-in-out 0.25s;
    -o-animation-fill-mode: forwards;
    -ms-animation: fadeIn ease-in-out 0.25s;
    -ms-animation-fill-mode: forwards;
    flex: 1 1 auto;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        height: initial;
    }
    100% {
        height: initial;
        visibility: visible;
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
        height: initial;
    }
    100% {
        height: initial;
        visibility: visible;
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        height: initial;
    }
    100% {
        height: initial;
        visibility: visible;
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
        height: initial;
    }
    100% {
        height: initial;
        visibility: visible;
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
        height: initial;
    }
    100% {
        height: initial;
        visibility: visible;
        opacity: 1;
    }
}

.fade-out {
    animation: fadeOut ease-in-out 0.25s;
    animation-fill-mode: forwards;
    -webkit-animation: fadeOut ease-in-out 0.25s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation: fadeOut ease-in-out 0.25s;
    -moz-animation-fill-mode: forwards;
    -o-animation: fadeOut ease-in-out 0.25s;
    -o-animation-fill-mode: forwards;
    -ms-animation: fadeOut ease-in-out 0.25s;
    -ms-animation-fill-mode: forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    75% {
        position: static;
        height: initial;
    }
    100% {
        opacity: 0;
        height: 0;
        position: absolute;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    75% {
        position: static;
        height: initial;
    }
    100% {
        opacity: 0;
        height: 0;
        position: absolute;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    75% {
        position: static;
        height: initial;
    }
    100% {
        opacity: 0;
        height: 0;
        position: absolute;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    75% {
        position: static;
        height: initial;
    }
    100% {
        opacity: 0;
        height: 0;
        position: absolute;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    75% {
        position: static;
        height: initial;
    }
    100% {
        opacity: 0;
        height: 0;
        position: absolute;
    }
}

/** screen more than 1200px height **/
@media only screen and (min-height: 1200px) {

    .login-view .login-top .info {
        justify-content: center;
        padding-top: 140px;
    }
}

/** screen less than 1070px width **/

@media only screen and (max-width: 1070px) {
    .column.info,
    .column.spacer {
        display: none;
    }
    .login-view .login-top .login {
        margin: auto 0;
        align-items: flex-start;
        height: min-content;
    }
    .login-view .login-top .login .info-container {
        display: block;        
        margin: 0px;
        padding: 0px;
    }
    .login-view .login-top .login .info-container .info-version {
        height: auto;
        font-size: 18px;
        padding: 10px 24px;
        /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
        position: relative;
        background-color: transparent;
        opacity: 0.6;
        font-size: 24px;
        font-weight: 400;
        bottom: auto;
        left: auto;
    }
    .login-view .login-top .login .info-container .info-appName {
        padding: 16px;
        background: var(--panel-version-bg);
        display: none; /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
    }
    .login-view .login-top .login .info-container .info-appName h1 {
        font-size: 37.5px;
    }
    .login-view .login-top .login .info-container .info-appName h2 {
        font-size: 18px;
    }
    .login-view .login-top .login .info-container .tag {
        font-size: 12px;
        display: none; /*Note by Bretislav Mazoch, UX Team (12-Mar-2026): Intentional styling to fit requirements of the new layout without adjusting html code.*/
    }
    .login-view .login-top .login .login-dialog {
        justify-content: flex-start;
    }
    .login-view .login-top .login .panel-dialog {
        flex: 0 1 auto;
    }
    .login-view .login-apps {
        height: auto;
        flex: 1 1 auto;
    }
    .login-view .login-apps img {
        height: 48px;
    }
    .hero .login-copyright {
        justify-content: center;
        margin-top: 0;
    }
    .server-dialog {
        flex: 0 1 auto;
    }

    .login-view .login-top .login .siemens-logo { 
        position: relative;
        top: auto;
        left: auto ;
        margin-bottom: 24px;
    }
    .login-view .login-copyright {
        position: relative;
        text-align: center;
        padding-bottom: 32px;
        left: 0px;
        bottom: auto;
    }
}


/** screen less than 448px width **/

@media only screen and (max-width: 448px) {
    .login-view .login-apps,
    .login-view .login-copyright {
        display: none;
    }
    .login-view .column.login {
        margin: 0;
        height: 100%;
        width: 100%;
        background-image: none;          
        background-color: var(--bg-page); 
    }
    .login-view .column.login .info-container,
    .login-view .column.login .login-dialog {
        width: 100%;
    }
    .login-view .login-top .login .login-apps,
    .login-view .login-top .login .login-copyright {
        justify-content: center;
        display: flex;
    }
}

@media only screen and (max-height: 600px) {
    .login-view .login-top .login .info-container {
        display: none;
    }
    .login img.logo {
        display: none;
    }

}