.video-short-modal {
    position: fixed;
    top: 110%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000 none;
    color: #4d4d4d;
    z-index: 10000;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s;
}
.video-short-modal.show {
    top: 0;
    visibility: visible;
    opacity: 1;
}
.video-short-close {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #555 none;
    z-index: 9;
}
.video-short-bg {
    width: 100vw;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    filter: blur(50px);
    transition: all 1s;
    z-index: 0;
}
.video-short-player-mobile {
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: none;
    z-index: 1;
    top: 0;
    left: 0;
}
.video-short-player-mobile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-short-content {
    padding: 48px 0;
}
.video-shorts-list .card-short-video {
    width: 220px;
}
.swiper-shorts {
    width: 100%;
    height: 100%;
    padding: 0;
    /* display: none; */
}
.swiper-shorts.show {
    display: block;
}
.swiper-shorts .swiper-wrapper {
    flex-wrap: wrap !important;
}
.swiper-shorts .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-short-player {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    height: calc(100vh - 100px) !important;
    width: calc((100vh - 100px) * 0.5625) !important;
    margin: 0 auto;
    position: relative;
}

.video-short-slide {
    /* background: #f00; */
    margin: 0 auto;
}
.video-short-control .play-control {
    display: block;
    cursor: pointer;
}
.video-short-control .pause-control {
    display: none;
    cursor: pointer;
}
.video-short-player.video-short-playing .pause-control {
    display: block;
}
.video-short-player.video-short-playing .play-control {
    display: none;
}

.video-short-control .unmuted-control {
    display: block;
    cursor: pointer;
}
.video-short-control .muted-control {
    display: none;
    cursor: pointer;
}
.video-short-player.video-short-muted .unmuted-control {
    display: none;
}
.video-short-player.video-short-muted .muted-control {
    display: block;
}

