/**
* 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 {
    margin-bottom: 80px;
    position: relative;
}
.container-fluid.badvideoblock-block::before {
    content: '';
    position: absolute;
    background: #fff2ed;
    height: 310px;
    top: 0;
    width: 100%;
}
.badvideoblock-content-wrapper {
    position: relative;
    z-index: 1;
}
.badvideoblock-block::after {
    content: '';
    position: absolute;
    bottom: auto;
    top: -105px;
    left: auto;
    right: -70px;
    width: 358px;
    height: 415px;
    background-image: url('../img/video-bg.png');
    background-repeat: no-repeat;
}
.badvideoblock-content-wrapper img {
    position: relative;
    transition: all 0.5s ease-in-out;
}
.badvideoblock-block .play-icon {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    height: 70px;
    width: 70px;
    border-radius: 65px;
}
.badvideoblock-block .play-icon i {
    font-size: 55px;
    line-height: 48px;
    margin: 10px 0;
    float: none;
    display: inline-block;
    vertical-align: middle;
    height: auto;
    border: none;
    color:#fff;
    border-radius: 65px;
    width: 55px;
    z-index: 1;
    cursor: pointer;
}
.badvideoblock-content-wrapper .play-icon:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 1;
    border: 4px double #fff;
    border-radius: 65px;
    top: 0;
    left: 0;
    transform: scale(1.3);
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transition: all 0.5s ease-in-out;
}
.badvideoblock-content-wrapper:hover .play-icon:after {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
}
@media(max-width: 1199px){
    .container-fluid.badvideoblock-block::before {
        height: 210px;
    }
    .badvideoblock-block::after {
        width: 298px;
        background-size: cover;
        height: 315px;
    }
}
@media(max-width: 991px){
    .badvideoblock-block {
        margin-bottom: 30px;
    }
    .badvideoblock-content-wrapper .play-icon:after {
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
    }
    .badvideoblock-content-wrapper:hover .play-icon:after {
        transform: scale(1.2);
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
    }
    .badvideoblock-block .play-icon i {
        font-size: 48px;
    }
}
@media(max-width: 767px){
    .container-fluid.badvideoblock-block::before {
        height: 120px;
    }
    .badvideoblock-block::after {
        width: 198px;
        height: 185px;
    }
}
@media(max-width: 575px){
    .container-fluid.badvideoblock-block::before {
        height: 60px;
    }
    .badvideoblock-block::after {
        width: 178px;
        height: 155px;
    }
}