a:hover {
    text-decoration: none;
}

.progress-bar {
    background-color: #5ac8fb;
    color: #212529;
    font-weight: bold;
}

.progress {
    background-color: white;
}

.showOnHover {
    display: none;
}

.progress:hover .showOnHover {
    display: block !important;
}

.grid-container {
    display: grid;
}

.grid-item {
    padding: 10px 0;
}

.progress {
    height: 35px;
}

.rounded {
    border-radius: var(--borderRadius-standard) !important;
}

#instafeed-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /*margin: 10px;*/
    max-height: 220px;
    border-radius: var(--borderRadius-standard) !important;
}


#instafeed-container > a {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 1rem;
}

#instafeed-container a:nth-child(n+5) {
    display: none !important;
}


@media only screen and (max-width: 768px) {
    #instafeed-container > a {
        flex: 0 0 50%;
        max-width: 50%;
        padding: .5rem;
    }
}


