/* General: start */
html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    background: url(../gfx/backgroundPattern.gif) repeat;
}

/* hide scrollbar in chrome and safari */
::-webkit-scrollbar {
    display: none;
}
/* General: end */

/* Login: start */
.login-background {
    margin: 0;
    height: 100%;
    width: 100%;
    background: url(../gfx/loginBackgroundFull.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@media only screen
and (max-device-width: 736px)  {
    /* small screens, most phones, 736px iPhone 6+ */
    .login-background {
        margin: 0;
        height: 100%;
        width: 100%;
        background: url(../gfx/loginBackground1024.jpg) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}

@media only screen
and (min-device-width : 1024px)
and (max-device-width : 1366px) {
    /* iPad Pro */
}

.login-box {
    text-align: center;
    position: absolute;
    left: 50%;
    margin-left: -120px;
    margin-top: 60px;
    width: 240px;
}

.login-form input {
    display: inline-block;
    width: 240px;
    padding: 8px;
    margin-bottom: 4px;
    outline: 0;
    background-color: rgba(255, 255, 255, 0.40);
    border: 0;
    border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px 4px 4px 4px;
    color: #fff;
    font-size: 13px;
}

.login-form .submit-btn {
    margin-top: 20px;
    display: inline-block;
    margin-bottom: 4px;
    outline: 0;
    background-color: rgba(255, 255, 255, 0.00);
    border: 0;
    color: #fff;
    font-size: 30px;
}
.login-form .submit-btn:hover {
    cursor: pointer;
}

.login-message {
    color: #fff;
}

.no-script-message {
    color: #fff;
}

#user-password::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.60);
}
#user-password::-webkit-input-placeholder::before { /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.60);
    font-family: Arial, fontello, sans-serif;
    content: '\e801';
    padding-left: 2px;
    padding-right: 4px;
}

#user-password:-moz-placeholder { /* Firefox 18- */
    color: rgba(255, 255, 255, 0.60);
}
#user-password:-moz-placeholder::before {
    color: rgba(255, 255, 255, 0.60);
    font-family: Arial, fontello, sans-serif;
    content: '\e801';
    padding-left: 2px;
    padding-right: 4px;
}

#user-password::-moz-placeholder { /* Firefox 19+ */
    opacity: 0.60;
    color: #fff;
}
#user-password::-moz-placeholder::before {
    opacity: 0.60;
    color: #fff;
    font-family: Arial, fontello, sans-serif;
    content: '\e801';
    padding-left: 2px;
    padding-right: 4px;
}

#user-password:-ms-input-placeholder { /* IE 10+ */
    color: rgba(255, 255, 255, 0.60);
}
#user-password:-ms-input-placeholder::before {
    color: rgba(255, 255, 255, 0.60);
    font-family: Arial, fontello, sans-serif;
    content: '\e801';
    padding-left: 2px;
    padding-right: 4px;
}

.guest-login-box {
    position: absolute;
    bottom: 20px;
    text-align: center;
    left: 50%;
    margin-left: -120px;
    width: 240px;
}

.guest-login-form .submit-btn {
    outline: 0;
    background-color: rgba(255, 255, 255, 0.00);
    border: 0;
    color: rgba(255, 255, 255, 0.30);
    font-size: 14px;
    padding: 8px;
}
.guest-login-form .submit-btn:hover {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.80);
}
/* Login: end */

#noeol-config-form {
    display: none;
}

/* Menu: start */
.menu {
    height: 30px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 3;
}

.menu-logout {
    float:left;
    line-height: 30px;
}
.logout-form {
    margin: 0;
    padding: 0;
}
#logout-btn {
    display: inline-block;
    outline: 0;
    border: 0;
    background-color: rgba(255, 255, 255, 0.00);
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    padding-top: 5px;
    padding-left: 4px;
}
#logout-btn:hover {
    cursor: pointer;
    /*color: rgba(255, 255, 255, 0.7);*/
}
#logout-btn i {
    font-size: 16px;
}

