﻿@charset "utf-8";
/* ===[ content wrapper ]=== */
.wrapper {
    width: 100%;
    overflow: auto;
}

.wrapperContainX {
    width: 100%;
    max-width: 100%;
    display: block;
    overflow-x: hidden;
}

/* ===[ tables / floats / alignment ]=== */
table {
    width: 100%;
    border: none;
    border-collapse: collapse;
}

    table td {
        height: 1.8em;
        text-align: left;
        padding: 0;
        font-size: 14px;
    }

.cellpadding2,
.cellpadding2 td {
    padding: 2px;
}

.cellspacing2,
.cellspacing2 td {
    border-spacing: 2px;
}

.alignleft,
table td.alignleft,
table th.alignleft {
    text-align: left;
}

.alignright {
    text-align: right !important;
}

.aligncenter {
    text-align: center !important;
}

.vtop {
    vertical-align: top !important;
}

.vmiddle,
table td.vmiddle,
table th.vmiddle {
    vertical-align: middle;
}

.vbottom,
table td.vbottom,
table th.vbottom {
    vertical-align: bottom;
}

.fright {
    float: right;
}

.fleft {
    float: left;
}

.clear {
    clear: both;
}

.block {
    display: block;
}

.hidden {
    display: none;
}

.borders {
    border: 1px solid #000000;
}
/* ===[ Grids / headers ]=== */
.gridview {
    background: #fcfcfc;
    border: 1px solid #0A317B;
    font-family: Roboto,Helvetica,Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2em;
    margin-bottom: 0.2em;
}

    .gridview th {
        font-size: 1.2em;
        padding: 0.4em 0.4em;
    }

    .gridview th,
    .headers {
        background: #05B0ED;
        color: #fff;
        text-align: left;
        vertical-align: middle;
    }

table.cellspacing2 td.headers,
table td.headers {
    padding: 0.2em 0.4em;
}

.gridview > thead > tr,
.gridview > tbody > tr {
    border-bottom: 1px solid #0A317B;
}

.gridview tr:hover {
    background: #dedede;
}

.gridview td {
    padding: 0.4em;
    height: 1.4em;
    line-height: inherit;
}

.gridview a.control {
    color: #808080;
    font-size: 1em;
    padding: 0.2em 0.6em;
    vertical-align: middle;
}

    .gridview a.control:hover {
        cursor: pointer;
        color: #3c8dbc;
        text-decoration: none;
    }


.headers {
    font-size: 14px;
    padding: 0.3em 0.2em;
    font-family: Roboto,Helvetica,Arial, sans-serif;
}

    .gridview.grey th,
    .headers.grey {
        background: #999;
    }

    .gridview.brown th,
    .headers.brown {
        background: #0A317B;
    }

.rowheader {
    font-size: 14px;
    padding: 0.3em 0.2em;
    font-family: Roboto,Helvetica,Arial, sans-serif;
    background-color: #05B0ED;
    height: 47px;
    color: white;
}

