/* Minification failed. Returning unminified contents.
(17,34): run-time error CSS1046: Expect comma, found '30'
(17,40): run-time error CSS1046: Expect comma, found '/'
(18,50): run-time error CSS1046: Expect comma, found '78'
(18,57): run-time error CSS1046: Expect comma, found '/'
(18,71): run-time error CSS1046: Expect comma, found '30'
(18,77): run-time error CSS1046: Expect comma, found '/'
(109,47): run-time error CSS1046: Expect comma, found '255'
(109,55): run-time error CSS1046: Expect comma, found '/'
 */
body {
    background-color: #f3f3f6;
}

.video-list-header {
    width: 100%;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('/Images/speciality.jpg');
    overflow:hidden;
}
    .video-list-header > .layer {
        height: 100%;
        width: 100%;
        padding: 80px 100px;
        background-color: rgb(16 30 59 / 0.7);
        background-image: radial-gradient(rgb(42 78 114 / 0.7),rgb(16 30 59 / 0.7));
    }
        .video-list-header > .layer > .header {
            font-size: 50px;
            color: #f00;
            line-height: 50px;
            text-transform: uppercase;
            font-weight: bold;
            font-family: 'Roboto Condensed', sans-serif;
        }

        .video-list-header > .layer > .note {
            font-size: 20px;
            color: #fff;
            font-family: 'Roboto', sans-serif;
        }

.video-list {
    padding: 50px;
    display: flex;
}

    .video-list > .filter {
        width: 25%;
        padding: 20px 15px;
        flex: 1;
        background-color: #ffffff;
        margin-top: 10px;
        margin-bottom: 10px;
    }

        .video-list > .filter > .filter-context {
            padding: 10px;
            position: -webkit-sticky;
            position: sticky;
            top: 70px;
        }

            .video-list > .filter > .filter-context > .title {
                font-size: 16px;
                font-weight: bold;
                color:#fff;
            }

            .video-list > .filter > .filter-context > select {
                width: 100%;
                padding: 10px 15px;
                outline: none;
                border: 1px solid #eee;
                margin-bottom: 10px;
                background-color: #f5f5f5;
            }
            .video-list > .filter > .filter-context > .button {
                background-color: #fff;
                border: 1px solid #f91a15;
                color: #f91a15;
                font-size: 20px;
                padding: 5px 15px;
                font-family: 'Roboto Condensed', sans-serif;
                font-weight: 700;
                outline: none;
                width: 100%;
            }
                .video-list > .filter > .filter-context > .button:hover {
                    background-color: #f91a15;
                    color: #fff;
                }

    .video-list > .list-context {
        width: 75%;
        padding: 0 10px;
        flex: 3;
    }

        .video-list > .list-context > .item {
            width: 33.33%;
            position: relative;
            float: left;
            padding: 10px;
        }

            .video-list > .list-context > .item > .item-context {
                width: 100%;
                cursor: pointer;
                background-color: #fff;
                padding: 10px;
                position: relative;
            }
                .video-list > .list-context > .item > .item-context > .layer {
                    height: 0px;
                    width: 100%;
                    background-color: rgb(255 255 255 / 0.50);
                    position: absolute;
                    transition: all 500ms;
                    top: 0;
                    left: 0;
                }

                .video-list > .list-context > .item > .item-context:hover .layer {
                    height: 100%;
                    transition: all 500ms;
                }

                .video-list > .list-context > .item > .item-context > .image {
                    background-position: center;
                    background-size: cover;
                    background-repeat: no-repeat;
                    height: 150px;
                    width: 100%;
                    padding-top: 55px;
                }
                    .video-list > .list-context > .item > .item-context > .image > .btn-play {
                        height: 40px;
                        width: 40px;
                        border-radius: 50%;
                        padding: 6px 15px;
                        color: #fff;
                        background-color: rgba(0, 0, 0, 0.50);
                        margin-left: auto;
                        margin-right: auto;
                        font-size: 20px;
                        position: relative;
                        z-index: 1;
                    }
                    .video-list > .list-context > .item > .item-context:hover .btn-play {
                        background-color: rgba(255, 0, 0, 1);
                    }
                    .video-list > .list-context > .item > .item-context > .image > .btn-click {
                        padding: 6px 10px;
                        display:none;
                    }
               .video-list > .list-context > .item > .item-context:hover .btn-click {
                    display: block;
                    background-color: rgba(161, 161, 161, 0.70);
                }
                .video-list > .list-context > .item > .item-context > .item-title {
                    font-size: 15px;
                    font-weight:bold;
                    height: 45px;
                    overflow: hidden;
                    clear: both;
                    padding-top: 5px;
                    overflow-wrap: break-word;
                    font-family: 'Changa', sans-serif;
                }
                .video-list > .list-context > .item > .item-context:hover .item-title {
                    color: #1695d5;
                }

        .video-list > .list-context > .show-more {
            text-align: center;
            font-size: 13px;
            font-weight: bold;
            padding: 10px;
            clear: both;
        }

            .video-list > .list-context > .show-more > div {
                cursor: pointer;
                display: inline-block;
                padding: 10px;
                border: 1px solid #0078eb;
                color: #0078eb;
            }
                .video-list > .list-context > .show-more > div:hover {
                    color: #fff;
                    background-color: #0078eb;
                }

@media (max-width:1200px) {
    .video-list {
        padding:30px 0px;
    }
}

@media (max-width:991px) {
    .video-list-header > .layer {
        padding: 50px 80px;
    }
        .video-list-header > .layer > .header {
            font-size: 40px;
            line-height: 40px;
        }

        .video-list-header > .layer > .note {
            font-size: 18px;
        }


    .video-list {
        padding: 0px;
        display: unset;
    }

        .video-list > .filter {
            width: 100%;
            flex: unset;
        }

        .video-list > .list-context {
            width: 100%;
            flex: unset;
        }
}

@media (max-width:767px) {
    .video-list-header > .layer {
        padding: 40px 50px;
    }

        .video-list-header > .layer > .header {
            font-size: 30px;
            line-height: 30px;
        }

        .video-list-header > .layer > .note {
            font-size: 16px;
        }

    .video-list > .list-context > .item {
        padding: 5px;
    }

        .video-list > .list-context > .item > .item-context {
            padding: 5px;
        }

    .video-list > .list-context > .item-context > .details {
        height: 80px;
    }

        .video-list > .list-context > .item-context > .details > .product-name {
            font-size: 13px;
        }

    .video-list > .list-context > .item-context > .price {
        font-size: 18px;
        padding: 5px 0px;
    }
}

@media (max-width:600px) {
    .video-list > .list-context {
        padding: 0 5px;
    }
    .video-list > .list-context > .item {
        padding: 2px;
        width: 50%;
    }
}

@media (max-width:500px) {

}

@media (max-width:400px) {
}

