﻿/*
    MULTI SELECT
*/

div.multi-select-wrapper {
    position: relative;
    cursor: pointer;
}

div.multi-select-options-wrapper {
    position: absolute;
    z-index: 100;
    border: 1px solid gray;
    border-radius: 5px;
    background-color: white;
    width: 100%;
}

div.multiple-select {
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

div.multiple-select:after {
    content: "\21E9";
    color: black;
    font-size: 20px;
    float: right;
}

.option-selected,
.multiple-select-option:hover {
    background-color: #0984e3;
    color: white;
}

.multiple-select-option:not(:last-child) {
    border-bottom: 1px solid gray;
}

.multiple-select-option {
    padding: 5px;
}

.selected-option {
    border: 1px solid gray;
    background-color: aliceblue;
    padding: 2px;
    margin-left: 5px;
    display: inline-block;
}

/*
    Dialogues / pop-up
*/
dialog, .dialog {
    border: 1px solid black;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

dialog > h1:first-of-type, .dialog > h1:first-of-type {
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 10px;
    background-color: #0984e3;
    color: white;
}

.dialog-content {
    padding: 10px;
}

/*
    EXTERNAL CLICK MANAGER
*/
.external-click-manager {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.external-click-manager.dialog-external-click-manager {
    background-color: rgba(0, 0, 0, 0.3);
}

/*
    TABLES
*/

th {
    cursor: pointer;
}