﻿body {
    font-family: -apple-system, "Open Sans", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
}

* {
    box-sizing: border-box;
}

.rangeslider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #D3D3D3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    padding: 0;
}

    .rangeslider:hover {
        opacity: 1;
    }

    .rangeslider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        background: #00A1E0;
        cursor: pointer;
    }

    .rangeslider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        background: #00A1E0;
        cursor: pointer;
    }

.sliderticks {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

    .sliderticks p {
        position: relative;
        display: flex;
        justify-content: center;
        text-align: center;
        width: 1px;
        background: #D3D3D3;
        height: 10px;
        line-height: 40px;
        margin: 0 0 20px 0;
    }

.range {
    padding: 0 5% 0 5%;
}

.tth1 {
    width: 8%;
}

.tth2 {
    width: 23%;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.kompetenz {
    font-weight: bold;
}
.tth1 p
{
    font-weight: normal;
}

table {
    border: 1px solid #000000;
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0px;
    table-layout: fixed;
    min-width: 100%;
}

    table th {
        text-align: center;
        padding: 8px;
        border: 1px solid #000000;
        background: #00A1E0;
        color: #FFFFFF;
        font-weight: bold;
        text-align: center
    }

    table td {
        padding: 8px;
        border: 1px solid #000000;
    }

    table tr {
        background-color: #fff;
        color: #000;
        text-align: center;
    }

        table tr .kompetenzCaption {
            text-align: left;
        }

@media (min-width: 769px) {
    .progressFormMobile {
        display: block !important;
    }
}

@media (min-width: 769px) {
}

.progressForm {
    display: none !important;
}

progress:not(value) {
  /* Add your styles here. As part of this walkthrough we will focus only on determinate progress bars. */
}

progress::-moz-progress-bar {
  background: #00A1E0;
}


progress[value] {
  appearance: none;
  border: none;
  
  width: 30%;
  height: 22px;
  margin: 0 auto;

  
    background-color: #D3D3D3;
    border-radius: 3px;
  
  color: #00A1E0;
  
  position: relative;
}

/*
Webkit browsers provide two pseudo classes that can be use to style HTML5 progress element.
-webkit-progress-bar -> To style the progress element container
-webkit-progress-value -> To style the progress element value.
*/

progress[value]::-webkit-progress-bar {
    background-color: #D3D3D3;
}

progress[value]::-webkit-progress-value {
  position: relative;
  color: #00A1E0;
    background-color: #00A1E0;
  
  background-size: 35px 20px, 100% 100%, 100% 100%;
  
  /* Let's animate this */
  animation: animate-stripes 5s linear infinite;
}

@keyframes animate-stripes { 100% { background-position: -100px 0; } }

/* Let's spice up things little bit by using pseudo elements. */

progress[value]::-webkit-progress-value:after {
  /* Only webkit/blink browsers understand pseudo elements on pseudo classes. A rare phenomenon! */
  content: '';
  position: absolute;
  
  width:5px; height:5px;
  top:7px; right:7px;
  
  background-color: white;
  border-radius: 100%;
}

/* Firefox provides a single pseudo class to style the progress element value and not for container. -moz-progress-bar */

progress[value]::-moz-progress-bar {
  /* Gradient background with Stripes */
  background-size: 35px 20px, 100% 100%, 100% 100%;
  border-radius:3px;
  
  /* Firefox doesn't support CSS3 keyframe animations on progress element. Hence, we did not include animate-stripes in this code block */
}

.kompetenzlink
{
	text-decoration:underline;
	
}