body {
    padding-top: 54px;
}

@media (min-width: 992px) {
    body {
        padding-top: 56px;
    }
}

a, a:visited {
    text-decoration: none!important;
    color: white!important;
}

.tags {
    /*border: 2px dashed #ddd;*/
    color: #777;
    font-weight: bold;
    padding: 8px 8px;
    text-decoration: none;
    font-size: 100%;
    white-space: nowrap;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    margin: 5px 5px;
    display: inline-block;
    transition: all 0.3s;
}

.tags:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* single_item */

.overlay{
    z-index: -1;
    background-image: linear-gradient(to right bottom, rgba(27, 208, 215, 0.9), rgba(187, 82, 146, 0.95));
    position: fixed;
    height: 100%;
    width: 100%;
}

.blurredBackground {
    /*filter: blur(5px) brightness(1);*/
    position: fixed;
    z-index: -2;
    height: 100%;
    width: 100%;
    background-size: cover;
}

.blurredSearchBackground {
    /*filter: blur(5px) brightness(1);*/
    position: absolute;
    z-index: -2;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
}

.img-fluid{
    /*box-shadow: 0 0 150px rgba(0, 0, 0, 0.36);*/
}

.page-link {
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.24);
    border: none;
}

.page-link:hover {
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.5);
    border: none;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.page-link a {
    padding: 8px 13px;
}

.active .page-link {
    padding: 8px 13px;
}

.searchContainer{
    position: relative;
    height: 100%;
    width: 100%;
    min-width: 100%;
    min-height: 350px;
    padding: 0;
}

.searchForm{
    padding-top: 150px;
}





/* Masonry Grid
Box-sizing reset: http://w3bits.com/?p=3225 */

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* The Masonry Container */
.css-masonry-container {
    max-width: 768px;
    column-gap: 8px;
}

/* The Masonry Brick */
.css-masonry-item {
    margin: 0 0 8px;
}

/* Masonry bricks or child elements */
.css-masonry-img {
    border: 2px solid rgb(219, 219, 219);
    border-radius: 2px;
}

/* Masonry on large screens */
@media only screen and (min-width: 1024px) {
    .css-masonry-container {
        column-count: 2;
    }
}

/* Masonry on medium-sized screens */
@media only screen and (max-width: 1023px) and (min-width: 768px) {
    .css-masonry-container {
        column-count: 1;
    }
}


