/* https://w3bits.com/css-masonry */

.masonry-wrapper2 {
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    overflow: auto;
}

.masonry-wrapper{
    margin-bottom: 90px;
}

.masonry-enabled{
    display: block !important;
    left: 0;
    top: 0;
    z-index: 9999;
}


.masonry {
    columns: 1;
    column-gap: 10px;
}
.masonry-item {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 15px;
    margin-right: 10px;
}
@media only screen and (max-width:600px)
{
    .masonry {
        columns: 1;
    }

    .masonry-item {
        margin-right: 0;
    }
}
@media only screen and (max-width: 1023px) and (min-width: 768px)
{
    .masonry {
        columns: 2;
    }

}
@media only screen and (min-width: 1024px) {
    .masonry {
        columns: 3;
    }

}
.masonry-item {
    border-radius: 4px;
    overflow: hidden;

}
.masonry-item {
    /* filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .3)); */
}
.masonry-item:hover {
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, .3));
    transition: filter .25s ease-in-out;
}

.masonry-item {
    color: #111111;
    background-color: #dfffe7;
}
.masonry-title, .masonry-description {
    margin: 0;
    text-align: left;
}
.masonry-title {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
}
.masonry-description {
    padding: 0 1.5rem 0 1.5rem;
    font-size: 1.15rem;
    color: #31708f;
}
.masonry-footer {
    font-size: .75em;
    opacity: .25;
    text-align: center;
    padding-top: 3em;
    padding-bottom: 3em;
    margin-bottom: -1.5em;
    transition: opacity 1s ease-in-out;
}
.masonry-footer a {
    color: currentColor;
}
.masonry-footer:hover, .masonry-footer:active, .masonry-footer:focus {
    opacity: .75;
}

.masonry-reason{
    color: #8492a6;
    font-size: 0.9rem;
}

.masonry-block-footer{
    padding: 1.5rem;
}

.masonry-block-footer a{
    font-size: 1.05rem;
}


.close-btn {
    position: fixed;
    display: block;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 30px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 10000;
    padding: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 6px;
}

@media only screen and (max-width:600px)
{
    .close-btn {
        top: 15px;
        right: 10px;
    }
}

.close-btn::before, .close-btn::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 24px;
    top: 8px;
    left: 19px;
    background-color: #39393c;
}

.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.masonry-stars{
    padding: 25px 0 15px 0;
}

.masonry-stars svg{
    fill: #f17425;
    width: 30px;
    height: 30px;
}

