body, html
{
    min-height: 100%;
    min-width: 320px;
}

#background
{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.no-bottom-margin
{
    margin-bottom: 0;
}

.corner-button
{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

nav {
    height: 64px;
    line-height: 64px;
}

nav .brand-logo {
    top: 10px;
    padding-left: 10px;
}

@media only screen and (max-width: 992px) {
    nav .brand-logo.small-left {
        left: 0%;
        -webkit-transform: translateX(-0%);
        transform: translateX(-0%);
    }
}

nav .brand-logo img {
    height: 50px;
}

.fullwidth {
    width: 100%;
}

#loader_container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 998;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(80,80,80,.5);
    cursor: wait;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader .progress {
    width: 90%;
    max-width: 400px;
}


#versionl {
    position: fixed;
    bottom: 4px;
    left: 10px;
    z-index: 999999;
    color: #00691b;
    font-size: 10px;
}
#versionr {
    position: fixed;
    bottom: 4px;
    right: 10px;
    z-index: 999999;
    color: #00C099;
    background-color: rgba(20,20,20,0.5);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 10px;
}
#versionr * {
    color: #00C099;
}

#lt {
    display: block !important;
    position: fixed;
    bottom: 4px;
    right: 140px;
    z-index: 999999;
    color: #008823;
    background-color: rgba(20,20,20,.3);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 10px;
}

#status {
    position: fixed;
    bottom: 4px;
    left: 10px;
    z-index: 999999;
}

#status .material-icons {
    display: none;
}


.project-list {
    border-radius: 5px;
    margin-bottom: 0.5rem;
    position: relative;
    padding: .6rem 120px .6rem 1rem;
}
.project-list .options {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -13px;
}
.project-list a {
    font-size: 100%;
}

.project-list .sub-info {
    font-size: 80%;
}
.project-list a:not(.no-underline):hover {
    text-decoration: underline;
}

.project-list.with_banner {
    padding-left: 1.3rem;
}
.project-list .side_banner {
    height: 100%;
    width: 10px;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.rp .timeDisplay {
    right: 90px;
    position: absolute;
    line-height: 24px;
    white-space: nowrap;
}

#infoFillModal {
    color: #000;
}

.tap-target {
    background-color: rgba(0, 96, 180, 0.8);
    color: #ffffff;
}
.tap-target-wave::before, .tap-target-wave::after {
    background-color: rgba(0, 156, 191, 0.9);
}
.sidenav-overlay {
    z-index: 1;
}


.dropdown-content .dropdown-header {
    padding: 0.5rem;
    font-size: 80%;
    min-height: auto;
}
.dropdown-content .dropdown-header:hover,
.dropdown-content .dropdown-header:active,
.dropdown-content .dropdown-header:focus {
    background-color: initial;
    cursor: initial;
}

.pagination {
    text-align: center;
}

.pagination .material-icons {
    color: #f0f0f0;
}
.pagination .disabled .material-icons {
    color: #a8a8a8;
}



.autocomplete-content {
    z-index: 9999999;
    position: relative;
}

#commentText {
    /*margin-bottom: 200px;*/
}



.warning-card
{
    background-color: #c45714;
}




.tabs {
    background-color: rgba(0, 0, 0, .3);
    padding: 0;
    overflow: hidden;
}
.tabs .indicator {
    background-color: rgba(0, 131, 246, 0.66);
}

.tabs .tab a:hover, .tabs .tab a.active {
    color: rgb(110, 169, 255) !important;
}

.tabs .tab a {
    color: rgb(110, 169, 255) !important;
}

.tabs .tab a:focus, .tabs .tab a:focus.active {
    background-color: rgba(123, 173, 246, 0.2);
}

.tab_content {
    border: 2px solid rgba(0,0,0,.3);
    border-top: 0;
    padding: 1rem 0.5rem !important;
}

#tab_ptimes {
    padding: 0 !important;
}


.collection {
    border: none;
}

.collection .collection-item {
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    background-color: transparent;
}

.prog_badge {
    padding: .2rem .3rem;
    background-color: rgba(238, 238, 238, 0.4);
    color: #333333;
    border-radius: 5px;
    margin-top: 3px;
    display: inline-block;
}



.running-time
{
    /* cursor: url('icons/pen.ico'), pointer; */
    cursor: pointer;
    transition: all .5s ease;
}

.running-time:hover
{
    color: #b8d2ff;
}


.red .red-hidden {
    display: none;
}
.red-shown {
    display: none;
}
.red .red-shown {
    display: initial;
}



.card .card-content .card-title
{
    line-height: 1;
}




[type="checkbox"]+span:not(.lever) {
    padding-left: 22px;
    padding-right: 8px;
    line-height: 20px;
}




.flexcenter {
    display: flex;
    align-items: center;
    justify-content: center;
}


details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0%    {opacity: 0; margin-top: -10px}
    100%  {opacity: 1; margin-top: 0px}
}


