.alstag-social-feed-block {
    display: block;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 15px;
}

.alstag-social-feeds-title {
    font-size: 24px !important;
    font-weight: 300;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}


.feed-entries {
    display: flex;
    justify-content: space-between;
}

.alstag-feed-icon {
    width: 35px;
    height: 35px;
    display: inline-block;
}

.alstag-feed-icon svg {
    width: 100%;
    fill: #fff;
}

.icon-facebook:hover svg,
.icon-facebook.active svg {
    fill: rgb(8, 102, 255);
}

.icon-youtube:hover svg,
.icon-youtube.active svg {
    fill: rgb(255, 0, 51);
}

.icon-instagram:hover svg,
.icon-instagram.active svg {
     fill: url(#rg);
}

.icon-linked-in:hover svg,
.icon-linked-in.active svg {
    fill: rgb(10, 102, 194);
}

.alstag-social-feed-block .feed-contents {
    max-height: 0px;
    transition: max-height 1s ease-in-out;
    overflow: hidden;
}

.alstag-social-feed-block:hover .feed-contents {
    max-height: 500px;
    transition: max-height 1s ease-in-out;
}

.feed-content {
    display: none;
    font-size: 12px;
}

.post-content {
    padding: 0 5px;
}

.post-content a {
    color: #fff;
    text-decoration: none;
}

.feed-content.active {
    display: flex;
}

@media (min-width: 768px) {

    .alstag-feed-icon {
        width: 40px;
        height: 40px;
    }

    .feed-content {
        font-size: 14px;
    }
}