/**
* 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 {
    margin-bottom: 80px;
}
.badcustomerservices-content-inner {
    width: 24%;
    cursor: pointer;
    position: relative;
}
.badcustomerservices-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.badcustomerservices-content-image-wrapper i {
    display: none;
}
.badcustomerservices-content-box {
    padding-left: 15px;
}
.badcustomerservices-content-title {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 27px;
    color: #000;
    font-weight: 700;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-align: center;
    padding-top: 10px;
}
.badcustomerservices-content-box .badcustomerservices-content-sub-title {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 18px;
    color: #000;
    font-weight: 400;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-transform: capitalize;
    display: none;
}
.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: 1199px) {
    .badcustomerservices-block {
        margin-bottom: 45px;
    }
}
@media(max-width: 991px) {
   .badcustomerservices-block {
        margin-bottom: 30px;
    }
    .badcustomerservices-content {
        display: flex;
        flex-wrap: wrap;
    }
    .badcustomerservices-content-inner {
        width: 50%;
        margin: 10px 0;
    }
    .badcustomerservices-content-title {
        font-size: 18px;
    }
}
@media(max-width: 445px){
    .badcustomerservices-content-image {
        margin: 0;
    }
    .badcustomerservices-content-box {
        text-align: left;
    }
    .badcustomerservices-content-block {
        justify-content: center;
    }
    .badcustomerservices-content-inner {
        width: 100%;
        margin: 10px 0;
    }
    .badcustomerservices-content-title {
        font-size: 16px;
    }
    .badcustomerservices-content-image-wrapper img {
        width: 42px;
    }
    .badcustomerservices-content {
        justify-content: center;
    }
}