/**
* 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 no-repeat center center:
* 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
*/
.badcustomerservices-block {
    background-color: var(--theme-background-color);
    padding: 80px 0;
}
.badcustomerservices-content-inner {
    cursor: pointer;
    position: relative;
    width: 19%;
}
.badheader-customerservices-main {
    padding: 15px 0;
}
.badcustomerservices-content-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23px;
    background-color: #F4F6FA;
    width: 100%;
}
.badcustomerservices-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.badcustomerservices-content-image-wrapper i {
    display: none;
}
.badcustomerservices-content-box {
    padding-left: 15px;
}
.badcustomerservices-content-title {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 22px;
    color: #242424;
    font-weight: 600;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-align: left;
    font-family: var(--badtheme-font-name-2);
}
.badcustomerservices-content-box .badcustomerservices-content-sub-title {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #ADADAD;
    font-weight: 400;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    padding-top: 5px;
    text-align: left;
}
.badcustomerservices-content-title:hover, .badcustomerservices-content-sub-title:hover {
    color: var(--theme-custom-color);
}
.badcustomerservices-content-image-wrapper {
    transition: all 0.4s ease-in-out;
    text-align: center;
}
.badcustomerservices-content-inner:hover .badcustomerservices-content-image-wrapper {
    transform: rotateY(180deg);
}
@media (max-width: 1200px) {
    .badcustomerservices-block{
        padding: 50px 0;
    }
}
@media(max-width:1199px){
    .badcustomerservices-content-inner {
        width: 49%;
    }
}
@media(max-width: 991px) {
    .badcustomerservices-block{
        padding: 30px 0;
    }
    .badcustomerservices-content-block{
        padding: 15px;
    }
}
@media(max-width: 767px){
    .badcustomerservices-content-title {
        font-size: 16px;
    }
}
@media(max-width: 575px){
    .badcustomerservices-content-inner {
        width: 100%;
    }
    .badcustomerservices-content-image-wrapper {
        height: 50px;
        width: 50px;
    }
    .badcustomerservices-content-box .badcustomerservices-content-sub-title{
        font-size: 14px;
    }
}
@media(max-width: 445px){
    .badcustomerservices-content-image {
        margin: 0;
    }
    .badcustomerservices-content-box {
        text-align: left;
    }
}