﻿body {
    color: rgb(230, 230, 230) !important;
}

.fill {
    min-height: 80vh;
    height: 80vh;
}

.watermark {
    /*    max-width: 100vh;*/
    max-height: 100vh;
    display: block;
    position: relative;
}

    .watermark::after {
        content: "";
        background: url('/img1/PQ_logo_tr.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        opacity: 0.1;
        top: 10vh;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }


.form-control {
    /*    height: calc(1em + 0.75rem + 2px);*/
    padding: 0.2rem 1rem;
    /*    line-height: 1.5;*/
}

select.form-control:not([size]):not([multiple]) {
    height: auto;
}

.table-hover tbody tr:hover {
    /*color: #212529;*/
    color: #8cde90 !important;
    background-color: rgba(0, 0, 0, 0.075);
}

.adp, .adp table {
    font-family: Roboto,Arial,sans-serif;
    font-weight: 300;
    color: #ced4da !important;
    text-align: left;
}

.adp-text {
    color: #32383e !important;
}

.timeliste_title {
    font-size: 11px;
    /*padding-right: 4px;*/
}

.timeliste_value {
    /*color: #333;*/
    font-size: 11px;
    font-weight: bold;
    color: #ebebeb;
}

.GreenText {
    color: #8cde90;
}

.RedText {
    color: #de2121;
}

.YellowText {
    color: #ded821;
}

/* Responsive tabell */
@media only screen and (max-width: 40em) {
    .table th {
        display: none;
    }
    /*thead th:not(:first-child) {
        display: none;
    }*/

    td, th {
        display: block;
        clear: both;
        border: 0 !important;
    }

        td[data-th]:before {
            font-weight: bold;
            content: attr(data-th);
            display: inline-block;
            width: 8rem;
            float: left;
        }
}
/*Slutt responsiv tabell*/

.special-card {
    /*    opacity: .7;
*/
}

.TlfccPicker {
    display: inline-block;
    font-size: 20px !important;
    width: 100%;
    margin-left: 5px;
    height: 4em;
    padding-left: 93px;
}

.TlfccRow {
    height: 3.1em !important;
    width: 160px !important;
    font-size: 0.9375rem !important;
}

.TlfccodeRow {
    height: 3.1em !important;
    width: 48px !important;
    font-size: 0.9375rem !important;
}
/*.cc-picker-code-select-enabled .small {
    cursor: pointer;
    padding-right: 18px;
    position: relative;
}*/
#rowPicker .cc-picker {
    width: 20%;
    font-size: 14px;
}

#rowPicker .cc-picker-code {
    width: 15px;
}

#rowPicker .cc-picker-flag {
    margin-right: 3px;
}

.GridViewLeft {
    text-align: left !important;
    padding-left: 5px;
}

.GridViewRight {
    text-align: right !important;
    padding-right: 5px;
}

.GridViewCenter {
    text-align: center !important;
}

.GridViewStatusGreen {
    background-color: rgba(0, 255, 0, 0.3);
    border: 0px;
    white-space: nowrap;
    color: #CCC;
}

.GridViewStatusRed {
    background-color: rgba(255, 0, 0, 0.3);
    border: 0px;
/*    white-space: nowrap;*/
    color: #FFF;
}

.GridViewStatusYellow {
    background-color: rgba(255, 255, 0, 0.3);
    border: 0px;
    white-space: nowrap;
    color: #000;
}

.GridViewStatusPink {
    background-color: rgba(255, 153, 170, 0.3);
    border: 0px;
    white-space: nowrap;
    color: #000;
}

.GridViewStatusGrey {
    background-color: rgba(170, 170, 170, 0.3);
    border: 0px;
    white-space: nowrap;
    color: #333;
}

.StatusDisabled {
    color: rgba(170, 170, 170, 0.9) !important;
}

/*AutoComplete Style*/
.completionList {
    cursor: pointer;
    list-style-type: none;
    padding-left: 0px;
    background-color: #ced4da;
    /*    font-family: Arial, Helvetica, Sans-Serif;
    font-size: 18px;*/
    border: 1px solid #578910;
    margin-top: 2px;
}

.completionListWide {
    min-width: 500px !important;
}

.listItem {
    background-color: #fff;
    padding: 5px 5px 5px 7px;
    border-top: 1px solid #fff;
}

.itemHighlighted {
    background-color: #ced4da;
    color: #52575C;
    padding: 5px 5px 5px 7px;
}
/*End Autocomplete Style*/

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F47983;
    /*background-color: #ccc;*/
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
