/**
* 2007-2025 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-2025 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
.badsingleblock-block {
    margin-bottom: 80px;
}
.content-timeline-wapper{
	background-color: var(--theme-custom-color);
    padding: 50px 25px;
    margin-top: -10%;
}
.badsingleblock-content-inner img {
    width: 100%;
    border-radius: 8px;
}
.badsingleblock-content-wrapper {
    background-repeat: no-repeat;
    background-size: cover;
}
.badsingleblock-content-inner {
    text-align: center;
    align-self: center;
    position: relative;
}
.badsingleblock-content-inner{
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    -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;
}
.badsingleblock-content-inner:after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    opacity: 0.5;
    border: 30px solid #fff;
    top: 0;
    left: 0;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: all 0.5s ease-in-out;
}
.badsingleblock-content-inner:hover:after {
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    opacity: 0;
    transition-delay: 0.1s;
}
.badsingleblock-content-sub-title {
    color: #fff;
    text-transform: capitalize;
    font-size: 45px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--badtheme-font-name-2);
}
.badsingleblock-content-desc {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #fff;
    width: 40%;
    margin: 0 auto 30px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.badsingleblock-content-title {
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}
.badsingleblock-content-title::after{
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.badsingleblock-content-inner .badtimer-content-close-label {
    color: rgb(255 255 255);
    font-size: 19px;
    margin-bottom: 20px;
}
.badsingleblock-content-timer .badtimer-content {
    margin: 0 15px;
}
.badsingleblock-content-timer .badtimer-label {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    display: block;
    margin-top: 10px;
}
.badsingleblock-content-timer .badtimer-dot {
    vertical-align: top;
    color: #fff;
    margin: 20px 20px 0;
    font-size: 23px;
    font-family: none;
    display: none;
}
.badsingleblock-content-timer .badtimer-time {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 60px;
    background: #fff;
    height: 60px;
    width: 60px;
}
.badsingleblock-content-inner .badsingleblock-content-timer {
    margin-bottom: 30px;
}
.badsingleblock-content-inner .badsingleblock-content-btn:hover {
    border-color: #333333;
}
.badsingleblock-content-inner .badsingleblock-content-btn a {
    background-color: #fff;
    padding: 12px 24px;
    display: inline-block;
    text-transform: capitalize;
    vertical-align: middle;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: 500;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.badsingleblock-content-inner .badsingleblock-content-btn a:hover{
    background-color: #000;
    color: #fff;
    border-radius: 10px 0 10px 0;
}
@media(max-width: 1200px){
    .badsingleblock-block {
        margin-bottom: 50px;
    }
    .badsingleblock-content-title {
        font-size: 20px;
        line-height: 32px;
        padding-bottom: 10px;
    }
    .badsingleblock-content-sub-title {
        font-size: 36px;
        line-height: 40px;
    }
    .badsingleblock-content-desc{
        margin: 0 auto 20px;
    }
    .badsingleblock-content-inner .badsingleblock-content-timer {
        margin-bottom: 24px;
    }
    .badsingleblock-content-inner .badsingleblock-content-btn a {
        padding: 8px 20px;
        font-size: 16px;
    }
}
@media(max-width: 991px) {
    .content-timeline-wapper{
        padding: 40px 20px;
    }
    .badsingleblock-block {
        margin-bottom: 30px;
    }
    .badsingleblock-content-sub-title{
        font-size: 30px;
    }
    .badsingleblock-content-inner .badsingleblock-content-timer{
        margin-bottom: 15px;
    }
    .badsingleblock-content-desc {
        font-size: 15px;
        width: 60%;
    }
    .badsingleblock-content-timer .badtimer-time {
        font-size: 20px;
        line-height: 50px;
        height: 50px;
        width: 50px;
    }
    .badsingleblock-content-timer .badtimer-label{
        margin-top: 10px;
    }
    .badsingleblock-content-desc {
        margin: 0 auto 15px;
    }
    .badsingleblock-content-inner .badsingleblock-content-btn a {
        padding: 6px 18px;
        font-size: 14px;
    }
}
@media(max-width: 767px) {
    .badsingleblock-content-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .badsingleblock-content-sub-title {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .badsingleblock-content-desc {
        margin: 0 auto 15px;
        width: 80%;
    }
    .badsingleblock-content-timer .badtimer-time {
        font-size: 16px;
        line-height: 40px;
        height: 40px;
        width: 40px;
    }
    .content-timeline-wapper {
        padding: 30px 15px;
    }
    .badsingleblock-content-inner .badsingleblock-content-btn a {
        padding: 6px 20px;
        font-size: 14px;
    }
    .badsingleblock-content-timer .badtimer-label {
        font-size: 14px;
        margin-top: 10px;
    }
}
@media(max-width: 575px){
    .badsingleblock-content-sub-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .badsingleblock-content-desc{
        line-height: 24px;
    }
    .content-timeline-wapper {
        width: 80%;
        margin: -10% auto 0;
    }
    .badsingleblock-content-title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    .badsingleblock-content-inner-box{
        padding: 0 15px;
    }
}
@media(max-width: 480px) {
    .badsingleblock-content-timer .badtimer-content {
        margin: 0 10px;
    }
    .badsingleblock-content-inner .badsingleblock-content-timer {
        margin-bottom: 12px;
    }
    .badsingleblock-content-inner .badsingleblock-content-btn a {
        padding: 5px 15px;
        font-size: 13px;
    }
    .badsingleblock-content-sub-title {
        font-size: 20px;
        line-height: 30px;
    }
    .badsingleblock-content-timer .badtimer-label{
        margin-top: 8px;
    }
}
@media(max-width: 400px){
    .content-timeline-wapper {
        width: auto;
        margin: -22% auto 0;
    }
}
@media(max-width: 375px) {
    .badsingleblock-content-timer .badtimer-content {
        margin: 0 2px;
    }
    .badsingleblock-content-desc {
        font-size: 14px;
    }
    .badsingleblock-content-timer .badtimer-label{
        font-size: 13px;
    }
}