.menu-upload {
    color: rgba(255, 255, 255, 1);
    float:right;
    /*text-align: right;*/
    line-height: 30px;
}
.menu-upload-btn {
    float: left;
    padding-right: 8px;
    font-size: 14px;
    display: inline-block;
}
#upload-btn-text {
    float:left;
}
#upload-btn-text:hover {
    cursor: pointer;
}
.upload-btn-icon {
    font-size: 18px;
    float:left;
    padding-top:6px;
    padding-right:3px;
}
.upload-btn-icon:hover {
    cursor: pointer;
}

#upload-cancel-btn {
    font-size: 18px;
    float:left;
    padding-top:6px;
    padding-right:3px;
    display: none;
}
#upload-cancel-btn:hover {
    cursor: pointer;
}

#processing-spinner {
    font-size: 14px;
    float:left;
    padding-top:8px;
    padding-right:3px;
    display: none;
}

#message-container {
    position: fixed;
    top: 0;
    left: 50%;
    width: 360px;
    margin-left: -180px;
    z-index: 999;
}

/* message mobil portrait mode in full width */
@media only screen
and (max-device-width : 800px)
and (orientation : portrait) {
    #message-container {
        position: fixed;
        /*top: 30px;*/
        width: 100%;
        z-index: 999;
        left: 0;
        margin-left: 0;
    }
}

#message {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#message li.error {
    border: 1px solid rgb(212, 4, 38);
    background-color: rgba(233, 56, 51, 0.95);
    color: white;
    height: 28px;
    text-align: center;
    border-radius: 0px;
    margin-bottom: 6px;
}

#message li.success {
    border: 1px solid rgb(8, 173, 46);
    background-color: rgb(4, 186, 22);
    color: white;
    height: 28px;
    text-align: center;
    border-radius: 0px;
    margin-bottom: 6px;
}

#message li div {
    padding: 5px;
}



#upload-progress-bar-body {
    float:left;
    padding-top: 8px;
    display:none;
    margin-top: 1px;
    margin-right: 8px;
}

#upload-progress-bar-bg {
    height: 10px;
    width: 80px;
    border: 1px solid #fff;
    position: relative;
    z-index: 8600;
}

#upload-progress-bar-white-percent {
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 10px;
    color: #fff;
    z-index: 8601;
    line-height: 10px;
}

#upload-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 10px;
    z-index: 8602;
    background-color: #fff;
}

#upload-progress-bar-black-percent {
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 10px;
    color: #000;
    z-index: 8603;
    clip: rect(0px, 0px, 10px, 0px);
    line-height: 10px;
}
/* Menu: end */

/* List: start */
#preview-images {
    padding-top: 30px;
}

.preview {
    display: block;
    float: left;
    border: 0;
    position: relative;
    z-index: 0;
}
.preview:hover {
    cursor: pointer;
}

.info {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    font-size: 14px;
    padding: 2px;
    opacity: 0.6;
    color: #fff;
    text-shadow: 0 0 1px #000;
}

.info i {
    padding-left: 4px;
}

.preview img {
    width: 100%;
    height: 100%;
}

.no-items {
    position: relative;
    top: 60px;
    left: 50%;
    width: 300px;
    margin-left: -150px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
}

#load-more-btn {
    text-align:center;
    padding-top: 26px;
    padding-bottom: 26px;
    display: none;
}
#load-more-btn:hover{
    cursor: pointer;
}
#load-more-btn i {
    font-size:22px;
    display: block;
}
/* List: end */

/* Details: start */
#details-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display:none;
    z-index: 50;
}

.media-box {
    float: left;
    width: 80%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.90);
}

.media-frame {
    height: 100%;
    width: 100%;
    position: relative;
}

