@font-face {
    font-family: 'NeueHaasPro';
    src: url('/static/assets/fonts/Linotype\ -\ Neue\ Haas\ Unica\ Pro.ttf');
}

@font-face {
    font-family: 'NeueHaasProBold';
    src: url('/static/assets/fonts/Linotype\ -\ Neue\ Haas\ Unica\ Pro\ Bold.ttf');
}

@font-face {
    font-family: 'NeueHaasProLight';
    src: url('/static/assets/fonts/Linotype\ -\ Neue\ Haas\ Unica\ Pro\ Light.ttf');
}

:root {
    --primary-color: #FF500F;
    --secondary-color: #0028CD;
    --gray: #4B4B4B;
    --litegray: #FAFAFA;
    --bordergray: #EBEBEB;
    --content-width: 1383px;
    --content-width-wide: 1451px;
}

* {
    box-sizing: border-box;
}

body,
html {
    font-family: 'NeueHaasPro';
    margin: 0;
    padding: 0;
    height: 100%;
}

h1 {
    font-family: "NeueHaasProBold";
}

button {
    cursor: pointer;
}

.full-hw {
    min-height: 100vh;
    min-width: 100vw;
}

.landing-page__content {
    max-width: var(--content-width);
    padding: 40px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
    box-sizing: border-box;
}

.landing-page__content .content__split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.landing-page__content .content__split .col-1 {
    flex-basis: 65%;
}

.landing-page__content .content__split .col-2 {
    flex-basis: 35%;
}

.landing-page__headline {
    font-size: 50px;
    color: white;
}

.highlight-red {
    color: #EE3F23;
    font-family: "NeueHaasProBold";
}

.landing-page__info {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
}

.landing-page__info a {
    color: white;
    text-decoration: none;
    font-family: "NeueHaasProBold";
}

.landing-page__footer {
    display: flex;
    justify-content: space-between;
    border-top: 1.5px solid white;
    padding: 10px 0;
    color: white;
    font-size: 14px;
}

.landing-page__footer ul {
    display: flex;
    flex-direction: row;
}

.landing-page__footer a {
    color: white;
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 10px;
}

nav ul li button {
    color: #6A7074;
}

.landing-page__footer li:before {
    content: '|';
    padding: 0 8px;
}

.landing-page__footer li:first-child:before {
    content: '';
    padding: 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    text-indent: 0;
    list-style-type: none;
}

.bg-technology {
    background-image: url("/static/assets/img/TechnologyHeader.png");
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-technology::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    opacity: 0.8;
    z-index: -1;
}

.modal__wrapper {
    display: none;
    /* Hidden by default */
    opacity: 0;
    position: fixed;
    /* Stay in place */
    z-index: 99;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.3);
    /* Black w/ opacity */
    transition: 0.3s all;
}

.modal {
    position: relative;
    background-color: #fff;
    padding: 25px 35px;
    border-radius: 5px;
    box-shadow: 0 10px 25px #00000029;
    text-align: center;
}

.modal .modal__title {
    margin: 0;
    margin-bottom: 10px;
}

.modal .modal__subtitle {
    font-family: "NeueHaasProLight";
    margin: auto;
    color: #6A7074;
    margin-bottom: 30px;
}

.modal .modal__close {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.modal .modal__input-wrapper {
    width: 100%;
    margin: 20px 0 10px;
}

input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 2px solid #8E98A0;
    border-radius: 5px;
    margin-bottom: 10px;
}


input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.copy-input {
    font-family: "NeueHaasProBold";
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #8E98A0;
    border-radius: 5px;
    margin-bottom: 10px;
    gap: 15px;
}

/*
.copy-input:has(input:focus) {
    border-color:var(--primary-color);
}
.copy-input:has(button:focus) {
    border-color:var(--primary-color);
}
*/

.copy-input input {
    padding: 0;
    margin: 0;
    border: none;
}

.copy-input button {
    display: flex;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}


