/**
* 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:
* 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
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
#kn_slideresponsive li{
    position: relative;
}
    .box-knsr{
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 0;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
#kn_slideresponsive .slick-dots{
    position: absolute;
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    bottom: 3em;
}
    #kn_slideresponsive .slick-dots li{
        position: relative;
        width: 15px;
        height: 15px;
    }
        #kn_slideresponsive .slick-dots li button{
            cursor: pointer;
            width: 100%;
            height: 100%;
            border: 0;
            background-color: #fff;
            border-radius: 100%;
            text-indent: 9999px;
            box-shadow: 0 0 4px 0 rgb(255 255 255 / 70%);
            opacity: 0.7;
        }
            #kn_slideresponsive .slick-dots li.slick-active button, #kn_slideresponsive .slick-dots li button:hover{
                opacity: 1;
                outline: 0;
            }
#kn_slideresponsive .slick-arrow{
    position: absolute;
    top: 45%;
    z-index: 3;
    background-color: transparent;
    border: 0;
    transition: all 300ms;
    cursor: pointer;
    outline: 0;
}   
    #kn_slideresponsive .slick-arrow i{
        opacity: 0.7;
        font-size: 60px;
        color: #FFF;
        text-shadow: 0px 0px 10px #000;
        transition: all 300ms;
    }
        #kn_slideresponsive .slick-arrow:hover i{
            opacity: 1;
        }
    #kn_slideresponsive .slick-arrow.slick-next{
        right: 0;
    }
    #kn_slideresponsive .slick-arrow.slick-prev{
        left: 10px;
    }
        #kn_slideresponsive .slick-arrow svg{
            box-shadow: 0 0 6px 0;
            border-radius: 100%;
            background-color: rgb(255 255 255 / 20%);
            fill: #FFF;
        }
        #kn_slideresponsive .slick-arrow.slick-prev svg{
            transform: rotate(180deg);
        }
    #kn_slideresponsive .slick-arrow svg{
        width: 30px;
    }

.link-knsr img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-overlay-knsr{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3em;
}
.h3-knsr, .p-knsr, .desc-knsr, .box-btn-knsr{
    display: flex;
    align-items: center;
    width: 100%;
}
    .h3-knsr{
        font-size: 2.5em;
        font-weight: 700;
    }
    .h3-knsr.left{
        justify-content: flex-start;
    }
    .h3-knsr.center{
        justify-content: center;
    }
    .h3-knsr.right{
        justify-content: flex-end;
    }

    .p-knsr.center{
        font-size: 2em;
    }
    .p-knsr.left{
        justify-content: flex-start;
    }
    .p-knsr.center{
        justify-content: center;
    }
    .p-knsr.right{
        justify-content: flex-end;
    }

    .desc-knsr.left{
        justify-content: flex-start;
    }
    .desc-knsr.center{
        justify-content: center;
    }
    .desc-knsr.right{
        justify-content: flex-end;
    }

    .box-btn-knsr.left{
        justify-content: flex-start;
    }
    .box-btn-knsr.center{
        justify-content: center;
    }
    .box-btn-knsr.right{
        justify-content: flex-end;
    }

    .btn-knsr{
        transition: all 300ms;
    }
        .btn-knsr:hover{
            transform: scale(1.1);
        }

@media only screen and (max-width:767px) {
    #kn_slideresponsive .slick-arrow{
        display: none !important;
    }

    .h3-knsr.left-mob{
        justify-content: flex-start;
    }
    .h3-knsr.center-mob{
        justify-content: center;
    }
    .h3-knsr.right-mob{
        justify-content: flex-end;
    }

    .p-knsr.left-mob{
        justify-content: flex-start;
    }
    .p-knsr.center-mob{
        justify-content: center;
    }
    .p-knsr.right-mob{
        justify-content: flex-end;
    }

    .desc-knsr.left-mob{
        justify-content: flex-start;
    }
    .desc-knsr.center-mob{
        justify-content: center;
    }
    .desc-knsr.right-mob{
        justify-content: flex-end;
    }

    .box-btn-knsr.left-mob{
        justify-content: flex-start;
    }
    .box-btn-knsr.center-mob{
        justify-content: center;
    }
    .box-btn-knsr.right-mob{
        justify-content: flex-end;
    }
}