@charset "utf-8";
/* CSS Document */

.feedItem {
    border-radius: 100%;
    margin: 15px;
    border: 0;
    box-shadow: none;
    display: flex;
    overflow: hidden;
    text-align: center;
    transition: all .1s ease;
    width: 200px!important;
    height: 200px!important;
    cursor: pointer;
}

.feedItem:hover p {
    background: initial;
    background-color: #ffed00;
    opacity: 1;
}

.feedItem>* {
    max-width: 100%;
}

.feedItem>*:last-child {
    margin-bottom: 0;
}

.feedItem .banner {
    opacity: 1;
    display: block;
    width: 100%;
    max-width: initial;
    transition: all .1s ease;
    border-radius: 0;
}

.feedItem .feedTitle {
    font-family: inherit;
    font-size: 1.75em;
}

.feedItem h3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1rem;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    color: #fff;
}

.feedItem p {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1rem;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    color: #292b2c;
    font-size: 1rem;
    transition: all .1s ease;
}

.feedItemDetailsWrapper {
    position: absolute;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background-color: rgba(0,0,0,.5);
    padding: 1rem;
    transition: all .1s ease;
    width: 200px!important;
    height: 200px!important;
    border-radius: 50%;
}

.feedList {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-feed-image-link {
    padding: 0;
    background-color: #ffed00;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
}

@supports ((-o-object-fit:cover) or (object-fit:cover))
{
    .feedItem .banner {
        object-fit: cover;
        object-position: center;
        height: 100%;
    }
}