/**
* 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 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-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
*/
.badcustomerservices-block {
    position: relative;
    padding: 80px 0;
    margin-bottom: 80px;
    background-color: #f5f5f5;
}
.badcustomerservices-content-inner {
    width: 33.33%;
    cursor: pointer;
    position: relative;
    padding: 0 10px;
}
.badcustomerservices-content-inner.badcustomerservices-1,.badcustomerservices-content-inner.badcustomerservices-2{
    border-right: 1px solid #d1d1d1;
}
.badcustomerservices-content,.badcustomerservices-content-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
}
.badcustomerservices-content {
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
}
.badcustomerservices-content .badcustomerservices-content-inner:last-child::after{
    display: none;
}
.badcustomerservices-content-image-wrapper {
    border: 2px solid var(--theme-custom-color);
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    text-align: center;
    line-height: 95px;
}
  
.badcustomerservices-content-image {
    margin: 0 auto;
    width: 58px;
    height: 58px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
.badcustomerservices-content-image-wrapper i {
    display: none;
}
.badcustomerservices-content-inner img{
    transition: all 0.5s ease-in-out;
    -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;
}
.badcustomerservices-content-inner:hover img{
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}
.badcustomerservices-content-inner .badcustomerservices-content-image-wrapper{
    transition: all 0.5s ease-in-out;
    -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;
}
.badcustomerservices-content-inner:hover .badcustomerservices-content-image-wrapper{
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
}
.badcustomerservices-content-box {
    padding-left: 20px;
}
.badcustomerservices-content-title {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 26px;
    color: #000;
    font-weight: 700;
    text-transform: capitalize;
    overflow: hidden;
    margin-bottom: 8px;
}
.badcustomerservices-content-image-wrapper img {
    max-width: inherit;
}
.badcustomerservices-content-box .badcustomerservices-content-sub-title {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
@media(max-width: 1200px) {
    .badcustomerservices-block {
        padding: 50px 0;
        margin-bottom: 50px;
    }
    .badcustomerservices-content-image{
        width: 50px;
        height: 50px;
    }
    .badcustomerservices-content-box .badcustomerservices-content-sub-title {
        font-size: 16px;
    }
}
@media (max-width: 1024px) {
    .badcustomerservices-content-title {
        font-size: 20px;
        line-height: 24px;
    }
    .badcustomerservices-content-box .badcustomerservices-content-sub-title {
        line-height: 20px;
        font-size: 16px;
    }
}
@media(max-width: 991px) {
    .badcustomerservices-content-inner {
        width: 50%;
    }
    .badcustomerservices-block {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    .badcustomerservices-content-box {
        padding-left: 10px;
    }
    .badcustomerservices-content-title {
        font-size: 18px;
        line-height: 20px;
    }
    .badcustomerservices-content-box .badcustomerservices-content-sub-title {
        font-size: 15px;
        line-height: 23px;
    }
    .badcustomerservices-content {
        justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
    }
    .badcustomerservices-content-block{
        margin: 10px;
    }
    .badcustomerservices-content-inner.badcustomerservices-1, .badcustomerservices-content-inner.badcustomerservices-2{
        border: none;
    }
}
@media (max-width: 768px) {
    .badcustomerservices-content-image{
        width: 40px;
        height: 40px; 
    }
    .badcustomerservices-content-title{
        line-height: 20px;
    }
    .badcustomerservices-content-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .badcustomerservices-content-box .badcustomerservices-content-sub-title {
        font-size: 14px;
    }
    .badcustomerservices-content {
        flex-wrap: wrap;
        justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
    }
    .badcustomerservices-content-box {
        padding-left: 15px;
    }
    .badcustomerservices-content-block{
        margin: 0;
    }
    .badcustomerservices-content-block{
        flex-wrap: nowrap;
    }
    .badcustomerservices-block {
        padding: 20px 0;
    }
}
@media (max-width: 575px) {
    .badcustomerservices-content-image-wrapper {
        width: 85px;
        height: 85px;
        line-height: 80px;
    }
}
@media(max-width: 525px){
    .badcustomerservices-content-inner {
        width: 88%;
        margin: 5px 0;
    }
    .badcustomerservices-content, .badcustomerservices-content-block {
        justify-content: flex-start;
        -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    }
    .badcustomerservices-content-inner::after {
        display: none;
    }
    .badcustomerservices-content-image-wrapper img {
        width: 50%;
    }
}
@media(max-width:480px){
    .badcustomerservices-content-inner {
        width: 93%;
    }
}