@import url("general.css");

/* Content */
.content {
    display        : flex;
    flex-direction : column;
    justify-content: start;
    align-items    : center;
    gap            : 30px;
    overflow-y     : hidden;
    width          : 100%;
    height         : auto;
}

.content h1 {
    line-height  : 115%;
    font-size    : 22px;
    margin-bottom: 15px;
    text-align   : center;
}

.content p {
    text-align : justify;
    hyphens    : auto;
    width      : 80%;
    overflow   : hidden;
    line-height: 1.5em;
    padding    : 0;
}

ul {
    width              : 90%;
    list-style-type    : "► ";
    list-style-position: inside;
}

ul li {
    text-align : justify;
    line-height: 1.2rem;
    font-size  : var(--fcs-FS-h4);
    font-weight: bold;
    padding    : 15px 5px 5px 12px;
    color      : var(--fcs-blue);
    hyphens    : auto;
}

ul li span {
    color: var(--fcs-text-color);
}

.block {
    margin-left: 50px;
}

img.chart {
    width        : 90%;
    padding-left : 12px;
    padding-right: 10px;
    height       : auto;
}

.tipp {
    font-size : .7rem;
    margin-top: -20px;
}

.choicesection {
    width        : 80%;
    border       : solid 1px lightgrey;
    border-radius: 5px;
    padding      : 7px;
    font-size    : .8rem;
    overflow     : hidden;
}

.choicesection p {
    width: 100%;
}

.choicesection label,
.choicesection input {
    display   : block;
    text-align: left;
    width     : 100%;
}

.choicesection label {
    padding-top   : 15px;
    padding-bottom: 15px;
    font-size     : .9rem;
    font-weight   : bold;
}

#result {
    text-align : left;
    padding-top: 10px;
    font-size  : .75rem;
}

table {
    width          : 100%;
    border-collapse: collapse;
}

table td:last-child {
    width     : 70px;
    text-align: right;
}

table td:last-child,
.tagdatum {
    font-weight: bold;
}

.alert {
    color: red;
}

#datereset {
    position        : relative;
    border          : none;
    top             : 10px;
    left            : 80%;
    font-size       : .7rem;
    padding         : 2px 8px 6px 8px;
    color           : whitesmoke;
    background-color: var(--fcs-blue);
    border-radius   : 5px;
}

/* ***********************************   */

input[type=range] {
    -webkit-appearance: none;
    appearance        : none;
    margin            : 10px 0;
    width             : 100%;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width        : 100%;
    height       : 13px;
    cursor       : pointer;
    animate      : 0.2s;
    box-shadow   : 0px 0px 0px #000000;
    background   : var(--fcs-blue);
    border-radius: 5px;
    border       : 0px solid #000000;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow        : 1px 1px 3px 1px rgba(0, 0, 0, 0.7);
    border            : 4px solid #ffffff;
    height            : 26px;
    width             : 26px;
    border-radius     : 26px;
    background        : var(--fcs-blue);
    cursor            : pointer;
    -webkit-appearance: none;
    margin-top        : -8.5px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: var(--fcs-blue);
}

input[type=range]::-moz-range-track {
    width        : 100%;
    height       : 13px;
    cursor       : pointer;
    animate      : 0.2s;
    box-shadow   : 0px 0px 0px #000000;
    background   : var(--fcs-blue);
    border-radius: 5px;
    border       : 0px solid #000000;
}

input[type=range]::-moz-range-thumb {
    box-shadow   : 1px 1px 3px 1px rgba(0, 0, 0, 0.7);
    border       : 4px solid #ffffff;
    height       : 26px;
    width        : 26px;
    border-radius: 26px;
    background   : var(--fcs-blue);
    cursor       : pointer;
}

input[type=range]::-ms-track {
    width       : 100%;
    height      : 13px;
    cursor      : pointer;
    animate     : 0.2s;
    background  : transparent;
    border-color: transparent;
    color       : transparent;
}

input[type=range]::-ms-fill-lower {
    background   : var(--fcs-blue);
    border       : 0px solid #000000;
    border-radius: 10px;
    box-shadow   : 0px 0px 0px #000000;
}

input[type=range]::-ms-fill-upper {
    background   : var(--fcs-blue);
    border       : 0px solid #000000;
    border-radius: 10px;
    box-shadow   : 0px 0px 0px #000000;
}

input[type=range]::-ms-thumb {
    box-shadow   : 1px 1px 3px 1px rgba(0, 0, 0, 0.7);
    border       : 4px solid #ffffff;
    height       : 26px;
    width        : 26px;
    border-radius: 26px;
    background   : var(--fcs-blue);
    cursor       : pointer;
}

input[type=range]:focus::-ms-fill-lower {
    background: var(--fcs-blue);
}

input[type=range]:focus::-ms-fill-upper {
    background: var(--fcs-blue);
}