/* Prevent text select */
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent focus outline */
*:focus {
    outline: none;
}

/* Blinken */
@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Firefox */
@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Webkit */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* IE */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Opera and prob css3 final iteration */
.blinking {
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    /* order: name, direction, duration, iteration-count, timing-function */
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}

/* Fonts */
@font-face {
    font-family: 'Roboto-Light';
    src: url('../Fonts/Roboto/Roboto-Light.ttf') format('truetype');
}

.fontlight {
    font-family: 'Roboto-Light';
}

@font-face {
    font-family: 'Roboto-Thin';
    src: url('../Fonts/Roboto/Roboto-Thin.ttf') format('truetype');
}

.fontthin {
    font-family: 'Roboto-Thin';
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../Fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}

.fontregular {
    font-family: 'Roboto-Regular';
}

@font-face {
    font-family: 'RobotoCondensed-Light';
    src: url('../Fonts/Roboto/RobotoCondensed-Light.ttf') format('truetype');
}

.fontcondensedlight {
    font-family: 'RobotoCondensed-Light';
}

@font-face {
    font-family: 'RobotoCondensed-Regular';
    src: url('../Fonts/Roboto/RobotoCondensed-Regular.ttf') format('truetype');
}

.fontcondensedregular {
    font-family: 'RobotoCondensed-Regular';
}

/* Font Styles */
.naviindex {
    opacity: 0.75;
}

.level0 {
    font-size: 22px !important;
}

.level1 {
    font-size: 18px !important;
}

.level2 {
    font-size: 16px !important;
}

.level3 {
    font-size: 14px !important;
}

.level3bold {
    font-size: 14px !important;
    font-weight: bold !important;
}

.level4 {
    font-size: 12px !important;
}

.level5 {
    font-size: 10px !important;
}

/* Other Styles */
body {
    font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
    margin: 0px;
    background-color: #dce2e2;
}

/* Telerik Fixes */

/* Add Item Text Justify */
.rpadditem .rpText {
    padding-top: 4px !important;
    padding-left: 10px !important;
}

.rpadditem .rpImage {
    padding-right: 10px !important;
}

/* RadMap Classes */

.RadMap .k-marker.k-marker-grey-marker:before {
    color: grey;
}

.RadMap .k-marker.k-marker-grey-minimized:before {
    color: blue;
    font-size: 25px;
}

/* Special Classes */

/* Move Dropdowns to top */

.rddlSlide {
    z-index: 900020 !important;
}

/* Move Dropdowns to top */

.rcbSlide {
    z-index: 900020 !important;
}

.k-chart-tooltip {
    z-index: 700501 !important;
}

/* Telerik extended controls */

.PasswordStrengthBase {
    margin-top: 4px;
}

.PasswordStrengthL0 {
}

.PasswordStrengthL1 {
    background-color: #eb9eaf;
    padding: 3px;
    border-radius: 3px;
}

.PasswordStrengthL2 {
    background-color: #eaeb9e;
    padding: 3px;
    border-radius: 3px;
}

.PasswordStrengthL3 {
    background-color: #eaeb9e;
    padding: 3px;
    border-radius: 3px;
}

.PasswordStrengthL4 {
    background-color: #9ce9a9;
    padding: 3px;
    border-radius: 3px;
}

.PasswordStrengthL5 {
    background-color: #9ce9a9;
    padding: 3px;
    border-radius: 3px;
}

.facepile {
    border-radius: 25em;
    height: 30px;
    width: 30px;
    -moz-user-select: none;
    -ms-user-select: none;
    background-color: white;
}

.draggable {
}

.drop-zone {
    transition: background-color 0.3s;
    transition: border 0.3s;
}

    .drop-zone.dragover {
        background-color: #e3f2fd;
        border: 2px dashed #007bff;
    }

.background-label {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: -1;
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4), -1px -1px 0 rgba(0, 0, 0, 0.2);
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.opacity-transition {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    width: 100px; /* Standardgröße */
    height: 100px;
    border-radius: 5px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.img-container {
    position: relative;
    width: 100%;
    height: 100%;
}

    .img-container,
    .img-container * {
        border-radius: 3px;
    }

        .img-container .image-preview {
            display: none; /* Unsichtbar bis geladen */
        }

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}