.video-short-container {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition-property: transform;
    background: rgba(0, 0, 0, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-short-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* transition: opacity 0.2s ease-in-out; */
}
.video-short-container video {
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: none;
    object-fit: cover;
}

.swiper-slide-active .video-short-container video {
    display: block;
}
@media (min-width: 768px) {
    .swiper-slide-active .video-short-container img {
        display: none;
    }
}
.video-short-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    display: none;
}
.video-short-progress progress {
    background-color: rgba(0, 0, 0, 0.4);
}
.video-short-progress progress::-webkit-progress-bar {
    background-color: rgba(0, 0, 0, 0.4);
}
.video-short-progress progress::-webkit-progress-value {
    background-color: rgb(255, 0, 43);
}
.video-short-progress progress::-moz-progress-bar {
    background-color: rgba(0, 0, 0, 0.4);
}
.video-short-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
    z-index: 2;
}
.video-short-loading .spinner {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    width: 100%;
    height: 100%;
}
.video-short-loading .spinner .path {
    stroke: rgb(248, 248, 248, 0.7);
    stroke-linecap: round;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
.video-short-player.video-short-started .video-short-loading {
    display: none;
}
.video-short-control {
    visibility: visible;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    padding: 20px 20px 0;
    width: 100%;
    text-align: right;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    justify-content: flex-end;
    border-radius: 8px;
}
.video-short-control span ~ span {
    margin-left: 10px;
}

.video-control-btn {
    width: 60px;
    height: 60px;
    line-height: 55px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    -webkit-animation: vjs-play-animation 0.5s linear 1 normal forwards;
    animation: vjs-play-animation 0.5s linear 1 normal forwards;
    background-color: #1c1c1c;
    background-color: rgba(28, 28, 28, 0.6);
    border: 0 solid transparent;
    border-radius: 50%;
    left: 50%;
    position: absolute;
    top: 50%;
    margin-left: -30px;
    display: none;
    cursor: pointer;
    text-align: center;
}
.video-short-container.show-play-animate .video-control-btn {
    display: block;
}
@-webkit-keyframes vjs-play-animation {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

@keyframes vjs-play-animation {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}
.video-control-btn svg {
    width: 45px;
    height: 45px;
}
.video-short-info__category {
    color: #e21313;
}
.video-short-info {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-align: left;
}
.video-short-button-prev {
    position: absolute;
    top: calc(50% - 38px);
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #555 none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}
.video-short-button-next {
    position: absolute;
    top: calc(50% + 38px);
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #555 none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}
.video-short-social {
    position: absolute;
    right: -65px;
    width: 60px;
    bottom: 0;
    z-index: 2;
}
.video-short-social .share-stats {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
}
.video-short-social .share-stats .stats-item {
    height: auto;
    border-radius: 0;
    display: block;
    padding: 0;
    margin: 0;
}
.video-short-social .share-stats .stats-item ~ .stats-item {
    margin-top: 15px;
}
.video-short-social .share-stats .stats-item,
.video-short-social .share-stats .stats-item {
    background: none;
    color: #fff;
}
.video-short-social .share-stats .stats-item.views span,
.video-short-social .share-stats .stats-item.video-short-reviews span {
    display: block;
}
.video-short-social .share-stats .stats-item span.text {
    display: none;
}
.video-short-social .share-stats .stats-item i,
.video-short-social .share-stats .stats-item i {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.video-short-social .share-stats .stats-item.video-short-reviews,
.video-short-social .share-stats .stats-item.fb-share,
.video-short-social .share-stats .stats-item.zalo-share {
    cursor: pointer;
}

.video-short-social .share-stats .stats-item.fb-share i,
.video-short-social .share-stats .stats-item.zalo-share img {
    background-color: #0866ff;
}
.video-short-social .share-stats .stats-item.zalo-share img {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.video-short-social .share-stats .stats-item.mobile-share {
    display: none;
}
.video-short-comment {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}
.video-short-comment.open {
    visibility: visible;
    opacity: 1;
}
.video-short-comment.open .DQsoTeaPeRDsLKG9sdq8 {
    transform: translateX(0);
}
.video-short-comment.eDDSrr0cZ6mShlZnsvA9 {
    left: auto;
    right: 0;
    width: 450px;
}
.nNA___yrAqETnYHr_lzA {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 20, 32, 0.6) none;
    z-index: -1;
}
.DQsoTeaPeRDsLKG9sdq8 {
    width: 450px;
    background: #fff none;
    padding: 20px;
    transform: translateX(100%);
    transition: all 0.2s;
    height: 100%;
    overflow-y: auto;
    position: relative;
}
.DQsoTeaPeRDsLKG9sdq8::after {
    content: '';
    position: relative;
    display: block;
    height: 20px;
}
.DQsoTeaPeRDsLKG9sdq8.JfGMI6JTgsu0mDpkDzsY {
    background: #1e293b none;
}
.DQsoTeaPeRDsLKG9sdq8.JfGMI6JTgsu0mDpkDzsY .xYIobXk1zftsJKTqbF2b {
    color: #b3b3b3;
}
.DQsoTeaPeRDsLKG9sdq8 .xYIobXk1zftsJKTqbF2b {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 30px;
    height: 30px;
    background: transparent none;
    padding: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
}
.oWO0n7JxgnGv9lTDvjrw {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #a0a4a8;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.oWO0n7JxgnGv9lTDvjrw li a {
    color: #a0a4a8;
}
.oWO0n7JxgnGv9lTDvjrw li:not(:first-child) {
    display: flex;
    align-items: center;
    position: relative;
}
.oWO0n7JxgnGv9lTDvjrw li:not(:first-child)::before {
    content: '';
    position: relative;
    display: block;
    width: 0;
    height: 0;
    padding: 3px;
    border: 1px solid #a0a4a8;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    margin: 0 6px 0 3px;
}
.hNRnwNO4YwWIa8JrcCEG {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    margin-top: 10px;
}
.kgoSrJ0azzW5A_ea7g9w {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #a0a4a8;
    margin-top: 10px;
}

.comment--button__select {
    display: flex;
    position: relative;
    gap: 33px;
    margin-top: 48px;
    margin-bottom: 49px;
    border-bottom: 1px solid #e6e6e6;
    min-width: calc(100% + 50px);
    margin-left: -25px;
    padding-left: 25px;
}

.comment--button__select .active {
    border-bottom: 3px solid #1a7900;
    color: #222;
    font-weight: 600;
}

.comment--button__new {
    border: none;
    background: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: gray;
    padding-left: 0;
}

.comment--button__old {
    border: none;
    background: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: gray;
    padding-left: 0;
}

.comment-wrap {
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 25px 25px 20px;
}

.comment-wrap.mt-30 {
    margin-top: 30px;
}

.comment-wrap.dark {
    border-color: #334155;
}

.comment-title {
    font-size: 20px;
    line-height: 26px;
    color: #333;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    display: flex;
    align-items: center;
}

.comment-title.dark {
    color: #e6e6e6;
}

.comment-title svg {
    position: relative;
    left: -5px;
    margin: 0 10px 0 0;
}

.comment-action {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-weight: 500;
    color: gray;
}

.comment-action.dark {
    color: #b3b3b3;
}

.comment-action.dark button:not(:nth-child(1))::before {
    border-left-color: #334155;
}

.comment-action > *:not(:first-child) {
    margin: 0 0 0 7px;
}

.comment-action button {
    padding: 0;
    background: transparent none;
    border: 0;
    color: #2361ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

.comment-action button:not(:nth-child(1))::before {
    content: '';
    position: relative;
    width: 0;
    height: 18px;
    border-left: 1px solid #ccc;
    margin: 0 7px 0 0;
}

.comment-box {
    margin: 10px 0 0;
}

.comment-box .textarea {
    background: #f1f5f9 none;
    border-radius: 5px;
    padding: 12px;
    color: #333;
    border: 0;
    width: 100%;
    display: block;
    height: 107px;
    outline: none;
    resize: none;
}

.comment-box .textarea.textarea-reply {
    height: 70px;
}

.comment-box .action {
    margin: 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 34px;
}

.comment-box .note {
    flex: 0 0 auto;
    max-width: 100%;
    width: calc(100% - 140px);
    color: gray;
}

.comment-box .submit {
    border: 0;
    padding: 1px 0 0;
    border-radius: 5px;
    background: #1a7900 none;
    color: #f8fafc;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    width: 120px;
    height: 34px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    cursor: pointer;
}

.comment-box.dark .textarea {
    background-color: #1e293b;
    color: #b3b3b3;
}

.comment-container {
    margin: 20px 0 0;
}

.comment-nav {
    border-bottom: 1px solid #e6e6e6;
}

.comment-nav::after {
    content: '';
    display: block;
    clear: both;
}

.comment-nav > * {
    float: left;
}

.comment-nav > *:not(:first-child) {
    margin: 0 0 0 20px;
}

.comment-nav button {
    border: 0;
    padding: 7px 0;
    background: transparent none;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: gray;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    position: relative;
    cursor: pointer;
}

.comment-nav button.active {
    color: #333;
}

.comment-nav button.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 0;
    border-bottom: 3px solid #1a7900;
}

.comment-nav.dark {
    border-bottom-color: #334155;
}

.comment-nav.dark button {
    color: #b3b3b3;
}

.comment-nav.dark button.active {
    color: #e6e6e6;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment-list > li {
    margin: 20px 0 0;
}

.comment-list > li:not(:first-of-type) {
    border-top: 1px solid #e6e6e6;
    padding: 20px 0 0;
}

.comment-list.child {
    margin-left: 52px;
}

.comment-list.dark > li:not(:first-of-type) {
    border-top-color: #334155;
}

.comment-list.dark .comment-author {
    color: #e6e6e6;
}

.comment-list.dark .comment-empty::before,
.comment-list.dark .comment-reply::before {
    background-color: #b3b3b3;
}

.comment-empty {
    position: relative;
    text-align: center;
}

.comment-empty svg {
    stroke: #999;
}

.comment-empty span {
    margin: 10px 0 0;
    display: block;
}

.comment-item {
    display: flex;
    flex-wrap: wrap;
}

.comment-avatar {
    flex: 0 0 auto;
    max-width: 100%;
    width: 40px;
    height: 40px;
    margin: 0 12px 0 0;
}

.comment-avatar .avatar {
    background: #1a7900;
    border-radius: 50%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.comment-avatar .avatar.img-check {
    background: none;
}

.comment-avatar img {
    width: 100%;
    border-radius: 50%;
}

.comment-content {
    flex: 0 0 auto;
    max-width: 100%;
    width: calc(100% - 52px);
}

.comment-top {
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 16px;
    color: #999;
}

.comment-author {
    font-weight: 600;
    color: #333;
}

.comment-author.dark {
    color: #e6e6e6;
}

.comment-time {
    margin: 0 0 0 8px;
}

.comment-text {
    margin: 8px 0 0;
}

.comment-bottom {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-size: 12px;
    color: #999;
}

.comment-bottom li:not(:first-of-type) {
    display: flex;
    align-items: center;
}

.comment-bottom li:not(:first-of-type)::before {
    content: '';
    position: relative;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ccc none;
    margin: 0 7px;
}

.comment-bottom li button {
    padding: 0;
    background: transparent none;
    border: 0;
    cursor: pointer;
    color: #999;
}

.comment-bottom li button.like {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.comment-bottom li button.like.active {
    color: #2361ff;
}

.comment-bottom li button.like.active::before {
    background: #2361ff none;
}

.comment-bottom li button.like b {
    margin: 0 3px 0 0;
}

.comment-bottom li button.like::before {
    content: '';
    position: relative;
    top: -1px;
    width: 20px;
    height: 20px;
    display: block;
    background: #999 none;
    -webkit-mask: url(https://cdnweb.dantri.com.vn/dist/4f6c7d6ebf0b053da3b1.svg) no-repeat center/14px auto;
    mask: url(https://cdnweb.dantri.com.vn/dist/4f6c7d6ebf0b053da3b1.svg) no-repeat center/14px auto;
    margin: 0 5px 0 0;
}

.comment-reply {
    margin: 12px 0 0 52px;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent none;
    border: 0;
    cursor: pointer;
    color: #2361ff;
    text-decoration: underline;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

.comment-reply::before {
    content: '';
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    background: #4d4d4d none;
    -webkit-mask: url(https://cdnweb.dantri.com.vn/dist/b8f3063d4f0f9e31d2c8.svg) no-repeat center/24px 24px;
    mask: url(https://cdnweb.dantri.com.vn/dist/b8f3063d4f0f9e31d2c8.svg) no-repeat center/24px 24px;
    margin: 0 4px 0 0;
}

.comment-more {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent none;
    border: 0;
    cursor: pointer;
    text-decoration: underline;
    color: #2361ff;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 768px) {
    .open-comment {
        width: calc(100% - 450px);
    }
}
@media (max-width: 767.9px) {
    .swiper-shorts {
        padding: 0;
    }

    .video-short-player {
        /* width: calc(100% - 34px) !important; */
        width: 100% !important;
        height: 100% !important;
    }
    .video-short-player-mobile {
        display: block;
    }
    .video-short-container {
        background-color: transparent;
    }
    .swiper-slide-active .video-short-container video,
    .video-short-container video {
        display: none;
    }

    .video-short-started img {
        opacity: 0;
    }
    .is-sliding img {
        opacity: 1;
    }

    .video-short-button-prev,
    .video-short-button-next {
        display: none;
    }
    .video-short-control,
    .video-short-info,
    .video-short-container {
        border-radius: 0;
    }
    .video-short-close {
        top: 15px;
        left: 15px;
    }
    .video-short-social {
        right: 3px;
        left: auto;
        bottom: 110px;
        width: 50px;
    }
    .video-short-social .share-stats .stats-item ~ .stats-item {
        margin-top: 5px;
    }
    .video-short-social .share-stats .stats-item i,
    .video-short-social .share-stats .stats-item i {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .video-short-social .share-stats .stats-item.fb-share,
    .video-short-social .share-stats .stats-item.zalo-share {
        display: none;
    }
    .video-short-social .share-stats .stats-item.mobile-share {
        display: block;
    }
    .video-short-social .share-stats .stats-item.zalo-share img {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
