$tabHeight: 44px;

.play {
    .video {
        width: 100%;
        height: 215px;
        background-color: $black;
        position: relative;

        .video-js {
            width: 100%;
            height: 100%;

            .vjs-big-play-button {
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }

        .purchase-box {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            flex-flow: column;
            justify-content: center;
            align-items: center;

            .hint {
                font-size: $font_14;
                color: $white;
                margin-bottom: 20px;
            }

            @mixin button{
                display: block;
                -webkit-appearance: none;
                outline: none;
                border: none;
                background-color: transparent;
                border-radius: 5px;
                line-height: 30px;
                font-size: 13px;
                padding: 0 9px;
            }
            .btns {
                width: 100%;
                padding: 0 60px;
                display: flex;
                justify-content: space-around;
            }

            .purchase-class{
                @include button;
                background-color: $white;
                color: $color_FF4000;
            }
            .purchase-episode{
                @include button;
                background-color: $bg_FF4000;
                color: $white;
            }
        }

        video {
            width: 100%;
            height: 100%;
        }
    }

    .tab {
        height: $tabHeight;
        max-height: $tabHeight;
        line-height: $tabHeight;
        text-align: center;
        background: #F7F9FC;
        flex: 1 0 auto;
        display: flex;
        justify-content: center;

        & > div {
            flex: 1 0 auto;
        }

        a {
            display: inline-block;
            height: $tabHeight;
            font-size: $font_16;
        }
    }

    .active {
        color: $active;

        .iconiconfront-74 {
            color: $color_555;
        }
    }

}