
/**
 * FILEINPUT
 */
div.fulgur-fileinput {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    width: 100%;
    min-height: 100px;
    background-color: #f5f5f5;
}
div.fulgur-fileinput:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
div.fulgur-fileinput > input {
}
div.fulgur-fileinput > div {
    text-align: center;
}
div.fulgur-fileinput > div > h6 {
    font-size: 1em;
    font-weight: bold;
    margin: 0;
}
div.fulgur-fileinput > div > p {
    margin-bottom: 4px;
    margin-top: 0;
    overflow: hidden;
    white-space: nowrap;
}
div.fulgur-fileinput > div > .button:last-child {
    margin-bottom: 0;
}

/**
 * DATATABLE
 */
.fulgur-datatable thead th.control {
    transition: height 300ms;
}
.fulgur-datatable thead th.control a.search {
    cursor: pointer;
    margin-left: 5px;
}
.fulgur-datatable thead th.control a.close {
    color: #888888;
    cursor: pointer;
}
.fulgur-datatable thead th.control a.close:hover {
    color: #222222;
}
.fulgur-datatable thead th.control .field {
    padding: 0.1rem 0.5rem;
}
.fulgur-datatable thead th.control label {
    text-align: left;
}
.fulgur-datatable thead th.control input {
    border-color: #888888;
    font-size: 0.9em;
    height: 30px;
}
.fulgur-datatable thead th.control input::placeholder {
    color: #888888;
}
.fulgur-datatable thead th.control input:focus {
    border-color: #222222;
}
.fulgur-datatable tfoot .pages {
    text-align: center;
}
.fulgur-datatable tfoot .pages a {
    text-decoration: none;
    margin: 0 5px;
}
.fulgur-datatable tfoot .pages a.active {
    text-decoration: underline;
}

/**
 * SEARCHTABLE
 */
.fulgur-searchtable thead th.control {
    transition: height 300ms;
}
.fulgur-searchtable thead th.control a.search {
    cursor: pointer;
    color: white;
    margin-left: 5px;
}
.fulgur-searchtable thead th.control a.close {
    color: white;
    margin-left: 5px;
    cursor: pointer;
}
.fulgur-searchtable thead th.control a.close:hover {
    color: #222222;
}
.fulgur-searchtable thead th.control .field {
    padding: 0.1rem 0.5rem;
}
.fulgur-searchtable thead th.control label {
    text-align: left;
}
.fulgur-searchtable thead th.control input {
    border-color: white;
    font-size: 0.9em;
    height: 30px;
}
.fulgur-searchtable thead th.control input::placeholder {
    color: #888888;
}
.fulgur-searchtable thead th.control input:focus {
    border-color: #b6b6b6;
}

/**
 * CONFIRM
 */
.fulgur-confirm {

}

/**
 * SIMPLEMDE
 */
.fulgur-simplemde {

}
.fulgur-simplemde-container {
    margin-top: 10px;
}

/**
 * AUTOCOMPLETE
 */
div.fulgur-autocomplete {
    position: relative;
}
div.fulgur-autocomplete > ul {
    list-style: none;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 150ms ease-out;
    width: 100%;
}
div.fulgur-autocomplete.open > ul {
    background: white;
    border-bottom: 1px solid #dadce0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-left: 1px solid #dadce0;
    border-right: 1px solid #dadce0;
    --nb-options: 0;
    max-height: min(calc(var(--nb-options) * var(--option-height)), calc(9.5 * var(--option-height)));
    overflow-y: auto;
    position: absolute;
    transition: max-height 10ms ease-out;
    width: 100%;
    z-index: 100;
}
div.fulgur-autocomplete > ul > li {
    color: #666666;
    cursor: pointer;
    font-size: 0.9em;
    height: var(--option-height);
    margin-bottom: 0;
    padding: 3px 10px;
    transition: all 150ms;
    white-space: nowrap;
}
div.fulgur-autocomplete > ul > li.active {
    background-color: #efe40c;
    color: #222222;
    transition: all 150ms;
}

/**
 * CATEGORYINPUT
 */
div.fulgur-categoryinput {
    margin-top: 10px;
}
div.fulgur-categoryinput > div {
    display: inline-block;
}
div.fulgur-categoryinput > .fulgur-autocomplete {
    vertical-align: top;
}
div.fulgur-categoryinput > .fulgur-autocomplete.open {
    background: #f7f7f7;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
}
div.fulgur-categoryinput input {
    background-color: white;
    border-radius: 1rem;
    border: 2px #eeeeee solid;
    font-size: 0.8em;
    height: auto;
    margin: 0;
    padding: 5px 15px 6px 15px;
}
div.fulgur-categoryinput > .fulgur-autocomplete.open ul {
    background: #f7f7f7;
    border: none;
    border-width: 2px;
    border-color: #eeeeee;
    display: block;
    padding-top: 3px;
}
span.fulgur-categoryinput-labelcontainer {

}
span.fulgur-categoryinput-labelcontainer .badge {
    background-color: transparent;
    border: 2px #eeeeee solid;
    font-size: 0.8em;
    margin-right: 7px;
    padding: 5px 10px 6px 10px;
}
span.fulgur-categoryinput-labelcontainer .badge:last-child {
    margin-right: 12px;
}
span.fulgur-categoryinput-labelcontainer .badge span.delete {
    cursor: pointer;
    display: inline-block;
    vertical-align: text-top;
}