﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.AppInfoScrollContainer::-webkit-scrollbar-thumb {
    border-radius: 20px;

}
.AppInfoScrollContainer::-webkit-scrollbar {
    width: 20px;
}
.content {
    padding-top: 1.1rem;
}

input.Unknown {
    border: 3px solid;
}

input.Same {
    border: 3px solid;
}

input.Different {
    border: 3px solid;
}

h1:focus {
    outline: none;
}
.ImgLogo {
    width: 40px;
    margin: 0 10px;
    border-radius: 4px;
    padding: 2px;
}

.divider {
    width: 40%;
    height: 1px;
    background: white;
}
.dividerContainer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-self: stretch;
}
.dividerGrid {
    display: grid;
    width: 100%;
}
.sidebar {
    width: initial !important;
}
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    padding: 1rem 1rem 1rem 3.7rem;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.status-bar-safe-area {
    display: none;
}

@supports (-webkit-touch-callout: none) {
    .status-bar-safe-area {
        display: flex;
        position: sticky;
        top: 0;
        height: env(safe-area-inset-top);
        width: 100%;
        z-index: 1;
    }

    .flex-column, .navbar-brand {
        padding-left: env(safe-area-inset-left);
    }
}

div.LoadingDiv {
    display: none;
}

div.TechnicalReportTopic {
    display: flex;
    flex-direction: column;
    margin: 1vh 2vw 1vh 5vw;
}



div.TechnicalReportDescription {
    display: flex;
    flex-direction: column;
    margin: 1vh 2vw 1vh 5vw;
}

    div.TechnicalReportDescription *,
    div.TechnicalReportTopic * {
        margin: 1vh;
    }

div.TechnicalReportAdditionalFilesContainer {
    display: flex;
    flex-direction: column;
    margin: 1vh 2vw 1vh 5vw;
}

