/******************************************************************************/

/*
 * Price
 */
.price {
    color: #000;
    font-size: 2.1rem;
    font-weight: bold;
    text-align: right;
}
.price-old {
    color: #7E7E7E;
    text-decoration: line-through;
    font-size: 1.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.price-new {
    display: block;
    font-size: 1.1em;
    white-space: nowrap;
}
.price-old + .price-new {
    color: #f00;
}

.products.swiper-wrapper .price-old{
    bottom:0;
    left:2rem;
    position:relative;
    top:2.5rem;
}

/******************************************************************************/

/*
 * Quantity
 */
.quantity {
    display: block;
    padding: 0 4.5rem;
    position: relative;
    width: 17rem;
}
.quantity-button {
    bottom: 0;
    font-size: 2.3rem;
    margin: auto;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 0;
    height: 2.4rem;
    border: none;
    background: white;
    color: #AEAEAE;
}
.quantity-button:hover{
    background-color: white;
    color:var(--darkred-color);
}
.quantity-button:first-child {
    left: 1rem;
}
.quantity-button:last-child {
    right: 1rem;
}
.quantity-button::before,
.quantity-button::after {
    /* content: ''; */
    border-style: solid;
    border-width: 1px;
    bottom: 0;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    width: 0;
}
.quantity-button::before {
    width: 2.4rem;
}
.quantity-button::after {
    height: 2.4rem;
}
.quantity-button:first-child::after {
    display: none;
}
.quantity-button .icon {
    line-height: inherit;
}
.quantity-input {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    width: 100%;
}
.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/******************************************************************************/

/*
 * Produkty
 */
.productFilters {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 40px 0 30px;
}

.dubleColums {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.dubleColums-item {
    width: 50%;
    display: table-cell;
}
.dubleColums-item-mini {
    width: 20%;
}

.productWrapper {
    text-align: justify;
    font-size: 0;
    margin: 20px -10px;
}
.productWrapper::after {
    content: '';
    display: inline-block;
    width: 31%;
    width: calc(33.3% - 20px);
    line-height: 1.4;
}

.product {
    border: 1px solid  #f3f3f3;
    font-size: 1.6rem;
    -webkit-box-shadow: 0px 0px 14px -10px rgba(50, 50, 50, 0);
    -moz-box-shadow: 0px 0px 14px -10px rgba(50, 50, 50, 0);
    box-shadow: 0px 0px 14px -10px rgba(50, 50, 50, 0);
    display: inline-block;
    margin: 0 0 20px;
    margin: 10px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: top;
    /*width: 23.7%;*/
    width: 31%;
    width: calc(33.3% - 20px);
}

@supports (display: grid) {
    .productWrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        margin: 20px 0;
    }
    .product {
        width: auto;
        margin: 0;
    }
}

.product:hover {
    border: 1px solid  #fff;
    -webkit-box-shadow: 0 5px 51px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0 5px 51px rgba(0, 0, 0, 0.21);
    box-shadow: 0 5px 51px rgba(0, 0, 0, 0.21);
}

.product-hide {
    display: inline-block;
    position: relative;
    width: 31%;
    width: calc(33.3% - 20px);
    margin: 10px;
}

.product a {
    color: #777777;
}
.product:hover {
    color: #f99595;
    text-decoration: none;
}

.product-image {
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: 100%;
    height: 270px;
}
.product-image img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}
.product-image img + img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    -webkit-box-shadow: 0px 0px 50px -50px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 50px -50px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 50px -50px rgba(255, 255, 255, 1);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.product:hover .product-image img + img {
    opacity: 1;
    -webkit-box-shadow: 0px 0px 80px 100px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 80px 100px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 80px 100px rgba(255, 255, 255, 1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.product-info {
    padding: 10px 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.product-name {
    line-height: 1.1em;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}
.product-price {
    color: #5e5e5e;
    display: block;
    font-size: 2.6rem;
    text-align: center;
    width: 100%;
}

/******************************************************************************/

/*#inpost input { min-width: 0; padding: 5px 5px; width: 150px; }
#inpost span { display: inline-block; padding: 0 10px; vertical-align: middle; }
#inpost div { display: inline-block; vertical-align: top; }
#inpost select + select { display: block; }
#inpost option.near { border: 1px solid  #EEE; font-weight: bold; }*/

/******************************************************************************/

/*
 * Cart Steps
 * /
.steps {
    display: table;
    list-style: none;
    margin: 2rem 0;
    overflow: hidden;
    padding: 0;
    table-layout: fixed;
    text-align: center;
    width: 100%;
}
.steps-item {
    color: #C4C4C4;
    display: table-cell;
    padding: 0.8rem 1rem 1.2rem;
    position: relative;
}
    .steps-item:first-child { padding-left: 0; }
    .steps-item:last-child { padding-right: 0; }
    .steps-item--active { color: #000; }
.steps-item::after {
    border-bottom: 0.4rem solid #DDD;
    bottom: 0;
    content: '';
    left: 1rem;
    position: absolute;
    right: 1rem;
}
    .steps-item:first-child::after { left: 0; }
    .steps-item:last-child::after { right: 0; }
    .steps-item--active::after { border-color: #000; }
.steps-name {
    display: block;
    font-weight: normal;
}
.steps-desc {
    display: none;
    font-size: 1.2rem;
}
@media only screen and (max-width: 600px) {
    .steps-item { display: none; }
    .steps-item--active { display: block; }
}

/******************************************************************************/

/*
 * Cart Step
 */
.step {
    margin: 2rem 0;
    overflow: hidden;
    text-align: left;
}
.step-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 7rem 0 0;
    text-transform: uppercase;
}
.step-desc {
    color: #c4c4c4;
    margin: 0 7rem 0 0;
    position: relative;
    z-index: 1;
}
.step-progressBar {
    margin: -2rem 0 0;
    text-align: right;
}

/******************************************************************************/

/*
 * Main Cart
 */
.mainCart {
    position: relative;
}
.mainCart-areas {
    font-size: 0.000001rem;
    overflow: visible;
    position: relative;
}
.mainCart-areas .border{
    border-color:#E9E9E9;
}
.mainCart-left {
    background: white;
    margin: 0 0 1rem;
    padding: 1rem 2.5rem;
    background-color: white;
    border-radius: 2rem;
}
.mainCart-left .privacy{
    border-radius:1rem;
    border:1px dashed #E9E9E9;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:3rem;
    font-size:2rem;
    margin-bottom:2rem;
}

.mainCart-left .privacy p{
    margin-top:0;
}
.mainCart-right {
    position: sticky;
    top: 0;
}
.mainCart-h {
    font-size: 3rem;
    margin: 2rem 0;
    padding: 0;
}
.mainCart-info {
    background: url('../images/icons/maincart-info.svg') no-repeat 0 0;
    color: #888;
    font-size: 1.5rem;
    margin: 1.5rem 0;
    min-height: 2.5rem;
    padding: 0 0 0 3.8rem;
    position: relative;
    background-position-y: 0.3rem;
}

@media only screen and (max-width: 1000px) {
    .product-details-header-sticky{
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    .mainCart-left,
    .mainCart-right {
        display: block;
        position: relative;
        width: auto;
    }
    .details-con-que div.con{
        padding:2rem 3rem;
    }
}

/******************************************************************************/

/*
 * Cart Products
*/
.cartProducts {
    border-spacing: 0 1rem;
    display: table;
    margin: -1rem 0 0;
    padding: 2rem 0 0;
    padding: 0;
    position: relative;
    table-layout: fixed;
    width: 100%;
}
.dropdown-adv:has(.cartProducts--mini){
    max-height:80vh;
    overflow-y:auto;
}
.cartProducts--mini .cartProducts-div.cartProducts-div--remove a{
    position:relative;
    margin-left:1rem;
}
.cartProducts--mini .cartProducts-div.cartProducts-div--remove .icon{
    font-size:2rem;
    transition:0.2s;
    padding:0;
    will-change:auto;
}

.cartProducts--mini .cartProducts-div.cartProducts-div--remove .icon:hover{
    color:var(--darkred-color);
    transform:scale(1.1);
}

.cartProducts--mini .cartProducts-qty,
.cartProducts--mini .cartProducts-attr{
    font-size:1.8rem;
}

.dropdown-adv .dropdown-adv-cartbox {
    z-index:1;
    position: sticky;
    bottom: 0;
}

.dropdown-adv .dropdown-adv-cartbox:after{
    content:'';position:absolute;
    width:100%;
    height:150%;
    background:white;
    left:0;
    margin-bottom:-1.5rem;
    bottom:0;
    z-index:1;
    border-top: 1px solid #E8E8E8;
}
.cartProducts-item {
    border-width: 0;
    display: table-row;
    opacity: 1;
    position: relative;
    border-radius:2rem;
    background-color: white;
}
.cartProducts-item--hide {
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.cartProducts-div {
    display: table-cell;
    padding: 1rem;
    position: relative;
    text-align: center;
    vertical-align: middle;
}
.cartProducts-div:first-of-type{
    border-radius:2rem 0 0 2rem;
}
.cartProducts-div:last-of-type{
    border-radius:0 2rem 2rem 0;
}
.cartProducts.cartProducts--mini .cartProducts-div {
    border-left-width:0;
    border-right-width:0;
    border-top-width:0;
    border-radius:0;
}
.cartProducts.cartProducts--mini .cartProducts-item:last-of-type .cartProducts-div{
    border-bottom-width: 0;
}
.cartProducts-div:not(:first-child) {
    border-left-width: 0;
}
.cartProducts-div:not(:last-child) {
    border-right-width: 0;
}
.cartProducts-div--image {
    width: 15%;
}
.cartProducts-div--text {
    text-align: left;
}
.cartProducts-div--price {
    text-align: right;
    width: 15%;
}
.cartProducts-div--quantity {
    width: 20%;
}
.cartProducts-div--total {
    display: none;
    text-align: right;
    width: 15%;
}
.cartProducts-div--remove {
    width: 10%;
}
.cartProducts-h {
    color: #888;
    display: none;
    font-size: 1.2rem;
}
.cartProducts-item:first-child .cartProducts-h {
    bottom: 100%;
    display: none;
    left: 0;
    margin: 0 0 1rem;
    position: absolute;
    right: 0;
    white-space: nowrap;
}
.cartProducts-a,
.cartProducts-a:hover {
    color: inherit;
    text-decoration: none;
}
.cartProducts-image {
    max-width: 100%;
    width: 12.5rem;
}
.cartProducts-img {
}
.cartProducts-name {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}
.cartProducts-attr {
    font-weight: normal;
    text-transform: uppercase;
}
.cartProducts-qty {
    color: #888;
    display: none;
}
.cartProducts-price {
}

.cartProducts-price .price-old {
    display: block;
    right: 0;
}
.cartProducts-quantity {
    margin: 0 auto;
    width: 17rem;
}
.cartProducts-remove {
}

.cartProducts--fixed {
    /*border-collapse: collapse;*/
    border-spacing: 0;
    margin: 0 0 1rem;
    border-spacing: 0 1rem;;
}
.cartProducts--fixed .cartProducts-div--total {
    display: table-cell;
}
.cartProducts--fixed .cartProducts-div--remove {
    display: none;
}
.cartProducts-div--quantity .cartProducts-qty {
    display: block;
}

.cartProducts--mini {
    /*border-collapse: collapse;*/
    border-spacing: 0;
    margin: 0 0 1rem;
}
.cartProducts--mini .cartProducts-item:not(:first-child) .cartProducts-div {
    border-top-width: 0;
}
.cartProducts--mini .cartProducts-div--image {
    width: 10rem;
}
.cartProducts--mini .cartProducts-div--price {
    width: 12.5rem;
}
.cartProducts--mini .cartProducts-div--quantity {
    display: none;
}
.cartProducts--mini .cartProducts-div--remove {
    width: 4.5rem;
}
.cartProducts--mini .cartProducts-image {
}
.cartProducts--mini .cartProducts-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cartProducts--mini .cartProducts-attr {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cartProducts--mini .cartProducts-qty {
    display: block;
}

@media only screen and (max-width: 1000px) {
    .headerCart .dropdown-adv{
        display:none !important;
    }
    .cartProducts--mini {
        display: none !important;
    }
}

@media only screen and (max-width: 800px) {
    .cartProducts {
        border-spacing: 0;
        display: block;
    }
    .cartProducts-item {
        border-width: 1px;
        display: block;
        margin: -1px 0 0;
    }
    .cartProducts-div {
        border-width: 0;
        display: inline-block;
        margin-right: -0.4rem;
    }
    .cartProducts-div--image {
        width: 25%;
    }
    .cartProducts-div--text {
        width: 75%;
    }
    .cartProducts-div--price {
        width: 35%;
    }
    .cartProducts-div--quantity {
        width: 52%;
    }
    .cartProducts-div--total {
        display: none;
    }
    .cartProducts-div--remove {
        width: 13%;
    }

    .cartProducts--fixed .cartProducts-div--quantity {
        width: 30%;
    }
    .cartProducts--fixed .cartProducts-div--total {
        display: inline-block;
        width: 35%;
    }
    .details-con div.product-features{
        grid-template-columns:repeat(2,1fr);
    }
}

/* border-radius' * /
.cartProducts-item:not(:first-child),
.cartProducts-div:not(:first-child),
.cartProducts--mini .cartProducts-item:not(:first-child) .cartProducts-div {
    -webkit-border-top-left-radius: 0;
    -moz-border-top-left-radius: 0;
    border-top-left-radius: 0;
 }
.cartProducts-item:not(:first-child),
.cartProducts-div:not(:last-child),
.cartProducts--mini .cartProducts-item:not(:first-child) .cartProducts-div {
    -webkit-border-top-right-radius: 0;
    -moz-border-top-right-radius: 0;
    border-top-right-radius: 0;
}
.cartProducts-item:not(:last-child),
.cartProducts-div:not(:first-child),
.cartProducts--mini .cartProducts-item:not(:last-child) .cartProducts-div {
    -webkit-border-bottom-left-radius: 0;
    -moz-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
}
.cartProducts-item:not(:last-child),
.cartProducts-div:not(:last-child),
.cartProducts--mini .cartProducts-item:not(:last-child) .cartProducts-div {
    -webkit-border-bottom-right-radius: 0;
    -moz-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}

/******************************************************************************/

/*
 * Cart Update
 * /
.button--cartUpdate {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    float: right;
    margin: 0;
    opacity: 0;
    position: relative;
    -webkit-transform: translateY(-3rem);
    -moz-transform: translateY(-3rem);
    -ms-transform: translateY(-3rem);
    -o-transform: translateY(3rem);
    transform: translateY(-3rem);
    visibility: hidden;
}
    .button--cartUpdate.button--show {
        -webkit-animation: cartUpdate 1.5s linear 5; 
        -moz-animation: cartUpdate 1.5s linear 5; 
        -ms-animation: cartUpdate 1.5s linear 5; 
        -o-animation: cartUpdate 1.5s linear 5; 
        animation: cartUpdate 1.5s linear 5; 
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
@-webkit-keyframes cartUpdate {0% { opacity: 1; } 50%  { opacity: 0.5; } 100% { opacity: 1; } }
@-moz-keyframes cartUpdate {0% { opacity: 1; } 50%  { opacity: 0.5; } 100% { opacity: 1; } }
@-ms-keyframes cartUpdate {0% { opacity: 1; } 50%  { opacity: 0.5; } 100% { opacity: 1; } }
@-o-keyframes cartUpdate {0% { opacity: 1; } 50%  { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes cartUpdate {0% { opacity: 1; } 50%  { opacity: 0.5; } 100% { opacity: 1; } }

/******************************************************************************/

/*
 * Cart Shipments & Payments
 */
.cartShipments,
.cartPayments {
    display: flex;
    flex-wrap: wrap;
    margin: 2.5rem -1rem;
}

.cartPayments .cartPayments-item {
    display: inline-block;
}
.cartPayments .cartPayments-item:nth-child(n + 4),
.cartPayments .cartPayments-item:last-child:nth-child(-n + 4),
.cartPayments.-more .cartPayments-item:last-child:nth-child(n + 4) {
    display: none;
}
.cartPayments.-more .cartPayments-item:nth-child(n + 4),
.cartPayments .cartPayments-item:last-child:nth-child(n + 5) {
    display: inline-block;
}

.cartPayments-item:last-child .input--tile {
    align-content: center;
}
.cartShipments .cartShipments-item .input--tile,
.cartPayments .cartPayments-item .input--tile{
    border-color: #E9E9E9;
}

.cartShipments-extension .inpost{
    margin-top:1rem;
    border-top:1px solid #E9E9E9;
    padding:0;
    font-size:1.6rem;
}
.cartShipments-extension .button{
    background:var(--primary-color);
    color:white;
    border-color:var(--primary-color);
    padding:1rem 3rem;
}

.cartShipments-extension .button:hover{
    background-color:black;
    border-color:black;
}

/******************************************************************************/

/*
 * Cart Discounts
 */
.cartDiscounts {
    margin: 0 0 1rem;
    padding: 1rem 2.5rem;
    background-color: white;
    border-radius: 2rem;
}
.cartDiscounts-h {
    font-size: 2rem;
    font-weight: normal;
    margin: 1rem 0;
    padding: 0;
    text-transform: uppercase;
}
.cartDiscounts-inputs {
    margin: 1rem 0;
    padding: 0 14rem 0 0;
    position: relative;
}
.cartDiscounts-inputs label{
    margin-right:1rem;
}
.cartDiscounts-submit {
    bottom: 0;
    position: absolute;
    right: 0;
    width: 14.2rem;
    padding: 1rem 0;
}
.cartDiscounts-item {
    margin: 1rem 0;
    opacity: 1;
    padding: 0 3rem 0 0;
    position: relative;
}
.cartDiscounts-item--hide {
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.cartDiscounts-name {
}
.cartDiscounts-amount {
    white-space: nowrap;
}
.cartDiscounts-remove {
    position: absolute;
    right: 0;
    top: 0;
}
.cartDiscounts-notice {
    color: #888;
    font-size: 1.5rem;
}

/******************************************************************************/

/*
 * Cart Totals
 */
.cartTotals {
    margin: 0 0 1rem;
    padding: 1rem 2.5rem;
    background-color: white;
    border-radius: 2rem
}
.cartTotals-item {
    display: table;
    margin: 1rem 0;
    position: relative;
    width: 100%;
}
.cartTotals-name {
    display: table-cell;
    padding-right: 0.5rem;
    text-align: left;
    vertical-align: middle;
}
.cartTotals-hint {
    color: #c4c4c4;
    display: block;
    font-size: 80%;
    line-height: 1.2;
}
.cartTotals-value {
    display: table-cell;
    padding-left: 0.5rem;
    text-align: right;
    vertical-align: top;
    white-space: nowrap;
}
.cartTotals .formActions {
    margin: 2rem 0 1rem;
    padding: 0;
}
.cartTotals-button {
}

/******************************************************************************/

/*
 * TPAY
 */
.payment-label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    margin: 0 -0.4rem 0 0;
    padding: 1.5rem;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: 16.66%;
}
.payment-label input {
    opacity: 0;
    position: absolute;
    visibility: hidden;
}
.payment-label .img {
    display: block;
    height: 7.5rem;
    opacity: 0.66;
    position: relative;
}
.payment-label:hover .img,
.payment-label input:checked + .img {
    opacity: 1;
}
.payment-label img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.payment-label .name {
    display: block;
    line-height: 1.6rem;
    min-height: 3.2rem;
    padding: 0.5rem 0 0;
}
.payment-label input:checked + .img + .name:before {
    border: 0.2rem solid rgba(0, 0, 0, 0.5);
    bottom: 0.5rem;
    content: '';
    left: 0.5rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}

@media only screen and (max-width: 1000px) {
    .payment-label {
        width: 25%;
    }
}
@media only screen and (max-width: 480px) {
    .payment-label {
        width: 50%;
    }
}

/******************************************************************************/

.inpost {
    padding-left: 30px;
}

/* INPOST GEOWIDGET FIX */
.easypack-widget .search-widget .search-group {
    padding: 10px !important;
}
.easypack-widget input[type='search'] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.easypack-widget .search-group-btn {
    height: 60px !important;
}
.easypack-widget .type-filter {
    display: none !important;
}
.easypack-widget ul li {
    border: 1px solid  none;
}
.widget-modal .ball-spin-fade-loader-mp {
    left: 0;
    top: 0;
}
.widget-modal .easypack-widget:not(.mobile) {
    overflow: auto !important;
}
.widget-modal .easypack-widget .search-widget .search-group-btn:not(.with-filters) {
    width: 1% !important;
}
.widget-modal
    .easypack-widget.mobile
    .search-widget
    .search-group-btn:not(.with-filters) {
    width: auto !important;
}

.pp {
    padding-left: 30px;
}

.dpd {
    padding-left: 30px;
}

/* =============================================================================== */
/* ============================== PRODUKTY -> LISTA ==============================*/
/* =============================================================================== */
.product-filter {
}
.product-filter-text,
.product-filter-select {
    font-size:1.4rem;
    line-height:2.5rem;
    letter-spacing:0.1rem;
    text-transform:uppercase;
}
.product-filter-text {
    color:#B5B5B5;
}
.product-filter-select {
    border:none;
    outline:none;
    background:transparent;
    color:#7E7E7E;
}
.product-filter-select option{
    padding:5rem;
    transition:0.2s;
    will-change:auto;
}
.product-filter-select option[disabled]{
    background:#7A7A7A;
    color:white;
    text-align:center;
}

.products{
    margin:0 -1px;
    display: flex;
    flex-wrap: wrap;
}

.products-item{
    border: 1px solid #E0E0E0;
    border-radius: 3rem;
    padding: 0;
    margin:1rem;
    overflow: hidden;
    width: calc(33.33% - 2rem);
    transition: 0.2s;
    will-change: auto;
    background-color:white;
}
.products-item:hover{
    transform: translateY(-0.4rem);
    /* box-shadow: 0 0.4rem 0 var(--text-dark); */
    box-shadow:0 0.4rem 0.8rem 0 rgba(0,0,0,0.15);
}
.products-item .image.products-image{
    border-bottom: 1px solid #E0E0E0;
}

.image.products-image:has(.products-picture--hover):hover .products-picture--primary{
    opacity:0;
    transition:0.2s;
}
.products .products-picture--primary:before{
    content:'';
    width:100%;
    height:100%;
    top:0;
    left:0;
    position:absolute;
    background-color:white;
}
.products-content{
    text-align: center;
    padding-top: 1rem;
    display: block;
    padding-bottom:9.6rem;
}

.products-price {
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 9.6rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.product-button {
    padding: 1rem 3rem;
    border: 1px solid  #000;
    color: var(--text-white);
    background-color: var(--text-dark);
}

.products-item:hover .product-button{
    color: var(--text-white);
    background-color: var(--text-dark);
}
.button.product-button:hover{
    color:white;
    border: 1px solid  var(--primary-color);
    background-color: var(--primary-color);
}

.products-availability{
    font-size: 2rem;
    font-weight: 700;
    display: block;
    text-align: center;
}
.products-availability.catcolor-purple{
    color:#8A409B;
}
.products-availability.catcolor-green{
    color:#9FC818;
}
.products-availability.catcolor-orange{
    color:#FCB028;
}
.products-availability.catcolor-pink{
    color:#F9789C;
}
.products-availability.catcolor-red{
    color:var(--darkred-color);
}

.products-name{
    font-size: 3rem;
    font-weight: 600;
    color:var(--text-dark);
    margin:1rem 0;
}

.products-info {
    display: block;
    font-size: 1.8rem;
    color: #7E7E7E;
    margin-bottom: 1rem;
}
.products-info-small{
    font-size: 1.2rem;
    color:var(--text-dark);
    display: block;
    padding-top: 1rem;
}

.products-price .price{
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top:-1rem;
}
.products-price .price.price-new{
    color:var(--darkred-color);
}

.products-price .button{
    font-size: 1.7rem;
}
.products-item:hover .products-a{
    text-decoration: none;
}

.products-image--buttons {
    position: absolute;
    top: 0;
    z-index: 1;
    right: 0;
    width: 100%;
    text-align: right;
    padding: 1rem;
    display:flex;
    justify-content:flex-end;
}
input.products-image--checkbox {
    appearance:none;
}

.compare{
    color:var(--text-dark);
    border-radius:5rem;
    padding:1rem;
    cursor:pointer;
    transition:0.2s;
    display:flex;
    justify-content:center;
    align-content:center;
    font-size:2rem;
    width:4.6rem;
    height:4.6rem;
    font-size:2.5rem;
    background: rgba(255, 255, 255, 0.5);
}
.compare-details{
    position: absolute;
    right: 2rem;
    top: 4rem;
    align-items: center;
    z-index: 2;
}
.compare .icon{
    display:grid;
    place-items:center;
    color:#C7C7C7;
    transition: 0.2s;
}
.compare-details .icon{
    margin-left:0.2rem;
}

.compare .icon:hover{
    color:var(--text-dark);
}

.compare:has(.products-image--checkbox:checked){
    border: 1px solid var(--darkred-color);
    color:var(--text-white);
}

.compare:has(.products-image--checkbox:checked){
    position:relative;
    background-color: var(--primary-color);
}
.compare-details:has(.products-image--checkbox:checked){
    position:absolute;
}
.compare:has(.products-image--checkbox:checked):hover .icon{
    opacity:0;
}

.compare:has(.products-image--checkbox:checked):before,
.compare:has(.products-image--checkbox:checked):after{
    content:'';
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin:auto;
    width:0.2rem;
    height:2rem;
    position:absolute;
    border: 1px solid white;
    transition:0.2s;
    will-change:auto;
    opacity: 0;
    background-color: var(--text-white);
}

.compare:has(.products-image--checkbox:checked):hover:before{
    transform:rotate(45deg) scale(1.3);
    opacity: 1;
}
.compare:has(.products-image--checkbox:checked):hover:after{
    transform:rotate(-45deg) scale(1.3);
    opacity: 1;
}

.compare:has(.products-image--checkbox:checked) .icon{
    color:var(--text-white);
}



/* =============================================================================== */
/* ================================ PRODUKT ITEM ================================= */
/* =============================================================================== */

h1.product-name-h1 {
    margin:0;
    padding:1em;
    text-align: center;
}

h1.product-name-h1 span{
    display:block;
    width:50%;
    margin:auto;
}
.product-container {
    display:flex;
}
.product-container.product-container-galery .product-foto {
    width:100%;
}
.product-section{
    margin:2rem;
}

.product-gallery {
    min-width:18rem;
    width:18rem;
    display:flex;
    flex-direction:column;
    gap:2rem;
    padding-top: 5rem;
    margin-right: 1rem;
    position: relative;
}

.product-gallery .product-gallery-item{
    border-radius:2rem;
    max-height: 18rem;
    max-width: 18rem;
    height: auto;
    width: auto;
}

.product-main{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.product-foto {
    width:100%;
    display:flex;
    justify-content:center;
    max-height: 90vh;
}

.product-foto img{
    max-height: 100%;
}


@media screen and (max-width: 1000px) {
    .product-main{
        flex-direction: column-reverse;
    }
    .product-gallery{
        flex-direction: row;
    }
    .ibs.news{
        left:1rem;
    }
    .ibs.news .ib{
        width:50%;
    }
    .ibs.products .ib{
        width:calc(50% - 2rem);
    }
}

@media screen and (max-width: 768px) {
    .product-container {
        flex-direction:column;
        align-items:center;
    }
    .products.swiper-wrapper .price-old{
        top:2rem;
    }
    .product-container .product-info{
        width: 100%;
    }
    .product-gallery{
        max-height: 100%;
        width: auto;
        max-width: max-content;
        padding:0;
        padding-top:2rem;
    }
    .product-gallery .product-gallery-item{
        max-height: 10rem;
    }
    .price.products-price {
        display:flex;
        flex-direction:column;
        height: 13.3rem;
    }
    .price.products-price .price.price-new {
        padding:0;
        margin-top:-1rem;
        text-align:start;
        width:100%;
    }
    .price.products-price .price-old {
        position:absolute;
        margin-top:1.2rem;
        right:2rem
    }
    .ibs.lbl.cartShipments .ib,
    .ibs.lbl.cartPayments .ib{
        width:50%;
    }
    .products-content{
        padding-bottom: 13.3rem;
    }
}


@media screen and (max-width: 600px) {
    .details-con.details-con-que.details-con-que-2 div.con{
        width: 100%;
    }
    div.details-con-que{
        flex-direction: column;
        align-items: center;
    }
    div.details-con-que img {
        width:100%;
    }
    .ibs.news .ib{
        width:100%;
    }
    .ibs.products .ib{
        width:calc(100% - 2rem);
    }
    .details-con div.product-features{
        grid-template-columns:1fr;
    }
    .details-con picture.picture-sticky{
        position:relative;
        top:0;
    }
    .details-con .con-que-content{
        width:100%;
        min-width:100%;
    }

    .details-con.details-con-que.details-con-que-2 div.con{
        padding:2rem 3rem;
    }
}


.product-info {
    min-width:48rem;
    width:48rem;
}

.product-section.product-section-choose{
    display:flex;
    flex-direction:column;
}
.product-chooseImg-inside,
.product-choose-inside{
    display:flex;
    justify-content:center;
    gap:2rem;
    flex-wrap: wrap;
}
.product-chooseImg-inside{
    margin-top:1rem;
}
.product-choose-inside{
    margin-top:1.5rem;
}
.product-choose-label{
    font-size:2.2rem;
    font-weight:600;
    cursor:pointer;
}

.product-choose::before{
    content:'';
    width:2.1rem;
    height:2.1rem;
    display:block;
    border-radius:2rem;
    margin-bottom:-0.2rem;
    margin-right:0.3rem;
    background-color:#B4B4B4;
    cursor:pointer;
    transition:0.2s;
    border:0.5rem solid white;
}

.product-choose:checked::before{
    background-color:var(--darkred-color);
    border-color: var(--darkred-color);
}


.product-name-text{
    text-align:center;
    font-size:5rem;
    font-weight:600;
    margin-bottom:4rem;
}

.product-availability {
    color:var(--secondary-color);
    font-size:2rem;
    font-weight:600;
    text-align:center;
    width:100%;
    display:inline-block;
}

.product-chooseImg-label {
    position:relative;
    border-radius:5rem;
    display:inline-flex;
    justify-content:center;
    width:6.2rem;
    height:6.2rem;
    cursor:pointer;
    box-sizing:content-box;
    border: 5px solid transparent;
}
.product-chooseImg-label:after{
    content: '';
    position: absolute;
    width: 7.4rem;
    height: 7.4rem;
    border-radius: 5rem;
    transition: 0.1s;
    will-change: auto;
    box-sizing: border-box;
    top: -0.6rem;
    left: -0.6rem;
    border: 0.5rem solid var(--darkred-color);
    opacity:0;
}
.product-chooseImg-label::before{
    content:'';
    position:absolute;
    border-radius:5rem;
    width:6.2rem;
    height:6.2rem;
    box-shadow:0 0.2rem 0.5rem rgba(0,0,0,0.25);
    opacity:1;
    transition:0.2s;
}
.product-chooseImg-label:has(.product-chooseImg:checked):before{
    opacity:0;
}
.product-chooseImg-label:has(.product-chooseImg:checked):after{
    border: 0.5rem solid var(--darkred-color);
    opacity:1;
}
.product-choose-name{
    font-size:2.2rem;
    font-weight:600;
    text-align:center;
}
.product-chooseImg-label img{
    min-width:100%;
    min-height:100%;
    max-width:100%;
    max-height:100%;
    border-radius:5rem;
}
.product-choose,
.product-chooseImg {
    appearance:none;
}

.product-section.product-section-price {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.product-price-text {
    font-size:1.4rem;
    color:#3A3A3A;
    line-height:2.5rem;
}

.price-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 2rem;
}

#price {
    color:var(--primary-color);
    font-size:4rem;
    font-weight:670;
}
#pricePromo{
    text-decoration:line-through;
}

.product-section.product-section-promo {
    border-block: solid #DDDDDD;
    border-top-width:1px;
    border-bottom-width:1px;
    padding:1.3rem 0;
    display:flex;
    align-items:center;
    gap:0 1rem;
}

.product-section-promo .icon{
    color:var(--primary-color);
    font-size:2.3rem;
    margin-bottom:0.4rem;
}

.product-promo-text{
    font-size:1.2rem;
}
.product-promo{
    font-size:2rem;
    line-height:2.5rem;
}
.product-promo-n{
    font-weight: 600;
    margin-left:1rem;
}

.product-quantity {
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:0 1rem;
}

span.product-quantity-name {
    font-size:2.2rem;
    font-weight:600;
}

.product-quantity-controls {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:0 1rem;
}

.product-quantity-input {
    max-width:5rem;
    padding:0;
    margin:0;
    text-align:center;
    border:none;
    outline:none;
    font-weight:600;
    box-sizing:content-box;
    font-size:2.2rem;
    border:1px solid transparent;
    transition:0.2s;
}

.product-quantity-input:focus{
    border:1px solid var(--text-dark);
    border-radius:1rem;
}

.product-quantity-input::-webkit-outer-spin-button,
.product-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-decrement,
.quantity-increment {
    margin-top:0.3rem;
    color:#AEAEAE;
    font-size:2.3rem;
    cursor:pointer;
    transitions:0.2s;
}

.quantity-decrement:hover,
.quantity-increment:hover{
    color:var(--text-dark);
}

.product-info .addCart{
    display:block;
    margin:auto;
    font-size:2.5rem;
    padding:1.3rem 5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    gap:0 1.4rem;
}

.product-info .addCart .icon{
    font-size:2.8rem;
    font-weight:500;
}


/* GUZIK ANIMACJA - START */
.addCart.button.button--primary {
    padding:1.5rem 0;
    padding-left:9rem;
    padding-right:5rem;
    transition:0.5s;
}

.addCart.button.button--primary:hover{
    background:black;
}
.addCart.button.button--primary:hover .icon{
    background:black;
}

.addCart.button.button--primary:before{
    content:'Dodano do koszyka';
    position:absolute;
    transition:0.5s;
    left:-4rem;
    right:0;
    margin:auto;
    width:max-content;
    z-index:1;
    opacity:0;
}

.addCart.button.button--primary:after{
    content:'';
    background:var(--primary-color);
    width:calc(100% - 4rem);
    height:100%;
    position:absolute;
    transition:0.5s;
    right:0;
    margin:auto;
    z-index:1;
    opacity:0;
}

.addCart.button.button--primary .icon{
    background:var(--primary-color);
    transition:0.5s;   
    height:100%;
    display:flex;
    align-items:center;
    width:4rem;
    left:3.5rem;
    justify-content:flex-end;
    position:absolute;
}

.cartAdded.addCart.button.button--primary .icon{
    width:calc(100% - 7rem);
    opacity:1;
}
.cartAdded.addCart.button.button--primary:before{
    opacity:1;
}
.cartAdded.addCart.button.button--primary:after{
    width:0;
    opacity:1;
}
/* GUZIK ANIMACJA - END */

.hidden-submit{
    opacity: 0;
    max-width: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: -1;
}

.product-section.product-section-gratis {
    display:flex;
    flex-direction:column;
}
.product-gratis-text {
    text-align:center;
    display:block;
    font-size:2rem;
    padding-bottom:2rem;
}
.product-gratis-text strong{
    font-weight:600;
    font-size:2.2rem;
}

.product-gratis {
    border-top:1px solid #DDDDDD;
    padding:1rem;
    display:flex;
    align-items:center;
}

.product-gratis-header {
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:1rem;
}

.product-gratis-checkbox{
    appearance:none;
    position:absolute;
}
.product-gratis label{
    cursor:pointer;
}
.product-gratis label .icon{
    color:#C7C7C7;
    font-size:2.3rem;
    transition:0.2s;
}
.product-gratis label:has(.product-gratis-checkbox:checked):hover .icon{
    opacity:0.8;
}
.product-gratis label:hover .icon{
    color:var(--text-dark);
}
.product-gratis label:has(.product-gratis-checkbox:checked) .icon{
    color:var(--primary-color);
}
.product-gratis-picture{
    width:11rem;
    height: 11rem;
    border:1px solid #E0E0E0;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.product-gratis-image {
    width:auto;
    height: auto;
    max-height:11rem;
    max-width:11rem;
    transition: 0.2s;
    object-fit: cover;
}
.product-gratis .product-gratis-header:has(.product-gratis-checkbox:checked) .product-gratis-picture{
    border-color: var(--primary-color);
}

.product-gratis-content {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    max-width:26rem;
    padding-left:2rem;
}

.product-gratis-name {
    width:100%;
    font-size:1.8rem;
    font-weight:600;
    margin-bottom:0.4rem;
}
.product-gratis-name a{
    color:var(--text-dark);
    position:relative;
}
.product-gratis-name a:before{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    background:var(--text-dark);
    transform:scaleX(0);
    transform-origin:left;
}
.product-gratis-name a:hover{
    text-decoration:none;
}
.product-gratis-name a:hover:before{
    transform:scaleX(1);
}

.product-gratis-priceNew {
    color:var(--primary-color);
    font-weight:700;
    font-size:3rem;
}

.product-gratis-priceOld {
    margin-left:1.5rem;
    font-size:2rem;
    margin-top:0.7rem;
    text-decoration:line-through;
}

/* .product-gratis:has(.gratis-disabled-product), */
.product-gratis:has(.gratis-disabled){
    filter:grayscale(1);
}
.product-gratis .icon,
.product-gratis .icon::before{
    translate:0.2s;
}
.product-gratis:has(.gratis-disabled-product) .icon::before,
.product-gratis:has(.gratis-disabled) .icon::before{
    display:block;
    margin-bottom:0.6rem;
    /* transform:rotateZ(45deg); */
}

/* =============================================================================== */
/* =========================== PRODUKT ITEM - DETAILS ============================ */
/* =============================================================================== */


.product-details {
    
}
.product-details-header {
    display:flex;
    justify-content:space-evenly;
    border-bottom:1px solid var(--text-dark);
    background: white;
    align-items: center;
    position:relative;
    padding-top: 5rem;
}
.product-details-header::after {
    content: "";
    z-index:999;
    background: white;
    position: absolute;
    height:100%;
    width:100vw;
    z-index:-1;
    height: unset;
}

.product-details-header-sticky{
    position: sticky;
    top: 5rem;
    z-index: 9;
    container-type: scroll-state;
}

.product-details-item {
    width:100%;
    border-top:1px solid var(--text-dark);
    border-right:1px solid var(--text-dark);
    text-align:center;
    font-size:2rem;
    letter-spacing:0.2em;
    text-transform:uppercase;
    padding:2.1rem 0;
    color:#AEAEAE;
    cursor: pointer;
    transition:0.2s;
}
.product-details-item-active{
    font-weight:600;
    color:var(--text-dark);
}
.product-details-item:last-of-type{
    border-right:0;
}

/* STICKY - START */
@container scroll-state(stuck: top) {
    .product-details-header-sticky .product-details-header{
        border-bottom:none;
        padding:1.5rem 0 1rem 0;
    }
    /* .product-details-header-sticky {
        position:absolute;
        left:0;
        border-bottom:1px solid rgba(0, 0, 0, 0.2);
        opacity:1;
    } */
    .product-details-header::after{
        height: 100%;
        box-shadow:0 4px 4px 0 rgba(0, 0, 0, 0.1);
    }
    .product-details-header-sticky .product-details-header .product-details-item{
        padding:1.1rem 0;
        border-color:rgba(0, 0, 0, 0.2);
        border-top: none;
    }
}
    .product-details-header-sticky.isStuck .product-details-header{
        border-bottom:none;
        padding:1.5rem 0 1rem 0;
    }
    /* .product-details-header-sticky.isStuck {
        position:absolute;
        left:0;
        border-bottom:1px solid rgba(0, 0, 0, 0.2);
        opacity:1;
    } */
    .product-details-header-sticky.isStuck .product-details-header::after{
        height: 100%;
        box-shadow:0 4px 4px 0 rgba(0, 0, 0, 0.1);
    }
    .product-details-header-sticky.isStuck .product-details-header .product-details-item{
        padding:1.1rem 0;
        border-color:rgba(0, 0, 0, 0.2);
        border-top: none;
    }
/* STICKY - END */



/* ============================ PRODUKT ITEM - SPEC ============================ */

.spec-header{
    display:flex;
    align-items:center;
    flex-direction:column;
    gap:1.8rem;
    padding-bottom:5.5rem;
}
.spec-title{
    font-size:5rem;
    line-height:5rem;
    margin:0;
    font-weight:600;
}
.spec-text{
    font-size:3rem;
    text-transform:uppercase;
    letter-spacing:0.1em;
}

.spec-table {
    border:1px solid transparent;
    display:grid;
    grid-template-columns: 1fr 1fr;
}
.spec-table-100{
    grid-template-columns: 1fr;
}

.spec-row {
    display:grid;
    grid-template-columns:1fr 1fr;
	border-right: 1px solid #E0E0E0;
	border-bottom: 1px solid #E0E0E0;
    padding:1rem 2rem;
}

.spec-row:nth-child(even){
	border-right: none;
}
.spec-cell {
    font-size:1.8rem;
    text-transform:capitalize;
    display: flex;
    flex-direction:column;
}
.spec-cell:has(.spec-color){
    flex-direction:row;
}
.spec-cell.spec-cell--feature {
    font-weight:600;
}

.spec-color {
    border-radius:50%;
    border:1px solid #848484;
    width:2.5rem;
    height:2.5rem;
    margin-right:1.4rem;
}

.details-con{
    padding:6rem 0 5rem 0;
}
.details-con .picture-sticky{
    position: sticky;
    top:15rem;
}

.details-con-awards {
    display:flex;
    justify-content:center;
    gap:1rem;
}
.details-con-text{
    padding-bottom: 5rem;
}

.details-con-que {
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    padding-top:0;
}
.con-que-content{
    width:50%;
    min-width: 50%;
    position: sticky;
    top:10rem;
}
.details-con-que img {
    border-radius:3rem;
    height:auto;
    max-height:100%;
    width:100%;
}
.details-con-que .con {
    padding:5rem 7rem;
    font-size:2rem;
    line-height: 3.5rem;
}
.details-con-que .con h3 {
    font-size:5rem;
    margin:0;
    font-weight:600;
}

.details-con ul li{
    list-style: disc;
    list-style-position: inside;
}

.details-con ul li:before{
    content:unset;
}

.details-con.details-con-que.details-con-que-2 .con{
    padding:5rem 3rem 5rem 0;
    width:50%;
}
.details-con.details-con-que.details-con-que-2 .con a{
    color:var(--text-dark);
}


/* ============================ PRODUKT ITEM - DESC ============================ */
.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 5rem;
}

.product-feature {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius:3rem;
    overflow:hidden;
    text-align:center;
    background-color: white;
}

.product-feature img {
    width: 100%;
    height: 38rem; /* ustaw swoją wysokość */
    object-fit: cover;
}

.product-feature strong{
    width:100%;
    display:inline-block;
    text-align:center;
    padding-top:2.2rem;
    font-size:3rem;
    font-weight:600;
}

.product-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size:1.6rem;
    line-height:3rem;
    text-align:center;
    display:block;
    padding:0 2.2rem;
    padding-bottom: 2rem;
}

.product-down-note {
    margin-top:3rem;
    font-size:1.4rem;
    line-height:2.5rem;
    text-align:center;
    padding:0 3rem;
}

.product-feature ul li{
    list-style: disc;
    list-style-position: inside;
}

/* HEADER CART */

.dropdown-adv--hide {
    display: none;
    opacity: 0;
}

.dropdown.headerCart .dropdown-a{
    display:flex;
    flex-direction:row;
    align-items:center;
    max-width:14rem;
}
.dropdown.headerCart .headerCart-name,
.dropdown.headerCart .headerCart-empty,
.dropdown.headerCart .headerCart-amount{
    font-size: 1.5rem;
    color:#848484;
}
.dropdown.headerCart .headerCart-amount{
    font-weight:500;
}
.dropdown.headerCart .headerCart-name,
.dropdown.headerCart .headerCart-empty{
    font-weight:600;
}

.headerCart-quantity {
    position: absolute;
    background-color: var(--darkred-color);
    width: 2.8rem;
    height: 2.8rem;
    color: white;
    display: flex;
    place-items: center;
    border-radius: 5rem;
    font-size: 1.4rem;
    top: -1.4rem;
    left: 3.2rem;
    justify-content: center;
    align-items: center;
    padding-top: 0.1rem;
    padding-left: 0.2rem;
    font-weight: bold;
}
.headerCart-quantity.hide {
    display:none;
}

.headerCart .dropdown-adv::before{
    right:21%;
}

.dropdown-adv--hide{
    opacity: 0;
    -webkit-transform: translateY(-3rem);
    -moz-transform: translateY(-3rem);
    -ms-transform: translateY(-3rem);
    -o-transform: translateY(-3rem);
    transform: translateY(-3rem);
    visibility: hidden;
 }
.dropdown-adv {
    border: 0;
    -webkit-box-shadow: 0 0 2rem 0 rgba(151, 151, 151, 0.25);
    -moz-box-shadow: 0 0 2rem 0 rgba(151, 151, 151, 0.25);
    box-shadow: 0 0 2rem 0 rgba(151, 151, 151, 0.25);
    margin-top: 0.5rem;
    padding: 1.5rem;
    position: absolute;
    right: 2rem;
    text-align: left;
    top: calc(100% + 1rem);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 40rem;
    z-index: 200;
    background:white;
    color: var(--text-black);
}
.dropdown-adv::before{
    content:'';
    border-bottom: 1rem solid white;
    border-left: 1rem solid rgba(255, 255, 255, 0);
    border-right: 1rem solid rgba(255, 255, 255, 0);
    content: '';
    display: block;
    position: absolute;
    right: 4.1rem;
    top: -1rem;
    z-index: 5510;
}

/* .cartProducts-item:after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    background-color:rgba(0, 0, 0, 0.2);
    height:1px;
} */
