.movie-card {
    position: relative;
    float: left;
    width: 180px;
    height: 240px;
    margin-top: 10px;
    margin-left: 10px;
    background: #6f42c1;
    box-sizing: content-box;
    color: #fff;
}

.movie-card:hover {
    /*border: 1px solid #e6dc76;*/
    box-shadow: 0 0 10px #e6dc76;
}

.movie-card:hover .movie-card-a {
    display: none;
}

.movie-card:hover .movie-card-b {
    display: block;
}

.movie-card-a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 240px;
    overflow: hidden;
}

.movie-card-b {
    display: none;
}

.movie-card-b {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 240px;
}

.movie-card-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 17px;
    background: rgba(0, 0, 0, 0.7);
}

.movie-card-info-section-container {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding-top: 2px;
    height: 17px;
}

.movie-card-info-section-container div:nth-child(1) {
    margin-left: 4px;
}

.movie-card-info-icon {
    width: 14px;
    height: 14px;
    position: relative;
    top: -2px;
    margin-right: 2px;
}

.movie-card-info-icon2 {
    width: 14px;
    height: 14px;
    position: relative;
    top: -5px;
    margin-right: 2px;
}

.movie-card-b a {
    display: block;
    padding: 10px 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #e6dc76;
    width: 100%;
    text-align: center;
    text-decoration: none !important;
}

.movie-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    background: #e6dc76;
    border-radius: 50%;
    border: 3px solid #9b753b;
    color: #3a2c16;
    text-align: center;
    padding-top: 2px;
    animation-name: movie-card-play-anim;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-direction: alternate;
}

@keyframes movie-card-play-anim {
    0% {
        opacity: 100%;
    }
    50% {
        opacity: 40%;
    }
    100% {
        opacity: 100%;
    }
}


.movie-card-views {
    display: inline-block;
    margin: 3px;
    min-width: 50px;
    width: auto;
    height: 26px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    padding: 0 5px;
    line-height: 2.2em;
}

.movie-card-views>img {
    position: relative;
    top: -2px;
    margin-right: 5px;
}

.movie-card-ribbon-container-FULL-HD {
    width: 151px;
    height: 20px;
    background: mediumpurple;
    overflow: visible;
    text-align: center;
    font-weight: bold;
    transform: rotate(40deg);
    position: relative;
    left: 68px;
    top: -11px;
}
.movie-card-ribbon-container-FULL-HD::after {
    content: "FULL-HD";
}

.movie-card-ribbon-container-HD {
    width: 151px;
    height: 20px;
    background: crimson;
    overflow: visible;
    text-align: center;
    font-weight: bold;
    transform: rotate(40deg);
    position: relative;
    left: 68px;
    top: -11px;
}
.movie-card-ribbon-container-HD::after {
    content: "HD";
}

.movie-card-ribbon-container-4K {
    width: 151px;
    height: 20px;
    background: coral;
    overflow: visible;
    text-align: center;
    font-weight: bold;
    transform: rotate(40deg);
    position: relative;
    left: 68px;
    top: -11px;
}
.movie-card-ribbon-container-4K::after {
    content: "4K";
}

.movie-card-ribbon-container-ZOOM {
    width: 151px;
    height: 20px;
    background: gray;
    overflow: visible;
    text-align: center;
    font-weight: bold;
    transform: rotate(40deg);
    position: relative;
    left: 68px;
    top: -11px;
}
.movie-card-ribbon-container-ZOOM::after {
    content: "ZOOM";
}