﻿.hidden-input {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.live-page .main {
    padding: 40px 0px;
    margin: 0 auto;
}

    .live-page .main .video-wrap {
        overflow: hidden;
    }

    .live-page .main .video-holder {
        background-color: transparent;
        position: relative;
        overflow: hidden;
        height: 0px;
        padding: 0px 0px 56.25%;
        border-radius: 8px;
    }

    .live-page .main .video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .live-page .main .control-list {
        display: flex;
        justify-content: center;
        margin-bottom: 32px;
    }

        .live-page .main .control-list .channel-btn {
            max-width: 160px;
            flex: 1;
            height: 48px;
        }

            .live-page .main .control-list .channel-btn:nth-last-child(n+2) {
                margin-right: 16px;
            }

            .live-page .main .control-list .channel-btn .btn {
                height: 48px;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                padding: 1em;
                cursor: pointer;
                width: 100%;
                border-radius: 4px;
                border: 1px solid #656C6F;
                background-color: #656C6F;
                position: relative;
                z-index: 1;
            }

                .live-page .main .control-list .channel-btn .btn > * {
                    width: 100%;
                    height: 28px;
                    object-fit: contain;
                }

            .live-page .main .control-list .channel-btn input[type="radio"] {
                visibility: hidden;
                display: none;
                cursor: pointer;
            }

        .live-page .main .control-list input[type="radio"]:checked ~ label {
            border: 1px solid var(--color-primary);
            background-color: var(--color-primary);
        }

    .live-page .main .info-wrap {
        border-radius: 16px;
        margin: 24px auto 0;
        background-color: #EEF4F6;
        width: 85.23%;
        padding: 24px;
        display: flex;
        justify-content: space-between;
    }

        .live-page .main .info-wrap .left {
            width: 50.18%;
            margin-right: 40px;
        }

        .live-page .main .info-wrap .is-live-wrap {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

            .live-page .main .info-wrap .is-live-wrap .dot {
                display: inline-block;
                position: relative;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background-color: #FFE5E5;
                margin-right: 4px;
            }

                .live-page .main .info-wrap .is-live-wrap .dot::after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%,-50%);
                    width: 12px;
                    height: 12px;
                    border-radius: 50%;
                    background-color: #992E2E;
                }

            .live-page .main .info-wrap .is-live-wrap .text {
                font-family: Roboto Condensed;
                font-weight: 700;
                font-size: 18px;
                line-height: 25px;
                color: var(--color-primary);
            }

        .live-page .main .info-wrap .title {
            font-family: Source Serif;
            font-weight: 700;
            font-size: 32px;
            line-height: 40px;
            margin-bottom: 8px;
        }

        .live-page .main .info-wrap .info .description {
            font-family: Roboto Condensed;
            font-weight: 500;
            font-size: 18px;
            line-height: 25px;
            color: #383F42;
        }

    .live-page .main .story-list {
        display: flex;
        flex-direction: column;
        width: 360px;
        height: 412px;
        background-color: #BFC6C9;
        padding: 16px 16px 0;
        border-radius: 8px;
    }

        .live-page .main .story-list .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #92999C;
        }

            .live-page .main .story-list .list-header .title {
                font-family: Roboto Condensed;
                font-weight: 700;
                font-size: 18px;
                line-height: 25px;
                color: var(--color-primary);
                margin-bottom: 0px;
            }

            .live-page .main .story-list .list-header .control {
                display: flex;
                align-items: center;
            }

                .live-page .main .story-list .list-header .control > *:nth-last-child(n+2) {
                    margin-right: 16px;
                }

                .live-page .main .story-list .list-header .control .control-btn {
                    width: 28px;
                    height: 28px;
                    background-color: #fff;
                    border-radius: 50%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border: none;
                    outline: none;
                    cursor: pointer;
                }

                .live-page .main .story-list .list-header .control .date {
                    font-family: Source Serif;
                    font-weight: 700;
                    font-size: 18px;
                    line-height: 23px;
                }

        .live-page .main .story-list .list {
            overflow-y: auto;
        }

            .live-page .main .story-list .list::-webkit-scrollbar {
                display: none;
            }

            .live-page .main .story-list .list .item {
                display: flex;
                font-family: Roboto Condensed;
                color: #383F42;
                padding: 14px 8px;
            }

                .live-page .main .story-list .list .item.is-live {
                    color: #992E2E;
                    padding: 4px 8px;
                    border: 2px solid #FBB71E;
                    background-color: #FFE5E5;
                    border-radius: 4px;
                }

                    .live-page .main .story-list .list .item.is-live ~ * {
                        color: #656C6F;
                    }

                .live-page .main .story-list .list .item.item-notallowed {
                    cursor: not-allowed;
                }

                .live-page .main .story-list .list .item .time {
                    font-size: 16px;
                    line-height: 24px;
                    font-weight: 500;
                    margin-right: 16px;
                }

                .live-page .main .story-list .list .item .title {
                    font-size: 16px;
                    line-height: 20px;
                    font-weight: 700;
                    margin-bottom: 4px;
                }

                .live-page .main .story-list .list .item .description {
                    font-size: 14px;
                    line-height: 20px;
                }

                .live-page .main .story-list .list .item .btn {
                    display: none;
                    align-self: center;
                    margin-left: auto;
                    height: 32px;
                }