div.LoadingDiv-visible {
    z-index: 1;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader {
    position: relative;
    margin: auto;
    box-sizing: border-box;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid;
    transform-origin: 50% 50%;
    transform: perspective(200px) rotateX(66deg);
    animation: spinner-wiggle 1.2s infinite;
    display: block;
    padding: 2vh 2vw;
}

    .loader:before,
    .loader:after {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        box-sizing: border-box;
        border: 4px solid;
        animation: spinner-spin 1.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 1.2s linear infinite;
    }


    .loader:after {
        animation-delay: 0.4s;
    }

@keyframes spinner-spin {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes spinner-fade {
    25%, 75% {
        opacity: 0.1
    }

    50% {
        opacity: 1
    }
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

.TechnicalReportSaved {
    display: none;
}

.TechnicalReportSaved-Visible {
    display: block;
}

.FileDownloadItem:hover {
    font-weight: bold;
    cursor: pointer;
}

.FileDownloadItem {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.SmallWorkIndicator {
    display: flex;
    visibility: hidden;
    position:absolute;
}

.SmallWorkIndicator-Visible {
    display: flex;
    visibility: visible;
    align-items: center;
    justify-content: center;
    position:absolute;
}

.SmallLoader {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
}

    .SmallLoader::after,
    .SmallLoader::before {
        content: '';
        box-sizing: border-box;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
        animation: animloader 2s linear infinite;
    }

    .SmallLoader::after {
        animation-delay: 1s;
    }

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}


article {
    display: flex;
    flex: 1 1 0px;
}

.CorneredInput {
    border-radius: 10px;
    text-align: center;
}

.TextSmall {
    font-size: 18px;
}

.TextNormal {
    font-size: 22px;
}

.TextLarge {
    font-size: 24px;
}


.ColoredButton {
    border: 1px solid;
    padding: 0 20px;
}

main {
    width: 100%;
    display: flex;   
}

.loginbutton {
    padding: 0 20px;
}

.FontNormal {
    font-weight: normal;
}

.FontBold {
    font-weight: bold;
}

.FontThin {
    font-weight: 100;
}

.CenterHeadline {
    align-self: center;
}
.TextAlignCenter{
    text-align:center;
}
.logincontainer {
    display: flex;
    flex-flow: column;
    flex: 0 1 75vw;
}

.logincontent {
    display: flex;
    flex-flow: column;
    border-radius: 20px;
}

div.LoginInputFieldContainer {
    display: flex;
    align-self: center;
}

.centerbutton {
    align-self: center;
}

div.registerresetcontainer {
    align-self: stretch;
    display: flex;
    flex: 1 1 0px;
    justify-content: end;
    flex-wrap: wrap;
    align-content: end;
}

div.WeeklyReportItemContainer {
    margin: 0 1vh 1vh 1vh;
    padding: 1vh;
}
    div.WeeklyReportItemContainer:last-child{
        border-bottom:0px solid !important;
    }

    .UserAdminContainer {
        display: flex;
        flex-direction: column
    }

.FlexColumnContainer{
    display: flex;
    flex-direction: column;
}
.FlexRowContainer{
    display: flex;
}

.TraineeSearchMainContainer {
    display: flex;
}

.UserAdminSearchAddRow {
    display: flex;
    margin: 30px 0 60px 0;
}
.SearchAddRow {
    display: flex;
    margin: 30px 0 60px 0;
}


.H1Big {
    font-size: 48px;
}
.H1Medium{
    font-size:30px;
}
.H1Small{
    font-size:22px;
}

.table-header, .table-row {
    display: contents;
}
.userAdmin-table-row,
.technicalReport-table-row {
    display: contents;
}
    .table-row:last-child div.table-block-large,
    .table-row:last-child div.table-cell {
        border: 0px solid red !important;
    }
    .OverflowWrapAnywhere{
        overflow-wrap:anywhere;
    }


.table-header {
    font-size: 24px;
}


.table-cell {
    text-align: left;
    border-bottom: 1px solid;
    display:flex;
}

.table-cell-wo-border {
    text-align: left;
    display: flex;
}

.table-headline-cell {
    padding: 8px 8px 8px 0;
    text-align: left;
}
.table-block-large{
    border-bottom: 1px solid;
}


.berichtsheft-branch-table,
.berichtsheft-table {
    display: grid;
    border-collapse: collapse;
    border-radius: 20px;
    padding: 10px;
}
.ubl-table {
    display: grid;
    border-collapse: collapse;
    border-radius: 20px;
}
.alignItemsCenter{
    align-items:center;
}

.CorneredDisplay {
    display: flex;
    border-collapse: collapse;
    border-radius: 20px;
    flex-direction:column;
}

.StatisticCorneredDisplay {
    border-collapse: collapse;
    flex-direction: column;
}

.SmallCorneredDisplay {
    display: flex;
    border-collapse: collapse;
    border-radius: 10px;
    padding: 10px;
    flex-direction: column;
}

.Button-Cell{
    display:flex;
    justify-content:space-between;
    flex:1 1 0px;
}
.invisibleButton{
    display:flex;
    flex: 1 1 0px;
}
.flexRow{
    display:flex;
    flex-direction: row;
}
.standardFlex{
    flex: 1 1 0px;
}
.FlexSpaceBetween{
    justify-content: space-between;
}
.FlexSpaceAround{
    justify-content:space-around;
}
.FlexAlignCenter{
    justify-content:center;
}
.w90Percent{
    width: 90%;
}
.SelfAlignCenter{
    align-self:center;
}
.ContentAlignStart{
    align-content:flex-start;
}
.ItemAlignCenter{
    align-items:center;
}
.FlexCenter{
    display:flex;
    justify-content:center;
}
.FlexAlignContentCenter{
    align-content:center;
}
.BranchDetailsContainerMargin{
    margin:30px 0 15vh 0;
}

.ItemMargin * .bottomMargin{
    margin: 0 0 20px 0;
}
.profileBottomMargin {
    margin-bottom:20px;
}

.ItemMargin * .smallBottomMargin {
    margin: 0 0 10px 0;
}

.ItemMargin * .largeBottomMargin {
    margin: 0 0 40px 0;
}

.ItemMargin * .Margin30tb{
    margin: 30px 0;
}
.ItemMargin * .Margin10tb {
    margin: 10px 0;
}

.ItemMargin * .Margin15lr{
    margin:0 15px;
}

.MarginItems10lr button{
    margin:0 10px;
}
.flexShrink20vw {
    flex: 0 1 20vw;
}
.ScrollContainer{
    overflow:auto;
    overflow-x:hidden;
    overflow-y:auto;
}

.TechnicalReportScrollContainer {
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.height90vh{
    height: 90vh;
    max-height: 90vh;
}

.height80vh {
    height: 80vh;
    max-height: 80vh;
}

.WeeklyContentHeight{
    height:90vh;
    max-height:90vh;
}
.height95vh{
    height:95vh;
    max-height: 95vh;
}
.height60vh {
    height: 60vh;
    max-height: 60vh;
}

.height70vh {
    height: 70vh;
    max-height: 70vh;
}

.height40vh{
    height:40vh;
    max-height:40vh;
}

.height20vh {
    height: 20vh;
    max-height: 20vh;
}
.height30vh {
    height: 30vh;
    max-height: 30vh;
}

.ScrollContainer::-webkit-scrollbar {
    width: 20px;
}
.ScrollContainer::-webkit-scrollbar-thumb {
    border-radius:20px;
}

.TechnicalReportScrollContainer::-webkit-scrollbar {
    width: 20px;
}

.TechnicalReportScrollContainer::-webkit-scrollbar-thumb {
    border-radius: 20px;
}

textarea::-webkit-scrollbar {
    width: 20px;
}

textarea::-webkit-scrollbar-thumb {
    border-radius: 20px;
}

textarea{
    resize:none
}

.Margin10r{
    margin-right: 10px;
}
.ProfileMargin10lr {
    margin: 0 10px;
}
.Margin10lr{
    margin: 0 10px;
}
.Margin20lr{
    margin: 0 20px;
}
.Margin30lr{
    margin:0 30px;
}
.Margin10{
    margin: 10px;
}

.Margin10t{
    margin-top:10px;
}
.Margin10b{
    margin-bottom: 10px;
}
.Margin20t{
    margin-top:20px;
}
.Margin30t{
    margin-top:30px;
}

input[type="file"]{
    display: none;
}


div.Indicator {
    display: inline-block;
    font-family: sans-serif;
    font-weight: bold;
    text-align: center;
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 1.8ex;
    border-radius: 1.2ex;
    margin-right: 4px;
    padding: 1px;
    text-decoration: none;
    border: 1px solid;
}

div.WeeklyReportWeekdayContainer {
    border: 1px solid;
}

div.TechnicalReportAdditionalFileListContainer {
    border: 1px solid;
}
.TraineeResultListContainer{
    height:70vh;
    max-height:70vh;
}

.NoScrollX {
    overflow-x: hidden;
}
.NoScrollY{
    overflow-y:hidden;
}

.flexQuarter{
    flex: 0 1 25vw;
}
.flexTenth{
    flex:0 1 10vw;
}
.flexTwenty{
    flex:0 1 20vw;
}
.flexFifteen{
    flex:0 1 15vw;
}
.flexThird{
    flex: 0 1 33vw;
}
.flexHalf{
    flex:0 1 50vw;
}
.flexTwoThird{
    flex:0 1 66vw;
}
.flexThreeQuarter{
    flex:0 1 75vw;
}
.flexWrap{
    flex-wrap:wrap;
}
.DisplayFlexColumn{
    display:flex;
}

#CurrentReport {
    flex: 1 1 0px;
    flex-direction:column;
}

.simpleMargin {
    margin: 1vh 2vw 1vh 5vw;
}
#printableArea{
    visibility:hidden;
    display:none;
}

.padding10{
    padding:10px;
}
.padding20{
    padding:20px;
}
.padding10lr{
    padding:0 10px;
}
.padding20lr{
    padding:0 20px;
}
.padding5vwlr{
    padding:0 5vw;
}
.padding18vwlr {
    padding: 0 18vw;
}
.padding10tb{
    padding:10px 0;
}
.padding20tb{
    padding:20px 0;
}
.ProfileFlexRowContainer{
    display:flex;
}
.Margin120l {
    margin-left: 100px;
}

.BranchListTable *{
    margin:0 0 10px 0;
    align-content: center;
}

.UserListTable * {
    margin: 5px 0 0 0;
    align-content: center;
}
.TraineeButtonContainer *{
    margin: 0 10px;
}
.TraineeShowReportButtonList *{
    margin-left: 5px;
    margin-right: 5px;
}

.UBLEditMargin *{
    margin:0 2vw;
}

.ProfileCurrentCompanyBlock{
    margin-top:30px;
}
.PasswordHintContainer {
    display: flex;
    flex-direction: row;
}
.PasswordHintContainer *{
    margin: 5px 10px;
}
.PasswordFieldNoMatch{
    
}

.PasswordFieldMatch {
    
}

.PositionRelative{
    position: relative;
}
.PositionAbsolute{
    position: absolute;
}
.PositionFixed{
    position:fixed;
}
.PositionStatic{
    position: static;
}
.PositionSticky{
    position: sticky;
}

.FlexHoverHint {
    position:absolute;
    border-radius: 10px;
    border: 1px solid;
    top: -25px;
    left: 220px;
    width:300px;
}
.PasswordHintsVisible{
    display:flex;
}
.PasswordHints {
    display: none;
}
.PasswordFlexRowContainer{
    display: flex;
    flex-direction:row;
}
.ProfileCorneredDisplay {
    display: flex;
    border-collapse: collapse;
    border-radius: 20px;
}

.ProfileImageEmpty,
.ProfileImage {
    height: 60px;
    border-radius: 200px;
    border: 3px solid;
    width: 60px;
    object-fit: cover;
    margin:0 10px;
}

.SigPic{
    object-fit:cover;
}

.ProfileImageLarge {
    height: 480px;
    width: 360px;
    object-fit: cover;
    border-radius: 10px;
}
.ProfileImageLargeContainer {
    display: none;
    position: static;
    max-width:1px;
    max-height:1px;
}
.ProfileImage:hover ~ .ProfileImageLargeContainer {
    display: flex;
}

.ProfileImage:hover {
    cursor: pointer;
}
.ProfileImageContainer{
    margin: 20px;
}
.ImagePositioningContainer{
    position:static;
}
.ProfileImageInnerContainer {
    left: 80px;
    border: 3px solid;
    border-radius: 20px;
    padding: 10px;
    z-index:1;
    height:510px;
}
.ContextMenuContainer {
    top: 81px;
    left: 483px;
    position: fixed;
    border: 3px solid;
    border-radius: 10px;
    padding: 10px;
}

.DisplayNone{
    display: none !important;
}

.ActiveTab{
    border-top:1px solid;
    border-left:1px solid;
    border-right:1px solid;
    border-radius:5px 5px 0 0;
}
.InactiveTab{
    border-bottom:1px solid;
}
.flexShrink100{
    flex:0 1 100%;
}
.TabPageBorder{
    border-left:1px solid;
    border-right:1px solid;
    border-bottom:1px solid;
    border-radius:0 0 10px 10px;
}

.MobileDisplayHeight{
    height: 90vh;
    max-height: 90vh;
}

.NormalDisplayHeight {
    height: 65vh;
    max-height: 65vh;
}

.OverflowText {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 10px;
    text-align: center;
    flex: 1;
}

.MaxWidth48vw {
    max-width: 90vw;
}
.DisplaySpaced {
    display: flex;
    justify-content: space-between;
}

.FlexGrow30vw{
    flex:1 0 30vw;
}

.BorderBottom {
    border-bottom: 1px solid;
}
.DisplaySpacedItem {
    padding: 0 30px;
}
.Small80vw {
    width: 85vw;
}

@media (min-width: 641px) {
    .MaxWidth48vw {
        max-width: 48vw;
    }
    .Small80vw {
        width: 45vw;
    }
}