textarea {
    font-family: "NeueHaasPro";
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 2px solid #8E98A0;
    min-height: 150px;
    border-radius: 5px;
    margin-bottom: 10px;
    resize: none;
}


textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.input-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.button {
    font-family: "NeueHaasProBold";
    padding: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.button.success {
    background-color: #30AC2B;
    border-color: #30AC2B;
}

.button.arrow::after {
    margin-left: 5px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.574' height='10.921' viewBox='0 0 14.574 10.921'%3E%3Cg id='Gruppe_5068' data-name='Gruppe 5068' transform='translate(0.75 1.061)'%3E%3Cline id='Linie_2' data-name='Linie 2' x2='12.386' transform='translate(0 4.4)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='1.5'/%3E%3Cpath id='Pfad_7283' data-name='Pfad 7283' d='M2879,634.054l4.4,4.4-4.4,4.4' transform='translate(-2870.324 -634.054)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
    display: inline-block;
}

.button-outline {
    color: var(--primary-color);
    background-color: transparent;
}


.button-outline.arrow::after {
    margin-left: 5px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.574' height='10.921' viewBox='0 0 14.574 10.921'%3E%3Cg id='Gruppe_5068' data-name='Gruppe 5068' transform='translate(-4496.75 -2079.439)'%3E%3Cline id='Linie_2' data-name='Linie 2' x2='12.386' transform='translate(4497.5 2084.9)' fill='none' stroke='%23ee3f23' stroke-linecap='round' stroke-width='1.5'/%3E%3Cpath id='Pfad_7283' data-name='Pfad 7283' d='M2879,634.054l4.4,4.4-4.4,4.4' transform='translate(1627.176 1446.446)' fill='none' stroke='%23ee3f23' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
    display: inline-block;
}

.button-small {
    text-decoration: none;
    border: none;
    background: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #6A7074;
}

.modal__buttons {
    display: flex;
    justify-content: space-between;
}

.buttons__wrapper {
    display: flex;
    gap: 10px;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page__header {
    border-bottom: 2px solid var(--litegray);
    width: 100%;
    padding: 30px 0 15px;
}

.header__content {
    width: var(--content-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.page__main {
    min-width: 100%;
    background-color: var(--litegray);
}

.assets__content {
    width: 100%;
    padding: 15px 25px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 10px 25px #00000029;
}

.main__tab {
    padding-bottom: 30px;
}

.assets__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assets__header h2 {
    margin: 0;
    padding: 0;
}

.assets__header .buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.main__info {
    background-color: white;
}

.main__border {
    border-top: 1px solid var(--bordergray);
}

.info__content {
    padding: 30px 0;
    max-width: var(--content-width);
    margin: auto;
}

.page__footer {
    color: #838383;
    font-size: 14px;
    padding-bottom: 20px;
    width: 100%;
    background-color: var(--litegray);
}

.footer__content {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.page__footer ul {
    display: flex;
    flex-direction: row;
}

.page__footer a {
    text-decoration: none;
    color: #838383;
    transition: 0.2s all;
}

.page__footer a:hover {
    color: var(--primary-color);
}

.page__footer li:before {
    content: '|';
    padding: 0 8px;
}

.page__footer li:first-child:before {
    content: '';
    padding: 0;
}


/** toggle ios style **/
.tgl {
    display: none;
}

.tgl,
.tgl:after,
.tgl:before,
.tgl *,
.tgl *:after,
.tgl *:before,
.tgl+.tgl-btn {
    box-sizing: border-box;
}

.tgl::-moz-selection,
.tgl:after::-moz-selection,
.tgl:before::-moz-selection,
.tgl *::-moz-selection,
.tgl *:after::-moz-selection,
.tgl *:before::-moz-selection,
.tgl+.tgl-btn::-moz-selection {
    background: none;
}

.tgl::selection,
.tgl:after::selection,
.tgl:before::selection,
.tgl *::selection,
.tgl *:after::selection,
.tgl *:before::selection,
.tgl+.tgl-btn::selection {
    background: none;
}

.tgl+.tgl-btn {
    outline: 0;
    display: block;
    width: 3em;
    height: 1.5em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tgl+.tgl-btn:after,
.tgl+.tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}

.tgl+.tgl-btn:after {
    left: 0;
}

.tgl+.tgl-btn:before {
    display: none;
}

.tgl:checked+.tgl-btn:after {
    left: 50%;
}

.tgl-ios+.tgl-btn {
    background: #8E98A0;
    border-radius: 2em;
    padding: 2px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border: 1px solid #e8eae9;
}

.tgl-ios+.tgl-btn:after {
    border-radius: 2em;
    background: #fff;
    -webkit-transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
    transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
}

.tgl-ios+.tgl-btn:hover:after {
    will-change: padding;
}

.tgl-ios+.tgl-btn:active {
    box-shadow: inset 0 0 0 2em #e8eae9;
}

.tgl-ios+.tgl-btn:active:after {
    padding-right: .8em;
}

.tgl-ios:checked+.tgl-btn {
    background: var(--primary-color);
}

.tgl-ios:checked+.tgl-btn:active {
    box-shadow: none;
}

.tgl-ios:checked+.tgl-btn:active:after {
    margin-left: -.8em;
}

.tgl-label {
    font-size: 12px;
}


/* tab */
.tab {
    background-color: white;
    border-bottom: 1px solid var(--bordergray);
}

.tab__nav {
    max-width: var(--content-width-wide);
    margin: auto;
    border-radius: 5px;
}

.tab__nav ul {
    display: flex;
    position: relative;
    border: 1px solid var(--bordergray);
    border-radius: 5px;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: fit-content;
}

.tab__nav li {
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    padding: 10px 16px;
    border-color: transparent;
    font-size: 14px;
}

.tab__nav li.active::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100%);
    height: calc(100%);
    border: 1px solid var(--bordergray);
    border-radius: 5px;
    border-bottom-color: var(--litegray);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 2;
}

.tab__nav li:hover {
    background-color: var(--litegray);
}

.tab__nav li.active {
    background-color: var(--litegray);
    color: var(--primary-color);
    font-family: 'NeueHaasProBold';
}

.tabcontent {
    display: none;
    max-width: var(--content-width-wide);
    margin: auto;
    min-height: calc(100vh - 400px);
    padding: 30px 0;
}

.tabcontent.active {
    display: flex;
}

/* table */
.table__content {
    width: calc(100% + 40px);
    border-collapse: separate;
    border-spacing: 20px 15px;
    margin-right: -20px;
    margin-left: -20px;
}

.table__content td {
    vertical-align: top;
    line-height: 24px;
    color: #6A7074;
    font-size: 15px;
}

.table__header th {
    width: 20%;
    font-size: 14px;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.table__header h3:last-child {
    width: 100%;
}

.table__vertical {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    margin: 20px 0;
}

.table__vertical tr {
    text-align: left;
    border-bottom: 1px solid black;
}

.table__vertical tr:last-child {
    border-bottom: none;
}

.table__vertical tr td {
    padding: 15px 0;
}

.table__vertical tr td:last-child {
    text-align: right;
}

.testresult_info {
    text-align: center;
    color: #6A7074;
    font-family: 'NeueHaasProLight';
    flex-direction: column;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
}

.testresult_info p {
    margin: 0;
}

.testresult_info h1 {
    font-family: 'NeueHaasProBold';
    margin: 0;
}

.tree-view {
}

.tree-view .item {
    margin-left: 16px;
    display: none;
}

.tree-view .caret {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
}

.tree-view  .caret::before {
  content: "\2B9F";
  color: black;
  display: inline-block;
  margin-right: 6px;
}

.tree-view .caret-down::before {
  transform: rotate(90deg);
}

.tree-view .active {
    display: block;
}