/**
* 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.
*/
#combinations{
    /*padding:40px 0;*/
    /*background: #f5f5f5;*/
    margin-top: 20px;
}
.combinations-products{
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    gap: 10px;


}

 .item-combine{
    display: flex !important;
    justify-content: center;
    /*padding:10px;*/
    background: #fff;
    /*border-radius: 8px;*/
    gap: 5px;
    align-items: center;
    flex-direction: column;

}
.item-combine > .item-combine-price{}
    font-size: 15px;
    font-weight: bold;

}

.item-combine-price  .discount-product{display:none !important;}
.item-combine > .item-combine-price .product-price-and-shipping .regular-price{
	background-color: #FBED13;
    font-size: 13px;
    text-decoration: line-through;
}

.item-combine > .item-combine-price .product-price-and-shipping .price{
font-weight:bold;}

.item-combine > .item-combine-title{
    font-size:13px;
    text-align:center;

}
.item-combine > .item-combine-buy{

}
 .item-combine > .item-combine-buy button{

/* display: flex; */
/* justify-content: center; */
/* align-items: center; */
    text-align: center;
     line-height: 20px;


    outline: none;
    box-sizing: border-box;
/* padding: 0 10px; */
    border-radius: 4px;
/* line-height: 40px; */
    background-color: #fff;
     border:1px solid #0bbdb4;
     color: #0bbdb4;
    font-size: 10px !important;
    margin-right: 0px !important;
    padding: 5px 15px;
    width: 100%;
}
.item-combine > .item-combine-buy button:hover{
    cursor: pointer;
    background: #0bbdb4;
    color: #fff;
    border:1px solid #0bbdb4
}

.combinations-dots-wrapper >ul{
    margin:0;
}

#combinations-products.in{
    display: inline-block;
    width: 100%;
}
#combinations-products .slick-list,
#combinations-products.in .slick-list{
    width: 100%;
}


.combinations-products  { visibility: hidden; }
.combinations-products.slick-initialized{ visibility: visible; }



/* #######################
### ACCORDION STYLING ###
########################## */
.accordion {
    /* Apply border radius to the parent container... */
    border-radius: 8px;
    /* ...and set 'overflow: hidden' to crop its children so the border remains visible. */
    overflow: hidden;

    &:has(.accordion-toggle:focus-visible),
    &:has(.accordion-toggle:focus) {
        outline: 2px solid var(--accent-light);
    }
}

.accordion-toggle {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    /*min-height: 3.8125rem;*/
    padding: 15px;
    color: inherit;
    text-align: left;
    border: 1px solid #f1f1f1;
    border-radius: 0.25rem;
    cursor: pointer;
    background: #fff;
}

.accordion-toggle

.btn-icon {
    position: relative;
    width: 32px;


    border-radius: 100vmax;

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;

        height: 1px;
        width: calc(100% - 23px);

        background-color: #696969;
    }
    &::after {
        rotate: 90deg;
    }
    .accordion-toggle[aria-expanded="true"] &::before,
    .accordion-toggle[aria-expanded="true"] &::after {
        rotate: 180deg;
    }

    /* The prefers-reduced-motion feature query detects whether the user has requested the operating system to minimize the amount of animation or motion it uses. */
    @media (prefers-reduced-motion: no-preference) {
        &::before,
        &::after {
            /* Transition from '-' to '+'. */
            transition: rotate var(--transition-duration-timing-from);
        }

        /* Transition from '+' to -'. */
        .accordion-toggle[aria-expanded="true"] &::before,
        .accordion-toggle[aria-expanded="true"] &::after {
            transition: rotate var(--transition-duration-timing-to);
        }
    }
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    /* Make the collapsed panel container not accessible to screen reader. */
    /* Contrary to 'display: none', the 'visibility' property can be delayed to transition other properties (here 'grid-template-row'). */
    visibility: hidden;
    /* Also add opacity transition for better visual effect. */
    opacity: 0;

    .accordion-toggle[aria-expanded="true"] + & {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;

        padding: 1rem 1rem 1.25rem;
        border: 1px solid #f1f1f1;
        border-top: 0;
        border-radius: 0 0 0.25rem 0.25rem;
        overflow: hidden;
    }

    @media (prefers-reduced-motion: no-preference) {
        /* Transition from expanded to collapsed state. */
        /* The 'visibility: hidden' property cannot be animated but it can be delayed so it kicks in only after the 'grid-template-rows' and 'opacity' transitions are complete.  */
        transition: grid-template-rows var(--transition-duration-timing-from),
        visibility var(--transition-duration-delay-timing-from),
        opacity var(--transition-duration-timing-from);

        /* Transition from collapsed to expanded state (no delay required).*/
        /* This works since 'visbility: visible' is set instantaneously and the 'grid-template-rows' and 'opacity' control the state transition. */
        .accordion-toggle[aria-expanded="true"] + & {
            transition: grid-template-rows var(--transition-duration-timing-to),
            visibility var(--transition-duration-delay-timing-to),
            opacity var(--transition-duration-timing-to);

        }
    }
}
.accordion-toggle[aria-expanded="true"]{
    border-bottom: none;
}


.accordion-drawer {
    color: var(--primary-dark);
    background-color: var(--accent-light);
    overflow: hidden;
}

/* Additional div to add padding to the content without messing with the animation. */
.accordion-content {
    padding: 1em;
    p {
        text-align: left;
    }
}
.title-toggle{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.title-toggle .text{
    font-weight: bold;
    font-size: 18px;
    line-height: 2.25rem;
    margin-bottom: 0;
}
.title-toggle .icon{
    display: flex;
    width:23px;
    height: 23px;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    /*background: #c02228;*/
}
.title-toggle .icon:before{
    content: '\e946';
    font-family: IcoMoon;

    /*color: #fff;*/

    color: #0bbdb4;

    font-size: 20px;
}
.accordion-toggle:hover,
.accordion-toggle:focus-visible,
.accordion-toggle:focus,
.accordion-toggle:active{
    outline: none;
}

.item-combine a{
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
	text-align:center;
    flex-direction: column;
}

.combinations-dots-wrapper{
    /*margin-top: 25px;*/
}

.combinations-dots-wrapper .mydots li a{
    width: 10px;
    height: 3px;
}

.combinations-products{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;

}

.combinations-navigation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top:30px;
}
.combinations-navigation .slick-arrow{
    margin: unset;
    width: unset;
    height: unset;
    background:transparent; color: #000;
}

.combinations-right-arrow:before{
    content: "\e93e";
    font-family: icomoon; color: #2f313b;font-size: 10px;
}

.combinations-left-arrow:before{
    content: '\e912';
    font-family: icomoon;
    color: #2f313b;font-size: 10px;
}

.combinations-right-arrow:hover
.combinations-left-arrow:hover{
    cursor: pointer;
}

@media(max-width:640px){
	.item-combine-image img{
		width:80px;
	}
	.item-combine{
	gap:7px;}
}

/**
cart
 */
#cart
 .accordion-panel{
    background:#fff;
}

.item-combine-feature{
    background:#e9e9e9;
    padding:0px 10px;
    border-radius: 50px;
    font-size: 10px;
    margin-top:10px;
    margin-bottom: 5px;
}



.combinations-products-cart  { visibility: hidden; }
.combinations-products-cart.slick-initialized{ visibility: visible; }
