html,
body {
    min-width: 340px;
}

input[type="file"] {
    display: none;
}

.uk-logo,
.uk-logo:hover,
.uk-logo:active,
.uk-logo:visited {
    color: #ffffff;
}

.uk-navbar-container {
    background: linear-gradient(to left, #28a5f5, #1e87f0) !important;
}

#commsInfo {
    white-space: nowrap;
    cursor: pointer;
}

.menuInfoItem {
    white-space: nowrap;
    padding: 5px 0;
    color: #999;
}


.widerButton {
    width: 32px;
    cursor: pointer;
}

.uploadItem {
    display: flex;
    align-items: center;
    column-gap: .25em;
    cursor: pointer;
}

#intro {
    min-height: calc(100vh - 110px);
}

#gallery {
    max-width: 1800px;
    min-height: calc(100vh - 110px);
    margin-left: auto;
    margin-right: auto;
}

.thumbWrapper {
    position: relative;
    text-align: center;
}

.thumb {
    display: block;
    text-align: center;
}

.thumb img {
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, .3);
    transition: box-shadow 250ms, transform 400ms ease-in-out, filter 1s ease-in-out;
}

.thumbSelected {
    outline: 5px solid #28a5f5;
}

.thumb img:hover {
    box-shadow: 0px 8px 8px rgba(0, 0, 0, .3);
    transition: transform 100ms;
    transform: scale(1.04);
}

.thumb img:active {
    transform: scale(0.96);
}

#previewWrapper {
    display: block;
    position: relative;
    text-align: center;
    margin: 10px 0 20px 0;
}

#preview {
    display: block;
    text-align: center;
}

#previewFileName {
    font-weight: bold;
    overflow: hidden;
    white-space: break-spaces;
    margin: 12px 0 12px 0;
}

#previewDetails {
    font-size: .875rem;
}

#preview img {
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, .3);
    transition: box-shadow 250ms, transform 400ms ease-in-out, filter 1s ease-in-out;
}

#preview img:hover {
    box-shadow: 0px 8px 8px rgba(0, 0, 0, .3);
    transition: transform 100ms;
    transform: scale(1.04);
}

#preview img:active {
    transform: scale(0.96);
}

.statusBadge {
    transition: visibility 250ms ease-in-out, opacity 250ms ease-in-out;
    border-radius: 4px;
    position: absolute;
    bottom: 6px;
    left: 6px;
}

.badgeVisible {
    visibility: visible;
    opacity: 1;
}

.badgeHidden {
    visibility: hidden;
    opacity: 0;
}



.imageLoading {
    filter: grayscale(1);
}

.imageLoaded {
    filter: grayscale(0);
}

#sidebar {
    display: none;
}


#sidebarPadder {
    padding: 95px 15px 15px 15px;
}

#contentPadder {
    padding: 15px 15px 15px 0;
}

.previewDrop {
    background-color: #eef;
}

.sidebarClose {
    position: absolute;
    right: 16px;
    top: 8px;
}

.fullWindowImageWrapper {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 999;
}

.fullWindowImage {
    position: absolute;
    object-fit: contain;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fullWindowSpinner {
    position: absolute;
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.7);
    transform: translate(-30px, -30px);
}

.fullWindowClose {
    position: absolute;
    right: 5px;
    top: 5px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.fileUploadLabel {
    cursor: pointer;
}

.fileUploadLink {
    color: #1e87f0;
    text-decoration: none;
    cursor: pointer;
}

.fileUploadLink:hover {
    text-decoration: underline;
}

.sidebar-right {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    width: 330px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(240, 240, 240, 0.9);
    border-left: 1px solid #ddd;
}

.sidebar-right::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.sidebar-right::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.sidebar-right::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #bdbdbd;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track-piece {
    background-color: #f0f0f0;
    /*this can also be transparent*/
}

::-webkit-scrollbar-thumb:vertical {
    width: 2px;
    background-color: #28a5f5;
    border-top: 4px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    border-bottom: 4px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
}