
/********* public:attachments.less ********/.attachmentUploads {
    display: none;
    margin-bottom: 10px
}

.attachmentUploads.is-active {
    display: block
}

.attachmentUploads.attachmentUploads--spaced {
    margin-top: 10px
}

.attachmentUploads .hScroller-action {
    color: #EAECF2
}

.attachmentUploads .hScroller-action:hover {
    color: #22c55e
}

.attachmentUploads .hScroller-action.hScroller-action--start:before {
    content: '';
    position: absolute;
    left: 0;
    height: 50px;
    width: 35px;
    background: #101116;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 1px 0 4px 1px rgba(0,0,0,0.3)
}

.attachmentUploads .hScroller-action.hScroller-action--start:after {
    position: absolute;
    left: 10px
}

.attachmentUploads .hScroller-action.hScroller-action--end:before {
    content: '';
    position: absolute;
    right: 0;
    height: 50px;
    width: 35px;
    background: #101116;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: -1px 0 4px 1px rgba(0,0,0,0.3)
}

.attachmentUploads .hScroller-action.hScroller-action--end:after {
    position: absolute;
    right: 10px
}

.attachmentUploads-banner {
    color: #5e6278;
    background: #1b1b29;
    border: 1px solid #2b2b40;
    border-radius: 2px;
    margin-top: 10px;
    padding: 3px 6px
}

.attachmentUploads-selectActions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    font-size: 1rem
}

.attachmentUploads.is-selecting .attachmentUploads-selectActions {
    display: flex
}

.attachmentUploads-selectActions>li {
    margin-right: .35em
}

.attachmentUploads-selectActions>li .buttonGroup {
    vertical-align: middle
}

.attachmentUploads-selectActions>li:last-of-type {
    flex: 1 1 auto;
    text-align: right
}

.attachmentUploads-selectActions .selectAll .iconic {
    cursor: pointer
}

.attachmentUploads-selectActions .selectAll .iconic input+i {
    color: #EAECF2
}

.is-selecting button.js-attachmentSelect {
    float: right
}

.file {
    position: relative;
    width: 165px;
    height: 165px;
    margin-right: 6px;
    background: #1b1b29;
    border-radius: 2px
}

.file:last-child {
    margin-right: 0
}

.attachUploadList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    white-space: nowrap;
    font-size: 0
}

.attachUploadList .file {
    display: inline-block;
    font-size: 14px
}

.attachmentList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap
}

.attachmentList .file {
    margin-bottom: 6px
}

@supports (display: grid) {
    .attachmentList {
        display:grid;
        grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
        grid-gap: 6px;
        gap: 6px
    }

    .attachmentList .file {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 0
    }

    .attachmentList .file:after {
        content: '';
        display: block;
        padding-bottom: 100%;
        pointer-events: none
    }
}

.file-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.file-preview img,.file-preview video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.file--linked .file-preview:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100
}

.file-typeIcon {
    font-size: 80px;
    vertical-align: middle;
    color: #04c8c8
}

.file-error {
    color: #ffc700;
    font-size: 0.75rem;
    white-space: normal;
    padding: 6px
}

.file-progress {
    position: relative;
    width: 100%;
    width: calc(100% - 8px);
    font-size: 11px;
    line-height: 1.3
}

.file-progress i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #22c55e;
    color: #fff;
    border-radius: 2px;
    padding-right: .2em;
    text-align: right;
    font-style: normal;
    white-space: nowrap;
    min-width: 2em;
    -webkit-transition: width .15s ease;
    transition: width .15s ease
}

.file-content {
    position: absolute;
    width: 100%;
    height: 100%
}

.file-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 10px;
    height: 2.5em;
    line-height: 2.5;
    overflow: hidden;
    -webkit-transition: height .15s ease;
    transition: height .15s ease;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    font-size: 0.75rem;
    color: #fff;
    background: rgba(0,0,0,0.5);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6)
}

@supports (backdrop-filter: blur(3px)) or (-webkit-backdrop-filter: blur(3px)) {
    @supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
        .file-info {
            --backdrop-filter:blur(3px);
            -webkit-backdrop-filter: var(--backdrop-filter);
            backdrop-filter: var(--backdrop-filter)
        }
    }

    @supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
        .file-info {
            background:none
        }
    }
}

a.file-info {
    color: #fff
}

a.file-info:hover {
    color: #fff;
    text-decoration: none
}

a.file-info:hover .file-name {
    text-decoration: underline
}

.file-info:hover,.file--linked:hover .file-info,.has-touchevents .file-info {
    height: 5em
}

.file-name,.file-meta {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.file-delete,.file-insert {
    position: absolute;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6)
}

.file-checkbox {
    display: none
}

.attachmentUploads.is-selecting .file-checkbox {
    display: block
}

.file-checkbox .iconic {
    position: static
}

.file-checkbox .iconic:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100
}

.file-checkbox .iconic>i {
    position: absolute;
    top: 4px;
    left: 4px;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    color: #dcdcdc;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 6px;
    line-height: 1
}

.file-checkbox .iconic:hover>i {
    color: #fff
}

.file-checkbox .iconic:hover>i:before {
    content: "\f14a"
}

.file-checkbox .iconic>input+i:before,.file-checkbox .iconic>input+i:after {
    top: 6px;
    left: 6px
}

.file-checkbox .iconic>input:checked+i:after {
    font-weight: bold
}

.file-insert {
    top: 4px;
    left: 4px;
    font-size: 0.75rem;
    max-width: 125px;
    white-space: normal;
    word-wrap: break-word
}

.file-insert.is-active .file-insertLink {
    display: none
}

.file-insert.is-active .file-menuOptions {
    display: block
}

.file-delete {
    top: 4px;
    right: 4px;
    font-size: 14px
}

.attachmentUploads.is-selecting .file-insert,.attachmentUploads.is-selecting .file-delete {
    display: none
}

.file-insertLink,.file-deleteLink {
    display: inline-block
}

a.file-deleteLink {
    color: inherit;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 6px;
    -webkit-transition: background .15s ease;
    transition: background .15s ease
}

a.file-deleteLink:hover {
    text-decoration: none;
    background: rgba(0,0,0,0.5)
}

a.file-insertLink,.file-menuOptions>a {
    color: inherit;
    background: rgba(0,0,0,0.4);
    border-radius: 4px;
    padding: 6px;
    -webkit-transition: background .15s ease;
    transition: background .15s ease
}

a.file-insertLink:hover,.file-menuOptions>a:hover {
    text-decoration: none;
    background: rgba(0,0,0,0.5)
}

.file-menuOptions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none
}

.file-menuOptions>a {
    display: block;
    margin-top: 3px;
    max-width: max-content
}

.file-menuOptions>a:first-child {
    margin-top: 0
}

@media (max-width: 480px) {
    .attachmentUploads .iconic-label,.attachmentUploads .insert-label {
        display:none
    }
}
		
		
		
		