.vhs-ticker-container .filter-info {
    background-color: #f1f3f5;
    padding: 20px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
}

.vhs-ticker-container .filter-info .filter-selected {
    font-size: 0.8em;
    background-color: white;
    padding: 2.5px 5px;
    margin-right: 5px;
    border-radius: 2.5px;
    margin-bottom: 0;
}

.vhs-ticker-container .filter-info .filter-selected:first-of-type {
    margin-left: 5px;
}

.vhs-ticker-container .filter-info .filter-selected .filter-remove {
    margin: 0 5px;
    cursor: pointer;
}

.vhs-ticker-container .pagination {
    margin: 20px auto 10px auto;
    display: flex;
    justify-content: space-between;
}

.vhs-ticker-container .waiting-dialog {
    text-align: center;
}

.vhs-ticker-container .waiting-dialog i.fa {
    display: block;
}

/***** *****/

.vhs-ticker-container {
}

.vhs-ticker-container .vhs-ticker-item > a {
    background-color: #f1f3f5;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-top: 10px;
}

.vhs-ticker-container .vhs-ticker-item > a:first-of-type {
    margin-top: 0;
}

.vhs-ticker-container .vhs-ticker-item > a .thumbnail {
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 50%;
    z-index: 0;
    margin: 10px;
}

.vhs-ticker-container .vhs-ticker-item > a .content {
    background-color: white;
    padding: 20px;
    margin: 40px 40px 40px -120px;
    z-index: 2;
    text-align: left;
    width: calc(50% + 80px);
}
.vhs-ticker-container .vhs-ticker-item > a .content:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.vhs-ticker-container .vhs-ticker-item > a header {
    margin-bottom: 0.5em;
}

.vhs-ticker-container .vhs-ticker-item > a header .title {
    color: rgb(51, 51, 51);
    font-weight: 800;
    font-size: 1em;
    margin: 0;
}

.vhs-ticker-container .vhs-ticker-item > a header .subtitle {
    margin: 0;
}

.vhs-ticker-container .vhs-ticker-item > a header .subtitle .category {
    font-size: 0.8em;
    background-color: #00285a;
    color: white;
    padding: 2.5px 5px;
    margin-right: 5px;
    border-radius: 2.5px;
}

.vhs-ticker-container
.vhs-ticker-item
> a
header
.subtitle
.category:hover {
    background-color: #00285aaa;
}

.vhs-ticker-container .vhs-ticker-item > a .post-content {
    color: rgb(51, 51, 51);
}

.vhs-ticker-container .vhs-ticker-item > a footer {
    display: flex;
    font-size: 0.9rem;
}

.vhs-ticker-container .vhs-ticker-item > a footer > * {
    flex: 1;
}

.vhs-ticker-container .vhs-ticker-item footer > .vhs-more-link {
    color: #00285a;
    text-align: right;
}

.vhs-ticker-container .vhs-ticker-item > a footer > .post-date {
    color: #808080;
}

.vhs-ticker-container .vhs-ticker-item > a::before {
    position: absolute;
    content: "";
    background-image: url("../images/grey_circle.svg");
    display: inline-block;
    width: 75%;
    height: 200%;
    z-index: 100;
    opacity: 100%;
    top: -60%;
    left: -68%;
    background-repeat: no-repeat;
    background-size: 100%;
}

.vhs-ticker-container .vhs-ticker-item > a:hover::before {
    left: -65%;
    opacity: 75%;
    transition: left 0.25s ease-in-out, opacity 0.5s ease-in-out;
}

.vhs-ticker-container .vhs-ticker-item > a::after {
    position: absolute;
    content: "";
    background-image: url("../images/white_circle.svg");
    display: inline-block;
    width: 75%;
    height: 200%;
    z-index: 100;
    opacity: 0%;
    top: 50%;
    left: -30%;
    background-position: initial;
    background-repeat: no-repeat;
    background-size: 100%;
}

.vhs-ticker-container .vhs-ticker-item > a:hover::after {
    opacity: 50%;
    transition: all 0.5s ease-in-out;
}