@-webkit-keyframes autofill {
    to {
        color: #666;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}
input:-webkit-autofill {
    -webkit-text-fill-color: #2f68e7 !important;
}



.hover-visible {
    opacity: .4;
    transition: all 500ms ease;
}
.project-list:hover .hover-visible,
.project-list:active .hover-visible,
.project-list:focus .hover-visible {
    opacity: 1;
}

.list-link-name {
    position: absolute;
    left: 100px;
}

.list-br {
    display: none;
}

.list-info-text {
    display: block;
    position: relative;
    left: 85px;
    width: 75%;
}

.material-icons{
    display: inline-flex;
    vertical-align: top;
}

.datepicker--nav {
    width: auto;
}

.select-dropdown {
    color: #fff;
}

.select-wrapper .caret {
    fill: rgba(255, 255, 255, 0.87);
}

.waves-input-wrapper.btn {
    padding: 0;
}

.waves-input-wrapper.btn .waves-button-input {
    color: #fff;
    height: 100%;
    width: 100%;
    cursor: pointer;
    padding: 0 16px;
}
.waves-input-wrapper.btn .waves-button-input:focus {
    outline: none;
}

.standalone-element {
    background-color: rgba(235, 235, 235, 0.6);
    padding: 4px 10px 6px 6px;
    margin: 0 5px;
    line-height: 30px;
    border-radius: 15px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
}
.standalone-element > .material-icons {
    line-height: 30px;
}

.collapsible {
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: rgba(235, 235, 235, 0.2);
}
.collapsible-header {
    background-color: transparent;
    border: none;
}
.collapsible-body {
    padding: .5rem;
    border: none;
    border-top: 1px solid #444;
}

.path-element {
    background-color: rgba(235, 235, 235, 0.2);
    padding: 4px 10px 6px 6px;
    margin: 0;
    line-height: 30px;
    border-radius: 3px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.5);
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    cursor: default;
}
.path-element > .material-icons {
    line-height: 30px;
}
.collapsible .path-element {
    background-color: rgba(20, 20, 255, 0.1);
}
.collapsible .path-element > .material-icons {
    color: #C0C0C0;
}

.card .card-content .card-title i {
    line-height: 36px;
}


.open-on-pc {
    height: 32px;
    display: inline-block;
    position: relative;
}
.open-on-pc a{
    padding: 2px 6px;
    line-height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.5);;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    top: 1px;
    border-radius: 5px;
}

.open-on-pc i{
    font-size: 15px;
    line-height: 32px !important;
    color: #9000ff;
}

.systemMessage {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background-color: rgba(255,80,0,.5);

    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.systemMessage .inner {
    display: block;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: .5rem;
    color: #FFFFFF;
    max-width: 550px;
}
.systemMessage .button {
    display: block;
    width: 100%;
    text-align: center;
    padding-top: .5rem;
}

table.striped>tbody>tr:nth-child(odd) {
    background-color: rgba(242, 242, 242, 0.07);
}
table.striped>tbody>tr:nth-child(even) {
    background-color: rgba(242, 242, 242, 0.15);
}
table.highlight>tbody>tr:hover {
    background-color: rgba(242, 242, 242, 0.2);
}


.formatFooTable {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    position: relative;
    border-spacing: 0;
    border-collapse: collapse;
}
.formatFooTable * {
    box-sizing: border-box;
}
.formatFooTable>tbody>tr>td, .formatFooTable>tbody>tr>th,
.formatFooTable>tfoot>tr>td, .formatFooTable>tfoot>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
.formatFooTable>thead>tr>td, .formatFooTable>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-bottom: 2px solid #ddd;
}

input[type=datetime-local].custom,
input[type=time].custom,
input[type=text].custom,
input[type=number].custom {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    border: none;
    font-size: 16px;
    margin-right: 10px;
    box-sizing: border-box;
    padding: 4px 8px;
    color: #ffffff;
    min-height: 32px;
}
input[type=datetime-local].custom {
    width: 200px;
}
input[type=text].custom.km-search {
    min-width: 200px;
}



.card {
    overflow-x: auto;
}


.invisible {
    display: none;
    visibility: hidden;
}


.btn-tiny {
    height: 24px;
    line-height: 24px;
    font-size: 11px;
    text-decoration: none;
    color: #fff;
    background-color: #26a69a;
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out;
    cursor: pointer;
    outline: 0;
    border: none;
    border-radius: 2px;
    display: inline-block;
    padding: 0 12px;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    white-space: nowrap;
}


h6.wizard-title {
    font-weight: bold;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.4);
    width: auto;
    display: inline;
    padding: 4px 10px 6px 10px;
    margin-left: 20px;
    white-space: nowrap;
}


@media (max-width: 992px) {
    .list-link-name {
        position: relative;
        left: 0;
    }
    .list-br {
        display: block;
    }

    .list-info-text {
        left: 0;
    }
}


@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
}


@media only screen and (min-width: 993px) and (max-width: 1800px)
{
    .row .col.cl2 {
        width:25%;
        margin-left:auto;
        left:auto;
        right:auto
    }
    .row .col.cl10 {
        width:75%;
        margin-left:auto;
        left:auto;
        right:auto
    }


}