/**
* 2007-2023 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-2023 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
.badofferbanner-block {
    position: relative;
    padding: 0;
}
.offerbanner-left{
    padding: 0;
}
.bedtestibanner-content{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.bestsellerbanner{
    position: relative;
}
.bestsellerbanner::after {
    content: '';
    position: absolute;
    top: -34%;
    left: -12%;
    height: 596px;
    width: 589px;
    background-image: url(../img/offerbanner-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bestsellerbanner::before {
    content: '';
    position: absolute;
    height: 163px;
    width: 160px;
    bottom: 0;
    top: 0;
    margin: auto;
    right: 6%;
    background-size: contain;
    background-image: url(../img/pro4.png);
}
.badofferbanner-content-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}
.badofferbanner-block .badoffer-title {
    font-size: 40px;
    line-height: 50px;
    color: #ffffff;
    font-family: var(--badtheme-font-name-2);
}
.badofferbanner-block .badoffer-sub-title {
    font-size: 13px;
    letter-spacing: 4px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
}
.badofferbanner-block .badoffer-desc {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 28px;
    color: #79bf35;
    font-weight: 600;
    position: relative;
}
.badofferbanner-block .badoffer-desc::after {
    content: '\e5c8';
    font-family: 'Material Icons';
    font-size: 13px;
    color: #79bf35;
    vertical-align: middle;
    padding-left: 10px;
}
.badofferbanner-img {
    position: relative;
    text-align: right;
    margin-right: 30px;
}
.badofferbanner-img::before {
    border: 100px solid rgba(255, 255, 255, 0);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    width: 100%;
}
.badofferbanner-img::after {
    background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 600ms ease-in-out 0s;
    width: 100%;
}
.badofferbanner-img:hover::before {
    border: 0 solid rgba(255, 255, 255, 0.5);
}
.badofferbanner-img:hover::after {
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    transform: scale(.8);
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -o-transform: scale(.8);
    -ms-transform: scale(.8);
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
}
.badofferbanner-content-wrapper img {
    position: relative;
    transition: all 0.5s ease-in-out;
}
@media(max-width: 1800px){
    .bestsellerbanner::after {
        top: -26%;
        height: 476px;
        width: 479px;
    }
}
@media(max-width: 1700px){
    .bestsellerbanner::after {
        left: -15%;
    }
}
@media(max-width: 1600px){
    .bestsellerbanner::after {
        top: -22%;
        height: 407px;
        width: 419px;
    }
}
@media(max-width: 1450px){
    .bestsellerbanner::after {
        top: -14%;
        left: -13%;
        height: 267px;
        width: 299px;
    }
    .bestsellerbanner::before {
        display: none;
    }
}
@media(max-width: 1300px){
    .bestsellerbanner::after {
        display: none;
    }
}
@media(max-width: 991px){
    .badofferbanner-img {
        text-align: center;
        margin-right: 0;
    }
}