body {
    font-family: 'Euclid Circular A', sans-serif;
}

main > .container, main > .container-fluid
{
    padding: 70px 15px 20px;
}

.dropzone {
    border: 1px dashed rgba(0,0,0,0.3);
    color: rgba(0,0,0,0.6);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: rgba(241, 245, 249, 0.05) !important;
}

div.dtsp-topRow.dtsp-bordered, div.dtsp-topRow.dtsp-bordered:hover {
    border: 0px solid #f0f0f0 !important;
    background-color: transparent !important;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container, .footer > .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.navbar form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .navbar form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.navbar form > button.logout:focus,
.navbar form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.navbar form > button.logout:focus {
    outline: none;
}

/* style breadcrumb widget as in previous bootstrap versions */
.breadcrumb {
    background-color: var(--bs-gray-200);
    border-radius: .25rem;
    padding: .75rem 1rem;
}

.breadcrumb-item > a
{
    text-decoration: none;
}

/* bottoni datatables search panes */
.dtsp-titleRow button.btn{
    padding: 3px 8px !important;
    font-size: 12px;
}

/* bottoni datatables buttons */
/* bottoni datatables search panes */
.dt-buttons button.btn{
    padding: 3px 8px !important;
    font-size: 12px;
    background-color: var(--tblr-gray-50-darken);
    margin-top: 4px;
    color: var(--tblr-blue);
}


.dropdown-item.active, .dropdown-item:active {
    background-color: rgba(241, 245, 249, 0.2) !important; /* Colore background elemento attivo sidebar */
}

.dropdown-item.active .nav-link-title, .dropdown-item:active .nav-link-title {
    font-weight: 600;
}

/* DROPZONE */

.dropzone {
    border: 1px dashed #e6e7e9;
    color: #616876;
    padding: 1rem;
    display: flex;
    max-height: 89px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.bee-dropzone-wrapper .dropzone {
    min-height: auto;
}

.grabbable {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.grabbable:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

/* DATATABLES */

div.datatables_info_search{
    margin-bottom: 5px!important;
}
div.datatables_action{
    margin-top: 5px!important;
}


/*  SEARCHPANES DATATABLES*/
div.dtsp-searchPanes {
    justify-content: flex-start !important;
    gap: 20px;
}

div.dtsp-searchPane div.dataTables_scrollBody {
    height: 100px !important;
}

/* Change the checkbox border color for disabled rows in Datatable Select */
table.dataTable tbody td.select-checkbox-disabled:before, table.dataTable tbody th.select-checkbox-disabled:before {
    border: 1px solid lightgray;
}


/* INPUT type number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}