/* ===[ Textboxes ]=== */
.textboxes, input[type='text'], input[type='password'], select, textarea {
    background-color: #f6f6f6;
    border: 1px solid #0A317B;
    color: #0d0d0d;
    padding: 10px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 60%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

.horRadio label {
    margin-left: 8px;
    margin-right: 8px;
}

.textboxes:focus, input[type='text']:focus, input[type='password']:focus, select:focus, textarea:focus {
    background-color: #fff;
    border: 1px solid #0A317B;
}

/* readonly textboxes */
input:read-only {
    background: #ddd;
}

input:-moz-read-only {
    background: #ddd;
}

/* Disabled 03 August 2021 due to browser showing disabled cursor on all checkboxes and radios */
/*input:read-only:hover {
    cursor: not-allowed;
}*/

/* disabled textboxes */
input[type='text']:disabled, input[type='password']:disabled, select:disabled, textarea:disabled {
    background: #ddd;
}

    input[type='text']:disabled:hover, input[type='password']:disabled:hover, select:disabled:hover, textarea:disabled:hover {
        cursor: not-allowed;
    }


/* ===[ Buttons ]=== */
.buttons,
a.buttons,
input[type='submit']:hover, input[type='submit']:hover:enabled,
input[type='button']:hover, input[type='button']:hover:enabled {
    font-family: "Font Awesome 5 Pro", 'Source Sans Pro', Roboto,Helvetica,Arial, sans-serif;
    background-color: #0A317B;
    color: #fff;
    border: none;
    padding: 10px;
    margin: 2px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    min-width: 100px;
    font-weight: 600;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    line-height: 1;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
    background-color: #0A317B;
    text-decoration: none;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

/* padding between font awesome and button / textbox text */
.buttons.fas::before,
.buttons.far::before,
.buttons.fal::before {
    font-family: "Font Awesome 5 Pro";
    margin-right: 0.4em;
    font-size: 14px;
}

.buttons.fas::before { /* Font Awesome Solid icon weight */
    font-weight: 900;
}

.buttons.far::before { /* Font Awesome Regular icon weight */
    font-weight: 400;
}

.buttons.fal::before { /* Font Awesome Light icon weight */
    font-weight: 300;
}

.buttons.iconOnly.fas::before,
.buttons.iconOnly.far::before,
.buttons.iconOnly.fal::before {
    margin-right: 0;
}

/* hover styles */
.buttons:hover, .buttons:hover:enabled,
a.buttons:hover, a.buttons:hover:enabled {
    /*width: auto !important;
	min-width:unset !important;*/
    color: #fff;
}


input[type='submit']:hover, input[type='submit']:hover:enabled,
input[type='button']:hover, input[type='button']:hover:enabled {
    text-decoration: none;
    cursor: pointer;
    background: #0A317B;
    color: #FFF;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

/* fixed width buttons */
.buttons.fixed, a.buttons.fixed, input[type='submit'].fixed, input[type='button'].fixed {
    min-width: 80px;
}

/*black button*/
.buttons.black, a.buttons.black, input[type='submit'].black, input[type='button'].black {
    background: #221F1F;
    color: #fff;
}

    .buttons.black:hover:enabled, a.buttons.black:hover:enabled, input[type='submit'].black:hover:enabled, input[type='button'].black:hover:enabled {
        background: #2F2C2C;
    }

/*red button*/
.buttons.red, a.buttons.red, input[type='submit'].red {
    background: #F40000;
}

    .buttons.red:hover:enabled, a.buttons.red:hover:enabled, input[type='submit'].red:hover:enabled {
        background: #E70000; /* 5% darker */
    }

/*green button*/
.buttons.green, a.buttons.green, input[type='submit'].green {
    background: #7FC235;
}

    .buttons.green:hover:enabled, a.buttons.green:hover:enabled, input[type='submit'].green:hover:enabled {
        background: #72B528; /* 5% darker */
    }


/*disabled buttons*/
.buttons:disabled:hover, a.buttons:disabled:hover, input[type='submit']:disabled:hover, input[type='button']:disabled:hover {
    cursor: not-allowed;
}

.buttons.w-auto {
    min-width: unset !important;
    width: auto !important;
}

/* ===[ Core Text ]=== */
main h1, main h2, main h3, main h4 {
    line-height: 1em;
    color: #fff;
}

main h1 {
    font-size: 1.76rem;
}

main h2 {
    font-size: 1.5rem;
}

main h3 {
    font-size: 1.35rem;
}

main h4 {
    font-size: 1.14rem;
    text-decoration: underline;
}

main p {
    font-size: 1rem;
    margin-bottom: 0.4em;
}

main a {
    color: #008CBA;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

    main a:hover {
        text-decoration: none;
        color: #0A317B;
    }

main ul,
main ol {
    margin: 0.4em 0 0.8em 2.4em;
}

main ul {
    list-style: disc;
}

main ol {
    list-style: decimal;
}

.greyText {
    color: #999;
}

.greenText {
    color: #7FC235;
}

.blackText {
    color: #221F1F;
}

.redText, .req {
    color: #f00;
}

    .req::after {
        content: "*";
        display: inline-block;
        margin-left: 0.2em;
        color: #f00;
    }

main *.margin0 {
    margin: 0;
}

.col-black {
    color: #111 !important;
}


/* ===[ Tags ]=== */
ul.tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline;
}

    ul.tags li {
        background: #f00;
        display: inline-block;
        margin: 0 0.2em 0.2em 0;
        padding: 0 4px;
        font-size: 1em;
        color: #fff;
        border: 1px solid #aaa;
        background-color: #81B4B0
    }

        ul.tags li a {
            margin-right: 0.3em;
            color: #fff;
        }

    ul.tags a:hover {
        text-decoration: none;
    }


/* ===[ panel tabs ]=== */
.tabs {
    margin: 0 0 0.8em 0;
    border-bottom: 1px solid #ddd;
}

    .tabs a:not(.buttons) {
        display: inline-block;
        margin: 0 1px -1px 0;
        padding: 8px 16px;
        font-weight: 600;
        text-align: center;
        color: #000;
        border: 1px solid #ddd;
        background: #fefefe;
        font-family: "Font Awesome 5 Pro", 'Source Sans Pro', Roboto,Helvetica,Arial, sans-serif;
        font-size: 14px;
        -webkit-border-radius: 3px 3px 3px 3px;
        border-radius: 3px 3px 3px 3px;
    }

        .tabs a.act,
        .tabs a:not(.buttons):hover {
            color: #000;
            background: #DEDEDE;
            border-bottom: 1px solid transparent;
            text-decoration: none;
        }

        .tabs a:not(.buttons) i {
            margin-right: 0.3em;
        }


/* ===[ Alert boxes ]=== */
.alert-box {
    font-family: Roboto,Helvetica,Arial, sans-serif;
    border-radius: 10px;
    padding: 12px 10px 8px 50px;
    margin: 5px;
    color: #555;
    position: relative;
    text-align: left;
    min-height: 55px;
}

    .alert-box::before {
        font-size: 30px;
        position: absolute;
        left: 10px;
        top: 4px;
    }

    .alert-box.info {
        border: 1px solid #68a2cf;
        background: #e1f2fc;
    }

    .alert-box.success {
        border: 1px solid #a3c159;
        background: #eeffdd;
    }

    .alert-box.notice {
        border: 1px solid #e6c555;
        background: #fef7e0;
    }

    .alert-box.error {
        border: 1px solid #ff9999;
        background: #feebeb;
    }

    .alert-box.info::before {
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        content: "\f4ad";
        color: #68a2cf;
    }

    .alert-box.success::before {
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        content: "\f00c";
        color: #a3c159;
    }

    .alert-box.notice::before {
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        content: "\f071";
        color: #e6c555;
    }

    .alert-box.error::before {
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        content: "\f057";
        color: #ff4444;
    }

    .alert-box.small {
        background-image: none;
        padding: 6px 10px 6px 10px;
        min-height: auto;
        font-size: 13px;
    }

        .alert-box.small::before {
            margin-right: 6px;
            font-size: 1em;
            left: 0;
            top: 0;
            position: relative;
        }

    .alert-box .close-box {
        position: absolute;
        right: 16px;
        top: 6px;
    }

        .alert-box .close-box:hover {
            cursor: pointer;
        }

    .alert-box span {
        font-weight: bold;
        text-transform: uppercase;
    }

    .alert-box > ul {
        list-style: disc;
        margin: 0.4em 0 0 1.4em;
    }


/* ===[ Modal box ]=== */
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    background-color: rgba(240, 240, 240, 0.4);
}

    .modal.topLevel {
        z-index: 1000;
    }

    .modal.block {
        display: block;
    }

.modalDialog {
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translate(-50%, -50%);
    background: #fff;
    box-sizing: border-box;
    padding: 1em;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    -webkit-box-shadow: 0 0 10px 1px rgba(200,200,200,.5);
    box-shadow: 0 0 10px 1px rgba(200,200,200,.5);
    overflow-y: scroll;
    max-height: 95%;
}

.modal div.close {
    padding-bottom: 1em;
}

.modal a.close {
    position: absolute;
    top: 0;
    right: 4px;
    text-decoration: none;
}

.logosec {
    width: 50%;
    height: 240px;
    border: 1px dotted;
    margin-top: 28px;
}

.btn.btn-primary:hover {
    color: #fff;
    background-color: #ffcb27;
    border-color: #feca27;
}

.btn.btn-primary.btn-link {
    background-color: transparent;
    color: #ffcb27;
    box-shadow: none;
}

    .btn.btn-primary.btn-link:hover, .btn.btn-primary.btn-link:focus, .btn.btn-primary.btn-link:active {
        background-color: transparent;
        color: #000000;
    }

    .btn.btn-primary.btn-link:hover {
        background-color: transparent;
        color: #000;
        box-shadow: none;
    }

.nop {
    margin: 0px !important;
    Padding: 0px !important;
}

.tools {
    background: #777777;
    padding: 9px;
    border-radius: 5px;
}

.txt {
    background: #fff;
    padding: 4px;
    border-radius: 5px;
}

    .txt:focus {
        background: #fff !important;
        padding: 4px;
        border-radius: 5px;
    }

.folderArea {
    border: 1px solid;
    padding: 25px 0;
    min-height: 400px;
    border-color: #e5e5e5;
}

.docArea {
    border: 1px solid;
    padding: 25px 0;
    min-height: 400px;
    border-color: #e5e5e5;
}

.product-grid {
    font-family: Raleway,sans-serif;
    text-align: center;
    padding: 9px 0 0px;
    border: 1px solid rgba(0,0,0,.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.docheaders {
    font-size: 17px;
    font-weight: 600;
    padding: 10px;
}

.client-folders {
}

.product-grid .product-image {
    position: relative;
    transition: all .3s ease 0s;
    width: 50%;
    margin: 0 auto;
}

    .product-grid .product-image a {
        display: block
    }

    .product-grid .product-image img {
        width: 100%;
        height: auto
    }

.product-grid .pic-1 {
    opacity: 1;
    transition: all .3s ease-out 0s
}

.product-grid:hover .pic-1 {
    opacity: 1
}

.product-grid .pic-2 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease-out 0s
}

.product-grid:hover .pic-2 {
    opacity: 1
}

.product-grid .social {
    width: 150px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    top: 60%;
    left: 50%;
    z-index: 1;
    transition: all .3s ease 0s
}

.product-grid:hover .social {
    opacity: 1;
    top: 50%
}

.product-grid .social li {
    display: inline-block
}

    .product-grid .social li a {
        color: #FFD200;
        background-color: #54585b;
        font-size: 12px;
        line-height: 25px;
        text-align: center;
        height: 24px;
        width: 20px;
        margin: 0px -1px;
        top: 22px;
        display: block;
        position: relative;
        transition: all .3s ease-in-out;
    }

        .product-grid .social li a:hover {
            color: #ffffff;
            background-color: #54585b;
        }

            .product-grid .social li a:hover:after, .product-grid .social li a:hover:before {
                opacity: 1
            }

.product-grid .product-discount-label, .product-grid .product-new-label {
    color: #fff;
    background-color: #ef5777;
    font-size: 12px;
    text-transform: uppercase;
    padding: 2px 7px;
    display: block;
    position: absolute;
    top: 10px;
    left: 0
}

.product-grid .product-discount-label {
    background-color: #333;
    left: auto;
    right: 0
}

.product-grid .rating {
    color: #FFD200;
    font-size: 12px;
    padding: 12px 0 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: -1
}

    .product-grid .rating li.disable {
        color: rgba(0,0,0,.2)
    }

.product-grid .product-content {
    background-color: #fff;
    text-align: center;
    padding: 12px 0;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    z-index: 1;
    transition: all .3s
}

.product-grid:hover .product-content {
    bottom: 0
}

.product-grid .title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: capitalize;
    margin: 0 0 10px;
    transition: all .3s ease 0s
}

    .product-grid .title a {
        color: #828282
    }

        .product-grid .title a:hover, .product-grid:hover .title a {
            color: #ef5777
        }

.product-grid .price {
    color: #333;
    font-size: 17px;
    font-family: Montserrat,sans-serif;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 8px;
    text-align: center;
    transition: all .3s
}

    .product-grid .price span {
        color: #999;
        font-size: 13px;
        font-weight: 400;
        text-decoration: line-through;
        margin-left: 3px;
        display: inline-block
    }

.product-grid .add-to-cart {
    color: #000;
    font-size: 13px;
    font-weight: 600
}

.doctxt {
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    font-family: monospace;
}

.add-btn {
    background: #ffcb27;
    padding: 4px 11px 5px 13px;
    position: absolute;
    top: 6px;
    color: #fff;
    right: 10px;
}

    .add-btn:hover {
        background: rgba(0, 0, 0, 0.75);
        padding: 4px 11px 5px 13px;
        position: absolute;
        top: 6px;
        color: #ffcb27;
        right: 10px;
    }

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0
}

label {
    font-weight: normal
}
/*Tree*/

.trees {
    margin-left: 10px;
}

    .trees li {
        border-left: dotted 1px #bcbec0;
        padding: 1px 0 1px 25px;
        position: relative
    }

        .trees li > label {
            position: relative;
            left: -11px
        }

.color {
    color: #ffcb27;
}

.trees li:before {
    content: "";
    width: 13px;
    height: 1px;
    border-bottom: dotted 1px #bcbec0;
    position: absolute;
    top: 10px;
    left: 0
}

.trees li:last-child:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 13px;
    background: #fff;
    left: -1px;
    bottom: 0px;
}

