/**
* 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
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.custom-content{
    position: relative;
    padding: 1.5rem 0;
}

.init_slider h4{
    padding: 0 3rem;
    text-align: center;
}

.product_installment h4, .product_discounts h4{
    font-size: 1rem;
}

.no_slider .splide__list{
    gap: 0.5rem;
}

.no_installment_slider{
    display: flex;
}
.installment_slider.splide{
    display: unset;
}

.installment_block{
    width: 10rem;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 5px;
    margin: 1rem 0;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    gap: 0.5rem;
    cursor: pointer;
}
.installment_block.view{
    z-index: 9999;
}

.installment_block::backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.installment_block_image img{
    height: 2rem;
    margin: auto;
}

.installment_block_content p{
    margin: 0;
    font-size: 0.625rem;
    line-height: 1.5;
}

.installment_block_content p label{
    display: block;
    font-size: 0.75rem;
    text-align: left;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.splide__arrows.splide__arrows--ltr {
    top: -1rem;
    position: absolute;
    width: 100%;
    display: block;
}

button.splide__arrow.splide__arrow--prev {
    left: 0;
}

.bank__installments {
    background: #ffffff;
    position: absolute;
    min-height: 300px;
    padding: 1rem;
    width: 100%;
    z-index: 99999;
    display: none;
    border-radius: 5px;
}
.bank__installments.view{
    /* top: 84%; */
    display: block;
}

.installment__overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0,0,0,0.4);
    left: 0;
    top: 0;
    display: none;
}

.installment__overlay.show{
    display: block;
}

.close-btn{
    position: absolute;
    right: 0.6rem;
    background: none;
    border: none;
    top: 0.5rem;
}

.bank__installments h3 {
    font-size: 0.875rem;
    margin: 0.5rem 0 1rem 0;
}

.bank__installments table {
    width: 100%;
    display: table;
    border: 1px solid #e8e8e8;
    font-size: 0.7rem;
    box-shadow: 1px 2px 8px 0px rgb(0 0 0 / 20%);
    margin-bottom: 1.5rem;
}

.bank__installments table th{
    /* font-size: 1rem; */
    padding: 1.5rem 0.5rem 0.5rem 1rem;
    background-color: #efefef;
}

.bank__installments table td {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    border-bottom: 1px solid #efefef;
}

.bank__terms{
    font-size: 12px;
}

.bank__terms ul{
    padding: 0px 0px 0px 2rem;
    list-style: inherit;
    font-size: 12px;
}

.bank__terms ol {
    padding: 0px 0px 0px 2rem;
    font-size: 12px;
}

.bank__terms ul li, .bank__terms ol li{
    margin-bottom: 0.5rem;
}

.discount__wrapper{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.discount__block{
    width: calc(50% - 0.5rem);
    padding: 10px;
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 5px;
    margin: 0 0.5rem 0.5rem 0;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    gap: 0.75rem;
}

.discount__block .discount_block_image{ width: 48%; }
.discount__block .discount_block_image img{
    width: 100%;
    margin: auto;
}

.discount__block .discount_block_info p{
    font-size: 0.625rem;
    line-height: 1.5;
    margin: 0;
}

.discount__block .discount_block_info p > span{
    font-size: 0.75rem;
    color: #000000;
    font-weight: bold;
    display: block;
}

.splide__arrow--next{
    right: 0 !important;
}