/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <contact@prestashop.com>
*  @copyright  2007-2024 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
.badvideoblock-block{
    padding: 80px 0;
    background-color: #1C1B18;
}
.badvideoblock-inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.badvideoblock-main-title {
    font-size: 32px;
    line-height: 42px;
    color: var(--theme-text-color);
    font-weight: 600;
    width: 80%;
    padding-bottom: 20px;
}
.badvideoblock-main-title .highlight-text {
    color: var(--theme-custom-color);
    font-weight: 800;
}
.badvideoblock-content-inner{
    margin-bottom: 30px;
}
.badvideoblock-content-list {
    position: relative;
    padding-left: 18px;
}
.badvideoblock-content-list::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: var(--theme-text-color);
    left: 0;
    top: 7px;
}
.badvideoblock-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--theme-text-color);
    padding-bottom: 8px;
    display: block;
}
.badvideoblock-desc {
    font-size: 15px;
    line-height: 26px;
    color: #CCCCCC;
    width: 90%;
}
.badvideoblock-content-btn .video-btn {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    padding: 10px 20px;
    background-color: var(--theme-custom-color);
    border: none;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    border-radius: 5px;
}
.badvideoblock-content-btn .video-btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #333;
    border: none;
    transition: all .35s;
    z-index: -1;
}
.badvideoblock-content-btn .video-btn:hover{
    color: #fff;
}
.badvideoblock-content-btn .video-btn:hover::after {
    width: 100%;
}
.badvideoblock-video-wrapper .badvideoblock-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.play-icon i {
     position: absolute;
     content: '';
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     margin: auto;
    width: 50px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    border-radius: 5px;
    font-size: 25px;
    text-align: center;
    background-color: #ff0000;
    display: block;
}
.badvideoblock-content-wrapper, .badvideoblock-video-wrapper{
    padding: 0;
}
@media(max-width: 1400px){
    .badvideoblock-main-title {
        font-size: 28px;
        line-height: 38px;
        width: 90%;
        padding-bottom: 15px;
    }
    .badvideoblock-title {
        font-size: 16px;
        line-height: 22px;
        padding-bottom: 6px;
    }
    .badvideoblock-desc {
        font-size: 14px;
        line-height: 24px;
    }
}
@media(max-width: 1200px){
    .badvideoblock-block{
        padding: 60px 0;
    }
    .badvideoblock-content-btn .video-btn {
        font-size: 14px;
        padding: 8px 18px;
    }
    .badvideoblock-content-inner {
        margin-bottom: 20px;
    }
    .badvideoblock-main-title {
        font-size: 25px;
        line-height: 36px;
    }
}
@media(max-width: 1024px){
    .badvideoblock-desc {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        display: -webkit-box;
    }
}
@media(max-width: 991px){
    .badvideoblock-block{
        padding: 30px 0;
    }
    .badvideoblock-content-wrapper{
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .badvideoblock-main-title {
        font-size: 22px;
        line-height: 32px;
        width: 100%;
        padding-bottom: 10px;
    }
    .badvideoblock-title {
        font-size: 15px;
        line-height: 20px;
        padding-bottom: 4px;
    }
    .badvideoblock-content-btn .video-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}
@media(max-width: 575px){
    .badvideoblock-main-title {
        font-size: 18px;
        line-height: 28px;
    }
    .badvideoblock-title {
        font-size: 14px;
    }
    .badvideoblock-desc {
        font-size: 12px;
        line-height: 22px;
    }
    .badvideoblock-content-list {
        padding-left: 12px;
    }
    .badvideoblock-content-list::before {
        width: 6px;
        height: 6px;
        top: 5px;
    }
}