.trees li input {
    margin-right: 5px;
    margin-left: 5px
}

.trees li.has-child > ul {
    display: none
}

.trees li.has-child > input {
    opacity: 0;
    position: absolute;
    left: -14px;
    z-index: 9999;
    width: 22px;
    height: 22px;
    top: -5px
}

    .trees li.has-child > input + .tree-control {
        position: absolute;
        left: -4px;
        top: 6px;
        width: 8px;
        height: 8px;
        line-height: 8px;
        z-index: 2;
        display: inline-block;
        color: #fff;
        border-radius: 3px;
    }

        .trees li.has-child > input + .tree-control:after {
            font-family: 'FontAwesome';
            content: "";
            font-size: 8px;
            color: #183955;
            position: absolute;
            left: 1px
        }

    .trees li.has-child > input:checked + .tree-control:after {
        font-family: 'FontAwesome';
        content: "";
        font-size: 8px;
        color: #183955;
        position: absolute;
        left: 1px
    }

    .trees li.has-child > input:checked ~ ul {
        display: block
    }

.trees ul li.has-child:last-child {
    border-left: none
}

.trees ul li.has-child:nth-last-child(2):after {
    content: "";
    width: 1px;
    height: 5px;
    border-left: dotted 1px #bcbec0;
    position: absolute;
    bottom: -5px;
    left: -1px
}

