﻿/*  TABLE  */
.idw-table {
    width: 100%;
}
    .idw-table tbody tr {
        line-height: 30px;
    }
    .idw-table.h-lines tbody tr {
        border-top: 1px solid #ccc6;
    }
       .idw-table.h-lines tbody tr:first-child {
            border-top: 0;
        }

.idw-tbl-selectable {
    font-size: 0.75em;
}
    .idw-tbl-selectable tbody tr {
        cursor: pointer;
    }

.idw-table-row-line {
    height: 20px;
    color: darkgrey;
}

.row-selected {
    background: rgb(97, 135, 168);
    color: white;
}
    .row-selected:hover {
        background: rgb(97, 135, 168);
        color: white;
    }

.unselectable {
    background-color: #ddd;
    cursor: not-allowed;
    pointer-events: none;
}

/* MISCELANIOUS OBJECTS */
.idw-line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.idw-line-menu {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 0px;
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 0px;
}

.idw-textbox {
    border-radius: 3px;
    border: 1px solid gray;
}

/* buttons info */
.idw-btn-info {
    background: #c1c1c1;
    outline: none !important;
    border: none;
}
    .idw-btn-info:hover, .idw-btn-info:focus {
        background: #a8a8a8;
    }

.idw-counter {
    border-radius: 50%;
    border: 1px solid rgb(0, 0, 0, 0.15);
    background: rgb(0, 0, 0, 0.70);
    padding-left: 5px;
    padding-right: 5px;
    color: white !important;
    font-size: 0.80em !important;
    font-style: italic;
}

/* layouts */
.idw-hidden {
    display: none !important;
}
.idw-disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
}
.idw-d-grid {
    display: grid;
}
.idw-f-85 {
    font-size: 0.85rem;
}
.idw-f-75 {
    font-size: 0.75rem;
}
.idw-f-bold {
    font-weight: bold !important;
} 

.idw-c-red {
    color: red;
}
.idw-c-gray {
    color: gray;
}

/* sizes */
.idw-w-200 {
    width: 200px;
}
.idw-w-160 {
    width: 160px;
}
.idw-w-140 {
    width: 140px;
}
.idw-w-120 {
    width: 120px;
}
.idw-w-100 {
    width: 100px;
}
.idw-w-80 {
    width: 80px;
}
.idw-w-60 {
    width: 60px;
}
.idw-w-40 {
    width: 40px;
}
.idw-w-20 {
    width: 20px;
}
.idw-w-0 {
    width: 0px;
}
.idw-w-45p {
    width: 45%;
}
.idw-w-55p {
    width: 55%;
}
.idw-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.idw-tbl-ly-fix {
    table-layout: fixed;
}
.idw-tbl-w-fit {
    width: fit-content;
    width: -moz-fit-content;
}

.idw-highligh {
    border-radius: 5px;
    background: #ffff006e;
}

.idw-text-truncate {
    text-overflow: ellipsis;
    /* Required for text-overflow to do anything */
    white-space: nowrap;
    overflow: hidden;
}