.media-image {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.description-box {
    float: left;
    width: 20%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    /*overflow-y: scroll;*/
}
.description-text {
    padding-top: 16px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    overflow-y: scroll;
}
.mobile-description-text {
    padding-top: 6px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
}

.mobile-description-box {
    clear: both;
    float: none;
    position: fixed;
    left: 0;
    bottom: 0;
    display: none;
    width: 100%;
    height: 60%;
}

.mobile-description-header {
    width: 100%;
    height: 10%;
    position: relative;
    border-bottom: 4px solid rgba(255, 255, 255, 1);
}

.mobile-description-body {
    background-color: rgba(255, 255, 255, 1);
    height: 90%;
    width: 100%;
    overflow-y: scroll;
}

#show-mobile-description {
    float: right;
    width: 20px;
    height: 40px;
    display: none;
    position: relative;
    bottom: 60px;
    font-size: 18px;
    padding: 20px;
}
#show-mobile-description:hover {
    cursor: pointer;
}
#show-mobile-description i {
    color: #fff;
    padding: 2px;
    text-shadow: 0 0 1px #000;
}

/* Mobile screens */
@media only screen
and (max-width : 860px) {
    .media-box {
        float: none;
        width: 100%;
        height: 100%;
    }
    .description-box {
        display: none;
        float: none;
        width: 100%;
    }
    #show-mobile-description {
        display: block;
    }
}

.mobile-description-close {
    display: none;
    position: absolute;
    bottom: -4px;
    right: 6px;
    width: 30px;
    float: right;
    z-index: 20;
    font-size: 20px;
    background-color: #fff;
    text-align: center;
    border-radius: 4px 4px 0px 0px;
    -moz-border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    padding-top: 4px;
    padding-right: 4px;
    padding-left: 4px;
    padding-bottom: 0;
}
.mobile-description-close:hover {
    cursor: pointer;
}

.details-box-close {
    position: relative;
    float: right;
    top: 14px;
    right: 10px;
    color: #fff;
    text-shadow: 0 0 1px #000;
    font-size: 20px;
    z-index: 10;
}
.details-box-close:hover {
    cursor: pointer;
}

.detail-media-datetime {
    float: left;
    color: #818181;
    margin-right: 10px;
}

.detail-media-visibility {
    float: right;
    color: #818181;
    font-size: 16px;
}
/* Mobile screens */
@media only screen
and (max-width : 1230px) {
    .detail-media-visibility {
        float: left;
    }
}

.detail-media-description {
    clear: both;
    color: #252525;
    padding-top: 10px;
}

.detail-media-description a {
    text-decoration: none;
    color: #2a82ff;
}
.detail-media-description a:hover {
    text-decoration: underline;
}

.detail-media-visibility i {
    margin: 2px;
}

.detail-media-visibility span {
    margin: 4px;
}

.visibility-to-hidden:hover {
    cursor: pointer;
}
.hidden-active {
    color: #fff;
    background-color: limegreen;
    border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
}

.visibility-to-private:hover {
    cursor: pointer;
}
.private-active {
    color: #fff;
    background-color: dodgerblue;
    border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
}

.visibility-to-public:hover {
    cursor: pointer;
}
.public-active {
    color: #fff;
    background-color: rgb(255, 20, 13);
    border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
}

.description-head {
    height: 20px;
}

#media-description-text {
    display: block;
    clear: both;
    width: 100%;
    height: 50%;
    border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    border: 1px solid #bebebe;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 14px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
#mobile-media-description-text {
    display: block;
    clear: both;
    width: 100%;
    height: 50%;
    border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    border: 1px solid #bebebe;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 14px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.save-details-btn {
    float: left;
    width: 90px;
    height: 22px;
    line-height: 22px;
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    text-align: center;
    margin-top: 6px;
    font-size: 13px;
    background-color: rgb(47, 153, 255);
    color: #fff
}
.save-details-btn:hover {
    cursor: pointer;
}

.delete-btn {
    float: right;
    width: 30px;
    height: 22px;
    line-height: 22px;
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    text-align: center;
    margin-top: 6px;
    font-size: 13px;
    background-color: rgb(255, 20, 13);
    color: #fff
}
.delete-btn:hover {
    cursor: pointer;
}
/* Details: end */