.tree-alt li {
    padding: 4px 0
}

/* stylised file upload */
.uploadWrapper {
    display: inline-block;
    height: 2.1em;
    width: 100%;
}

    .uploadWrapper .fileUpload {
        width: 0.1px;
        height: 0.1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1;
    }

        .uploadWrapper .fileUpload + label {
            display: inline-block;
            overflow: hidden;
            height: 100%;
            vertical-align: top;
            padding: 2px 4px;
            position: relative;
        }

            .uploadWrapper .fileUpload + label .fa {
                width: 8%;
                position: absolute;
                top: 0.5em;
                left: 0.4em;
            }

            .uploadWrapper .fileUpload + label span {
                display: inline-block;
                height: 100%;
                word-break: break-all;
                max-width: 100%;
                padding-left: 1.4em;
            }

            .uploadWrapper .fileUpload + label + a {
                display: inline-block;
                height: 100%;
            }


.table-warning {
    background-color: #ffeeba;
    color: #212529;
}

.table-warning {
    background-color: #f5c6cb;
    color: #212529;
}

label.label,
.label > input[type='checkbox'] + label {
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    font-weight: inherit !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.buttons.pagerField,
.buttons.pagerField:hover {
    padding: 5px 10px !important;
    min-width: 0 !important;
}


/* Hide toggle checkbox */
.htmlToggle {
    display: none !important;
}
    /* 
        Hide Icons
        Closed icon hidden when Open. 
        Opened icon hidden when Closed 
    */
    .htmlToggle:checked ~ .htmlToggle-iconWrapper .htmlToggle-icon-closed,
    .htmlToggle:not(:checked) ~ .htmlToggle-iconWrapper .htmlToggle-icon-opened {
        display: none !important;
    }
    /* 
        Show Icons
        Opened Icon shown when Opened. 
        Closed icon shown when Closed 
    */
    .htmlToggle:checked ~ .htmlToggle-iconWrapper .htmlToggle-icon-opened
    .htmlToggle:not(:checked) ~ .htmlToggle-iconWrapper .htmlToggle-icon-closed {
        display: inline-block !important;
    }
    /* Show Content element when checkbox checked=True */
    .htmlToggle:checked ~ .htmlToggle-content {
        display: block !important;
    }
    /*Hide Content element when checkbox checked=False */
    .htmlToggle:not(:checked) ~ .htmlToggle-content {
        display: none !important;
    }


/**************************************
    Table sorting link buttons
***************************************/
.table-sortBtn {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    background: inherit;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap
}

    .table-sortBtn.fas::before,
    .table-sortBtn.far::before,
    .table-sortBtn.fal::before {
        font-family: "Font Awesome 5 Pro";
        font-size: inherit;
        order: 1;
        margin-left: auto;
    }

    .table-sortBtn.fas::before { /* Font Awesome Solid icon weight */
        font-weight: 900;
    }

    .table-sortBtn.far::before { /* Font Awesome Regular icon weight */
        font-weight: 400;
    }

    .table-sortBtn.fal::before { /* Font Awesome Light icon weight */
        font-weight: 300;
    }

/*************
Image Gallery. Thumbnail display with hoverable controls
*************/
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .image-gallery > li {
        list-style: none;
        margin: 0;
        padding: 0;
        height: clamp(100px, 12em, 200px);
        position: relative;
        overflow: hidden;
    }

    .image-gallery li img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        vertical-align: middle;
        border-radius: 5px;
        transform: scale(1.0);
        transition: -webkit-transform 300ms ease;
        transition: transform 300ms ease;
        transition: transform 300ms ease, -webkit-transform 300ms ease;
    }

    .image-gallery li:hover img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    .image-gallery li .overlay-lower {
        padding: 0.25em;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: rgba(255,255,255,0.7);
        width: 100%;
    }

        .image-gallery li .overlay-lower .imgName {
            flex-grow: 1;
            color: inherit;
            text-decoration: none;
        }

        .image-gallery li .overlay-lower .buttons {
            flex-grow: 0;
        }

    .image-gallery li .overlay-upper {
        padding: 0.25em;
        position: absolute;
        top: 0;
        right: 0;
        display: none;
    }

    .image-gallery li:hover .overlay-upper {
        display: block;
    }
