.login-form-container {
    width: 300px;
    margin: 200px auto;
    text-align: center;
}

.mediaPanel {
    padding: 10px;
}

.mediaSidePanel {
    height: 530px;
    width: 250px;
    overflow: auto;
    position: absolute;
    border: solid;
    border-width: 1px;
    border-color: rgba(221, 221, 221, 1);
}

.mediaItemsGroup {
    height: 530px;
    padding: 10px;
    margin-left: 250px;
    overflow: auto;
    border: solid;
    border-width: 1px;
    border-color: rgba(221, 221, 221, 1);
}

.mediaItem {
    display: inline-block;
    position: relative;
}
.mediaItemIn {
    margin: 10px;
    position: relative;
}
.mediaItemIn:hover {
    background-color: rgba(240, 245, 245, 1.0);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.mediaItemDetailsContainer {
    float: right;
    width: 160px;
    padding-top: 25px;
    padding-right: 10px;
    max-height:130px;
}

.mediaItemTags {
    max-width: 130px;
    white-space: pre;
    overflow: auto;
}

.mediaItemImageContainer {
    height: 130px;
    width: 130px;
    padding: 0px;
    text-align: center;
    display: inline-block;
}

.mediaItemPreudoImage {
    height: 130px;
    width: 0px;
    vertical-align: middle;
    display: inline-block;
    background-color: red;
}

.mediaItemImage {
    position: relative;
    max-width: 125px;
    max-height: 125px;
    border: solid;
    border-color: white;
    border-width: 1px;
    border-radius: 1px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.bigImageContainer {
    text-align: center;
    background-color: rgba(240, 240, 240, 1.0);
}

.mediaImage {
    max-width: 500px;
    max-height: 500px;
    margin: 30px;
}

.itemButtonDelete {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -15px;
    right: -15px;
    opacity: 0.6;
    cursor: pointer;
    z-index: 1;
    border: solid;
    border-radius: 5px;
    border-width: 1px;
    border-color: rgb(200, 200, 200);
}
.itemButtonDelete:hover {
    opacity: 1.0;
}

.itemButtonPreview {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 15px;
    right: -15px;
    opacity: 0.6;
    cursor: pointer;
    z-index: 1;
    border: solid;
    border-radius: 5px;
    border-width: 1px;
    border-color: rgb(200, 200, 200);
}
.itemButtonPreview:hover {
    opacity: 1.0;
}

.addItemButton {
    margin: 5px;
}

.addMediaFileForm {
    padding: 20px;
}

.mediaSearchInput {
    width: 200px;
    margin-top: 15px;
    float: right;
}