.container {
    padding-top: 10px;
}

.update {
    border-left: 4px solid #7ad03a;
    background: #ffffff;
    padding: 1px 12px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
    margin: 0 0 15px 0;
}

.update > p {
    margin: .5em 0;
    padding: 2px;
}

.content {
    overflow: hidden;
    box-sizing: border-box;
}

/* ITEM */
.item {
    width: 100%;
    float: left;
    box-sizing: border-box;
}

.item .image-container {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
}

.item .image-container .image {
    content: "";
    width: 100%;
    display: block;
    padding-bottom: 56.25%;
    box-sizing: border-box;
    background: no-repeat center center / cover;
    cursor: zoom-in;
}

.item .information {
    overflow: hidden;
    padding: 0 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 16px;
}

.item .information .left {
    float: left;
    font-weight: 600;
}

.item .information .right {
    float: right;
    font-weight: 300;
}

.item .alt-text {
    padding: 12px;
}

.item .alt-text input {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 0;
    border: 1px solid #e5e5e5;
}

/* SIDEBAR */
.sidebar {
    padding: 12px;
}

.sidebar > button {
    width: 100%;
}

/* OVERLAY */

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, .7);
}

.overlay > img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
}

@media (min-width: 783px) {
    .content {
        margin-right: 298px;
    }

    .item {
        margin-right: 20px;
    }

    .sidebar {
        width: 278px;
        padding: 12px;
        position: fixed;
        top: 94px;
        right: 20px;
        box-sizing: border-box;
    }
}

@media (min-width: 1160px ) {
    .update {
        margin-right: 20px;
    }

    .content {
        margin-right: 278px;
    }

    .item {
        max-width: calc(50% - 20px);
    }
}

@media (min-width: 1500px ) {
    .item {
        max-width: calc(33.333333% - 20px);
    }
}