:root {
    --RosRed: #E30613;
    --RosRedLight: #C05050;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {    
    margin-bottom: 30px;
    background-image: url('/images/Background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.MainImages {
    max-width: 80%;
    max-height: 200px;
}

.HomeButton {
    width: 200px;
    max-width: 250px;
    font-weight: bold;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background-color: var(--RosRed);
    border: 3px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.4rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .HomeButton:hover {
        color: white;
        background-color: var(--RosRedLight);
        border: 3px solid rgb(120, 0, 0);
        box-shadow: 0px 0px 15px var(--RosRed);
    }

.HomeBtnComingSoon {
    font-style: italic;
}

.PremiumButton {
    width: 80px;  
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--RosRed);   
    font-size: 0.9rem;
    border-radius: 0.2rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .PremiumButton:hover {
        color: white;
        background-color: var(--RosRedLight);
        border: 1px solid rgb(120, 0, 0);
        box-shadow: 0px 0px 15px var(--RosRed);
    }

.maincol {
    margin: 5px;
    padding: 10px;
    /*background-color: white;*/
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}
.maincol2 {
    height: 85vh;   
}
@media (max-width: 700px) {
    .resultcol {
        min-width: fit-content;
    }
}
.StepDisplay {
    display:flex;      
    align-items:center; 
    margin-left:-10px; 
    margin-right:-10px
}
.DataField {
    margin-top:15px;
}
.FieldTitle {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
}
.SBCTable {
    width: 100%;
    font-size: 9px;
    background-color: #E7EAED;
    white-space:nowrap;
}
.SBCHeader {
    background-color: var(--RosRed);
    color: white;
    font-size: 8px;
    font-weight: bold;
    text-align: left;
    padding-left: 4px;
}

@media (min-width:600px)
{
    .SBCTable{
        font-size: 10px;
    }
    .SBCHeader{
        font-size: 10px;
    }
}
@media (min-width: 1200px)
{
    .SBCTable{
        font-size: 11px;
    }
    .SBCHeader {
        font-size: 11px;
    }
}
@media (min-width: 1368px)
{
    .SBCTable{
        font-size:12px;
    }
    .SBCHeader {
        font-size: 12px;
    }
}

.SBCInfoTitle {
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px
}
.SBCInfoText {
    font-size: 12px;
    font-weight: bold
}

.accordion-item{
    border:none;
}
.accordion-button {
    color: white;
    background-color: var(--RosRed);
    font-size: 12px;
    font-weight: bold;
    padding: 2px;
    padding-left: 5px;
    margin-top:2px;
}

    .accordion-button:not(.collapsed) {
        color: white;
        background-color: var(--RosRed);
        font-size: 12px;
        font-weight: bold;
        padding: 2px;
        padding-left: 5px;
    }

    .accordion-button:focus {
        z-index: 3;
        border-color: var(--RosRed);
        outline: 0;
        box-shadow: none;
    }

    .accordion-button:not(.collapsed)::after { /*%230c63e4*/
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg);
    }

    .accordion-button::after {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: auto;
        content: ""; /*%23212529*/
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-size: 1.25rem;
        transition: transform 0.2s ease-in-out;
    }

.list-group-header {
    background-color: var(--RosRed);
    color: white;
    font-weight: bold;
    font-size: 12px;
}
.list-group-item1 {
    background-color: #E7EAED;
}
/* 30.09.2024 */
.list-group-item2 {
    background-color: #ccd2d8;
}

.ConfigBox {
    float: left;
    min-width: 85%;
    max-width: 85%;
    padding: 10px;
    padding-top: 0px;
    /*background-color: var(--RosRed);    */
    background-color: whitesmoke;
    border-style: none;
    /*border-width: 0;*/
    /*border-color: gray;*/
    color: black;
}
.CBBackground {
    background-image: url(/images/Logos/ViertelRose_GrayLight.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 70%;
}
.CBPropHeader{
    text-align:left;
    padding-left:5%;
}
.CBProperty{
    text-align:right;
    padding-right:5%;
}
.CBPropInput{
    text-align:right;
    background:none;
    border:none;
    color:black;
}
.CBPropInput:disabled{
    color: gray;
}
.ClearFixCB{
    content:"";
    clear:both;
    display:table;
}

.progressOK {
    accent-color: #006400;
}

.progressWarning {
    accent-color: #ac560e;
}

.progressError {
    accent-color: #8B0000;
}


.grid-container {
    display: grid;
    gap: 2px 1%;
    margin-top: 10px;
}
.grid-container2 {
    grid-template-columns: 50% 50%;
}
.grid-container3 {
    grid-template-columns: 24% 37% 37%;
}

.grid-container4 {
    grid-template-columns: 24% 24% 24% 24%;
}

.grid-container5 {
    grid-template-columns: 24% 20% 16% 20% 16%;
}
.grid-container6 {
    grid-template-columns: 12% 20% 14% 20% 14% 20%;
}

.grid-container8 {
    grid-template-columns: 18% 6% 17% 6% 17% 6% 17% 6%;
}

.grid-container-Header {
    background-color: var(--RosRed);
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding-left: 5px;
}

.grid-container5-Header {
    grid-column: 1/6;
}

.grid-item {
    background-color: #E7EAED;
    font-size: 12px;
    text-align: center;
    text-indent: 3px;
}

.grid-item1 {
    grid-column: 1/1;
}

.grid-item2 {
    grid-column: 2/2;
}

.grid-item3 {
    grid-column: 3/3;
}

.grid-item1-3 {
    grid-column: 1/3;
}

.grid-item1-4 {
    grid-column: 1/4;
}

.grid-item1-5 {
    grid-column: 1/5;
}

.grid-item1-6 {
    grid-column: 1/6;
}

.grid-item1-7 {
    grid-column: 1/7;
}

.grid-item1-8 {
    grid-column: 1/8;
}

.grid-item1-9 {
    grid-column: 1/9;
}

.grid-item2-4 {
    grid-column: 2/4;
}

.grid-item2-5 {
    grid-column: 2/5;
}

.grid-item2-6 {
    grid-column: 2/6;
}

.grid-item2-7 {
    grid-column: 2/7;
}

.grid-item2-8 {
    grid-column: 2/8;
}

.grid-item2-9 {
    grid-column: 2/9;
}

.grid-item3-5 {
    grid-column: 3/5;
}

.grid-item3-6 {
    grid-column: 3/6;
}

.grid-item3-7 {
    grid-column: 3/7;
}

.grid-item3-8 {
    grid-column: 3/8;
}

.grid-item3-9 {
    grid-column: 3/9;
}

.grid-item4-6 {
    grid-column: 4/6;
}

.grid-item4-7 {
    grid-column: 4/7;
}

.grid-item4-8 {
    grid-column: 4/8;
}

.grid-item4-9 {
    grid-column: 4/9;
}

.grid-item5-7 {
    grid-column: 5/7;
}

.grid-item5-8 {
    grid-column: 5/8;
}

.grid-item5-9 {
    grid-column: 5/9;
}

.grid-item6-8 {
    grid-column: 6/8;
}

.grid-item6-9 {
    grid-column: 6/9;
}

.grid-item7-9 {
    grid-column: 7/9;
}

.grid-item-white {
    background-color: white;
}

.grid-item-dark {
    background-color: #ccd2d8
}

.grid-item-Caption {
    font-weight: bold;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5px;
}

.grid-item-Caption1-6 {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    grid-column: 1/6;
    padding-left: 5px;
}

.grid-item-Header {
    background-color: var(--RosRed);
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding-left: 10px;
}

.grid-item-Header1-4 {
    text-align: center;
    grid-column: 1/4;
}

.grid-item-Header2-4 {
    text-align: center;
    grid-column: 2/4;
}

.grid-item-Header4-6 {
    text-align: center;
    grid-column: 4/6;
}

.grid-item-Header4-7 {
    text-align: center;
    grid-column: 4/7;
}

.grid-item-Header2-6 {
    text-align: left;
    grid-column: 2/6;
}

.grid-item-Header1-6 {
    text-align: left;
    grid-column: 1/6;
}
.grid-item-Header1-9 {
    text-align: left;
    grid-column: 1/9;
}

/*    .grid-item:nth-child(odd) {
        background-color: #ccd2d8;
    }*/

.grid-container-img {
    display: grid;
    gap: 10px 10px;
    grid-template-columns: 30% 30% 30%;
    padding: 10px;
    padding-left: 30px;
}

.grid-item-img {
    height: 100%;
    width: 100%;
    max-height: 100px;
    max-width: 100px;
}

.btn {
    font-size: 12px;
    /*font-weight: bold;*/
    color: black;
    background-color: #D9D9D9;
    border: 0;
}
.btn-Select {
    font-size: 9px;
}

@media (min-width:600px) {
    .btn-Select {
        font-size: 10px;
    }
}

@media (min-width: 1200px) {
    .btn-Select {
        font-size: 11px;
    }
}

@media (min-width: 1368px) {
    .btn-Select {
        font-size: 12px;
    }
}
.RedButton {
    color: white;
    background-color: var(--RosRed);
}
    .RedButton:focus {
        box-shadow: 0px 0px 15px var(--RosRed);
    }
    .RedButton:hover {
        color: white;
        background-color: var(--RosRedLight);
        box-shadow: 0px 0px 15px var(--RosRed);
    }
.btn-Variante {
    color: white;
    background-color: var(--RosRed);
    font-size: 14px;
    font-weight: normal;
}

    .btn-Variante:focus {
        box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
    }

    .btn-Variante:hover {
        color: white;
        font-weight: bold;
        box-shadow: 0 0.1rem 0 0.15rem rgba(225, 83, 97, 0.5);
    }

.btn-check:not(:checked) + .btn-outline-danger{
    font-weight:bold;
}
.btn-check:checked + .btn-outline-danger {
    color: #fff;    
    background-color: var(--RosRed);
    border-color: var(--RosRed);
}
.btn-profile{
    left:0;
    width:100%;
    margin-top: 5px;
}

.btn-DL-Image {
    background-image: url('/images/Btns/download-32.png');
    background-repeat: no-repeat;
    background-position: 5px center;
    padding: 10px;
    padding-left: 45px;
}
.btn-DL-Image:hover{
    background-image: url('/images/Btns/download-32_white.png');   
}
tr.table-row {
    line-height: 13px;
}

table.table-Style1 {
    font-family: arial, sans-serif;
    font-size: 11px;
    border-collapse: collapse;
    width: 100%;
}
@media (min-width:747px) and (max-width:790px){
    .WRGTable {
        font-size: 8px;
    }
}
@media (min-width:791px) and (max-width:820px) {
    .WRGTable {
        font-size: 9px;
    }
}
@media (min-width:821px) and (max-width:1000px) {
    .WRGTable {
        font-size: 10px;
    }
}


.tbl-accordion-body {
    display: none;
}

td.td-Style1, th.th-Style1 {
    text-align: left;
    padding: 8px;
}
td.tdimg {
    width:7%;
    height:20px;
    border: none;
    padding: 0px;
}

.tr-Odd {
    background-color: #E7EAED;
}
.tr-Even {
    background-color: #ccd2d8;
}
.tr-Odd:hover, .tr-Even:hover {
    background-color: #F8F9FA;
}

.tr-SubStyle {
    background-color: #ebebeb;
}
.tr-SubStyle:nth-child(odd) {
    background-color: #f5f5f5;
}

.center-tabledata {
    height:30px;
    vertical-align:central;
}
.DataTable {   
    line-height:20px;
    font-size:12px;
    margin-left:2%;
    width:98%;
    background-color: #ebebeb;
}

.DataTable tr:nth-child(even) {
    background-color: #f5f5f5;
}
.LegendTable {
    line-height: normal;
    font-family: 'Segoe';
    font-size: 9px;
    margin-left: 2%;
    width: 98%;
    background-color: #ebebeb;
}

    .LegendTable tr:nth-child(even) {
        background-color: #f5f5f5;
    }
.img-container {
    position: relative;
    color: black;
}
/* Bottom left text */
.img-bottom-left {
    position: absolute;
    bottom: 20px;
    left: 2px;
}

/* Top left text */
.img-top-left {
    position: absolute;
    top: 4px;
    left: 2px;
}

/* Top right text */
.img-top-right {
    position: absolute;
    top: 16px;
    right: 2px;
}

/* Bottom right text */
.img-bottom-right {
    position: absolute;
    bottom: 0px;
    right: 12px;
}

/*13.03.2025*/
.account-container {    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 2rem 0;
}

.account-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    opacity: .9;
}
@media (min-width:1000px) {
    .account-box {
        width: 80%;
    }
}
@media (min-width:1400px) {
    .account-box {
        width: 60%;
    }
}
.account-box-small {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    min-width: 400px;
    max-width: 600px;
    opacity: .9;
}

@media (min-width:850px) {
    .account-box-small {
        width: 60%;
    }
}

@media (min-width:1250px) {
    .account-box-small {
        width: 40%;
    }
}

/*20.08.2025*/
.imprint-box {
    display: flex;
    justify-content: center;
    width: 70%;
    padding: 10px;
    margin-top:30px;
}
.imprint-line {
    height: 10px;
    background: linear-gradient(#c4bdbd,whitesmoke,#c4bdbd)
}

.table-settings {
    width: 100%;
    white-space:nowrap;
}

.account-grid-container {
    display: grid;
    gap: 1px 3%;
    margin-top: 1px;
    margin-right: 20px;
}

.account-grid-container2 {
    grid-template-columns: 48% 49%;
}

.account-grid-container3 {
    grid-template-columns: 48% 15% 31%;
}

.form-control {
    border: 1px solid #c7c7c7 !important;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
    background-color: whitesmoke;
}

.form-select:focus {
    border-color: #dee2e6;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}

.form-check-input:focus {
    border-color: #dee2e6;   
    box-shadow: none;
}

.form-check-input:checked {
    background-color: #C00000;
    border-color: #C00000;
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='gray'/%3e%3c/svg%3e");
}

.col-settings{
    float:left;
    width:33%;
    min-width:fit-content;
}

.col-15{
    float:left;
    width: 15%;
    min-width: 75px;
}
.col-20 {
    float: left;
    width: 20%;
    min-width: 100px;
}
.col-25 {   
    float:left;
    width:25%;  
    min-width: 125px;
}

.col-30 {
    float: left;
    width: 30%;
    min-width: 150px;
}
.col-35 {
    float: left;
    width: 35%;
    min-width: 175px;
}

.col-40 {
    float: left;
    width: 40%;
    min-width: 200px;
}

.col-45 {
    float: left;
    width: 45%;
    min-width: 225px;
}
.col-50 {
    float:left;
    width:50%;
    min-width: 250px;
}
.col-75 {
    float: left;
    width: 75%;
    min-width: 375px;
}


/**/
.PrintDialog {
    max-width: 100vw;
}
@media (min-width:600px) {
    .PrintDialog {
        max-width: 85vw;
    }
}

@media (min-width: 1200px) {
    .PrintDialog {
        max-width: 60vw;
    }
}
.ChartContainer {
    min-width:385px;
    height: 45vw;
    margin-bottom: 10px;
}
@media (min-width:922px)
{
    .ChartContainer {
        height: 25vw;
        margin-bottom: 10px;
    }
}
.ImgDim {
    height: auto;
    width: 100%;
    padding: 1rem;
}
.acc-button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.4s;
}

    .acc-button img {
        position: relative;
        right: -75%;
    }

.wayrect {
    height: 10px;
    background: var(--RosRed)
}

.wayrect-dashed {
    background: repeating-linear-gradient(90deg,var(--RosRed) 0 20px,#0000 0 40px)
}

.wayrect-gray {
    height: 10px;
    background-color: #969696;
}

.wayrect-gradient {
    background: linear-gradient(90deg,var(--RosRed),#969696)
}

.wayrect-dashed-gray {
    background: repeating-linear-gradient(90deg,#969696 0 40px, #0000 0 60px);
}

.stepcircle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 25px;
    font-weight:bold;
    text-decoration: none;
    color: #fff;
    text-align: center;
    background: var(--RosRed);
    cursor: default;
    position: relative;
}
.stepcircle .steptooltip {
    line-height: normal;
    font-size: 15px;
    font-weight: bold;
    visibility: hidden;
    width: 150px;
    height: 30px;
    background-color: var(--RosRed);
    color: white;
    text-align: center;
    vertical-align: central;
    border-radius: 0.4rem;
    position: absolute;
    z-index: 10;
    top: 20%;
    left: 80%;
    opacity: 0;
    transition: opacity 0.6s;
    padding-top: 10%;
}
.stepcircle .steptooltip-gray{
    background-color: #969696;
}

.stepcircle:hover .steptooltip {
    visibility: visible;
    opacity: 1;
}

.stepcircle-pointer:hover {
    color: #383838;
}
.stepcircle-gray {    
    background: #969696;
}

.stepcircle-pointer {
    cursor: pointer;
    position: relative;
}
.stepcircle-pointer:hover .steptooltip {
    visibility: visible;
    opacity: 1;
}

stepcircle-pointer .steptooltip {
    line-height: normal;
    font-size: 15px;
    font-weight: bold;
    visibility: hidden;
    width: 150px;
    height: 30px;
    background-color: var(--RosRed);
    color: white;
    text-align: center;
    vertical-align: central;
    border-radius: 0.4rem;
    position: absolute;
    z-index: 10;
    top: 20%;
    left: 80%;
    opacity: 0;
    transition: opacity 0.6s;
    padding-top: 10%;
}

.steptext {
    color: var(--RosRed);
    font-weight: bold;
    padding-top: 5px;
}

.steptext-gray {
    font-weight: normal;
    color: #969696;
}

.dnwload-btn {
    background-image:url("images/Files/ftpdf.png");
    height:20px;
}

*.scale {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    position:relative;  
    z-index:1;
}
    *.scale:hover {
        -webkit-transform: scale(3);
        -moz-transform: scale(3);
        -ms-transform: scale(3);
        -o-transform: scale(3);
        transform: scale(3);
        z-index: 3;
    }
/* TRANSITION */
*.transition {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}


#blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .7;
    background-color: #000;
    z-index: 1000;
    vertical-align: middle;
}

    #blocker div {
        position: relative; 
        text-align:center;    
        top: 40%;
        transform:translateY(-50%);
        color: white;
        font-weight: bold;
    }
    #blocker img {             
        height: 200px;
        margin-bottom:-40px;
    }