.brxe-lns-video-item {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brxe-lns-video-item:before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
}

.brxe-lns-video-item .lns_video_thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.brxe-lns-video-item .video_title {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    padding-bottom: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 500;
    background: linear-gradient(transparent 0%, #0000001f 50% 50%, #000000de 100%);
}

.brxe-lns-video-item .lns_play_icon {
    position: absolute;
    z-index: 3;
    width: 48px;
    height: 48px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    border: solid 1px white;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.brxe-lns-video-item:hover .lns_play_icon {
    color: var(--lns_primary);
    border-color: var(--lns_secondary);
    background: var(--lns_secondary);
}

.brxe-lns-video-item:hover .lns_video_thumbnail {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -ms-transition: .8s;
    -o-transition: .8s;
}