﻿* {
    box-sizing:border-box;
}

/* action list */
.action-list > button > .fa-circle {
    opacity: .4;
    font-size: 40%;
}
.action-list > button:hover > .fa-circle {
    opacity:.6;
}

/* fonts */
.font-medium { 
    font-weight:500;
}

/* table */
table {
    border-radius:5px;
    overflow:hidden;
    box-shadow:0px 0px 1px 0px #000;
}
    table thead th {
        padding: 0.5rem;
        padding-top: 1rem;
        text-align: left;
        border-bottom: 1px rgb(229, 231, 235) solid;
    }
    table tbody td {
        border-bottom: 1px rgb(229, 231, 235) solid;
        padding:1rem;
    }
        table tbody td .fa-circle {
            font-size:60%;
        }

/* input overrides */
input:focus, select:focus, textarea:focus {
    outline:none;
}

.modal-bg > .modal {
    max-width:800px;
}

/* dropzone */

.dropzone {
    border:none !important;
}

.dz-progress {
    display:none;
}

.uploader {
    height: 100px;
    display: flex;
    align-items: center;
    justify-items: center;
    cursor:pointer;
}
.uploader:before {
    content:"Click to upload files or drag";
    font-weight:bold;
    text-align:center;
    width:100%;
}