.media-box {
    transition: .7s all;
    min-height: 48px;
}
.media-box.open {
    background: black;
}
.media-box.open .item-title {
    color: white !important;
}
.media-box img {
    border-radius: 5px;
}

.item-title {
    color: #1f2937;
    transition: .7s all;
    opacity: 1;
}

.embed-close {
    margin-top: 10px;
    background: black;
    height: 30px;
    width: 30px;
    opacity: .7;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s all;
    font-size: 20px;
    font-weight: lighter;
    padding-bottom: 3px;
}
.embed-close:hover {
    opacity: 1;
}

.media-content img {
    margin: auto;
}

.loading {
    position: absolute;
    z-index: 1;
    filter: brightness(0.5);
}
.loading + div {
    filter: blur(1px);
    animation: .3s all;
    pointer-events: none;
}
