.bg {
    /* width: 100%; */
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 300% 300%;
    background-image: linear-gradient(-45deg, yellow 0%, yellow 25%, yellow 51%, #ff357f 100%);
    -webkit-animation: AnimateBG 5s ease infinite;
    animation: AnimateBG 5s ease infinite;
}
@-webkit-keyframes AnimateBG {
    0% {
    background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes AnimateBG {
    0% {
    background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.v-item {
    position: relative;
    box-shadow: 0px 8px 12px 0px rgba(0,0,0,.1);
}
.v-img-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.v-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.v-footer {
    display: flex;
    background-color: #ffffff;
}
.v-dev {
    width: 100%;
    padding: 12px;
}
.v-dev span {
    line-height: 1;
}
.v-author {
    display: block;
    font-weight: 800;
    font-size: 20px;
}
.v-like {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.v-like-btn {
    border: unset;
    background-color: unset;
    padding: 12px;
    filter: grayscale(1);
    transition: filter .3s ease-in-out
}
.v-like-btn.active,
.v-like-btn:hover {
    filter: grayscale(0);
}
.v-like-img {
    height: 40px;
}
.v-like-counter {
    position: absolute;
    top:12px;
    right: 12px;
    bottom: auto;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-color: white;
    border-radius: 6px;
    /* padding-right: 6px; */
    line-height: 1;
    margin-left: 4px;
    border: 2px solid #363636;
    font-size: 14px;
}
.v-like-count {
    color: #ff6d00;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    margin-top: -2px;
    margin-right: 6px;
}
.v-award {
    background-color: yellow;
    font-weight: bold;
    padding: 4px 8px 4px 4px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 16px;
}
.v-like-count-text {
    text-align: right;
    margin-right: 6px;
    background: #ffe1ca;
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px 0 0 6px;
}
.v-like-count_small {
    font-size: 20px;
}
.v-play {
    position: absolute;
    top: auto;
    right: 12px;
    bottom: 12px;
    left: auto;
    background-color: #ffb657;
    color: black;
    padding: 4px 20px;
    border-radius: 20px;
    transition: color .2s ease-in-out, background-color .2s ease-in-out;
}
.v-play:hover {
    color: white;
    background-color: #ff6d00;
}
.stem-projects {
    position: relative;
}
/* .stem-projects:before {
    content: 'Voting will start shortly!';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(217,229,255,.8);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 600;
    color: #ff6d00;
    backdrop-filter: blur(10px);
} */
.countdown {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.countdown__title {
    margin-bottom: 0;
    background: #ff6d00;
    display: inline-flex;
    color: #fff;
    padding: 2px 8px;
    margin-bottom: -12px;
    z-index: 1;
}
.countdown__timer {
    color: #ff6d00;
    font-size: 32px;
    font-weight: 700;
    background: #ffe6c6;
    padding: 12px 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.v-badge {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    z-index: 1;
    top: 8px;
    right: auto;
    bottom: auto;
    left: 8px;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, .2);
    border: 2px solid;
}
.v-badge__1 {
    background: #fdc337;
}
.v-badge__2 {
    background: #a8a8a8;
    color: white;
}
.v-badge__3 {
    background: #602101;
    color: white;
}
.v-badge__4 {
    background: yellow;
}
@media (max-width: 576px) {
    .v-row {
        margin: 0 -6px;
    }
    .v-like-img {
        height: 36px;
    }
    .v-like-btn {
        padding: 8px;
        margin: auto;
    }
    .v-dev {
        padding: 8px;
    }
    .v-dev span:nth-child(1) {
        font-size: 14px;
        display: block;
        margin-bottom: 2px;
    }
    .v-author {
        font-size: 18px;
    }
}