.filters {
    margin: 1vw .5vw 0 .5vw;
    width: 92vw;
}

.filterbutton {
    padding-right: 10px;
    text-decoration: none;
    color: black;
    cursor: pointer;
    font-size: 1.25em;
    opacity: .5;
}

.filterbutton.activefilter, .filterbutton:hover {
    opacity: 1;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.row>.column {
    margin: .5vw;
    width: 30vw;
    position: relative;
    display: none;
    cursor: pointer;
}

.row>.column>picture>img {
    display: block;
    width: 100%;
}

.row>.column>picture+.details {
    display: none;
    position: absolute;
    bottom: 0;
    background-color: black;
    opacity: 50%;
    width: inherit;
    height: 2em;
}

.row>.column>picture+.details+.detailsText {
    display: none;
    position: absolute;
    bottom: .5em;
    font-weight: bold;
    color: white;
    text-align: center;
    width: inherit;
    line-height: 1em;
}

.row>.column:hover>picture+.details, .row>.column:hover>picture+.details+.detailsText {
    display: block;
}

.row.all>.column {
    display: unset;
}

.row.bungie>.column.bungie {
    display: unset;
}

.row.polyarc>.column.polyarc {
    display: unset;
}

.row>.column.ignorefilter {
    display: unset;
}

.filtercontainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* The Modal (background) */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 5vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
}

/* The Close Button */

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    z-index: 2;
}

.close:hover, .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.slidesContainer {
    display: none;
    justify-content: center;
    background-color: black;
    height: 85vh;
}

/* Hide the slides by default */

.mySlides {
    display: none;
    justify-content: center;
}

.mySlides>img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.myimg::after {
    content: "Hello World";
    color: white;
}

/* Next & previous buttons */

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 32px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

/*.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}*/

/* Caption text */

.caption-container {
    background-color: black;
    color: white;
    height: 5vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: column;
}

#caption {
    opacity: .75;
}

.dot {
    opacity: .5;
    display: none;
    font-size: 2em;
    color: white;
    margin: 0px 5px;
    cursor: pointer;
}

#dotsContainer {
    background-color: black;
    display: flex;
    justify-content: center;
    height: 5vh;
    align-items: baseline;
}

#glassbreakers_trailer_container {
    align-items: center;
}

@media screen and (max-width: 1000px) {
    .row>.column {
        width: 45.5vw;
    }
}

@media screen and (max-width: 750px) {
    .filterbutton {
        font-size: .75em;
    }
}

@media screen and (min-width: 1665px) {
    .row>.column {
        margin: 8px;
        width: 500px;
    }
    .filters {
        width: 1532px;
        margin: 16px 8px 0 8px;
    }
}