@media screen and (max-width: 996px) {
    .live-page .main .info-wrap {
        width: 100%;
        margin: 0px;
        border-radius: 0px;
        flex-direction: column;
    }

    .live-page .main .video-holder {
        border-radius: 0px;
    }

    .live-page .main .info-wrap .info,
    .live-page .main .control-list {
        margin-bottom: 16px;
    }

        .live-page .main .control-list .channel-btn {
            max-width: 80px;
            height: 40px;
        }

            .live-page .main .control-list .channel-btn .btn {
                padding: 7px 8px;
                height: 40px;
                border-radius: 8px;
            }

    .live-page .main .info-wrap .left {
        width: 100%;
        margin-right: 0px;
    }

    .live-page .main .story-list {
        width: 100%;
    }

        .live-page .main .story-list .list .item .btn {
            display: block;
        }

        .live-page .main .story-list .list .item.is-live {
            border: none;
            background-color: transparent;
        }
}

@media screen and (max-width: 768px) {
    .live-page .main .story-list .list-header .control .date {
        font-size: 20px;
        line-height: 25px;
    }

    .live-page .main .info-wrap .title {
        font-size: 20px;
        line-height: 25px;
    }

    .live-page .main .info-wrap {
        padding: 16px 16px 32px 16px;
    }

    .live-page .main {
        padding: 0px;
    }

        .live-page .main .video-wrap {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            border-radius: 0px;
        }

        .live-page .main .info-wrap .is-live-wrap .text {
            font-size: 18px;
            line-height: 23px;
        }

        .live-page .main .info-wrap .info .description {
            font-size: 16px;
            line-height: 24px;
        }

        .live-page .main .info-wrap .title {
            font-size: 20px;
            line-height: 25px;
        }

        .live-page .main .story-list .list .item .time,
        .live-page .main .story-list .list .item .title {
            font-size: 18px;
            line-height: 25px;
        }

        .live-page .main .info-wrap .story-list > .title {
            font-size: 14px;
            line-height: 20px;
            font-weight: 400;
            color: #383F42;
        }

        .live-page .main .story-list .list::-webkit-scrollbar {
            display: none;
        }

        .live-page .main .story-list .list-header .title {
            display: none;
        }

        .live-page .main .story-list .list-header {
            justify-content: center;
            border-bottom: none;
            padding-bottom: 0px;
        }

        .live-page .main .story-list {
            padding: 16px 16px 0px 16px;
        }

            .live-page .main .story-list .list .item .description {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
            }
}
