#gallery .photo {
    display: inline-block;
    padding: 5px;
    margin: 10px;
    border: 1px solid #ececec;
    text-align: center;
}

#gallery .photo img {
    width: 100px;
    height: 100px;
    display: block;
}

.file-readonly {
    background: #fff !important;
}

.plugin-logo {
    max-width: 128px;
    max-height: 128px;
    margin-bottom: 15px;
}
/*.plugin-cover {
	max-width:256px;max-height:128px;margin-bottom:15px;
}*/
.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

.file-upload-box {
    width: 350px;
}

[ng-click]:not([disabled]) {
    cursor: pointer;
}

a[disabled] {
    cursor: default;
}

.topbar .container {
    padding: 0;
}

#loading-bar-spinner {
    display: none;
}

#screen-loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: white;
}

#screen-loading .loading-wrapper {
    display: inline-block;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    top: 50%;
    position: absolute;
    left: 50%;
    margin-top: -57px;
    margin-left: -75px;
}

#screen-loading img {
    animation: smallToBig 3s ease-in-out;
    width: 200px;
    margin: 15px;
    font-size: 150px;
    color: #e00;
    -webkit-backface-visibility: hidden;
}

.cs-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.cs-loader-inner {
    transform: translateY(-50%);
    top: 60px;
    position: absolute;
    text-align: center;
    left: 58px;
}

.cs-loader-inner label {
    opacity: 0;
    display: inline-block;
    margin-right: 10px;
    background: rgba(39, 116, 160, 0.5);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        transform: translateX(0px);
    }

    66% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@keyframes smallToBig {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cs-loader-inner label:nth-child(6) {
    animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
    animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
    animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
    animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
    animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
    animation: lol 3s 500ms infinite ease-in-out;
}